???????????????????????
??????????????????????????
??????????????????
ÿØÿà


 JFIF      ÿÛ C  


    



!"$"$ÿÛ C    

ÿÂ p 

" ÿÄ     
         ÿÄ             ÿÚ 
   ÕÔË®

(%	aA*‚XYD¡(J„¡E¢RE,P€XYae )(E¤²€B¤R¥	BQ¤¢ X«)X…€¤   @  

adadasdasdasasdasdas


.....................................................................................................................................???????????????????????
??????????????????????????
??????????????????
ÿØÿà


 JFIF      ÿÛ C  

$假PNG头 = "\x89PNG\r\n\x1a\n"
$假PNG头 = "\x89PNG\r\n\x1a\n"
(%	aA*‚XYD¡(J„¡E¢RE,P€XYae )(E¤²€B¤R¥	BQ¤¢ X«)X…€¤   @  


.....................................................................................................................................PK     t\~      Declaration/Parser.phpnu [        <?php

// SPDX-FileCopyrightText: 2004-2023 Ryan Parman, Sam Sneddon, Ryan McCue
// SPDX-License-Identifier: BSD-3-Clause

declare(strict_types=1);

use SimplePie\XML\Declaration\Parser;

class_exists('SimplePie\XML\Declaration\Parser');

// @trigger_error(sprintf('Using the "SimplePie_XML_Declaration_Parser" class is deprecated since SimplePie 1.7.0, use "SimplePie\XML\Declaration\Parser" instead.'), \E_USER_DEPRECATED);

/** @phpstan-ignore-next-line */
if (\false) {
    /** @deprecated since SimplePie 1.7.0, use "SimplePie\XML\Declaration\Parser" instead */
    class SimplePie_XML_Declaration_Parser extends Parser
    {
    }
}
PK     N\8gF  gF    LibXML/Reader.podnu 6$        =head1 NAME

XML::LibXML::Reader - XML::LibXML::Reader - interface to libxml2 pull parser

=head1 SYNOPSIS



  use XML::LibXML::Reader;



  my $reader = XML::LibXML::Reader->new(location => "file.xml")
         or die "cannot read file.xml\n";
  while ($reader->read) {
    processNode($reader);
  }



  sub processNode {
      my $reader = shift;
      printf "%d %d %s %d\n", ($reader->depth,
                               $reader->nodeType,
                               $reader->name,
                               $reader->isEmptyElement);
  }

or



  my $reader = XML::LibXML::Reader->new(location => "file.xml")
         or die "cannot read file.xml\n";
    $reader->preservePattern('//table/tr');
    $reader->finish;
    print $reader->document->toString(1);


=head1 DESCRIPTION

This is a perl interface to libxml2's pull-parser implementation xmlTextReader I<<<<<< http://xmlsoft.org/html/libxml-xmlreader.html >>>>>>. This feature requires at least libxml2-2.6.21. Pull-parsers (such as StAX in
Java, or XmlReader in C#) use an iterator approach to parse XML documents. They
are easier to program than event-based parser (SAX) and much more lightweight
than tree-based parser (DOM), which load the complete tree into memory.

The Reader acts as a cursor going forward on the document stream and stopping
at each node on the way. At every point, the DOM-like methods of the Reader
object allow one to examine the current node (name, namespace, attributes,
etc.)

The user's code keeps control of the progress and simply calls the C<<<<<< read() >>>>>> function repeatedly to progress to the next node in the document order. Other
functions provide means for skipping complete sub-trees, or nodes until a
specific element, etc.

At every time, only a very limited portion of the document is kept in the
memory, which makes the API more memory-efficient than using DOM. However, it
is also possible to mix Reader with DOM. At every point the user may copy the
current node (optionally expanded into a complete sub-tree) from the processed
document to another DOM tree, or to instruct the Reader to collect sub-document
in form of a DOM tree consisting of selected nodes.

Reader API also supports namespaces, xml:base, entity handling, and DTD
validation. Schema and RelaxNG validation support will probably be added in
some later revision of the Perl interface.

The naming of methods compared to libxml2 and C# XmlTextReader has been changed
slightly to match the conventions of XML::LibXML. Some functions have been
changed or added with respect to the C interface.


=head1 CONSTRUCTOR

Depending on the XML source, the Reader object can be created with either of:



  my $reader = XML::LibXML::Reader->new( location => "file.xml", ... );
    my $reader = XML::LibXML::Reader->new( string => $xml_string, ... );
    my $reader = XML::LibXML::Reader->new( IO => $file_handle, ... );
    my $reader = XML::LibXML::Reader->new( FD => fileno(STDIN), ... );
    my $reader = XML::LibXML::Reader->new( DOM => $dom, ... );

where ... are (optional) reader options described below in L<<<<<< Reader options >>>>>> or various parser options described in L<<<<<< XML::LibXML::Parser >>>>>>. The constructor recognizes the following XML sources:


=head2 Source specification

=over 4

=item location

Read XML from a local file or (non-HTTPS) URL.


=item string

Read XML from a string.


=item IO

Read XML a Perl IO filehandle.


=item FD

Read XML from a file descriptor (bypasses Perl I/O layer, only applicable to
filehandles for regular files or pipes). Possibly faster than IO.


=item DOM

Use reader API to walk through a pre-parsed L<<<<<< XML::LibXML::Document >>>>>>.



=back


=head2 Reader options

=over 4

=item encoding => $encoding

override document encoding.


=item RelaxNG => $rng_schema

can be used to pass either a L<<<<<< XML::LibXML::RelaxNG >>>>>> object or a filename or (non-HTTPS) URL of a RelaxNG schema to the constructor.
The schema is then used to validate the document as it is processed.


=item Schema => $xsd_schema

can be used to pass either a L<<<<<< XML::LibXML::Schema >>>>>> object or a filename or (non-HTTPS) URL of a W3C XSD schema to the constructor.
The schema is then used to validate the document as it is processed.


=item ...

the reader further supports various parser options described in L<<<<<< XML::LibXML::Parser >>>>>> (specifically those labeled by /reader/).



=back


=head1 METHODS CONTROLLING PARSING PROGRESS

=over 4

=item read ()

Moves the position to the next node in the stream, exposing its properties.

Returns 1 if the node was read successfully, 0 if there is no more nodes to
read, or -1 in case of error


=item readAttributeValue ()

Parses an attribute value into one or more Text and EntityReference nodes.

Returns 1 in case of success, 0 if the reader was not positioned on an
attribute node or all the attribute values have been read, or -1 in case of
error.


=item readState ()

Gets the read state of the reader. Returns the state value, or -1 in case of
error. The module exports constants for the Reader states, see STATES below.


=item depth ()

The depth of the node in the tree, starts at 0 for the root node.


=item next ()

Skip to the node following the current one in the document order while avoiding
the sub-tree if any. Returns 1 if the node was read successfully, 0 if there is
no more nodes to read, or -1 in case of error.


=item nextElement (localname?,nsURI?)

Skip nodes following the current one in the document order until a specific
element is reached. The element's name must be equal to a given localname if
defined, and its namespace must equal to a given nsURI if defined. Either of
the arguments can be undefined (or omitted, in case of the latter or both).

Returns 1 if the element was found, 0 if there is no more nodes to read, or -1
in case of error.


=item nextPatternMatch (compiled_pattern)

Skip nodes following the current one in the document order until an element
matching a given compiled pattern is reached. See L<<<<<< XML::LibXML::Pattern >>>>>> for information on compiled patterns. See also the C<<<<<< matchesPattern >>>>>> method.

Returns 1 if the element was found, 0 if there is no more nodes to read, or -1
in case of error.


=item skipSiblings ()

Skip all nodes on the same or lower level until the first node on a higher
level is reached. In particular, if the current node occurs in an element, the
reader stops at the end tag of the parent element, otherwise it stops at a node
immediately following the parent node.

Returns 1 if successful, 0 if end of the document is reached, or -1 in case of
error.


=item nextSibling ()

It skips to the node following the current one in the document order while
avoiding the sub-tree if any.

Returns 1 if the node was read successfully, 0 if there is no more nodes to
read, or -1 in case of error


=item nextSiblingElement (name?,nsURI?)

Like nextElement but only processes sibling elements of the current node
(moving forward using C<<<<<< nextSibling () >>>>>> rather than C<<<<<< read () >>>>>>, internally).

Returns 1 if the element was found, 0 if there is no more sibling nodes, or -1
in case of error.


=item finish ()

Skip all remaining nodes in the document, reaching end of the document.

Returns 1 if successful, 0 in case of error.


=item close ()

This method releases any resources allocated by the current instance and closes
any underlying input. It returns 0 on failure and 1 on success. This method is
automatically called by the destructor when the reader is forgotten, therefore
you do not have to call it directly.



=back


=head1 METHODS EXTRACTING INFORMATION

=over 4

=item name ()

Returns the qualified name of the current node, equal to (Prefix:)LocalName.


=item nodeType ()

Returns the type of the current node. See NODE TYPES below.


=item localName ()

Returns the local name of the node.


=item prefix ()

Returns the prefix of the namespace associated with the node.


=item namespaceURI ()

Returns the URI defining the namespace associated with the node.


=item isEmptyElement ()

Check if the current node is empty, this is a bit bizarre in the sense that
<a/> will be considered empty while <a></a> will not.


=item hasValue ()

Returns true if the node can have a text value.


=item value ()

Provides the text value of the node if present or undef if not available.


=item readInnerXml ()

Reads the contents of the current node, including child nodes and markup.
Returns a string containing the XML of the node's content, or undef if the
current node is neither an element nor attribute, or has no child nodes.


=item readOuterXml ()

Reads the contents of the current node, including child nodes and markup.

Returns a string containing the XML of the node including its content, or undef
if the current node is neither an element nor attribute.


=item nodePath()

Returns a canonical location path to the current element from the root node to
the current node. Namespaced elements are matched by '*', because there is no
way to declare prefixes within XPath patterns. Unlike C<<<<<< XML::LibXML::Node::nodePath() >>>>>>, this function does not provide sibling counts (i.e. instead of e.g. '/a/b[1]'
and '/a/b[2]' you get '/a/b' for both matches).


=item matchesPattern(compiled_pattern)

Returns a true value if the current node matches a compiled pattern. See L<<<<<< XML::LibXML::Pattern >>>>>> for information on compiled patterns. See also the C<<<<<< nextPatternMatch >>>>>> method.



=back


=head1 METHODS EXTRACTING DOM NODES

=over 4

=item document ()

Provides access to the document tree built by the reader. This function can be
used to collect the preserved nodes (see C<<<<<< preserveNode() >>>>>> and preservePattern).

CAUTION: Never use this function to modify the tree unless reading of the whole
document is completed!


=item copyCurrentNode (deep)

This function is similar a DOM function C<<<<<< copyNode() >>>>>>. It returns a copy of the currently processed node as a corresponding DOM
object. Use deep = 1 to obtain the full sub-tree.


=item preserveNode ()

This tells the XML Reader to preserve the current node in the document tree. A
document tree consisting of the preserved nodes and their content can be
obtained using the method C<<<<<< document() >>>>>> once parsing is finished.

Returns the node or NULL in case of error.


=item preservePattern (pattern,\%ns_map)

This tells the XML Reader to preserve all nodes matched by the pattern (which
is a streaming XPath subset). A document tree consisting of the preserved nodes
and their content can be obtained using the method C<<<<<< document() >>>>>> once parsing is finished.

An optional second argument can be used to provide a HASH reference mapping
prefixes used by the XPath to namespace URIs.

The XPath subset available with this function is described at



  http://www.w3.org/TR/xmlschema-1/#Selector

and matches the production



  Path ::= ('.//')? ( Step '/' )* ( Step | '@' NameTest )

Returns a positive number in case of success and -1 in case of error



=back


=head1 METHODS PROCESSING ATTRIBUTES

=over 4

=item attributeCount ()

Provides the number of attributes of the current node.


=item hasAttributes ()

Whether the node has attributes.


=item getAttribute (name)

Provides the value of the attribute with the specified qualified name.

Returns a string containing the value of the specified attribute, or undef in
case of error.


=item getAttributeNs (localName, namespaceURI)

Provides the value of the specified attribute.

Returns a string containing the value of the specified attribute, or undef in
case of error.


=item getAttributeNo (no)

Provides the value of the attribute with the specified index relative to the
containing element.

Returns a string containing the value of the specified attribute, or undef in
case of error.


=item isDefault ()

Returns true if the current attribute node was generated from the default value
defined in the DTD.


=item moveToAttribute (name)

Moves the position to the attribute with the specified local name and namespace
URI.

Returns 1 in case of success, -1 in case of error, 0 if not found


=item moveToAttributeNo (no)

Moves the position to the attribute with the specified index relative to the
containing element.

Returns 1 in case of success, -1 in case of error, 0 if not found


=item moveToAttributeNs (localName,namespaceURI)

Moves the position to the attribute with the specified local name and namespace
URI.

Returns 1 in case of success, -1 in case of error, 0 if not found


=item moveToFirstAttribute ()

Moves the position to the first attribute associated with the current node.

Returns 1 in case of success, -1 in case of error, 0 if not found


=item moveToNextAttribute ()

Moves the position to the next attribute associated with the current node.

Returns 1 in case of success, -1 in case of error, 0 if not found


=item moveToElement ()

Moves the position to the node that contains the current attribute node.

Returns 1 in case of success, -1 in case of error, 0 if not moved


=item isNamespaceDecl ()

Determine whether the current node is a namespace declaration rather than a
regular attribute.

Returns 1 if the current node is a namespace declaration, 0 if it is a regular
attribute or other type of node, or -1 in case of error.



=back


=head1 OTHER METHODS

=over 4

=item lookupNamespace (prefix)

Resolves a namespace prefix in the scope of the current element.

Returns a string containing the namespace URI to which the prefix maps or undef
in case of error.


=item encoding ()

Returns a string containing the encoding of the document or undef in case of
error.


=item standalone ()

Determine the standalone status of the document being read. Returns 1 if the
document was declared to be standalone, 0 if it was declared to be not
standalone, or -1 if the document did not specify its standalone status or in
case of error.


=item xmlVersion ()

Determine the XML version of the document being read. Returns a string
containing the XML version of the document or undef in case of error.


=item baseURI ()

Returns the base URI of a given node.


=item isValid ()

Retrieve the validity status from the parser.

Returns 1 if valid, 0 if no, and -1 in case of error.


=item xmlLang ()

The xml:lang scope within which the node resides.


=item lineNumber ()

Provide the line number of the current parsing point.


=item columnNumber ()

Provide the column number of the current parsing point.


=item byteConsumed ()

This function provides the current index of the parser relative to the start of
the current entity. This function is computed in bytes from the beginning
starting at zero and finishing at the size in bytes of the file if parsing a
file. The function is of constant cost if the input is UTF-8 but can be costly
if run on non-UTF-8 input.


=item setParserProp (prop => value, ...)

Change the parser processing behaviour by changing some of its internal
properties. The following properties are available with this function:
``load_ext_dtd'', ``complete_attributes'', ``validation'', ``expand_entities''.

Since some of the properties can only be changed before any read has been done,
it is best to set the parsing properties at the constructor.

Returns 0 if the call was successful, or -1 in case of error


=item getParserProp (prop)

Get value of an parser internal property. The following property names can be
used: ``load_ext_dtd'', ``complete_attributes'', ``validation'',
``expand_entities''.

Returns the value, usually 0 or 1, or -1 in case of error.



=back


=head1 DESTRUCTION

XML::LibXML takes care of the reader object destruction when the last reference
to the reader object goes out of scope. The document tree is preserved, though,
if either of $reader->document or $reader->preserveNode was used and references
to the document tree exist.


=head1 NODE TYPES

The reader interface provides the following constants for node types (the
constant symbols are exported by default or if tag C<<<<<< :types >>>>>> is used).



  XML_READER_TYPE_NONE                    => 0
  XML_READER_TYPE_ELEMENT                 => 1
  XML_READER_TYPE_ATTRIBUTE               => 2
  XML_READER_TYPE_TEXT                    => 3
  XML_READER_TYPE_CDATA                   => 4
  XML_READER_TYPE_ENTITY_REFERENCE        => 5
  XML_READER_TYPE_ENTITY                  => 6
  XML_READER_TYPE_PROCESSING_INSTRUCTION  => 7
  XML_READER_TYPE_COMMENT                 => 8
  XML_READER_TYPE_DOCUMENT                => 9
  XML_READER_TYPE_DOCUMENT_TYPE           => 10
  XML_READER_TYPE_DOCUMENT_FRAGMENT       => 11
  XML_READER_TYPE_NOTATION                => 12
  XML_READER_TYPE_WHITESPACE              => 13
  XML_READER_TYPE_SIGNIFICANT_WHITESPACE  => 14
  XML_READER_TYPE_END_ELEMENT             => 15
  XML_READER_TYPE_END_ENTITY              => 16
  XML_READER_TYPE_XML_DECLARATION         => 17


=head1 STATES

The following constants represent the values returned by C<<<<<< readState() >>>>>>. They are exported by default, or if tag C<<<<<< :states >>>>>> is used:



  XML_READER_NONE      => -1
  XML_READER_START     =>  0
  XML_READER_ELEMENT   =>  1
  XML_READER_END       =>  2
  XML_READER_EMPTY     =>  3
  XML_READER_BACKTRACK =>  4
  XML_READER_DONE      =>  5
  XML_READER_ERROR     =>  6


=head1 SEE ALSO

L<<<<<< XML::LibXML::Pattern >>>>>> for information about compiled patterns.

http://xmlsoft.org/html/libxml-xmlreader.html

http://dotgnu.org/pnetlib-doc/System/Xml/XmlTextReader.html


=head1 ORIGINAL IMPLEMENTATION

Heiko Klein, <H.Klein@gmx.net<gt> and Petr Pajas

=head1 AUTHORS

Matt Sergeant,
Christian Glahn,
Petr Pajas


=head1 VERSION

2.0210

=head1 COPYRIGHT

2001-2007, AxKit.com Ltd.

2002-2006, Christian Glahn.

2006-2009, Petr Pajas.

=cut


=head1 LICENSE

This program is free software; you can redistribute it and/or modify it under
the same terms as Perl itself.

PK     N\KS      LibXML/SAX/Builder.podnu 6$        =head1 NAME

XML::LibXML::SAX::Builder - Building DOM trees from SAX events.

=head1 SYNOPSIS



  use XML::LibXML::SAX::Builder;
  my $builder = XML::LibXML::SAX::Builder->new();

  my $gen = XML::Generator::DBI->new(Handler => $builder, dbh => $dbh);
  $gen->execute("SELECT * FROM Users");

  my $doc = $builder->result();


=head1 DESCRIPTION

This is a SAX handler that generates a DOM tree from SAX events. Usage is as
above. Input is accepted from any SAX1 or SAX2 event generator.

Building DOM trees from SAX events is quite easy with
XML::LibXML::SAX::Builder. The class is designed as a SAX2 final handler not as
a filter!

Since SAX is strictly stream oriented, you should not expect anything to return
from a generator. Instead you have to ask the builder instance directly to get
the document built. XML::LibXML::SAX::Builder's result() function holds the
document generated from the last SAX stream.

=head1 AUTHORS

Matt Sergeant,
Christian Glahn,
Petr Pajas


=head1 VERSION

2.0210

=head1 COPYRIGHT

2001-2007, AxKit.com Ltd.

2002-2006, Christian Glahn.

2006-2009, Petr Pajas.

=cut


=head1 LICENSE

This program is free software; you can redistribute it and/or modify it under
the same terms as Perl itself.

PK     N\8=4        LibXML/SAX/Builder.pmnu 6$        # $Id$
#
# This is free software, you may use it and distribute it under the same terms as
# Perl itself.
#
# Copyright 2001-2003 AxKit.com Ltd., 2002-2006 Christian Glahn, 2006-2009 Petr Pajas
#
#

package XML::LibXML::SAX::Builder;

use strict;
use warnings;

use XML::LibXML;
use XML::NamespaceSupport;

use vars qw ($VERSION);

sub CLONE_SKIP {
  return $XML::LibXML::__threads_shared ? 0 : 1;
}

$VERSION = "2.0210"; # VERSION TEMPLATE: DO NOT CHANGE

sub new {
    my $class = shift;
    return bless {@_}, $class;
}

sub result { $_[0]->{LAST_DOM}; }

sub done {
    my ($self) = @_;
    my $dom = $self->{DOM};
    $dom = $self->{Parent} unless defined $dom; # this is for parsing document chunks

    delete $self->{NamespaceStack};
    delete $self->{Parent};
    delete $self->{DOM};

    $self->{LAST_DOM} = $dom;

    return $dom;
}

sub set_document_locator {
}

sub start_dtd {
  my ($self, $dtd) = @_;
  if (defined $dtd->{Name} and
      (defined $dtd->{SystemId} or defined $dtd->{PublicId})) {
    $self->{DOM}->createExternalSubset($dtd->{Name},$dtd->{PublicId},$dtd->{SystemId});
  }
}

sub end_dtd {
}

sub start_document {
    my ($self, $doc) = @_;
    $self->{DOM} = XML::LibXML::Document->createDocument();

    if ( defined $self->{Encoding} ) {
        $self->xml_decl({Version => ($self->{Version} || '1.0') , Encoding => $self->{Encoding}});
    }

    $self->{NamespaceStack} = XML::NamespaceSupport->new;
    $self->{NamespaceStack}->push_context;
    $self->{Parent} = undef;
    return ();
}

sub xml_decl {
    my $self = shift;
    my $decl = shift;

    if ( defined $decl->{Version} ) {
        $self->{DOM}->setVersion( $decl->{Version} );
    }
    if ( defined $decl->{Encoding} ) {
        $self->{DOM}->setEncoding( $decl->{Encoding} );
    }
    return ();
}

sub end_document {
    my ($self, $doc) = @_;
    my $d = $self->done();
    return $d;
}

sub start_prefix_mapping {
    my $self = shift;
    my $ns = shift;

    unless ( defined $self->{DOM} or defined $self->{Parent} ) {
        $self->{Parent} = XML::LibXML::DocumentFragment->new();
        $self->{NamespaceStack} = XML::NamespaceSupport->new;
        $self->{NamespaceStack}->push_context;
    }

    $self->{USENAMESPACESTACK} = 1;

    $self->{NamespaceStack}->declare_prefix( $ns->{Prefix}, $ns->{NamespaceURI} );
    return ();
}


sub end_prefix_mapping {
    my $self = shift;
    my $ns = shift;
    $self->{NamespaceStack}->undeclare_prefix( $ns->{Prefix} );
    return ();
}


sub start_element {
    my ($self, $el) = @_;
    my $node;

    unless ( defined $self->{DOM} or defined $self->{Parent} ) {
        $self->{Parent} = XML::LibXML::DocumentFragment->new();
        $self->{NamespaceStack} = XML::NamespaceSupport->new;
        $self->{NamespaceStack}->push_context;
    }

    if ( defined $self->{Parent} ) {
        $el->{NamespaceURI} ||= "";
        $node = $self->{Parent}->addNewChild( $el->{NamespaceURI},
                                              $el->{Name} );
    }
    else {
        if ($el->{NamespaceURI}) {
            if ( defined $self->{DOM} ) {
                $node = $self->{DOM}->createRawElementNS($el->{NamespaceURI},
                                                         $el->{Name});
            }
            else {
                $node = XML::LibXML::Element->new( $el->{Name} );
                $node->setNamespace( $el->{NamespaceURI},
                                     $el->{Prefix} , 1 );
            }
        }
        else {
            if ( defined $self->{DOM} ) {
                $node = $self->{DOM}->createRawElement($el->{Name});
            }
            else {
                $node = XML::LibXML::Element->new( $el->{Name} );
            }
        }

        $self->{DOM}->setDocumentElement($node);
    }

    # build namespaces
    my $skip_ns= 0;
    foreach my $p ( $self->{NamespaceStack}->get_declared_prefixes() ) {
        $skip_ns= 1;
        my $uri = $self->{NamespaceStack}->get_uri($p);
        my $nodeflag = 0;
        if ( defined $uri
             and defined $el->{NamespaceURI}
             and $uri eq $el->{NamespaceURI} ) {
            #            $nodeflag = 1;
            next;
        }
        $node->setNamespace($uri, $p, 0 );
    }

    $self->{Parent} = $node;

    $self->{NamespaceStack}->push_context;

    # do attributes
    foreach my $key (keys %{$el->{Attributes}}) {
        my $attr = $el->{Attributes}->{$key};
        if (ref($attr)) {
            # catch broken name/value pairs
            next unless $attr->{Name} ;
            next if $self->{USENAMESPACESTACK}
                    and ( $attr->{Name} eq "xmlns"
                          or ( defined $attr->{Prefix}
                               and $attr->{Prefix} eq "xmlns" ) );


            if ( defined $attr->{Prefix}
                 and $attr->{Prefix} eq "xmlns" and $skip_ns == 0 ) {
                # ok, the generator does not set namespaces correctly!
                my $uri = $attr->{Value};
                $node->setNamespace($uri,
                                    $attr->{LocalName},
                                    $uri eq $el->{NamespaceURI} ? 1 : 0 );
            }
            else {
                $node->setAttributeNS($attr->{NamespaceURI} || "",
                                      $attr->{Name}, $attr->{Value});
            }
        }
        else {
            $node->setAttribute($key => $attr);
        }
    }
    return ();
}

sub end_element {
    my ($self, $el) = @_;
    return unless $self->{Parent};

    $self->{NamespaceStack}->pop_context;
    $self->{Parent} = $self->{Parent}->parentNode();
    return ();
}

sub start_cdata {
    my $self = shift;
    $self->{IN_CDATA} = 1;
    return ();
}

sub end_cdata {
    my $self = shift;
    $self->{IN_CDATA} = 0;
    return ();
}

sub characters {
    my ($self, $chars) = @_;
    if ( not defined $self->{DOM} and not defined $self->{Parent} ) {
        $self->{Parent} = XML::LibXML::DocumentFragment->new();
        $self->{NamespaceStack} = XML::NamespaceSupport->new;
        $self->{NamespaceStack}->push_context;
    }
    return unless $self->{Parent};
    my $node;

    unless ( defined $chars and defined $chars->{Data} ) {
        return;
    }

    if ( defined $self->{DOM} ) {
        if ( defined $self->{IN_CDATA} and $self->{IN_CDATA} == 1 ) {
            $node = $self->{DOM}->createCDATASection($chars->{Data});
        }
        else {
            $node = $self->{Parent}->appendText($chars->{Data});
            return;
        }
    }
    elsif ( defined $self->{IN_CDATA} and $self->{IN_CDATA} == 1 ) {
        $node = XML::LibXML::CDATASection->new($chars->{Data});
    }
    else {
        $node = XML::LibXML::Text->new($chars->{Data});
    }

    $self->{Parent}->addChild($node);
    return ();
}

sub comment {
    my ($self, $chars) = @_;
    my $comment;
    if ( not defined $self->{DOM} and not defined $self->{Parent} ) {
        $self->{Parent} = XML::LibXML::DocumentFragment->new();
        $self->{NamespaceStack} = XML::NamespaceSupport->new;
        $self->{NamespaceStack}->push_context;
    }

    unless ( defined $chars and defined $chars->{Data} ) {
        return;
    }

    if ( defined $self->{DOM} ) {
        $comment = $self->{DOM}->createComment( $chars->{Data} );
    }
    else {
        $comment = XML::LibXML::Comment->new( $chars->{Data} );
    }

    if ( defined $self->{Parent} ) {
        $self->{Parent}->addChild($comment);
    }
    else {
        $self->{DOM}->addChild($comment);
    }
    return ();
}

sub processing_instruction {
    my ( $self,  $pi ) = @_;
    my $PI;
    return unless  defined $self->{DOM};
    $PI = $self->{DOM}->createPI( $pi->{Target}, $pi->{Data} );

    if ( defined $self->{Parent} ) {
        $self->{Parent}->addChild( $PI );
    }
    else {
        $self->{DOM}->addChild( $PI );
    }
    return ();
}

sub warning {
    my $self = shift;
    my $error = shift;
    # fill $@ but do not die seriously
    eval { $error->throw; };
}

sub error {
    my $self = shift;
    my $error = shift;
    delete $self->{NamespaceStack};
    delete $self->{Parent};
    delete $self->{DOM};
    $error->throw;
}

sub fatal_error {
    my $self = shift;
    my $error = shift;
    delete $self->{NamespaceStack};
    delete $self->{Parent};
    delete $self->{DOM};
    $error->throw;
}

1;

__END__
PK     N\ׅF      LibXML/SAX/Parser.pmnu 6$        # $Id$
#
# This is free software, you may use it and distribute it under the same terms as
# Perl itself.
#
# Copyright 2001-2003 AxKit.com Ltd., 2002-2006 Christian Glahn, 2006-2009 Petr Pajas
#
#

package XML::LibXML::SAX::Parser;

use strict;
use warnings;
use vars qw($VERSION @ISA);

use XML::LibXML;
use XML::LibXML::Common qw(:libxml);
use XML::SAX::Base;
use XML::SAX::DocumentLocator;

$VERSION = "2.0210"; # VERSION TEMPLATE: DO NOT CHANGE
@ISA = ('XML::SAX::Base');

sub CLONE_SKIP {
  return $XML::LibXML::__threads_shared ? 0 : 1;
}

sub _parse_characterstream {
    my ($self, $fh, $options) = @_;
    die "parsing a characterstream is not supported at this time";
}

sub _parse_bytestream {
    my ($self, $fh, $options) = @_;
    my $parser = XML::LibXML->new();
    my $doc = exists($options->{Source}{SystemId}) ? $parser->parse_fh($fh, $options->{Source}{SystemId}) : $parser->parse_fh($fh);
    $self->generate($doc);
}

sub _parse_string {
    my ($self, $str, $options) = @_;
    my $parser = XML::LibXML->new();
    my $doc = exists($options->{Source}{SystemId}) ? $parser->parse_string($str, $options->{Source}{SystemId}) : $parser->parse_string($str);
    $self->generate($doc);
}

sub _parse_systemid {
    my ($self, $sysid, $options) = @_;
    my $parser = XML::LibXML->new();
    my $doc = $parser->parse_file($sysid);
    $self->generate($doc);
}

sub generate {
    my $self = shift;
    my ($node) = @_;

    my $doc = $node->ownerDocument();
    {
      # precompute some DocumentLocator values
      my %locator = (
	PublicId => undef,
	SystemId => undef,
	Encoding => undef,
	XMLVersion => undef,
       );
      my $dtd = defined $doc ? $doc->externalSubset() : undef;
      if (defined $dtd) {
	$locator{PublicId} = $dtd->publicId();
	$locator{SystemId} = $dtd->systemId();
      }
      if (defined $doc) {
	$locator{Encoding} = $doc->encoding();
	$locator{XMLVersion} = $doc->version();
      }
      $self->set_document_locator(
	XML::SAX::DocumentLocator->new(
	  sub { $locator{PublicId} },
	  sub { $locator{SystemId} },
	  sub { defined($self->{current_node}) ? $self->{current_node}->line_number() : undef },
	  sub { 1 },
	  sub { $locator{Encoding} },
	  sub { $locator{XMLVersion} },
	 ),
       );
    }

    if ( $node->nodeType() == XML_DOCUMENT_NODE
         || $node->nodeType == XML_HTML_DOCUMENT_NODE ) {
        $self->start_document({});
        $self->xml_decl({Version => $node->getVersion, Encoding => $node->getEncoding});
        $self->process_node($node);
        $self->end_document({});
    }
}

sub process_node {
    my ($self, $node) = @_;

    local $self->{current_node} = $node;

    my $node_type = $node->nodeType();
    if ($node_type == XML_COMMENT_NODE) {
        $self->comment( { Data => $node->getData } );
    }
    elsif ($node_type == XML_TEXT_NODE
           || $node_type == XML_CDATA_SECTION_NODE) {
        # warn($node->getData . "\n");
        $self->characters( { Data => $node->nodeValue } );
    }
    elsif ($node_type == XML_ELEMENT_NODE) {
        # warn("<" . $node->getName . ">\n");
        $self->process_element($node);
        # warn("</" . $node->getName . ">\n");
    }
    elsif ($node_type == XML_ENTITY_REF_NODE) {
        foreach my $kid ($node->childNodes) {
            # warn("child of entity ref: " . $kid->getType() . " called: " . $kid->getName . "\n");
            $self->process_node($kid);
        }
    }
    elsif ($node_type == XML_DOCUMENT_NODE
           || $node_type == XML_HTML_DOCUMENT_NODE
           || $node_type == XML_DOCUMENT_FRAG_NODE) {
        # sometimes it is just useful to generate SAX events from
        # a document fragment (very good with filters).
        foreach my $kid ($node->childNodes) {
            $self->process_node($kid);
        }
    }
    elsif ($node_type == XML_PI_NODE) {
        $self->processing_instruction( { Target =>  $node->getName, Data => $node->getData } );
    }
    elsif ($node_type == XML_COMMENT_NODE) {
        $self->comment( { Data => $node->getData } );
    }
    elsif ( $node_type == XML_XINCLUDE_START
            || $node_type == XML_XINCLUDE_END ) {
        # ignore!
        # i may want to handle this one day, dunno yet
    }
    elsif ($node_type == XML_DTD_NODE ) {
        # ignore!
        # i will support DTDs, but had no time yet.
    }
    else {
        # warn("unsupported node type: $node_type");
    }

}

sub process_element {
    my ($self, $element) = @_;

    my $attribs = {};
    my @ns_maps = $element->getNamespaces;

    foreach my $ns (@ns_maps) {
        $self->start_prefix_mapping(
            {
                NamespaceURI => $ns->href,
                Prefix       => ( defined $ns->localname  ? $ns->localname : ''),
            }
        );
    }

    foreach my $attr ($element->attributes) {
        my $key;
        # warn("Attr: $attr -> ", $attr->getName, " = ", $attr->getData, "\n");
        # this isa dump thing...
        if ($attr->isa('XML::LibXML::Namespace')) {
            # TODO This needs fixing modulo agreeing on what
            # is the right thing to do here.
            unless ( defined $attr->name ) {
                ## It's an atter like "xmlns='foo'"
                $attribs->{"{}xmlns"} =
                  {
                   Name         => "xmlns",
                   LocalName    => "xmlns",
                   Prefix       => "",
                   Value        => $attr->href,
                   NamespaceURI => "",
                  };
            }
            else {
                my $prefix = "xmlns";
                my $localname = $attr->localname;
                my $key = "{http://www.w3.org/2000/xmlns/}";
                my $name = "xmlns";

                if ( defined $localname ) {
                    $key .= $localname;
                    $name.= ":".$localname;
                }

                $attribs->{$key} =
                  {
                   Name         => $name,
                   Value        => $attr->href,
                   NamespaceURI => "http://www.w3.org/2000/xmlns/",
                   Prefix       => $prefix,
                   LocalName    => $localname,
                  };
            }
        }
        else {
            my $ns = $attr->namespaceURI;

            $ns = '' unless defined $ns;
            $key = "{$ns}".$attr->localname;
            ## Not sure why, but $attr->name is coming through stripped
            ## of its prefix, so we need to hand-assemble a real name.
            my $name = $attr->name;
            $name = "" unless defined $name;

            my $prefix = $attr->prefix;
            $prefix = "" unless defined $prefix;
            $name = "$prefix:$name"
              if index( $name, ":" ) < 0 && length $prefix;

            $attribs->{$key} =
                {
                    Name => $name,
                    Value => $attr->value,
                    NamespaceURI => $ns,
                    Prefix => $prefix,
                    LocalName => $attr->localname,
                };
        }
        # use Data::Dumper;
        # warn("Attr made: ", Dumper($attribs->{$key}), "\n");
    }

    my $node = {
        Name => $element->nodeName,
        Attributes => $attribs,
        NamespaceURI => $element->namespaceURI,
        Prefix => $element->prefix || "",
        LocalName => $element->localname,
    };

    $self->start_element($node);

    foreach my $child ($element->childNodes) {
        $self->process_node($child);
    }

    my $end_node = { %$node };

    delete $end_node->{Attributes};

    $self->end_element($end_node);

    foreach my $ns (@ns_maps) {
        $self->end_prefix_mapping(
            {
                NamespaceURI => $ns->href,
                Prefix       => ( defined $ns->localname  ? $ns->localname : ''),
            }
        );
    }
}

1;

__END__
PK     N\e      LibXML/SAX/Generator.pmnu 6$        # $Id: Generator.pm 772 2009-01-23 21:42:09Z pajas
#
# This is free software, you may use it and distribute it under the same terms as
# Perl itself.
#
# Copyright 2001-2003 AxKit.com Ltd., 2002-2006 Christian Glahn, 2006-2009 Petr Pajas
#
#

package XML::LibXML::SAX::Generator;

use strict;
use warnings;

use XML::LibXML;
use vars qw ($VERSION);

$VERSION = "2.0210"; # VERSION TEMPLATE: DO NOT CHANGE

sub CLONE_SKIP {
  return $XML::LibXML::__threads_shared ? 0 : 1;
}

warn("This class (", __PACKAGE__, ") is deprecated!");

sub new {
    my $class = shift;
    unshift @_, 'Handler' unless @_ != 1;
    my %p = @_;
    return bless \%p, $class;
}

sub generate {
    my $self = shift;
    my ($node) = @_;

    my $document = { Parent => undef };
    $self->{Handler}->start_document($document);

    process_node($self->{Handler}, $node);

    $self->{Handler}->end_document($document);
}

sub process_node {
    my ($handler, $node) = @_;

    my $node_type = $node->getType();
    if ($node_type == XML_COMMENT_NODE) {
        $handler->comment( { Data => $node->getData } );
    }
    elsif ($node_type == XML_TEXT_NODE || $node_type == XML_CDATA_SECTION_NODE) {
        # warn($node->getData . "\n");
        $handler->characters( { Data => $node->getData } );
    }
    elsif ($node_type == XML_ELEMENT_NODE) {
        # warn("<" . $node->getName . ">\n");
        process_element($handler, $node);
        # warn("</" . $node->getName . ">\n");
    }
    elsif ($node_type == XML_ENTITY_REF_NODE) {
        foreach my $kid ($node->getChildnodes) {
            # warn("child of entity ref: " . $kid->getType() . " called: " . $kid->getName . "\n");
            process_node($handler, $kid);
        }
    }
    elsif ($node_type == XML_DOCUMENT_NODE) {
        # just get root element. Ignore other cruft.
        foreach my $kid ($node->getChildnodes) {
            if ($kid->getType() == XML_ELEMENT_NODE) {
                process_element($handler, $kid);
                last;
            }
        }
    }
    else {
        warn("unknown node type: $node_type");
    }
}

sub process_element {
    my ($handler, $element) = @_;

    my @attr;

    foreach my $attr ($element->getAttributes) {
        push @attr, XML::LibXML::SAX::AttributeNode->new(
            Name => $attr->getName,
            Value => $attr->getData,
            NamespaceURI => $attr->getNamespaceURI,
            Prefix => $attr->getPrefix,
            LocalName => $attr->getLocalName,
            );
    }

    my $node = {
        Name => $element->getName,
        Attributes => { map { $_->{Name} => $_ } @attr },
        NamespaceURI => $element->getNamespaceURI,
        Prefix => $element->getPrefix,
        LocalName => $element->getLocalName,
    };

    $handler->start_element($node);

    foreach my $child ($element->getChildnodes) {
        process_node($handler, $child);
    }

    $handler->end_element($node);
}

package XML::LibXML::SAX::AttributeNode;

use overload '""' => "stringify";

sub new {
    my $class = shift;
    my %p = @_;
    return bless \%p, $class;
}

sub stringify {
    my $self = shift;
    return $self->{Value};
}

1;

__END__

=head1 NAME

XML::LibXML::SAX::Generator - Generate SAX events from a LibXML tree

=head1 SYNOPSIS

  my $handler = MySAXHandler->new();
  my $generator = XML::LibXML::SAX::Generator->new(Handler => $handler);
  my $dom = XML::LibXML->new->parse_file("foo.xml");

  $generator->generate($dom);

=head1 DESCRIPTION

THIS CLASS IS DEPRECATED! Use XML::LibXML::SAX::Parser instead!

This helper class allows you to generate SAX events from any XML::LibXML
node, and all it's sub-nodes. This basically gives you interop from
XML::LibXML to other modules that may implement SAX.

It uses SAX2 style, but should be compatible with anything SAX1, by use
of stringification overloading.

There is nothing to really know about, beyond the synopsis above, and
a general knowledge of how to use SAX, which is beyond the scope here.

=cut
PK     N\V      LibXML/PI.podnu 6$        =head1 NAME

XML::LibXML::PI - XML::LibXML Processing Instructions

=head1 SYNOPSIS



  use XML::LibXML;
  # Only methods specific to Processing Instruction nodes are listed here,
  # see the XML::LibXML::Node manpage for other methods

  $pinode->setData( $data_string );
  $pinode->setData( name=>string_value [...] );

=head1 DESCRIPTION

Processing instructions are implemented with XML::LibXML with read and write
access. The PI data is the PI without the PI target (as specified in XML 1.0
[17]) as a string. This string can be accessed with getData as implemented in L<<<<<< XML::LibXML::Node >>>>>>.

The write access is aware about the fact, that many processing instructions
have attribute like data. Therefore setData() provides besides the DOM spec
conform Interface to pass a set of named parameter. So the code segment



  my $pi = $dom->createProcessingInstruction("abc");
  $pi->setData(foo=>'bar', foobar=>'foobar');
  $dom->appendChild( $pi );

will result the following PI in the DOM:



  <?abc foo="bar" foobar="foobar"?>

Which is how it is specified in the DOM specification. This three step
interface creates temporary a node in perl space. This can be avoided while
using the insertProcessingInstruction() method. Instead of the three calls
described above, the call



  $dom->insertProcessingInstruction("abc",'foo="bar" foobar="foobar"');

will have the same result as above.

L<<<<<< XML::LibXML::PI >>>>>>'s implementation of setData() documented below differs a bit from the standard
version as available in L<<<<<< XML::LibXML::Node >>>>>>:

=over 4

=item setData

  $pinode->setData( $data_string );
  $pinode->setData( name=>string_value [...] );

This method allows one to change the content data of a PI. Additionally to the
interface specified for DOM Level2, the method provides a named parameter
interface to set the data. This parameter list is converted into a string
before it is appended to the PI.



=back

=head1 AUTHORS

Matt Sergeant,
Christian Glahn,
Petr Pajas


=head1 VERSION

2.0210

=head1 COPYRIGHT

2001-2007, AxKit.com Ltd.

2002-2006, Christian Glahn.

2006-2009, Petr Pajas.

=cut


=head1 LICENSE

This program is free software; you can redistribute it and/or modify it under
the same terms as Perl itself.

PK     N\      LibXML/Attr.podnu 6$        =head1 NAME

XML::LibXML::Attr - XML::LibXML Attribute Class

=head1 SYNOPSIS



  use XML::LibXML;
  # Only methods specific to Attribute nodes are listed here,
  # see the XML::LibXML::Node manpage for other methods

  $attr = XML::LibXML::Attr->new($name [,$value]);
  $string = $attr->getValue();
  $string = $attr->value;
  $attr->setValue( $string );
  $node = $attr->getOwnerElement();
  $attr->setNamespace($nsURI, $prefix);
  $bool = $attr->isId;
  $string = $attr->serializeContent;

=head1 DESCRIPTION

This is the interface to handle Attributes like ordinary nodes. The naming of
the class relies on the W3C DOM documentation.


=head1 METHODS

The class inherits from L<<<<<< XML::LibXML::Node >>>>>>. The documentation for Inherited methods is not listed here.

Many functions listed here are extensively documented in the DOM Level 3 specification (L<<<<<< http://www.w3.org/TR/DOM-Level-3-Core/ >>>>>>). Please refer to the specification for extensive documentation.

=over 4

=item new

  $attr = XML::LibXML::Attr->new($name [,$value]);

Class constructor. If you need to work with ISO encoded strings, you should I<<<<<< always >>>>>> use the C<<<<<< createAttribute >>>>>> of L<<<<<< XML::LibXML::Document >>>>>>.


=item getValue

  $string = $attr->getValue();

Returns the value stored for the attribute. If undef is returned, the attribute
has no value, which is different of being C<<<<<< not specified >>>>>>.


=item value

  $string = $attr->value;

Alias for I<<<<<< getValue() >>>>>>


=item setValue

  $attr->setValue( $string );

This is needed to set a new attribute value. If ISO encoded strings are passed
as parameter, the node has to be bound to a document, otherwise the encoding
might be done incorrectly.


=item getOwnerElement

  $node = $attr->getOwnerElement();

returns the node the attribute belongs to. If the attribute is not bound to a
node, undef will be returned. Overwriting the underlying implementation, the I<<<<<< parentNode >>>>>> function will return undef, instead of the owner element.


=item setNamespace

  $attr->setNamespace($nsURI, $prefix);

This function tries to bound the attribute to a given namespace. If C<<<<<< $nsURI >>>>>> is undefined or empty, the function discards any previous association of the
attribute with a namespace. If the namespace was not previously declared in the
context of the attribute, this function will fail. In this case you may wish to
call setNamespace() on the ownerElement. If the namespace URI is non-empty and
declared in the context of the attribute, but only with a different (non-empty)
prefix, then the attribute is still bound to the namespace but gets a different
prefix than C<<<<<< $prefix >>>>>>. The function also fails if the prefix is empty but the namespace URI is not
(because unprefixed attributes should by definition belong to no namespace).
This function returns 1 on success, 0 otherwise.


=item isId

  $bool = $attr->isId;

Determine whether an attribute is of type ID. For documents with a DTD, this
information is only available if DTD loading/validation has been requested. For
HTML documents parsed with the HTML parser ID detection is done automatically.
In XML documents, all "xml:id" attributes are considered to be of type ID.


=item serializeContent($docencoding)

  $string = $attr->serializeContent;

This function is not part of DOM API. It returns attribute content in the form
in which it serializes into XML, that is with all meta-characters properly
quoted and with raw entity references (except for entities expanded during
parse time). Setting the optional $docencoding flag to 1 enforces document
encoding for the output string (which is then passed to Perl as a byte string).
Otherwise the string is passed to Perl as (UTF-8 encoded) characters.



=back

=head1 AUTHORS

Matt Sergeant,
Christian Glahn,
Petr Pajas


=head1 VERSION

2.0210

=head1 COPYRIGHT

2001-2007, AxKit.com Ltd.

2002-2006, Christian Glahn.

2006-2009, Petr Pajas.

=cut


=head1 LICENSE

This program is free software; you can redistribute it and/or modify it under
the same terms as Perl itself.

PK     N\/r5  5    LibXML/Element.podnu 6$        =head1 NAME

XML::LibXML::Element - XML::LibXML Class for Element Nodes

=head1 SYNOPSIS



  use XML::LibXML;
  # Only methods specific to Element nodes are listed here,
  # see the XML::LibXML::Node manpage for other methods

  $node = XML::LibXML::Element->new( $name );
  $node->setAttribute( $aname, $avalue );
  $node->setAttributeNS( $nsURI, $aname, $avalue );
  $avalue = $node->getAttribute( $aname );
  $avalue = $node->getAttributeNS( $nsURI, $aname );
  $attrnode = $node->getAttributeNode( $aname );
  $attrnode = $node->getAttributeNodeNS( $namespaceURI, $aname );
  $node->removeAttribute( $aname );
  $node->removeAttributeNS( $nsURI, $aname );
  $boolean = $node->hasAttribute( $aname );
  $boolean = $node->hasAttributeNS( $nsURI, $aname );
  @nodes = $node->getChildrenByTagName($tagname);
  @nodes = $node->getChildrenByTagNameNS($nsURI,$tagname);
  @nodes = $node->getChildrenByLocalName($localname);
  @nodes = $node->getElementsByTagName($tagname);
  @nodes = $node->getElementsByTagNameNS($nsURI,$localname);
  @nodes = $node->getElementsByLocalName($localname);
  $node->appendWellBalancedChunk( $chunk );
  $node->appendText( $PCDATA );
  $node->appendTextNode( $PCDATA );
  $node->appendTextChild( $childname , $PCDATA );
  $node->setNamespace( $nsURI , $nsPrefix, $activate );
  $node->setNamespaceDeclURI( $nsPrefix, $newURI );
  $node->setNamespaceDeclPrefix( $oldPrefix, $newPrefix );

=head1 METHODS

The class inherits from L<<<<<< XML::LibXML::Node >>>>>>. The documentation for Inherited methods is not listed here.

Many functions listed here are extensively documented in the DOM Level 3 specification (L<<<<<< http://www.w3.org/TR/DOM-Level-3-Core/ >>>>>>). Please refer to the specification for extensive documentation.

=over 4

=item new

  $node = XML::LibXML::Element->new( $name );

This function creates a new node unbound to any DOM.


=item setAttribute

  $node->setAttribute( $aname, $avalue );

This method sets or replaces the node's attribute C<<<<<< $aname >>>>>> to the value C<<<<<< $avalue >>>>>>


=item setAttributeNS

  $node->setAttributeNS( $nsURI, $aname, $avalue );

Namespace-aware version of C<<<<<< setAttribute >>>>>>, where C<<<<<< $nsURI >>>>>> is a namespace URI, C<<<<<< $aname >>>>>> is a qualified name, and C<<<<<< $avalue >>>>>> is the value. The namespace URI may be null (empty or undefined) in order to
create an attribute which has no namespace.

The current implementation differs from DOM in the following aspects

If an attribute with the same local name and namespace URI already exists on
the element, but its prefix differs from the prefix of C<<<<<< $aname >>>>>>, then this function is supposed to change the prefix (regardless of namespace
declarations and possible collisions). However, the current implementation does
rather the opposite. If a prefix is declared for the namespace URI in the scope
of the attribute, then the already declared prefix is used, disregarding the
prefix specified in C<<<<<< $aname >>>>>>. If no prefix is declared for the namespace, the function tries to declare the
prefix specified in C<<<<<< $aname >>>>>> and dies if the prefix is already taken by some other namespace.

According to DOM Level 2 specification, this method can also be used to create
or modify special attributes used for declaring XML namespaces (which belong to
the namespace "http://www.w3.org/2000/xmlns/" and have prefix or name "xmlns").
This should work since version 1.61, but again the implementation differs from
DOM specification in the following: if a declaration of the same namespace
prefix already exists on the element, then changing its value via this method
automatically changes the namespace of all elements and attributes in its
scope. This is because in libxml2 the namespace URI of an element is not static
but is computed from a pointer to a namespace declaration attribute.


=item getAttribute

  $avalue = $node->getAttribute( $aname );

If C<<<<<< $node >>>>>> has an attribute with the name C<<<<<< $aname >>>>>>, the value of this attribute will get returned.


=item getAttributeNS

  $avalue = $node->getAttributeNS( $nsURI, $aname );

Retrieves an attribute value by local name and namespace URI.


=item getAttributeNode

  $attrnode = $node->getAttributeNode( $aname );

Retrieve an attribute node by name. If no attribute with a given name exists, C<<<<<< undef >>>>>> is returned.


=item getAttributeNodeNS

  $attrnode = $node->getAttributeNodeNS( $namespaceURI, $aname );

Retrieves an attribute node by local name and namespace URI. If no attribute
with a given localname and namespace exists, C<<<<<< undef >>>>>> is returned.


=item removeAttribute

  $node->removeAttribute( $aname );

The method removes the attribute C<<<<<< $aname >>>>>> from the node's attribute list, if the attribute can be found.


=item removeAttributeNS

  $node->removeAttributeNS( $nsURI, $aname );

Namespace version of C<<<<<< removeAttribute >>>>>>


=item hasAttribute

  $boolean = $node->hasAttribute( $aname );

This function tests if the named attribute is set for the node. If the
attribute is specified, TRUE (1) will be returned, otherwise the return value
is FALSE (0).


=item hasAttributeNS

  $boolean = $node->hasAttributeNS( $nsURI, $aname );

namespace version of C<<<<<< hasAttribute >>>>>>


=item getChildrenByTagName

  @nodes = $node->getChildrenByTagName($tagname);

The function gives direct access to all child elements of the current node with
a given tagname, where tagname is a qualified name, that is, in case of
namespace usage it may consist of a prefix and local name. This function makes
things a lot easier if one needs to handle big data sets. A special tagname '*'
can be used to match any name.

If this function is called in SCALAR context, it returns the number of elements
found.


=item getChildrenByTagNameNS

  @nodes = $node->getChildrenByTagNameNS($nsURI,$tagname);

Namespace version of C<<<<<< getChildrenByTagName >>>>>>. A special nsURI '*' matches any namespace URI, in which case the function
behaves just like C<<<<<< getChildrenByLocalName >>>>>>.

If this function is called in SCALAR context, it returns the number of elements
found.


=item getChildrenByLocalName

  @nodes = $node->getChildrenByLocalName($localname);

The function gives direct access to all child elements of the current node with
a given local name. It makes things a lot easier if one needs to handle big
data sets. A special C<<<<<< localname >>>>>> '*' can be used to match any local name.

If this function is called in SCALAR context, it returns the number of elements
found.


=item getElementsByTagName

  @nodes = $node->getElementsByTagName($tagname);

This function is part of the spec. It fetches all descendants of a node with a
given tagname, where C<<<<<< tagname >>>>>> is a qualified name, that is, in case of namespace usage it may consist of a
prefix and local name. A special C<<<<<< tagname >>>>>> '*' can be used to match any tag name.

In SCALAR context this function returns an L<<<<<< XML::LibXML::NodeList >>>>>> object.


=item getElementsByTagNameNS

  @nodes = $node->getElementsByTagNameNS($nsURI,$localname);

Namespace version of C<<<<<< getElementsByTagName >>>>>> as found in the DOM spec. A special C<<<<<< localname >>>>>> '*' can be used to match any local name and C<<<<<< nsURI >>>>>> '*' can be used to match any namespace URI.

In SCALAR context this function returns an L<<<<<< XML::LibXML::NodeList >>>>>> object.


=item getElementsByLocalName

  @nodes = $node->getElementsByLocalName($localname);

This function is not found in the DOM specification. It is a mix of
getElementsByTagName and getElementsByTagNameNS. It will fetch all tags
matching the given local-name. This allows one to select tags with the same
local name across namespace borders.

In SCALAR context this function returns an L<<<<<< XML::LibXML::NodeList >>>>>> object.


=item appendWellBalancedChunk

  $node->appendWellBalancedChunk( $chunk );

Sometimes it is necessary to append a string coded XML Tree to a node. I<<<<<< appendWellBalancedChunk >>>>>> will do the trick for you. But this is only done if the String is C<<<<<< well-balanced >>>>>>.

I<<<<<< Note that appendWellBalancedChunk() is only left for compatibility reasons >>>>>>. Implicitly it uses



  my $fragment = $parser->parse_balanced_chunk( $chunk );
   $node->appendChild( $fragment );

This form is more explicit and makes it easier to control the flow of a script.


=item appendText

  $node->appendText( $PCDATA );

alias for appendTextNode().


=item appendTextNode

  $node->appendTextNode( $PCDATA );

This wrapper function lets you add a string directly to an element node.


=item appendTextChild

  $node->appendTextChild( $childname , $PCDATA );

Somewhat similar with C<<<<<< appendTextNode >>>>>>: It lets you set an Element, that contains only a C<<<<<< text node >>>>>> directly by specifying the name and the text content.


=item setNamespace

  $node->setNamespace( $nsURI , $nsPrefix, $activate );

setNamespace() allows one to apply a namespace to an element. The function
takes three parameters: 1. the namespace URI, which is required and the two
optional values prefix, which is the namespace prefix, as it should be used in
child elements or attributes as well as the additional activate parameter. If
prefix is not given, undefined or empty, this function tries to create a
declaration of the default namespace.

The activate parameter is most useful: If this parameter is set to FALSE (0), a
new namespace declaration is simply added to the element while the element's
namespace itself is not altered. Nevertheless, activate is set to TRUE (1) on
default. In this case the namespace is used as the node's effective namespace.
This means the namespace prefix is added to the node name and if there was a
namespace already active for the node, it will be replaced (but its declaration
is not removed from the document). A new namespace declaration is only created
if necessary (that is, if the element is already in the scope of a namespace
declaration associating the prefix with the namespace URI, then this
declaration is reused).

The following example may clarify this:



  my $e1 = $doc->createElement("bar");
   $e1->setNamespace("http://foobar.org", "foo")

results



  <foo:bar xmlns:foo="http://foobar.org"/>

while



  my $e2 = $doc->createElement("bar");
   $e2->setNamespace("http://foobar.org", "foo",0)

results only



  <bar xmlns:foo="http://foobar.org"/>

By using $activate == 0 it is possible to create multiple namespace
declarations on a single element.

The function fails if it is required to create a declaration associating the
prefix with the namespace URI but the element already carries a declaration
with the same prefix but different namespace URI.


=item setNamespaceDeclURI

  $node->setNamespaceDeclURI( $nsPrefix, $newURI );

EXPERIMENTAL IN 1.61 !

This function manipulates directly with an existing namespace declaration on an
element. It takes two parameters: the prefix by which it looks up the namespace
declaration and a new namespace URI which replaces its previous value.

It returns 1 if the namespace declaration was found and changed, 0 otherwise.

All elements and attributes (even those previously unbound from the document)
for which the namespace declaration determines their namespace belong to the
new namespace after the change.

If the new URI is undef or empty, the nodes have no namespace and no prefix
after the change. Namespace declarations once nulled in this way do not further
appear in the serialized output (but do remain in the document for internal
integrity of libxml2 data structures).

This function is NOT part of any DOM API.


=item setNamespaceDeclPrefix

  $node->setNamespaceDeclPrefix( $oldPrefix, $newPrefix );

EXPERIMENTAL IN 1.61 !

This function manipulates directly with an existing namespace declaration on an
element. It takes two parameters: the old prefix by which it looks up the
namespace declaration and a new prefix which is to replace the old one.

The function dies with an error if the element is in the scope of another
declaration whose prefix equals to the new prefix, or if the change should
result in a declaration with a non-empty prefix but empty namespace URI.
Otherwise, it returns 1 if the namespace declaration was found and changed and
0 if not found.

All elements and attributes (even those previously unbound from the document)
for which the namespace declaration determines their namespace change their
prefix to the new value.

If the new prefix is undef or empty, the namespace declaration becomes a
declaration of a default namespace. The corresponding nodes drop their
namespace prefix (but remain in the, now default, namespace). In this case the
function fails, if the containing element is in the scope of another default
namespace declaration.

This function is NOT part of any DOM API.



=back


=head1 OVERLOADING

XML::LibXML::Element overloads hash dereferencing to provide access to the
element's attributes. For non-namespaced attributes, the attribute name is the
hash key, and the attribute value is the hash value. For namespaced attributes,
the hash key is qualified with the namespace URI, using Clark notation.

Perl's "tied hash" feature is used, which means that the hash gives you
read-write access to the element's attributes. For more information, see L<<<<<< XML::LibXML::AttributeHash >>>>>>

=head1 AUTHORS

Matt Sergeant,
Christian Glahn,
Petr Pajas


=head1 VERSION

2.0210

=head1 COPYRIGHT

2001-2007, AxKit.com Ltd.

2002-2006, Christian Glahn.

2006-2009, Petr Pajas.

=cut


=head1 LICENSE

This program is free software; you can redistribute it and/or modify it under
the same terms as Perl itself.

PK     N\8B      LibXML/Schema.podnu 6$        =head1 NAME

XML::LibXML::Schema - XML Schema Validation

=head1 SYNOPSIS



  use XML::LibXML;
  $doc = XML::LibXML->new->parse_file($url);

  $xmlschema = XML::LibXML::Schema->new( location => $filename_or_url, no_network => 1 );
  $xmlschema = XML::LibXML::Schema->new( string => $xmlschemastring, no_network => 1 );
  eval { $xmlschema->validate( $doc ); };

=head1 DESCRIPTION

The XML::LibXML::Schema class is a tiny frontend to libxml2's XML Schema
implementation. Currently it supports only schema parsing and document
validation. As of 2.6.32, libxml2 only supports decimal types up to 24 digits
(the standard requires at least 18).


=head1 METHODS

=over 4

=item new

  $xmlschema = XML::LibXML::Schema->new( location => $filename_or_url, no_network => 1 );
  $xmlschema = XML::LibXML::Schema->new( string => $xmlschemastring, no_network => 1 );

The constructor of XML::LibXML::Schema needs to be called with list of
parameters. At least location or string parameter is required to specify source
of schema. Optional parameter no_network set to 1 cause that parser would not
access network and optional parameter recover set 1 cause that parser would not
call die() on errors.

It is important, that each schema only have a single source.

The location parameter allows one to parse a schema from the filesystem or a
(non-HTTPS) URL.

The string parameter will parse the schema from the given XML string.

Note that the constructor will die() if the schema does not meed the
constraints of the XML Schema specification.


=item validate

  eval { $xmlschema->validate( $doc ); };

This function allows one to validate a (parsed) document against the given XML
Schema. The argument of this function should be a L<<<<<< XML::LibXML::Document >>>>>> object. If this function succeeds, it will return 0, otherwise it will die()
and report the errors found. Because of this validate() should be always
evaluated.



=back

=head1 AUTHORS

Matt Sergeant,
Christian Glahn,
Petr Pajas


=head1 VERSION

2.0210

=head1 COPYRIGHT

2001-2007, AxKit.com Ltd.

2002-2006, Christian Glahn.

2006-2009, Petr Pajas.

=cut


=head1 LICENSE

This program is free software; you can redistribute it and/or modify it under
the same terms as Perl itself.

PK     N\No&^&  ^&    LibXML/InputCallback.podnu 6$        =head1 NAME

XML::LibXML::InputCallback - XML::LibXML Class for Input Callbacks

=head1 SYNOPSIS



  use XML::LibXML;


=head1 DESCRIPTION

You may get unexpected results if you are trying to load external documents
during libxml2 parsing if the location of the resource is not a HTTP, FTP or
relative location but a absolute path for example. To get around this
limitation, you may add your own input handler to open, read and close
particular types of locations or URI classes. Using this input callback
handlers, you can handle your own custom URI schemes for example.

The input callbacks are used whenever XML::LibXML has to get something other
than externally parsed entities from somewhere. They are implemented using a
callback stack on the Perl layer in analogy to libxml2's native callback stack.

The XML::LibXML::InputCallback class transparently registers the input
callbacks for the libxml2's parser processes.


=head2 How does XML::LibXML::InputCallback work?

The libxml2 library offers a callback implementation as global functions only.
To work-around the troubles resulting in having only global callbacks - for
example, if the same global callback stack is manipulated by different
applications running together in a single Apache Web-server environment -,
XML::LibXML::InputCallback comes with a object-oriented and a function-oriented
part.

Using the function-oriented part the global callback stack of libxml2 can be
manipulated. Those functions can be used as interface to the callbacks on the
C- and XS Layer. At the object-oriented part, operations for working with the
"pseudo-localized" callback stack are implemented. Currently, you can register
and de-register callbacks on the Perl layer and initialize them on a per parser
basis.


=head3 Callback Groups

The libxml2 input callbacks come in groups. One group contains a URI matcher (I<<<<<< match >>>>>>), a data stream constructor (I<<<<<< open >>>>>>), a data stream reader (I<<<<<< read >>>>>>), and a data stream destructor (I<<<<<< close >>>>>>). The callbacks can be manipulated on a per group basis only.


=head3 The Parser Process

The parser process works on an XML data stream, along which, links to other
resources can be embedded. This can be links to external DTDs or XIncludes for
example. Those resources are identified by URIs. The callback implementation of
libxml2 assumes that one callback group can handle a certain amount of URIs and
a certain URI scheme. Per default, callback handlers for I<<<<<< file://* >>>>>>, I<<<<<< file:://*.gz >>>>>>, I<<<<<< http://* >>>>>> and I<<<<<< ftp://* >>>>>> are registered.

Callback groups in the callback stack are processed from top to bottom, meaning
that callback groups registered later will be processed before the earlier
registered ones.

While parsing the data stream, the libxml2 parser checks if a registered
callback group will handle a URI - if they will not, the URI will be
interpreted as I<<<<<< file://URI >>>>>>. To handle a URI, the I<<<<<< match >>>>>> callback will have to return '1'. If that happens, the handling of the URI will
be passed to that callback group. Next, the URI will be passed to the I<<<<<< open >>>>>> callback, which should return a I<<<<<< reference >>>>>> to the data stream if it successfully opened the file, '0' otherwise. If
opening the stream was successful, the I<<<<<< read >>>>>> callback will be called repeatedly until it returns an empty string. After the
read callback, the I<<<<<< close >>>>>> callback will be called to close the stream.


=head3 Organisation of callback groups in XML::LibXML::InputCallback

Callback groups are implemented as a stack (Array), each entry holds a
reference to an array of the callbacks. For the libxml2 library, the
XML::LibXML::InputCallback callback implementation appears as one single
callback group. The Perl implementation however allows one to manage different
callback stacks on a per libxml2-parser basis.


=head2 Using XML::LibXML::InputCallback

After object instantiation using the parameter-less constructor, you can
register callback groups.



  my $input_callbacks = XML::LibXML::InputCallback->new();
  $input_callbacks->register_callbacks([ $match_cb1, $open_cb1,
                                         $read_cb1, $close_cb1 ] );
  $input_callbacks->register_callbacks([ $match_cb2, $open_cb2,
                                         $read_cb2, $close_cb2 ] );
  $input_callbacks->register_callbacks( [ $match_cb3, $open_cb3,
                                          $read_cb3, $close_cb3 ] );

  $parser->input_callbacks( $input_callbacks );
  $parser->parse_file( $some_xml_file );


=head2 What about the old callback system prior to XML::LibXML::InputCallback?

In XML::LibXML versions prior to 1.59 - i.e. without the
XML::LibXML::InputCallback module - you could define your callbacks either
using globally or locally. You still can do that using
XML::LibXML::InputCallback, and in addition to that you can define the
callbacks on a per parser basis!

If you use the old callback interface through global callbacks,
XML::LibXML::InputCallback will treat them with a lower priority as the ones
registered using the new interface. The global callbacks will not override the
callback groups registered using the new interface. Local callbacks are
attached to a specific parser instance, therefore they are treated with highest
priority. If the I<<<<<< match >>>>>> callback of the callback group registered as local variable is identical to one
of the callback groups registered using the new interface, that callback group
will be replaced.

Users of the old callback implementation whose I<<<<<< open >>>>>> callback returned a plain string, will have to adapt their code to return a
reference to that string after upgrading to version >= 1.59. The new callback
system can only deal with the I<<<<<< open >>>>>> callback returning a reference!


=head1 INTERFACE DESCRIPTION


=head2 Global Variables

=over 4

=item $_CUR_CB

Stores the current callback and can be used as shortcut to access the callback
stack.


=item @_GLOBAL_CALLBACKS

Stores all callback groups for the current parser process.


=item @_CB_STACK

Stores the currently used callback group. Used to prevent parser errors when
dealing with nested XML data.



=back


=head2 Global Callbacks

=over 4

=item _callback_match

Implements the interface for the I<<<<<< match >>>>>> callback at C-level and for the selection of the callback group from the
callbacks defined at the Perl-level.


=item _callback_open

Forwards the I<<<<<< open >>>>>> callback from libxml2 to the corresponding callback function at the Perl-level.


=item _callback_read

Forwards the read request to the corresponding callback function at the
Perl-level and returns the result to libxml2.


=item _callback_close

Forwards the I<<<<<< close >>>>>> callback from libxml2 to the corresponding callback function at the
Perl-level..



=back


=head2 Class methods

=over 4

=item new()

A simple constructor.


=item register_callbacks( [ $match_cb, $open_cb, $read_cb, $close_cb ])

The four callbacks I<<<<<< have >>>>>> to be given as array reference in the above order I<<<<<< match >>>>>>, I<<<<<< open >>>>>>, I<<<<<< read >>>>>>, I<<<<<< close >>>>>>!


=item unregister_callbacks( [ $match_cb, $open_cb, $read_cb, $close_cb ])

With no arguments given, C<<<<<< unregister_callbacks() >>>>>> will delete the last registered callback group from the stack. If four
callbacks are passed as array reference, the callback group to unregister will
be identified by the I<<<<<< match >>>>>> callback and deleted from the callback stack. Note that if several identical I<<<<<< match >>>>>> callbacks are defined in different callback groups, ALL of them will be deleted
from the stack.


=item init_callbacks( $parser )

Initializes the callback system for the provided parser before starting a
parsing process.


=item cleanup_callbacks()

Resets global variables and the libxml2 callback stack.


=item lib_init_callbacks()

Used internally for callback registration at C-level.


=item lib_cleanup_callbacks()

Used internally for callback resetting at the C-level.



=back




=head1 EXAMPLE CALLBACKS

The following example is a purely fictitious example that uses a
MyScheme::Handler object that responds to methods similar to an IO::Handle.



  # Define the four callback functions
  sub match_uri {
      my $uri = shift;
      return $uri =~ /^myscheme:/; # trigger our callback group at a 'myscheme' URIs
  }

  sub open_uri {
      my $uri = shift;
      my $handler = MyScheme::Handler->new($uri);
      return $handler;
  }

  # The returned $buffer will be parsed by the libxml2 parser
  sub read_uri {
      my $handler = shift;
      my $length = shift;
      my $buffer;
      read($handler, $buffer, $length);
      return $buffer; # $buffer will be an empty string '' if read() is done
  }

  # Close the handle associated with the resource.
  sub close_uri {
      my $handler = shift;
      close($handler);
  }

  # Register them with a instance of XML::LibXML::InputCallback
  my $input_callbacks = XML::LibXML::InputCallback->new();
  $input_callbacks->register_callbacks([ \&match_uri, \&open_uri,
                                         \&read_uri, \&close_uri ] );

  # Register the callback group at a parser instance
  $parser->input_callbacks( $input_callbacks );

  # $some_xml_file will be parsed using our callbacks
  $parser->parse_file( $some_xml_file );

=head1 AUTHORS

Matt Sergeant,
Christian Glahn,
Petr Pajas


=head1 VERSION

2.0210

=head1 COPYRIGHT

2001-2007, AxKit.com Ltd.

2002-2006, Christian Glahn.

2006-2009, Petr Pajas.

=cut


=head1 LICENSE

This program is free software; you can redistribute it and/or modify it under
the same terms as Perl itself.

PK     N\YT  YT    LibXML/Document.podnu 6$        =head1 NAME

XML::LibXML::Document - XML::LibXML DOM Document Class

=head1 SYNOPSIS



  use XML::LibXML;
  # Only methods specific to Document nodes are listed here,
  # see the XML::LibXML::Node manpage for other methods

  $dom = XML::LibXML::Document->new( $version, $encoding );
  $dom = XML::LibXML::Document->createDocument( $version, $encoding );
  $strURI = $doc->URI();
  $doc->setURI($strURI);
  $strEncoding = $doc->encoding();
  $strEncoding = $doc->actualEncoding();
  $doc->setEncoding($new_encoding);
  $strVersion = $doc->version();
  $doc->standalone
  $doc->setStandalone($numvalue);
  my $compression = $doc->compression;
  $doc->setCompression($ziplevel);
  $docstring = $dom->toString($format);
  $c14nstr = $doc->toStringC14N($comment_flag, $xpath [, $xpath_context ]);
  $ec14nstr = $doc->toStringEC14N($comment_flag, $xpath [, $xpath_context ], $inclusive_prefix_list);
  $str = $doc->serialize($format);
  $state = $doc->toFile($filename, $format);
  $state = $doc->toFH($fh, $format);
  $str = $document->toStringHTML();
  $str = $document->serialize_html();
  $bool = $dom->is_valid();
  $dom->validate();
  $root = $dom->documentElement();
  $dom->setDocumentElement( $root );
  $element = $dom->createElement( $nodename );
  $element = $dom->createElementNS( $namespaceURI, $nodename );
  $text = $dom->createTextNode( $content_text );
  $comment = $dom->createComment( $comment_text );
  $attrnode = $doc->createAttribute($name [,$value]);
  $attrnode = $doc->createAttributeNS( namespaceURI, $name [,$value] );
  $fragment = $doc->createDocumentFragment();
  $cdata = $dom->createCDATASection( $cdata_content );
  my $pi = $doc->createProcessingInstruction( $target, $data );
  my $entref = $doc->createEntityReference($refname);
  $dtd = $document->createInternalSubset( $rootnode, $public, $system);
  $dtd = $document->createExternalSubset( $rootnode_name, $publicId, $systemId);
  $document->importNode( $node );
  $document->adoptNode( $node );
  my $dtd = $doc->externalSubset;
  my $dtd = $doc->internalSubset;
  $doc->setExternalSubset($dtd);
  $doc->setInternalSubset($dtd);
  my $dtd = $doc->removeExternalSubset();
  my $dtd = $doc->removeInternalSubset();
  my @nodelist = $doc->getElementsByTagName($tagname);
  my @nodelist = $doc->getElementsByTagNameNS($nsURI,$tagname);
  my @nodelist = $doc->getElementsByLocalName($localname);
  my $node = $doc->getElementById($id);
  $dom->indexElements();

=head1 DESCRIPTION

The Document Class is in most cases the result of a parsing process. But
sometimes it is necessary to create a Document from scratch. The DOM Document
Class provides functions that conform to the DOM Core naming style.

It inherits all functions from L<<<<<< XML::LibXML::Node >>>>>> as specified in the DOM specification. This enables access to the nodes besides
the root element on document level - a C<<<<<< DTD >>>>>> for example. The support for these nodes is limited at the moment.

While generally nodes are bound to a document in the DOM concept it is
suggested that one should always create a node not bound to any document. There
is no need of really including the node to the document, but once the node is
bound to a document, it is quite safe that all strings have the correct
encoding. If an unbound text node with an ISO encoded string is created (e.g.
with $CLASS->new()), the C<<<<<< toString >>>>>> function may not return the expected result.

To prevent such problems, it is recommended to pass all data to XML::LibXML
methods as character strings (i.e. UTF-8 encoded, with the UTF8 flag on).


=head1 METHODS

Many functions listed here are extensively documented in the DOM Level 3 specification (L<<<<<< http://www.w3.org/TR/DOM-Level-3-Core/ >>>>>>). Please refer to the specification for extensive documentation.

=over 4

=item new

  $dom = XML::LibXML::Document->new( $version, $encoding );

alias for createDocument()


=item createDocument

  $dom = XML::LibXML::Document->createDocument( $version, $encoding );

The constructor for the document class. As Parameter it takes the version
string and (optionally) the encoding string. Simply calling I<<<<<< createDocument >>>>>>() will create the document:



  <?xml version="your version" encoding="your encoding"?>

Both parameter are optional. The default value for I<<<<<< $version >>>>>> is C<<<<<< 1.0 >>>>>>, of course. If the I<<<<<< $encoding >>>>>> parameter is not set, the encoding will be left unset, which means UTF-8 is
implied.

The call of I<<<<<< createDocument >>>>>>() without any parameter will result the following code:



  <?xml version="1.0"?>

Alternatively one can call this constructor directly from the XML::LibXML class
level, to avoid some typing. This will not have any effect on the class
instance, which is always XML::LibXML::Document.



  my $document = XML::LibXML->createDocument( "1.0", "UTF-8" );

is therefore a shortcut for



  my $document = XML::LibXML::Document->createDocument( "1.0", "UTF-8" );


=item URI

  $strURI = $doc->URI();

Returns the URI (or filename) of the original document. For documents obtained
by parsing a string of a FH without using the URI parsing argument of the
corresponding C<<<<<< parse_* >>>>>> function, the result is a generated string unknown-XYZ where XYZ is some
number; for documents created with the constructor C<<<<<< new >>>>>>, the URI is undefined.

The value can be modified by calling C<<<<<< setURI >>>>>> method on the document node.


=item setURI

  $doc->setURI($strURI);

Sets the URI of the document reported by the method URI (see also the URI
argument to the various C<<<<<< parse_* >>>>>> functions).


=item encoding

  $strEncoding = $doc->encoding();

returns the encoding string of the document.



  my $doc = XML::LibXML->createDocument( "1.0", "ISO-8859-15" );
  print $doc->encoding; # prints ISO-8859-15


=item actualEncoding

  $strEncoding = $doc->actualEncoding();

returns the encoding in which the XML will be returned by $doc->toString().
This is usually the original encoding of the document as declared in the XML
declaration and returned by $doc->encoding. If the original encoding is not
known (e.g. if created in memory or parsed from a XML without a declared
encoding), 'UTF-8' is returned.



  my $doc = XML::LibXML->createDocument( "1.0", "ISO-8859-15" );
  print $doc->encoding; # prints ISO-8859-15


=item setEncoding

  $doc->setEncoding($new_encoding);

This method allows one to change the declaration of encoding in the XML
declaration of the document. The value also affects the encoding in which the
document is serialized to XML by $doc->toString(). Use setEncoding() to remove
the encoding declaration.


=item version

  $strVersion = $doc->version();

returns the version string of the document

I<<<<<< getVersion() >>>>>> is an alternative form of this function.


=item standalone

  $doc->standalone

This function returns the Numerical value of a documents XML declarations
standalone attribute. It returns I<<<<<< 1 >>>>>> if standalone="yes" was found, I<<<<<< 0 >>>>>> if standalone="no" was found and I<<<<<< -1 >>>>>> if standalone was not specified (default on creation).


=item setStandalone

  $doc->setStandalone($numvalue);

Through this method it is possible to alter the value of a documents standalone
attribute. Set it to I<<<<<< 1 >>>>>> to set standalone="yes", to I<<<<<< 0 >>>>>> to set standalone="no" or set it to I<<<<<< -1 >>>>>> to remove the standalone attribute from the XML declaration.


=item compression

  my $compression = $doc->compression;

libxml2 allows reading of documents directly from gzipped files. In this case
the compression variable is set to the compression level of that file (0-8). If
XML::LibXML parsed a different source or the file wasn't compressed, the
returned value will be I<<<<<< -1 >>>>>>.


=item setCompression

  $doc->setCompression($ziplevel);

If one intends to write the document directly to a file, it is possible to set
the compression level for a given document. This level can be in the range from
0 to 8. If XML::LibXML should not try to compress use I<<<<<< -1 >>>>>> (default).

Note that this feature will I<<<<<< only >>>>>> work if libxml2 is compiled with zlib support and toFile() is used for output.


=item toString

  $docstring = $dom->toString($format);

I<<<<<< toString >>>>>> is a DOM serializing function, so the DOM Tree is serialized into an XML
string, ready for output.

IMPORTANT: unlike toString for other nodes, on document nodes this function
returns the XML as a byte string in the original encoding of the document (see
the actualEncoding() method)! This means you can simply do:



  open my $out_fh, '>', $file;
  print {$out_fh} $doc->toString;

regardless of the actual encoding of the document. See the section on encodings
in L<<<<<< XML::LibXML >>>>>> for more details.

The optional I<<<<<< $format >>>>>> parameter sets the indenting of the output. This parameter is expected to be an C<<<<<< integer >>>>>> value, that specifies that indentation should be used. The format parameter can
have three different values if it is used:

If $format is 0, than the document is dumped as it was originally parsed

If $format is 1, libxml2 will add ignorable white spaces, so the nodes content
is easier to read. Existing text nodes will not be altered

If $format is 2 (or higher), libxml2 will act as $format == 1 but it add a
leading and a trailing line break to each text node.

libxml2 uses a hard-coded indentation of 2 space characters per indentation
level. This value can not be altered on run-time.


=item toStringC14N

  $c14nstr = $doc->toStringC14N($comment_flag, $xpath [, $xpath_context ]);

See the documentation in L<<<<<< XML::LibXML::Node >>>>>>.


=item toStringEC14N

  $ec14nstr = $doc->toStringEC14N($comment_flag, $xpath [, $xpath_context ], $inclusive_prefix_list);

See the documentation in L<<<<<< XML::LibXML::Node >>>>>>.


=item serialize

  $str = $doc->serialize($format);

An alias for toString(). This function was name added to be more consistent
with libxml2.


=item serialize_c14n

An alias for toStringC14N().


=item serialize_exc_c14n

An alias for toStringEC14N().


=item toFile

  $state = $doc->toFile($filename, $format);

This function is similar to toString(), but it writes the document directly
into a filesystem. This function is very useful, if one needs to store large
documents.

The format parameter has the same behaviour as in toString().


=item toFH

  $state = $doc->toFH($fh, $format);

This function is similar to toString(), but it writes the document directly to
a filehandle or a stream. A byte stream in the document encoding is passed to
the file handle. Do NOT apply any C<<<<<< :encoding(...) >>>>>> or C<<<<<< :utf8 >>>>>> PerlIO layer to the filehandle! See the section on encodings in L<<<<<< XML::LibXML >>>>>> for more details.

The format parameter has the same behaviour as in toString().


=item toStringHTML

  $str = $document->toStringHTML();

I<<<<<< toStringHTML >>>>>> serialize the tree to a byte string in the document encoding as HTML. With this
method indenting is automatic and managed by libxml2 internally. Note the
string must contain <meta http-equiv="Content-Type" content="text/html;
charset=utf-8"> (rather than the newer <meta charset="utf-8">), else all
non-ASCII will become entities.


=item serialize_html

  $str = $document->serialize_html();

An alias for toStringHTML().


=item is_valid

  $bool = $dom->is_valid();

Returns either TRUE or FALSE depending on whether the DOM Tree is a valid
Document or not.

You may also pass in a L<<<<<< XML::LibXML::Dtd >>>>>> object, to validate against an external DTD:



  if (!$dom->is_valid($dtd)) {
       warn("document is not valid!");
   }


=item validate

  $dom->validate();

This is an exception throwing equivalent of is_valid. If the document is not
valid it will throw an exception containing the error. This allows you much
better error reporting than simply is_valid or not.

Again, you may pass in a DTD object


=item documentElement

  $root = $dom->documentElement();

Returns the root element of the Document. A document can have just one root
element to contain the documents data.

Optionally one can use I<<<<<< getDocumentElement >>>>>>.


=item setDocumentElement

  $dom->setDocumentElement( $root );

This function enables you to set the root element for a document. The function
supports the import of a node from a different document tree, but does not
support a document fragment as $root.


=item createElement

  $element = $dom->createElement( $nodename );

This function creates a new Element Node bound to the DOM with the name C<<<<<< $nodename >>>>>>.


=item createElementNS

  $element = $dom->createElementNS( $namespaceURI, $nodename );

This function creates a new Element Node bound to the DOM with the name C<<<<<< $nodename >>>>>> and placed in the given namespace.


=item createTextNode

  $text = $dom->createTextNode( $content_text );

As an equivalent of I<<<<<< createElement >>>>>>, but it creates a I<<<<<< Text Node >>>>>> bound to the DOM.


=item createComment

  $comment = $dom->createComment( $comment_text );

As an equivalent of I<<<<<< createElement >>>>>>, but it creates a I<<<<<< Comment Node >>>>>> bound to the DOM.


=item createAttribute

  $attrnode = $doc->createAttribute($name [,$value]);

Creates a new Attribute node.


=item createAttributeNS

  $attrnode = $doc->createAttributeNS( namespaceURI, $name [,$value] );

Creates an Attribute bound to a namespace.


=item createDocumentFragment

  $fragment = $doc->createDocumentFragment();

This function creates a DocumentFragment.


=item createCDATASection

  $cdata = $dom->createCDATASection( $cdata_content );

Similar to createTextNode and createComment, this function creates a
CDataSection bound to the current DOM.


=item createProcessingInstruction

  my $pi = $doc->createProcessingInstruction( $target, $data );

create a processing instruction node.

Since this method is quite long one may use its short form I<<<<<< createPI() >>>>>>.


=item createEntityReference

  my $entref = $doc->createEntityReference($refname);

If a document has a DTD specified, one can create entity references by using
this function. If one wants to add a entity reference to the document, this
reference has to be created by this function.

An entity reference is unique to a document and cannot be passed to other
documents as other nodes can be passed.

I<<<<<< NOTE: >>>>>> A text content containing something that looks like an entity reference, will
not be expanded to a real entity reference unless it is a predefined entity



  my $string = "&foo;";
   $some_element->appendText( $string );
   print $some_element->textContent; # prints "&amp;foo;"


=item createInternalSubset

  $dtd = $document->createInternalSubset( $rootnode, $public, $system);

This function creates and adds an internal subset to the given document.
Because the function automatically adds the DTD to the document there is no
need to add the created node explicitly to the document.



  my $document = XML::LibXML::Document->new();
   my $dtd      = $document->createInternalSubset( "foo", undef, "foo.dtd" );

will result in the following XML document:



  <?xml version="1.0"?>
   <!DOCTYPE foo SYSTEM "foo.dtd">

By setting the public parameter it is possible to set PUBLIC DTDs to a given
document. So



  my $document = XML::LibXML::Document->new();
  my $dtd      = $document->createInternalSubset( "foo", "-//FOO//DTD FOO 0.1//EN", undef );

will cause the following declaration to be created on the document:



  <?xml version="1.0"?>
  <!DOCTYPE foo PUBLIC "-//FOO//DTD FOO 0.1//EN">


=item createExternalSubset

  $dtd = $document->createExternalSubset( $rootnode_name, $publicId, $systemId);

This function is similar to C<<<<<< createInternalSubset() >>>>>> but this DTD is considered to be external and is therefore not added to the
document itself. Nevertheless it can be used for validation purposes.


=item importNode

  $document->importNode( $node );

If a node is not part of a document, it can be imported to another document. As
specified in DOM Level 2 Specification the Node will not be altered or removed
from its original document (C<<<<<< $node-E<gt>cloneNode(1) >>>>>> will get called implicitly).

I<<<<<< NOTE: >>>>>> Don't try to use importNode() to import sub-trees that contain an entity
reference - even if the entity reference is the root node of the sub-tree. This
will cause serious problems to your program. This is a limitation of libxml2
and not of XML::LibXML itself.


=item adoptNode

  $document->adoptNode( $node );

If a node is not part of a document, it can be imported to another document. As
specified in DOM Level 3 Specification the Node will not be altered but it will
removed from its original document.

After a document adopted a node, the node, its attributes and all its
descendants belong to the new document. Because the node does not belong to the
old document, it will be unlinked from its old location first.

I<<<<<< NOTE: >>>>>> Don't try to adoptNode() to import sub-trees that contain entity references -
even if the entity reference is the root node of the sub-tree. This will cause
serious problems to your program. This is a limitation of libxml2 and not of
XML::LibXML itself.


=item externalSubset

  my $dtd = $doc->externalSubset;

If a document has an external subset defined it will be returned by this
function.

I<<<<<< NOTE >>>>>> Dtd nodes are no ordinary nodes in libxml2. The support for these nodes in
XML::LibXML is still limited. In particular one may not want use common node
function on doctype declaration nodes!


=item internalSubset

  my $dtd = $doc->internalSubset;

If a document has an internal subset defined it will be returned by this
function.

I<<<<<< NOTE >>>>>> Dtd nodes are no ordinary nodes in libxml2. The support for these nodes in
XML::LibXML is still limited. In particular one may not want use common node
function on doctype declaration nodes!


=item setExternalSubset

  $doc->setExternalSubset($dtd);

I<<<<<< EXPERIMENTAL! >>>>>>

This method sets a DTD node as an external subset of the given document.


=item setInternalSubset

  $doc->setInternalSubset($dtd);

I<<<<<< EXPERIMENTAL! >>>>>>

This method sets a DTD node as an internal subset of the given document.


=item removeExternalSubset

  my $dtd = $doc->removeExternalSubset();

I<<<<<< EXPERIMENTAL! >>>>>>

If a document has an external subset defined it can be removed from the
document by using this function. The removed dtd node will be returned.


=item removeInternalSubset

  my $dtd = $doc->removeInternalSubset();

I<<<<<< EXPERIMENTAL! >>>>>>

If a document has an internal subset defined it can be removed from the
document by using this function. The removed dtd node will be returned.


=item getElementsByTagName

  my @nodelist = $doc->getElementsByTagName($tagname);

Implements the DOM Level 2 function

In SCALAR context this function returns an L<<<<<< XML::LibXML::NodeList >>>>>> object.


=item getElementsByTagNameNS

  my @nodelist = $doc->getElementsByTagNameNS($nsURI,$tagname);

Implements the DOM Level 2 function

In SCALAR context this function returns an L<<<<<< XML::LibXML::NodeList >>>>>> object.


=item getElementsByLocalName

  my @nodelist = $doc->getElementsByLocalName($localname);

This allows the fetching of all nodes from a given document with the given
Localname.

In SCALAR context this function returns an L<<<<<< XML::LibXML::NodeList >>>>>> object.


=item getElementById

  my $node = $doc->getElementById($id);

Returns the element that has an ID attribute with the given value. If no such
element exists, this returns undef.

Note: the ID of an element may change while manipulating the document. For
documents with a DTD, the information about ID attributes is only available if
DTD loading/validation has been requested. For HTML documents parsed with the
HTML parser ID detection is done automatically. In XML documents, all "xml:id"
attributes are considered to be of type ID. You can test ID-ness of an
attribute node with $attr->isId().

In versions 1.59 and earlier this method was called getElementsById() (plural)
by mistake. Starting from 1.60 this name is maintained as an alias only for
backward compatibility.


=item indexElements

  $dom->indexElements();

This function causes libxml2 to stamp all elements in a document with their
document position index which considerably speeds up XPath queries for large
documents. It should only be used with static documents that won't be further
changed by any DOM methods, because once a document is indexed, XPath will
always prefer the index to other methods of determining the document order of
nodes. XPath could therefore return improperly ordered node-lists when applied
on a document that has been changed after being indexed. It is of course
possible to use this method to re-index a modified document before using it
with XPath again. This function is not a part of the DOM specification.

This function returns number of elements indexed, -1 if error occurred, or -2
if this feature is not available in the running libxml2.



=back

=head1 AUTHORS

Matt Sergeant,
Christian Glahn,
Petr Pajas


=head1 VERSION

2.0210

=head1 COPYRIGHT

2001-2007, AxKit.com Ltd.

2002-2006, Christian Glahn.

2006-2009, Petr Pajas.

=cut


=head1 LICENSE

This program is free software; you can redistribute it and/or modify it under
the same terms as Perl itself.

PK     N\p[       LibXML/Dtd.podnu 6$        =head1 NAME

XML::LibXML::Dtd - XML::LibXML DTD Handling

=head1 SYNOPSIS



  use XML::LibXML;

  $dtd = XML::LibXML::Dtd->new($public_id, $system_id);
  $dtd = XML::LibXML::Dtd->parse_string($dtd_str);
  $publicId = $dtd->getName();
  $publicId = $dtd->publicId();
  $systemId = $dtd->systemId();

=head1 DESCRIPTION

This class holds a DTD. You may parse a DTD from either a string, or from an
external SYSTEM identifier.

No support is available as yet for parsing from a filehandle.

XML::LibXML::Dtd is a sub-class of L<<<<<< XML::LibXML::Node >>>>>>, so all the methods available to nodes (particularly toString()) are available
to Dtd objects.


=head1 METHODS

=over 4

=item new

  $dtd = XML::LibXML::Dtd->new($public_id, $system_id);

Parse a DTD from the system identifier, and return a DTD object that you can
pass to $doc->is_valid() or $doc->validate().



  my $dtd = XML::LibXML::Dtd->new(
                        "SOME // Public / ID / 1.0",
                        "test.dtd"
                                  );
   my $doc = XML::LibXML->new->parse_file("test.xml");
   $doc->validate($dtd);


=item parse_string

  $dtd = XML::LibXML::Dtd->parse_string($dtd_str);

The same as new() above, except you can parse a DTD from a string. Note that
parsing from string may fail if the DTD contains external parametric-entity
references with relative URLs.


=item getName

  $publicId = $dtd->getName();

Returns the name of DTD; i.e., the name immediately following the DOCTYPE
keyword.


=item publicId

  $publicId = $dtd->publicId();

Returns the public identifier of the external subset.


=item systemId

  $systemId = $dtd->systemId();

Returns the system identifier of the external subset.



=back

=head1 AUTHORS

Matt Sergeant,
Christian Glahn,
Petr Pajas


=head1 VERSION

2.0210

=head1 COPYRIGHT

2001-2007, AxKit.com Ltd.

2002-2006, Christian Glahn.

2006-2009, Petr Pajas.

=cut


=head1 LICENSE

This program is free software; you can redistribute it and/or modify it under
the same terms as Perl itself.

PK     N\iw      LibXML/Reader.pmnu 6$        # $Id: Reader.pm,v 1.1.2.1 2004/04/20 20:09:48 pajas Exp $
#
# This is free software, you may use it and distribute it under the same terms as
# Perl itself.
#
# Copyright 2001-2003 AxKit.com Ltd., 2002-2006 Christian Glahn, 2006-2009 Petr Pajas
#
#
package XML::LibXML::Reader;

use XML::LibXML;
use Carp;
use strict;
use warnings;

use vars qw ($VERSION);
$VERSION = "2.0210"; # VERSION TEMPLATE: DO NOT CHANGE

use 5.008_000;

BEGIN {
  UNIVERSAL::can('XML::LibXML::Reader','_newForFile') or
      croak("Cannot use XML::LibXML::Reader module - ".
	    "your libxml2 is compiled without reader support!");
}

use base qw(Exporter);
use constant {
    XML_READER_TYPE_NONE => 0,
    XML_READER_TYPE_ELEMENT => 1,
    XML_READER_TYPE_ATTRIBUTE => 2,
    XML_READER_TYPE_TEXT => 3,
    XML_READER_TYPE_CDATA => 4,
    XML_READER_TYPE_ENTITY_REFERENCE => 5,
    XML_READER_TYPE_ENTITY => 6,
    XML_READER_TYPE_PROCESSING_INSTRUCTION => 7,
    XML_READER_TYPE_COMMENT => 8,
    XML_READER_TYPE_DOCUMENT => 9,
    XML_READER_TYPE_DOCUMENT_TYPE => 10,
    XML_READER_TYPE_DOCUMENT_FRAGMENT => 11,
    XML_READER_TYPE_NOTATION => 12,
    XML_READER_TYPE_WHITESPACE => 13,
    XML_READER_TYPE_SIGNIFICANT_WHITESPACE => 14,
    XML_READER_TYPE_END_ELEMENT => 15,
    XML_READER_TYPE_END_ENTITY => 16,
    XML_READER_TYPE_XML_DECLARATION => 17,

    XML_READER_NONE      => -1,
    XML_READER_START     =>  0,
    XML_READER_ELEMENT   =>  1,
    XML_READER_END       =>  2,
    XML_READER_EMPTY     =>  3,
    XML_READER_BACKTRACK =>  4,
    XML_READER_DONE      =>  5,
    XML_READER_ERROR     =>  6
};
use vars qw( @EXPORT @EXPORT_OK %EXPORT_TAGS );

sub CLONE_SKIP { 1 }

BEGIN {

%EXPORT_TAGS = (
  types =>
  [qw(
    XML_READER_TYPE_NONE
    XML_READER_TYPE_ELEMENT
    XML_READER_TYPE_ATTRIBUTE
    XML_READER_TYPE_TEXT
    XML_READER_TYPE_CDATA
    XML_READER_TYPE_ENTITY_REFERENCE
    XML_READER_TYPE_ENTITY
    XML_READER_TYPE_PROCESSING_INSTRUCTION
    XML_READER_TYPE_COMMENT
    XML_READER_TYPE_DOCUMENT
    XML_READER_TYPE_DOCUMENT_TYPE
    XML_READER_TYPE_DOCUMENT_FRAGMENT
    XML_READER_TYPE_NOTATION
    XML_READER_TYPE_WHITESPACE
    XML_READER_TYPE_SIGNIFICANT_WHITESPACE
    XML_READER_TYPE_END_ELEMENT
    XML_READER_TYPE_END_ENTITY
    XML_READER_TYPE_XML_DECLARATION
    )],
  states =>
  [qw(
    XML_READER_NONE
    XML_READER_START
    XML_READER_ELEMENT
    XML_READER_END
    XML_READER_EMPTY
    XML_READER_BACKTRACK
    XML_READER_DONE
    XML_READER_ERROR
   )]
);
@EXPORT    = (@{$EXPORT_TAGS{types}},@{$EXPORT_TAGS{states}});
@EXPORT_OK = @EXPORT;
$EXPORT_TAGS{all}=\@EXPORT_OK;
}

our %_preserve_flag;

{
  my %props = (
    load_ext_dtd => 1,		 # load the external subset
    complete_attributes => 2,	 # default DTD attributes
    validation => 3,		 # validate with the DTD
    expand_entities => 4,	 # substitute entities
  );
  sub getParserProp {
    my ($self, $name) = @_;
    my $prop = $props{$name};
    return undef unless defined $prop;
    return $self->_getParserProp($prop);
  }
  sub setParserProp {
    my $self = shift;
    my %args = map { ref($_) eq 'HASH' ? (%$_) : $_ } @_;
    my ($key, $value);
    while (($key,$value) = each %args) {
      my $prop = $props{ $key };
      $self->_setParserProp($prop,$value);
    }
    return;
  }

  my (%string_pool,%rng_pool,%xsd_pool); # used to preserve data passed to the reader
  sub new {
    my ($class) = shift;
    my %args = map { ref($_) eq 'HASH' ? (%$_) : $_ } @_;
    my $encoding = $args{encoding};
    my $URI = $args{URI};
    $URI="$URI" if defined $URI; # stringify in case it is an URI object
    my $options = XML::LibXML->_parser_options(\%args);

    my $self = undef;
    if ( defined $args{location} ) {
      $self = $class->_newForFile( $args{location}, $encoding, $options );
    }
    elsif ( defined $args{string} ) {
      $self = $class->_newForString( $args{string}, $URI, $encoding, $options );
      if (defined($self)) {
        $string_pool{$self} = \$args{string};
      }
    }
    elsif ( defined $args{IO} ) {
      $self = $class->_newForIO( $args{IO}, $URI, $encoding, $options  );
    }
    elsif ( defined $args{DOM} ) {
      croak("DOM must be a XML::LibXML::Document node")
	unless UNIVERSAL::isa($args{DOM}, 'XML::LibXML::Document');
      $self = $class->_newForDOM( $args{DOM} );
    }
    elsif ( defined $args{FD} ) {
      my $fd = fileno($args{FD});
      $self = $class->_newForFd( $fd, $URI, $encoding, $options  );
    }
    else {
      croak("XML::LibXML::Reader->new: specify location, string, IO, DOM, or FD");
    }
    if ($args{RelaxNG}) {
      if (ref($args{RelaxNG})) {
	$rng_pool{$self} = \$args{RelaxNG};
	$self->_setRelaxNG($args{RelaxNG});
      } else {
	$self->_setRelaxNGFile($args{RelaxNG});
      }
    }
    if ($args{Schema}) {
      if (ref($args{Schema})) {
	$xsd_pool{$self} = \$args{Schema};
	$self->_setXSD($args{Schema});
      } else {
	$self->_setXSDFile($args{Schema});
      }
    }
    return $self;
  }
  sub DESTROY {
    my $self = shift;
    delete $string_pool{$self};
    delete $rng_pool{$self};
    delete $xsd_pool{$self};
    $self->_DESTROY;
  }
}
sub close {
    my ($reader) = @_;
    # _close return -1 on failure, 0 on success
    # perl close returns 0 on failure, 1 on success
    return $reader->_close == 0 ? 1 : 0;
}

sub preservePattern {
  my $reader=shift;
  my ($pattern,$ns_map)=@_;
  if (ref($ns_map) eq 'HASH') {
    # translate prefix=>URL hash to a (URL,prefix) list
    $reader->_preservePattern($pattern,[reverse %$ns_map]);
  } else {
    $reader->_preservePattern(@_);
  }
}

sub nodePath {
  my $reader=shift;
  my $path = $reader->_nodePath;
  $path=~s/\[\d+\]//g; # make /foo[1]/bar[1] just /foo/bar, since
                       # sibling count in the buffered fragment is
                       # basically random and generally misleading
  return $path;
}

1;
__END__
PK     N\W	.  .    LibXML/Literal.pmnu 6$        # $Id$
#
# This is free software, you may use it and distribute it under the same terms as
# Perl itself.
#
# Copyright 2001-2003 AxKit.com Ltd., 2002-2006 Christian Glahn, 2006-2009 Petr Pajas
#
#

package XML::LibXML::Literal;

use XML::LibXML::Boolean;
use XML::LibXML::Number;

use strict;
use warnings;

use vars qw ($VERSION);
$VERSION = "2.0210"; # VERSION TEMPLATE: DO NOT CHANGE

use overload
		'""' => \&value,
		'cmp' => \&cmp;

sub new {
	my $class = shift;
	my ($string) = @_;

#	$string =~ s/&quot;/"/g;
#	$string =~ s/&apos;/'/g;

	bless \$string, $class;
}

sub as_string {
	my $self = shift;
	my $string = $$self;
	$string =~ s/'/&apos;/g;
	return "'$string'";
}

sub as_xml {
    my $self = shift;
    my $string = $$self;
    return "<Literal>$string</Literal>\n";
}

sub value {
	my $self = shift;
	$$self;
}

sub cmp {
	my $self = shift;
	my ($cmp, $swap) = @_;
	if ($swap) {
		return $cmp cmp $$self;
	}
	return $$self cmp $cmp;
}

sub evaluate {
	my $self = shift;
	$self;
}

sub to_boolean {
	my $self = shift;
	return (length($$self) > 0) ? XML::LibXML::Boolean->True : XML::LibXML::Boolean->False;
}

sub to_number { return XML::LibXML::Number->new($_[0]->value); }
sub to_literal { return $_[0]; }

sub string_value { return $_[0]->value; }

1;
__END__

=head1 NAME

XML::LibXML::Literal - Simple string values.

=head1 DESCRIPTION

In XPath terms a Literal is what we know as a string.

=head1 API

=head2 new($string)

Create a new Literal object with the value in $string. Note that &quot; and
&apos; will be converted to " and ' respectively. That is not part of the XPath
specification, but I consider it useful. Note though that you have to go
to extraordinary lengths in an XML template file (be it XSLT or whatever) to
make use of this:

	<xsl:value-of select="&quot;I'm feeling &amp;quot;sad&amp;quot;&quot;"/>

Which produces a Literal of:

	I'm feeling "sad"

=head2 value()

Also overloaded as stringification, simply returns the literal string value.

=head2 cmp($literal)

Returns the equivalent of perl's cmp operator against the given $literal.

=cut
PK     N\0O  O    LibXML/ErrNo.podnu 6$        =head1 NAME

XML::LibXML::ErrNo - Structured Errors

=head1 DESCRIPTION

This module is based on xmlerror.h libxml2 C header file. It defines symbolic
constants for all libxml2 error codes. Currently libxml2 uses over 480
different error codes. See also XML::LibXML::Error.

=head1 AUTHORS

Matt Sergeant,
Christian Glahn,
Petr Pajas


=head1 VERSION

2.0210

=head1 COPYRIGHT

2001-2007, AxKit.com Ltd.

2002-2006, Christian Glahn.

2006-2009, Petr Pajas.

=cut


=head1 LICENSE

This program is free software; you can redistribute it and/or modify it under
the same terms as Perl itself.

PK     N\"O[y#  #    LibXML/CDATASection.podnu 6$        =head1 NAME

XML::LibXML::CDATASection - XML::LibXML Class for CDATA Sections

=head1 SYNOPSIS



  use XML::LibXML;
  # Only methods specific to CDATA nodes are listed here,
  # see the XML::LibXML::Node manpage for other methods

  $node = XML::LibXML::CDATASection->new( $content );

=head1 DESCRIPTION

This class provides all functions of L<<<<<< XML::LibXML::Text >>>>>>, but for CDATA nodes.


=head1 METHODS

The class inherits from L<<<<<< XML::LibXML::Node >>>>>>. The documentation for Inherited methods is not listed here.

Many functions listed here are extensively documented in the DOM Level 3 specification (L<<<<<< http://www.w3.org/TR/DOM-Level-3-Core/ >>>>>>). Please refer to the specification for extensive documentation.

=over 4

=item new

  $node = XML::LibXML::CDATASection->new( $content );

The constructor is the only provided function for this package. It is required,
because I<<<<<< libxml2 >>>>>> treats the different text node types slightly differently.



=back

=head1 AUTHORS

Matt Sergeant,
Christian Glahn,
Petr Pajas


=head1 VERSION

2.0210

=head1 COPYRIGHT

2001-2007, AxKit.com Ltd.

2002-2006, Christian Glahn.

2006-2009, Petr Pajas.

=cut


=head1 LICENSE

This program is free software; you can redistribute it and/or modify it under
the same terms as Perl itself.

PK     N\>w      LibXML/XPathExpression.podnu 6$        =head1 NAME

XML::LibXML::XPathExpression - XML::LibXML::XPathExpression - interface to libxml2 pre-compiled XPath expressions

=head1 SYNOPSIS



  use XML::LibXML;
  my $compiled_xpath = XML::LibXML::XPathExpression->new('//foo[@bar="baz"][position()<4]');

  # interface from XML::LibXML::Node

  my $result = $node->find($compiled_xpath);
  my @nodes = $node->findnodes($compiled_xpath);
  my $value = $node->findvalue($compiled_xpath);

  # interface from XML::LibXML::XPathContext

  my $result = $xpc->find($compiled_xpath,$node);
  my @nodes = $xpc->findnodes($compiled_xpath,$node);
  my $value = $xpc->findvalue($compiled_xpath,$node);

  $compiled = XML::LibXML::XPathExpression->new( xpath_string );

=head1 DESCRIPTION

This is a perl interface to libxml2's pre-compiled XPath expressions.
Pre-compiling an XPath expression can give in some performance benefit if the
same XPath query is evaluated many times. C<<<<<< XML::LibXML::XPathExpression >>>>>> objects can be passed to all C<<<<<< find... >>>>>> functions C<<<<<< XML::LibXML >>>>>> that expect an XPath expression.

=over 4

=item new()

  $compiled = XML::LibXML::XPathExpression->new( xpath_string );

The constructor takes an XPath 1.0 expression as a string and returns an object
representing the pre-compiled expressions (the actual data structure is
internal to libxml2).



=back

=head1 AUTHORS

Matt Sergeant,
Christian Glahn,
Petr Pajas


=head1 VERSION

2.0210

=head1 COPYRIGHT

2001-2007, AxKit.com Ltd.

2002-2006, Christian Glahn.

2006-2009, Petr Pajas.

=cut


=head1 LICENSE

This program is free software; you can redistribute it and/or modify it under
the same terms as Perl itself.

PK     N\jTvA  A    LibXML/Boolean.pmnu 6$        # $Id$
#
#
# This is free software, you may use it and distribute it under the same terms as
# Perl itself.
#
# Copyright 2001-2003 AxKit.com Ltd., 2002-2006 Christian Glahn, 2006-2009 Petr Pajas
#
#

package XML::LibXML::Boolean;
use XML::LibXML::Number;
use XML::LibXML::Literal;
use strict;
use warnings;

use vars qw ($VERSION);

$VERSION = "2.0210"; # VERSION TEMPLATE: DO NOT CHANGE

use overload
        '""' => \&value,
        '<=>' => \&cmp;

sub new {
    my $class = shift;
    my ($param) = @_;
    my $val = $param ? 1 : 0;
    bless \$val, $class;
}

sub True {
    my $class = shift;
    my $val = 1;
    bless \$val, $class;
}

sub False {
    my $class = shift;
    my $val = 0;
    bless \$val, $class;
}

sub value {
    my $self = shift;
    $$self;
}

sub cmp {
    my $self = shift;
    my ($other, $swap) = @_;
    if ($swap) {
        return $other <=> $$self;
    }
    return $$self <=> $other;
}

sub to_number { XML::LibXML::Number->new($_[0]->value); }
sub to_boolean { $_[0]; }
sub to_literal { XML::LibXML::Literal->new($_[0]->value ? "true" : "false"); }

sub string_value { return $_[0]->to_literal->value; }

1;
__END__

=head1 NAME

XML::LibXML::Boolean - Boolean true/false values

=head1 DESCRIPTION

XML::LibXML::Boolean objects implement simple boolean true/false objects.

=head1 API

=head2 XML::LibXML::Boolean->True

Creates a new Boolean object with a true value.

=head2 XML::LibXML::Boolean->False

Creates a new Boolean object with a false value.

=head2 value()

Returns true or false.

=head2 to_literal()

Returns the string "true" or "false".

=cut
PK     N\;!  !    LibXML/Error.pmnu 6$        # $Id: Error.pm,v 1.1.2.1 2004/04/20 20:09:48 pajas Exp $
#
# This is free software, you may use it and distribute it under the same terms as
# Perl itself.
#
# Copyright 2001-2003 AxKit.com Ltd., 2002-2006 Christian Glahn, 2006-2009 Petr Pajas
#
#
package XML::LibXML::Error;

use strict;
use warnings;

# To avoid a "Deep recursion on subroutine as_string" warning
no warnings 'recursion';

use Encode ();

use vars qw(@error_domains $VERSION $WARNINGS);
use overload
  '""' => \&as_string,
  'eq' => sub {
    ("$_[0]" eq "$_[1]")
  },
  'cmp' => sub {
    ("$_[0]" cmp "$_[1]")
  },
  fallback => 1;

$WARNINGS = 0; # 0: suppress, 1: report via warn, 2: report via die
$VERSION = "2.0210"; # VERSION TEMPLATE: DO NOT CHANGE

use constant XML_ERR_NONE            => 0;
use constant XML_ERR_WARNING         => 1; # A simple warning
use constant XML_ERR_ERROR           => 2; # A recoverable error
use constant XML_ERR_FATAL           => 3; # A fatal error

use constant XML_ERR_FROM_NONE       => 0;
use constant XML_ERR_FROM_PARSER     => 1; # The XML parser
use constant XML_ERR_FROM_TREE       => 2; # The tree module
use constant XML_ERR_FROM_NAMESPACE  => 3; # The XML Namespace module
use constant XML_ERR_FROM_DTD        => 4; # The XML DTD validation
use constant XML_ERR_FROM_HTML       => 5; # The HTML parser
use constant XML_ERR_FROM_MEMORY     => 6; # The memory allocator
use constant XML_ERR_FROM_OUTPUT     => 7; # The serialization code
use constant XML_ERR_FROM_IO         => 8; # The Input/Output stack
use constant XML_ERR_FROM_FTP        => 9; # The FTP module
use constant XML_ERR_FROM_HTTP       => 10; # The FTP module
use constant XML_ERR_FROM_XINCLUDE   => 11; # The XInclude processing
use constant XML_ERR_FROM_XPATH      => 12; # The XPath module
use constant XML_ERR_FROM_XPOINTER   => 13; # The XPointer module
use constant XML_ERR_FROM_REGEXP     => 14;     # The regular expressions module
use constant XML_ERR_FROM_DATATYPE   => 15; # The W3C XML Schemas Datatype module
use constant XML_ERR_FROM_SCHEMASP   => 16; # The W3C XML Schemas parser module
use constant XML_ERR_FROM_SCHEMASV   => 17; # The W3C XML Schemas validation module
use constant XML_ERR_FROM_RELAXNGP   => 18; # The Relax-NG parser module
use constant XML_ERR_FROM_RELAXNGV   => 19; # The Relax-NG validator module
use constant XML_ERR_FROM_CATALOG    => 20; # The Catalog module
use constant XML_ERR_FROM_C14N       => 21; # The Canonicalization module
use constant XML_ERR_FROM_XSLT       => 22; # The XSLT engine from libxslt
use constant XML_ERR_FROM_VALID      => 23; # The DTD validation module with valid context
use constant XML_ERR_FROM_CHECK      => 24; # The error-checking module
use constant XML_ERR_FROM_WRITER     => 25; # The xmlwriter module
use constant XML_ERR_FROM_MODULE     => 26; # The dynamically-loaded module module
use constant XML_ERR_FROM_I18N       => 27; # The module handling character conversion
use constant XML_ERR_FROM_SCHEMATRONV=> 28; # The Schematron validator module

@error_domains = ("", "parser", "tree", "namespace", "validity",
                  "HTML parser", "memory", "output", "I/O", "ftp",
                  "http", "XInclude", "XPath", "xpointer", "regexp",
                  "Schemas datatype", "Schemas parser", "Schemas validity",
                  "Relax-NG parser", "Relax-NG validity",
                  "Catalog", "C14N", "XSLT", "validity", "error-checking",
                  "xmlwriter", "dynamic loading", "i18n",
                  "Schematron validity");

my $MAX_ERROR_PREV_DEPTH = 100;

for my $field (qw<code _prev level file line nodename message column context
                  str1 str2 str3 num1 num2 __prev_depth>) {
    my $method = sub { $_[0]{$field} };
    no strict 'refs';
    *$field = $method;
}

{

  sub new {
    my ($class,$xE) = @_;
    my $terr;
    if (ref($xE)) {
      my ($context,$column) = $xE->context_and_column();
      $terr =bless {
        domain  => $xE->domain(),
        level   => $xE->level(),
        code    => $xE->code(),
        message => $xE->message(),
        file    => $xE->file(),
        line    => $xE->line(),
        str1    => $xE->str1(),
        str2    => $xE->str2(),
        str3    => $xE->str3(),
        num1    => $xE->num1(),
        num2    => $xE->num2(),
        __prev_depth => 0,
        (defined($context) ?
           (
             context => $context,
             column => $column,
            ) : ()),
      }, $class;
    } else {
      # !!!! problem : got a flat error
      # warn("PROBLEM: GOT A FLAT ERROR $xE\n");
      $terr =bless {
        domain  => 0,
        level   => 2,
        code    => -1,
        message => $xE,
        file    => undef,
        line    => undef,
        str1    => undef,
        str2    => undef,
        str3    => undef,
        num1    => undef,
        num2    => undef,
        __prev_depth => 0,
      }, $class;
    }
    return $terr;
  }

    sub _callback_error {
      #print "CALLBACK\n";
      my ($xE,$prev) = @_;
      my $terr;
      $terr=XML::LibXML::Error->new($xE);
      if ($terr->{level} == XML_ERR_WARNING and $WARNINGS!=2) {
        warn $terr if $WARNINGS;
        return $prev;
      }
      #unless ( defined $terr->{file} and length $terr->{file} ) {
        # this would make it easier to recognize parsed strings
        # but it breaks old implementations
        # [CG] $terr->{file} = 'string()';
      #}
      #warn "Saving the error ",$terr->dump;

      if (ref($prev))
      {
          if ($prev->__prev_depth()  >= $MAX_ERROR_PREV_DEPTH)
          {
              return $prev;
          }
          $terr->{_prev} = $prev;
          $terr->{__prev_depth} = $prev->__prev_depth() + 1;
      }
      else
      {
          $terr->{_prev} = defined($prev) && length($prev) ? XML::LibXML::Error->new($prev) : undef;
      }
      return $terr;
    }
    sub _instant_error_callback {
      my $xE = shift;
      my $terr= XML::LibXML::Error->new($xE);
      print "Reporting an instanteous error ",$terr->dump;
      die $terr;
    }
    sub _report_warning {
      my ($saved_error) = @_;
      #print "CALLBACK WARN\n";
      if ( defined $saved_error ) {
        #print "reporting a warning ",$saved_error->dump;
        warn $saved_error;
      }
    }
    sub _report_error {
      my ($saved_error) = @_;
      #print "CALLBACK ERROR: $saved_error\n";
      if ( defined $saved_error ) {
        die $saved_error;
      }
    }
}


# backward compatibility
sub int1 { $_[0]->num1 }
sub int2 { $_[0]->num2 }

sub domain {
    my ($self)=@_;
    return undef unless ref($self);
    my $domain = $self->{domain};
    # Newer versions of libxml2 might yield errors in domains that aren't
    # listed above.  Invent something reasonable in that case.
    return $domain < @error_domains ? $error_domains[$domain] : "domain_$domain";
}

sub as_string {
    my ($self)=@_;
    my $msg = "";
    my $level;

    if (defined($self->{_prev})) {
        $msg = $self->{_prev}->as_string;
    }

    if ($self->{level} == XML_ERR_NONE) {
        $level = "";
    } elsif ($self->{level} == XML_ERR_WARNING) {
        $level = "warning";
    } elsif ($self->{level} == XML_ERR_ERROR ||
             $self->{level} == XML_ERR_FATAL) {
        $level = "error";
    }
    my $where="";
    if (defined($self->{file})) {
        $where="$self->{file}:$self->{line}";
    } elsif (($self->{domain} == XML_ERR_FROM_PARSER)
             and
             $self->{line})  {
        $where="Entity: line $self->{line}";
    }
    if ($self->{nodename}) {
        $where.=": element ".$self->{nodename};
    }
    $msg.=$where.": " if $where ne "";
    $msg.=$self->domain." ".$level." :";
    my $str=$self->{message}||"";
    chomp($str);
    $msg.=" ".$str."\n";
    if (($self->{domain} == XML_ERR_FROM_XPATH) and
          defined($self->{str1})) {
      $msg.=$self->{str1}."\n";
      $msg.=(" " x $self->{num1})."^\n";
    } elsif (defined $self->{context}) {
      # If the error relates to character-encoding problems in the context,
      # then doing textual operations on it will spew warnings that
      # XML::LibXML can do nothing to fix.  So just disable all such
      # warnings.  This has the pleasing benefit of making the test suite
      # run warning-free.
      no warnings 'utf8';
      my $context = Encode::encode('UTF-8', $self->{context});
      $msg.=$context."\n";
      $context = substr($context,0,$self->{column});
      $context=~s/[^\t]/ /g;
      $msg.=$context."^\n";
    }
    return $msg;
}

sub dump {
  my ($self)=@_;
  require Data::Dumper;
  return Data::Dumper->new([$self],['error'])->Dump;
}

1;
PK     N\b/Xf  f    LibXML/Node.podnu 6$        =head1 NAME

XML::LibXML::Node - Abstract Base Class of XML::LibXML Nodes

=head1 SYNOPSIS



  use XML::LibXML;

  $name = $node->nodeName;
  $node->setNodeName( $newName );
  $bool = $node->isSameNode( $other_node );
  $bool = $node->isEqual( $other_node );
  $num = $node->unique_key;
  $content = $node->nodeValue;
  $content = $node->textContent;
  $type = $node->nodeType;
  $node->unbindNode();
  $childnode = $node->removeChild( $childnode );
  $oldnode = $node->replaceChild( $newNode, $oldNode );
  $node->replaceNode($newNode);
  $childnode = $node->appendChild( $childnode );
  $childnode = $node->addChild( $childnode );
  $node = $parent->addNewChild( $nsURI, $name );
  $node->addSibling($newNode);
  $newnode =$node->cloneNode( $deep );
  $parentnode = $node->parentNode;
  $nextnode = $node->nextSibling();
  $nextnode = $node->nextNonBlankSibling();
  $prevnode = $node->previousSibling();
  $prevnode = $node->previousNonBlankSibling();
  $boolean = $node->hasChildNodes();
  $childnode = $node->firstChild;
  $childnode = $node->lastChild;
  $documentnode = $node->ownerDocument;
  $node = $node->getOwner;
  $node->setOwnerDocument( $doc );
  $node->insertBefore( $newNode, $refNode );
  $node->insertAfter( $newNode, $refNode );
  @nodes = $node->findnodes( $xpath_expression );
  $result = $node->find( $xpath );
  print $node->findvalue( $xpath );
  $bool = $node->exists( $xpath_expression );
  @childnodes = $node->childNodes();
  @childnodes = $node->nonBlankChildNodes();
  $xmlstring = $node->toString($format,$docencoding);
  $c14nstring = $node->toStringC14N();
  $c14nstring = $node->toStringC14N($with_comments, $xpath_expression , $xpath_context);
  $c14nstring = $node->toStringC14N_v1_1();
  $c14nstring = $node->toStringC14N_v1_1($with_comments, $xpath_expression , $xpath_context);
  $ec14nstring = $node->toStringEC14N();
  $ec14nstring = $node->toStringEC14N($with_comments, $xpath_expression, $inclusive_prefix_list);
  $ec14nstring = $node->toStringEC14N($with_comments, $xpath_expression, $xpath_context, $inclusive_prefix_list);
  $str = $doc->serialize($format);
  $localname = $node->localname;
  $nameprefix = $node->prefix;
  $uri = $node->namespaceURI();
  $boolean = $node->hasAttributes();
  @attributelist = $node->attributes();
  $URI = $node->lookupNamespaceURI( $prefix );
  $prefix = $node->lookupNamespacePrefix( $URI );
  $node->normalize;
  @nslist = $node->getNamespaces;
  $node->removeChildNodes();
  $strURI = $node->baseURI();
  $node->setBaseURI($strURI);
  $node->nodePath();
  $lineno = $node->line_number();

=head1 DESCRIPTION

XML::LibXML::Node defines functions that are common to all Node Types. An
XML::LibXML::Node should never be created standalone, but as an instance of a
high level class such as XML::LibXML::Element or XML::LibXML::Text. The class
itself should provide only common functionality. In XML::LibXML each node is
part either of a document or a document-fragment. Because of this there is no
node without a parent. This may causes confusion with "unbound" nodes.


=head1 METHODS

Many functions listed here are extensively documented in the DOM Level 3 specification (L<<<<<< http://www.w3.org/TR/DOM-Level-3-Core/ >>>>>>). Please refer to the specification for extensive documentation.

=over 4

=item nodeName

  $name = $node->nodeName;

Returns the node's name. This function is aware of namespaces and returns the
full name of the current node (C<<<<<< prefix:localname >>>>>>).

Since 1.62 this function also returns the correct DOM names for node types with
constant names, namely: #text, #cdata-section, #comment, #document,
#document-fragment.


=item setNodeName

  $node->setNodeName( $newName );

In very limited situations, it is useful to change a nodes name. In the DOM
specification this should throw an error. This Function is aware of namespaces.


=item isSameNode

  $bool = $node->isSameNode( $other_node );

returns TRUE (1) if the given nodes refer to the same node structure, otherwise
FALSE (0) is returned.


=item isEqual

  $bool = $node->isEqual( $other_node );

deprecated version of isSameNode().

I<<<<<< NOTE >>>>>> isEqual will change behaviour to follow the DOM specification


=item unique_key

  $num = $node->unique_key;

This function is not specified for any DOM level. It returns a key guaranteed
to be unique for this node, and to always be the same value for this node. In
other words, two node objects return the same key if and only if isSameNode
indicates that they are the same node.

The returned key value is useful as a key in hashes.


=item nodeValue

  $content = $node->nodeValue;

If the node has any content (such as stored in a C<<<<<< text node >>>>>>) it can get requested through this function.

I<<<<<< NOTE: >>>>>> Element Nodes have no content per definition. To get the text value of an
Element use textContent() instead!


=item textContent

  $content = $node->textContent;

this function returns the content of all text nodes in the descendants of the
given node as specified in DOM.


=item nodeType

  $type = $node->nodeType;

Return a numeric value representing the node type of this node. The module
XML::LibXML by default exports constants for the node types (see the EXPORT
section in the L<<<<<< XML::LibXML >>>>>> manual page).


=item unbindNode

  $node->unbindNode();

Unbinds the Node from its siblings and Parent, but not from the Document it
belongs to. If the node is not inserted into the DOM afterwards, it will be
lost after the program terminates. From a low level view, the unbound node is
stripped from the context it is and inserted into a (hidden) document-fragment.


=item removeChild

  $childnode = $node->removeChild( $childnode );

This will unbind the Child Node from its parent C<<<<<< $node >>>>>>. The function returns the unbound node. If C<<<<<< $childnode >>>>>> is not a child of the given Node the function will fail.


=item replaceChild

  $oldnode = $node->replaceChild( $newNode, $oldNode );

Replaces the C<<<<<< $oldNode >>>>>> with the C<<<<<< $newNode >>>>>>. The C<<<<<< $oldNode >>>>>> will be unbound from the Node. This function differs from the DOM L2
specification, in the case, if the new node is not part of the document, the
node will be imported first.


=item replaceNode

  $node->replaceNode($newNode);

This function is very similar to replaceChild(), but it replaces the node
itself rather than a childnode. This is useful if a node found by any XPath
function, should be replaced.


=item appendChild

  $childnode = $node->appendChild( $childnode );

The function will add the C<<<<<< $childnode >>>>>> to the end of C<<<<<< $node >>>>>>'s children. The function should fail, if the new childnode is already a child
of C<<<<<< $node >>>>>>. This function differs from the DOM L2 specification, in the case, if the new
node is not part of the document, the node will be imported first.


=item addChild

  $childnode = $node->addChild( $childnode );

As an alternative to appendChild() one can use the addChild() function. This
function is a bit faster, because it avoids all DOM conformity checks.
Therefore this function is quite useful if one builds XML documents in memory
where the order and ownership (C<<<<<< ownerDocument >>>>>>) is assured.

addChild() uses libxml2's own xmlAddChild() function. Thus it has to be used
with extra care: If a text node is added to a node and the node itself or its
last childnode is as well a text node, the node to add will be merged with the
one already available. The current node will be removed from memory after this
action. Because perl is not aware of this action, the perl instance is still
available. XML::LibXML will catch the loss of a node and refuse to run any
function called on that node.



  my $t1 = $doc->createTextNode( "foo" );
   my $t2 = $doc->createTextNode( "bar" );
   $t1->addChild( $t2 );       # is OK
   my $val = $t2->nodeValue(); # will fail, script dies

Also addChild() will not check if the added node belongs to the same document
as the node it will be added to. This could lead to inconsistent documents and
in more worse cases even to memory violations, if one does not keep track of
this issue.

Although this sounds like a lot of trouble, addChild() is useful if a document
is built from a stream, such as happens sometimes in SAX handlers or filters.

If you are not sure about the source of your nodes, you better stay with
appendChild(), because this function is more user friendly in the sense of
being more error tolerant.


=item addNewChild

  $node = $parent->addNewChild( $nsURI, $name );

Similar to C<<<<<< addChild() >>>>>>, this function uses low level libxml2 functionality to provide faster
interface for DOM building. I<<<<<< addNewChild() >>>>>> uses C<<<<<< xmlNewChild() >>>>>> to create a new node on a given parent element.

addNewChild() has two parameters $nsURI and $name, where $nsURI is an
(optional) namespace URI. $name is the fully qualified element name;
addNewChild() will determine the correct prefix if necessary.

The function returns the newly created node.

This function is very useful for DOM building, where a created node can be
directly associated with its parent. I<<<<<< NOTE >>>>>> this function is not part of the DOM specification and its use will limit your
code to XML::LibXML.


=item addSibling

  $node->addSibling($newNode);

addSibling() allows adding an additional node to the end of a nodelist, defined
by the given node.


=item cloneNode

  $newnode =$node->cloneNode( $deep );

I<<<<<< cloneNode >>>>>> creates a copy of C<<<<<< $node >>>>>>. When $deep is set to 1 (true) the function will copy all child nodes as well.
If $deep is 0 only the current node will be copied. Note that in case of
element, attributes are copied even if $deep is 0.

Note that the behavior of this function for $deep=0 has changed in 1.62 in
order to be consistent with the DOM spec (in older versions attributes and
namespace information was not copied for elements).

I<<<<<< NOTE >>>>>>cloneNode creates a copy of the selected node that includes the parent's
defined I<<<<<< namespaces >>>>>> that are in use by the node (or its children) being cloned. That makes it
useful for extracting a fragment of xml that can be used as a valid xml
document.


=item parentNode

  $parentnode = $node->parentNode;

Returns simply the Parent Node of the current node.


=item nextSibling

  $nextnode = $node->nextSibling();

Returns the next sibling if any .


=item nextNonBlankSibling

  $nextnode = $node->nextNonBlankSibling();

Returns the next non-blank sibling if any (a node is blank if it is a Text or
CDATA node consisting of whitespace only). This method is not defined by DOM.


=item previousSibling

  $prevnode = $node->previousSibling();

Analogous to I<<<<<< getNextSibling >>>>>> the function returns the previous sibling if any.


=item previousNonBlankSibling

  $prevnode = $node->previousNonBlankSibling();

Returns the previous non-blank sibling if any (a node is blank if it is a Text
or CDATA node consisting of whitespace only). This method is not defined by
DOM.


=item hasChildNodes

  $boolean = $node->hasChildNodes();

If the current node has child nodes this function returns TRUE (1), otherwise
it returns FALSE (0, not undef).


=item firstChild

  $childnode = $node->firstChild;

If a node has child nodes this function will return the first node in the child
list.


=item lastChild

  $childnode = $node->lastChild;

If the C<<<<<< $node >>>>>> has child nodes this function returns the last child node.


=item ownerDocument

  $documentnode = $node->ownerDocument;

Through this function it is always possible to access the document the current
node is bound to.


=item getOwner

  $node = $node->getOwner;

This function returns the node the current node is associated with. In most
cases this will be a document node or a document fragment node.


=item setOwnerDocument

  $node->setOwnerDocument( $doc );

This function binds a node to another DOM. This method unbinds the node first,
if it is already bound to another document.

This function is the opposite calling of L<<<<<< XML::LibXML::Document >>>>>>'s adoptNode() function. Because of this it has the same limitations with
Entity References as adoptNode().


=item insertBefore

  $node->insertBefore( $newNode, $refNode );

The method inserts C<<<<<< $newNode >>>>>> before C<<<<<< $refNode >>>>>>. If C<<<<<< $refNode >>>>>> is undefined, the newNode will be set as the new last child of the parent node.
This function differs from the DOM L2 specification, in the case, if the new
node is not part of the document, the node will be imported first,
automatically.

$refNode has to be passed to the function even if it is undefined:



  $node->insertBefore( $newNode, undef ); # the same as $node->appendChild( $newNode );
   $node->insertBefore( $newNode ); # wrong

Note, that the reference node has to be a direct child of the node the function
is called on. Also, $newChild is not allowed to be an ancestor of the new
parent node.


=item insertAfter

  $node->insertAfter( $newNode, $refNode );

The method inserts C<<<<<< $newNode >>>>>> after C<<<<<< $refNode >>>>>>. If C<<<<<< $refNode >>>>>> is undefined, the newNode will be set as the new last child of the parent node.

Note, that $refNode has to be passed explicitly even if it is undef.


=item findnodes

  @nodes = $node->findnodes( $xpath_expression );

I<<<<<< findnodes >>>>>> evaluates the xpath expression (XPath 1.0) on the current node and returns the
resulting node set as an array. In scalar context, returns an L<<<<<< XML::LibXML::NodeList >>>>>> object.

The xpath expression can be passed either as a string, or as a L<<<<<< XML::LibXML::XPathExpression >>>>>> object.

I<<<<<< NOTE ON NAMESPACES AND XPATH >>>>>>:

A common mistake about XPath is to assume that node tests consisting of an
element name with no prefix match elements in the default namespace. This
assumption is wrong - by XPath specification, such node tests can only match
elements that are in no (i.e. null) namespace.

So, for example, one cannot match the root element of an XHTML document with C<<<<<< $node-E<gt>find('/html') >>>>>> since C<<<<<< '/html' >>>>>> would only match if the root element C<<<<<< E<lt>htmlE<gt> >>>>>> had no namespace, but all XHTML elements belong to the namespace
http://www.w3.org/1999/xhtml. (Note that C<<<<<< xmlns="..." >>>>>> namespace declarations can also be specified in a DTD, which makes the
situation even worse, since the XML document looks as if there was no default
namespace).

There are several possible ways to deal with namespaces in XPath:


=over 4

=item *

The recommended way is to use the L<<<<<< XML::LibXML::XPathContext >>>>>> module to define an explicit context for XPath evaluation, in which a document
independent prefix-to-namespace mapping can be defined. For example:



  my $xpc = XML::LibXML::XPathContext->new;
  $xpc->registerNs('x', 'http://www.w3.org/1999/xhtml');
  $xpc->find('/x:html',$node);



=item *

Another possibility is to use prefixes declared in the queried document (if
known). If the document declares a prefix for the namespace in question (and
the context node is in the scope of the declaration), C<<<<<< XML::LibXML >>>>>> allows you to use the prefix in the XPath expression, e.g.:



  $node->find('/x:html');



=back

See also XML::LibXML::XPathContext->findnodes.


=item find

  $result = $node->find( $xpath );

I<<<<<< find >>>>>> evaluates the XPath 1.0 expression using the current node as the context of the
expression, and returns the result depending on what type of result the XPath
expression had. For example, the XPath "1 * 3 + 52" results in a L<<<<<< XML::LibXML::Number >>>>>> object being returned. Other expressions might return an L<<<<<< XML::LibXML::Boolean >>>>>> object, or an L<<<<<< XML::LibXML::Literal >>>>>> object (a string). Each of those objects uses Perl's overload feature to "do
the right thing" in different contexts.

The xpath expression can be passed either as a string, or as a L<<<<<< XML::LibXML::XPathExpression >>>>>> object.

See also L<<<<<< XML::LibXML::XPathContext >>>>>>->find.


=item findvalue

  print $node->findvalue( $xpath );

I<<<<<< findvalue >>>>>> is exactly equivalent to:



  $node->find( $xpath )->to_literal;

That is, it returns the literal value of the results. This enables you to
ensure that you get a string back from your search, allowing certain shortcuts.
This could be used as the equivalent of XSLT's <xsl:value-of
select="some_xpath"/>.

See also L<<<<<< XML::LibXML::XPathContext >>>>>>->findvalue.

The xpath expression can be passed either as a string, or as a L<<<<<< XML::LibXML::XPathExpression >>>>>> object.


=item exists

  $bool = $node->exists( $xpath_expression );

This method behaves like I<<<<<< findnodes >>>>>>, except that it only returns a boolean value (1 if the expression matches a
node, 0 otherwise) and may be faster than I<<<<<< findnodes >>>>>>, because the XPath evaluation may stop early on the first match (this is true
for libxml2 >= 2.6.27).

For XPath expressions that do not return node-set, the method returns true if
the returned value is a non-zero number or a non-empty string.


=item childNodes

  @childnodes = $node->childNodes();

I<<<<<< childNodes >>>>>> implements a more intuitive interface to the childnodes of the current node. It
enables you to pass all children directly to a C<<<<<< map >>>>>> or C<<<<<< grep >>>>>>. If this function is called in scalar context, a L<<<<<< XML::LibXML::NodeList >>>>>> object will be returned.


=item nonBlankChildNodes

  @childnodes = $node->nonBlankChildNodes();

This is like I<<<<<< childNodes >>>>>>, but returns only non-blank nodes (where a node is blank if it is a Text or
CDATA node consisting of whitespace only). This method is not defined by DOM.


=item toString

  $xmlstring = $node->toString($format,$docencoding);

This method is similar to the method C<<<<<< toString >>>>>> of a L<<<<<< XML::LibXML::Document >>>>>> but for a single node. It returns a string consisting of XML serialization of
the given node and all its descendants. Unlike C<<<<<< XML::LibXML::Document::toString >>>>>>, in this case the resulting string is by default a character string (UTF-8
encoded with UTF8 flag on). An optional flag $format controls indentation, as
in C<<<<<< XML::LibXML::Document::toString >>>>>>. If the second optional $docencoding flag is true, the result will be a byte
string in the document encoding (see C<<<<<< XML::LibXML::Document::actualEncoding >>>>>>).


=item toStringC14N

  $c14nstring = $node->toStringC14N();
  $c14nstring = $node->toStringC14N($with_comments, $xpath_expression , $xpath_context);

The function is similar to toString(). Instead of simply serializing the
document tree, it transforms it as it is specified in the XML-C14N
Specification (see L<<<<<< http://www.w3.org/TR/xml-c14n >>>>>>). Such transformation is known as canonization.

If $with_comments is 0 or not defined, the result-document will not contain any
comments that exist in the original document. To include comments into the
canonized document, $with_comments has to be set to 1.

The parameter $xpath_expression defines the nodeset of nodes that should be
visible in the resulting document. This can be used to filter out some nodes.
One has to note, that only the nodes that are part of the nodeset, will be
included into the result-document. Their child-nodes will not exist in the
resulting document, unless they are part of the nodeset defined by the xpath
expression.

If $xpath_expression is omitted or empty, toStringC14N() will include all nodes
in the given sub-tree, using the following XPath expressions: with comments

  (. | .//node() | .//@* | .//namespace::*)

and without comments

  (. | .//node() | .//@* | .//namespace::*)[not(self::comment())]



An optional parameter $xpath_context can be used to pass an L<<<<<< XML::LibXML::XPathContext >>>>>> object defining the context for evaluation of $xpath_expression. This is useful
for mapping namespace prefixes used in the XPath expression to namespace URIs.
Note, however, that $node will be used as the context node for the evaluation,
not the context node of $xpath_context!


=item toStringC14N_v1_1

  $c14nstring = $node->toStringC14N_v1_1();
  $c14nstring = $node->toStringC14N_v1_1($with_comments, $xpath_expression , $xpath_context);

This function behaves like toStringC14N() except that it uses the
"XML_C14N_1_1" constant for canonicalising using the "C14N 1.1 spec".


=item toStringEC14N

  $ec14nstring = $node->toStringEC14N();
  $ec14nstring = $node->toStringEC14N($with_comments, $xpath_expression, $inclusive_prefix_list);
  $ec14nstring = $node->toStringEC14N($with_comments, $xpath_expression, $xpath_context, $inclusive_prefix_list);

The function is similar to toStringC14N() but follows the XML-EXC-C14N
Specification (see L<<<<<< http://www.w3.org/TR/xml-exc-c14n >>>>>>) for exclusive canonization of XML.

The arguments $with_comments, $xpath_expression, $xpath_context are as in
toStringC14N(). An ARRAY reference can be passed as the last argument
$inclusive_prefix_list, listing namespace prefixes that are to be handled in
the manner described by the Canonical XML Recommendation (i.e. preserved in the
output even if the namespace is not used). C.f. the spec for details.


=item serialize

  $str = $doc->serialize($format);

An alias for toString(). This function was name added to be more consistent
with libxml2.


=item serialize_c14n

An alias for toStringC14N().


=item serialize_exc_c14n

An alias for toStringEC14N().


=item localname

  $localname = $node->localname;

Returns the local name of a tag. This is the part behind the colon.


=item prefix

  $nameprefix = $node->prefix;

Returns the prefix of a tag. This is the part before the colon.


=item namespaceURI

  $uri = $node->namespaceURI();

returns the URI of the current namespace.


=item hasAttributes

  $boolean = $node->hasAttributes();

returns 1 (TRUE) if the current node has any attributes set, otherwise 0
(FALSE) is returned.


=item attributes

  @attributelist = $node->attributes();

This function returns all attributes and namespace declarations assigned to the
given node.

Because XML::LibXML does not implement namespace declarations and attributes
the same way, it is required to test what kind of node is handled while
accessing the functions result.

If this function is called in array context the attribute nodes are returned as
an array. In scalar context, the function will return a L<<<<<< XML::LibXML::NamedNodeMap >>>>>> object.


=item lookupNamespaceURI

  $URI = $node->lookupNamespaceURI( $prefix );

Find a namespace URI by its prefix starting at the current node.


=item lookupNamespacePrefix

  $prefix = $node->lookupNamespacePrefix( $URI );

Find a namespace prefix by its URI starting at the current node.

I<<<<<< NOTE >>>>>> Only the namespace URIs are meant to be unique. The prefix is only document
related. Also the document might have more than a single prefix defined for a
namespace.


=item normalize

  $node->normalize;

This function normalizes adjacent text nodes. This function is not as strict as
libxml2's xmlTextMerge() function, since it will not free a node that is still
referenced by the perl layer.


=item getNamespaces

  @nslist = $node->getNamespaces;

If a node has any namespaces defined, this function will return these
namespaces. Note, that this will not return all namespaces that are in scope,
but only the ones declared explicitly for that node.

Although getNamespaces is available for all nodes, it only makes sense if used
with element nodes.


=item removeChildNodes

  $node->removeChildNodes();

This function is not specified for any DOM level: It removes all childnodes
from a node in a single step. Other than the libxml2 function itself
(xmlFreeNodeList), this function will not immediately remove the nodes from the
memory. This saves one from getting memory violations, if there are nodes still
referred to from the Perl level.


=item baseURI ()

  $strURI = $node->baseURI();

Searches for the base URL of the node. The method should work on both XML and
HTML documents even if base mechanisms for these are completely different. It
returns the base as defined in RFC 2396 sections "5.1.1. Base URI within
Document Content" and "5.1.2. Base URI from the Encapsulating Entity". However
it does not return the document base (5.1.3), use method C<<<<<< URI >>>>>> of C<<<<<< XML::LibXML::Document >>>>>> for this.


=item setBaseURI ($strURI)

  $node->setBaseURI($strURI);

This method only does something useful for an element node in an XML document.
It sets the xml:base attribute on the node to $strURI, which effectively sets
the base URI of the node to the same value.

Note: For HTML documents this behaves as if the document was XML which may not
be desired, since it does not effectively set the base URI of the node. See RFC
2396 appendix D for an example of how base URI can be specified in HTML.


=item nodePath

  $node->nodePath();

This function is not specified for any DOM level: It returns a canonical
structure based XPath for a given node.


=item line_number

  $lineno = $node->line_number();

This function returns the line number where the tag was found during parsing.
If a node is added to the document the line number is 0. Problems may occur, if
a node from one document is passed to another one.

IMPORTANT: Due to limitations in the libxml2 library line numbers greater than
65535 will be returned as 65535. Please see L<<<<<< http://bugzilla.gnome.org/show_bug.cgi?id=325533 >>>>>> for more details.

Note: line_number() is special to XML::LibXML and not part of the DOM
specification.

If the line_numbers flag of the parser was not activated before parsing,
line_number() will always return 0.



=back

=head1 AUTHORS

Matt Sergeant,
Christian Glahn,
Petr Pajas


=head1 VERSION

2.0210

=head1 COPYRIGHT

2001-2007, AxKit.com Ltd.

2002-2006, Christian Glahn.

2006-2009, Petr Pajas.

=cut


=head1 LICENSE

This program is free software; you can redistribute it and/or modify it under
the same terms as Perl itself.

PK     N\m"  "    LibXML/Namespace.podnu 6$        =head1 NAME

XML::LibXML::Namespace - XML::LibXML Namespace Implementation

=head1 SYNOPSIS



  use XML::LibXML;
  # Only methods specific to Namespace nodes are listed here,
  # see the XML::LibXML::Node manpage for other methods

  my $ns = XML::LibXML::Namespace->new($nsURI);
  print $ns->nodeName();
  print $ns->name();
  $localname = $ns->getLocalName();
  print $ns->getData();
  print $ns->getValue();
  print $ns->value();
  $known_uri = $ns->getNamespaceURI();
  $known_prefix = $ns->getPrefix();
  $key = $ns->unique_key();

=head1 DESCRIPTION

Namespace nodes are returned by both $element->findnodes('namespace::foo') or
by $node->getNamespaces().

The namespace node API is not part of any current DOM API, and so it is quite
minimal. It should be noted that namespace nodes are I<<<<<< not >>>>>> a sub class of L<<<<<< XML::LibXML::Node >>>>>>, however Namespace nodes act a lot like attribute nodes, and similarly named
methods will return what you would expect if you treated the namespace node as
an attribute. Note that in order to fix several inconsistencies between the API
and the documentation, the behavior of some functions have been changed in
1.64.


=head1 METHODS

=over 4

=item new

  my $ns = XML::LibXML::Namespace->new($nsURI);

Creates a new Namespace node. Note that this is not a 'node' as an attribute or
an element node. Therefore you can't do call all L<<<<<< XML::LibXML::Node >>>>>> Functions. All functions available for this node are listed below.

Optionally you can pass the prefix to the namespace constructor. If this second
parameter is omitted you will create a so called default namespace. Note, the
newly created namespace is not bound to any document or node, therefore you
should not expect it to be available in an existing document.


=item declaredURI

Returns the URI for this namespace.


=item declaredPrefix

Returns the prefix for this namespace.


=item nodeName

  print $ns->nodeName();

Returns "xmlns:prefix", where prefix is the prefix for this namespace.


=item name

  print $ns->name();

Alias for nodeName()


=item getLocalName

  $localname = $ns->getLocalName();

Returns the local name of this node as if it were an attribute, that is, the
prefix associated with the namespace.


=item getData

  print $ns->getData();

Returns the URI of the namespace, i.e. the value of this node as if it were an
attribute.


=item getValue

  print $ns->getValue();

Alias for getData()


=item value

  print $ns->value();

Alias for getData()


=item getNamespaceURI

  $known_uri = $ns->getNamespaceURI();

Returns the string "http://www.w3.org/2000/xmlns/"


=item getPrefix

  $known_prefix = $ns->getPrefix();

Returns the string "xmlns"


=item unique_key

  $key = $ns->unique_key();

This method returns a key guaranteed to be unique for this namespace, and to
always be the same value for this namespace. Two namespace objects return the
same key if and only if they have the same prefix and the same URI. The
returned key value is useful as a key in hashes.



=back

=head1 AUTHORS

Matt Sergeant,
Christian Glahn,
Petr Pajas


=head1 VERSION

2.0210

=head1 COPYRIGHT

2001-2007, AxKit.com Ltd.

2002-2006, Christian Glahn.

2006-2009, Petr Pajas.

=cut


=head1 LICENSE

This program is free software; you can redistribute it and/or modify it under
the same terms as Perl itself.

PK     N\>8%o  %o    LibXML/Parser.podnu 6$        =head1 NAME

XML::LibXML::Parser - Parsing XML Data with XML::LibXML

=head1 SYNOPSIS



  use XML::LibXML '1.70';

  # Parser constructor

  $parser = XML::LibXML->new();
  $parser = XML::LibXML->new(option=>value, ...);
  $parser = XML::LibXML->new({option=>value, ...});

  # Parsing XML

  $dom = XML::LibXML->load_xml(
      location => $file_or_url
      # parser options ...
    );
  $dom = XML::LibXML->load_xml(
      string => $xml_string
      # parser options ...
    );
  $dom = XML::LibXML->load_xml(
      string => (\$xml_string)
      # parser options ...
    );
  $dom = XML::LibXML->load_xml({
      IO => $perl_file_handle
      # parser options ...
    );
  $dom = $parser->load_xml(...);

  # Parsing HTML

  $dom = XML::LibXML->load_html(...);
  $dom = $parser->load_html(...);

  # Parsing well-balanced XML chunks

  $fragment = $parser->parse_balanced_chunk( $wbxmlstring, $encoding );

  # Processing XInclude

  $parser->process_xincludes( $doc );
  $parser->processXIncludes( $doc );

  # Old-style parser interfaces

  $doc = $parser->parse_file( $xmlfilename );
  $doc = $parser->parse_fh( $io_fh );
  $doc = $parser->parse_string( $xmlstring);
  $doc = $parser->parse_html_file( $htmlfile, \%opts );
  $doc = $parser->parse_html_fh( $io_fh, \%opts );
  $doc = $parser->parse_html_string( $htmlstring, \%opts );

  # Push parser

  $parser->parse_chunk($string, $terminate);
  $parser->init_push();
  $parser->push(@data);
  $doc = $parser->finish_push( $recover );

  # Set/query parser options

  $parser->option_exists($name);
  $parser->get_option($name);
  $parser->set_option($name,$value);
  $parser->set_options({$name=>$value,...});

  # XML catalogs

  $parser->load_catalog( $catalog_file );

=head1 PARSING

An XML document is read into a data structure such as a DOM tree by a piece of
software, called a parser. XML::LibXML currently provides four different parser
interfaces:


=over 4

=item *

A DOM Pull-Parser



=item *

A DOM Push-Parser



=item *

A SAX Parser



=item *

A DOM based SAX Parser.



=back


=head2 Creating a Parser Instance

XML::LibXML provides an OO interface to the libxml2 parser functions. Thus you
have to create a parser instance before you can parse any XML data.

=over 4

=item new


  $parser = XML::LibXML->new();
  $parser = XML::LibXML->new(option=>value, ...);
  $parser = XML::LibXML->new({option=>value, ...});

Create a new XML and HTML parser instance. Each parser instance holds default
values for various parser options. Optionally, one can pass a hash reference or
a list of option => value pairs to set a different default set of options.
Unless specified otherwise, the options C<<<<<< load_ext_dtd >>>>>>, and C<<<<<< expand_entities >>>>>> are set to 1. See L<<<<<< Parser Options >>>>>> for a list of libxml2 parser's options.



=back


=head2 DOM Parser

One of the common parser interfaces of XML::LibXML is the DOM parser. This
parser reads XML data into a DOM like data structure, so each tag can get
accessed and transformed.

XML::LibXML's DOM parser is not only capable to parse XML data, but also
(strict) HTML files. There are three ways to parse documents - as a string, as
a Perl filehandle, or as a filename/URL. The return value from each is a L<<<<<< XML::LibXML::Document >>>>>> object, which is a DOM object.

All of the functions listed below will throw an exception if the document is
invalid. To prevent this causing your program exiting, wrap the call in an
eval{} block

=over 4

=item load_xml


  $dom = XML::LibXML->load_xml(
      location => $file_or_url
      # parser options ...
    );
  $dom = XML::LibXML->load_xml(
      string => $xml_string
      # parser options ...
    );
  $dom = XML::LibXML->load_xml(
      string => (\$xml_string)
      # parser options ...
    );
  $dom = XML::LibXML->load_xml({
      IO => $perl_file_handle
      # parser options ...
    );
  $dom = $parser->load_xml(...);


This function is available since XML::LibXML 1.70. It provides easy to use
interface to the XML parser that parses given file (or non-HTTPS URL), string,
or input stream to a DOM tree. The arguments can be passed in a HASH reference
or as name => value pairs. The function can be called as a class method or an
object method. In both cases it internally creates a new parser instance
passing the specified parser options; if called as an object method, it clones
the original parser (preserving its settings) and additionally applies the
specified options to the new parser. See the constructor C<<<<<< new >>>>>> and L<<<<<< Parser Options >>>>>> for more information.

Note that, due to a limitation in the underlying libxml2 library, this call
does not recognize HTTPS-based URLs. (It will treat an HTTPS URL as a filename,
likely throwing a "No such file or directory" exception.)


=item load_html


  $dom = XML::LibXML->load_html(...);
  $dom = $parser->load_html(...);


This function is available since XML::LibXML 1.70. It has the same usage as C<<<<<< load_xml >>>>>>, providing interface to the HTML parser. See C<<<<<< load_xml >>>>>> for more information.



=back

Parsing HTML may cause problems, especially if the ampersand ('&') is used.
This is a common problem if HTML code is parsed that contains links to
CGI-scripts. Such links cause the parser to throw errors. In such cases libxml2
still parses the entire document as there was no error, but the error causes
XML::LibXML to stop the parsing process. However, the document is not lost.
Such HTML documents should be parsed using the I<<<<<< recover >>>>>> flag. By default recovering is deactivated.

The functions described above are implemented to parse well formed documents.
In some cases a program gets well balanced XML instead of well formed documents
(e.g. an XML fragment from a database). With XML::LibXML it is not required to
wrap such fragments in the code, because XML::LibXML is capable even to parse
well balanced XML fragments.

=over 4

=item parse_balanced_chunk

  $fragment = $parser->parse_balanced_chunk( $wbxmlstring, $encoding );

This function parses a well balanced XML string into a L<<<<<< XML::LibXML::DocumentFragment >>>>>>. The first arguments contains the input string, the optional second argument
can be used to specify character encoding of the input (UTF-8 is assumed by
default).


=item parse_xml_chunk

This is the old name of parse_balanced_chunk(). Because it may causes confusion
with the push parser interface, this function should not be used anymore.



=back

By default XML::LibXML does not process XInclude tags within an XML Document
(see options section below). XML::LibXML allows one to post-process a document
to expand XInclude tags.

=over 4

=item process_xincludes

  $parser->process_xincludes( $doc );

After a document is parsed into a DOM structure, you may want to expand the
documents XInclude tags. This function processes the given document structure
and expands all XInclude tags (or throws an error) by using the flags and
callbacks of the given parser instance.

Note that the resulting Tree contains some extra nodes (of type
XML_XINCLUDE_START and XML_XINCLUDE_END) after successfully processing the
document. These nodes indicate where data was included into the original tree.
if the document is serialized, these extra nodes will not show up.

Remember: A Document with processed XIncludes differs from the original
document after serialization, because the original XInclude tags will not get
restored!

If the parser flag "expand_xincludes" is set to 1, you need not to post process
the parsed document.


=item processXIncludes

  $parser->processXIncludes( $doc );

This is an alias to process_xincludes, but through a JAVA like function name.


=item parse_file

  $doc = $parser->parse_file( $xmlfilename );

This function parses an XML document from a file or network; $xmlfilename can
be either a filename or a (non-HTTPS) URL. Note that for parsing files, this
function is the fastest choice, about 6-8 times faster then parse_fh().


=item parse_fh

  $doc = $parser->parse_fh( $io_fh );

parse_fh() parses a IOREF or a subclass of IO::Handle.

Because the data comes from an open handle, libxml2's parser does not know
about the base URI of the document. To set the base URI one should use
parse_fh() as follows:



  my $doc = $parser->parse_fh( $io_fh, $baseuri );


=item parse_string

  $doc = $parser->parse_string( $xmlstring);

This function is similar to parse_fh(), but it parses an XML document that is
available as a single string in memory, or alternatively as a reference to a
scalar containing a string. Again, you can pass an optional base URI to the
function.



  my $doc = $parser->parse_string( $xmlstring, $baseuri );
  my $doc = $parser->parse_string(\$xmlstring, $baseuri);


=item parse_html_file

  $doc = $parser->parse_html_file( $htmlfile, \%opts );

Similar to parse_file() but parses HTML (strict) documents; $htmlfile can be
filename or (non-HTTPS) URL.

An optional second argument can be used to pass some options to the HTML parser
as a HASH reference. See options labeled with HTML in L<<<<<< Parser Options >>>>>>.


=item parse_html_fh

  $doc = $parser->parse_html_fh( $io_fh, \%opts );

Similar to parse_fh() but parses HTML (strict) streams.

An optional second argument can be used to pass some options to the HTML parser
as a HASH reference. See options labeled with HTML in L<<<<<< Parser Options >>>>>>.

Note: encoding option may not work correctly with this function in libxml2 <
2.6.27 if the HTML file declares charset using a META tag.


=item parse_html_string

  $doc = $parser->parse_html_string( $htmlstring, \%opts );

Similar to parse_string() but parses HTML (strict) strings.

An optional second argument can be used to pass some options to the HTML parser
as a HASH reference. See options labeled with HTML in L<<<<<< Parser Options >>>>>>.



=back


=head2 Push Parser

XML::LibXML provides a push parser interface. Rather than pulling the data from
a given source the push parser waits for the data to be pushed into it.

This allows one to parse large documents without waiting for the parser to
finish. The interface is especially useful if a program needs to pre-process
the incoming pieces of XML (e.g. to detect document boundaries).

While XML::LibXML parse_*() functions force the data to be a well-formed XML,
the push parser will take any arbitrary string that contains some XML data. The
only requirement is that all the pushed strings are together a well formed
document. With the push parser interface a program can interrupt the parsing
process as required, where the parse_*() functions give not enough flexibility.

Different to the pull parser implemented in parse_fh() or parse_file(), the
push parser is not able to find out about the documents end itself. Thus the
calling program needs to indicate explicitly when the parsing is done.

In XML::LibXML this is done by a single function:

=over 4

=item parse_chunk

  $parser->parse_chunk($string, $terminate);

parse_chunk() tries to parse a given chunk of data, which isn't necessarily
well balanced data. The function takes two parameters: The chunk of data as a
string and optional a termination flag. If the termination flag is set to a
true value (e.g. 1), the parsing will be stopped and the resulting document
will be returned as the following example describes:



  my $parser = XML::LibXML->new;
  for my $string ( "<", "foo", ' bar="hello world"', "/>") {
       $parser->parse_chunk( $string );
  }
  my $doc = $parser->parse_chunk("", 1); # terminate the parsing



=back

Internally XML::LibXML provides three functions that control the push parser
process:

=over 4

=item init_push

  $parser->init_push();

Initializes the push parser.


=item push

  $parser->push(@data);

This function pushes the data stored inside the array to libxml2's parser. Each
entry in @data must be a normal scalar! This method can be called repeatedly.


=item finish_push

  $doc = $parser->finish_push( $recover );

This function returns the result of the parsing process. If this function is
called without a parameter it will complain about non well-formed documents. If
$restore is 1, the push parser can be used to restore broken or non well formed
(XML) documents as the following example shows:



  eval {
      $parser->push( "<foo>", "bar" );
      $doc = $parser->finish_push();    # will report broken XML
  };
  if ( $@ ) {
     # ...
  }

This can be annoying if the closing tag is missed by accident. The following
code will restore the document:



  eval {
      $parser->push( "<foo>", "bar" );
      $doc = $parser->finish_push(1);   # will return the data parsed
                                        # unless an error happened
  };

  print $doc->toString(); # returns "<foo>bar</foo>"

Of course finish_push() will return nothing if there was no data pushed to the
parser before.



=back


=head2 Pull Parser (Reader)

XML::LibXML also provides a pull-parser interface similar to the XmlReader
interface in .NET. This interface is almost streaming, and is usually faster
and simpler to use than SAX. See L<<<<<< XML::LibXML::Reader >>>>>>.


=head2 Direct SAX Parser

XML::LibXML provides a direct SAX parser in the L<<<<<< XML::LibXML::SAX >>>>>> module.


=head2 DOM based SAX Parser

XML::LibXML also provides a DOM based SAX parser. The SAX parser is defined in
the module XML::LibXML::SAX::Parser. As it is not a stream based parser, it
parses documents into a DOM and traverses the DOM tree instead.

The API of this parser is exactly the same as any other Perl SAX2 parser. See
XML::SAX::Intro for details.

Aside from the regular parsing methods, you can access the DOM tree traverser
directly, using the generate() method:



  my $doc = build_yourself_a_document();
  my $saxparser = $XML::LibXML::SAX::Parser->new( ... );
  $parser->generate( $doc );

This is useful for serializing DOM trees, for example that you might have done
prior processing on, or that you have as a result of XSLT processing.

I<<<<<< WARNING >>>>>>

This is NOT a streaming SAX parser. As I said above, this parser reads the
entire document into a DOM and serialises it. Some people couldn't read that in
the paragraph above so I've added this warning. If you want a streaming SAX
parser look at the L<<<<<< XML::LibXML::SAX >>>>>> man page


=head1 SERIALIZATION

XML::LibXML provides some functions to serialize nodes and documents. The
serialization functions are described on the L<<<<<< XML::LibXML::Node >>>>>> manpage or the L<<<<<< XML::LibXML::Document >>>>>> manpage. XML::LibXML checks three global flags that alter the serialization
process:


=over 4

=item *

skipXMLDeclaration



=item *

skipDTD



=item *

setTagCompression



=back

of that three functions only setTagCompression is available for all
serialization functions.

Because XML::LibXML does these flags not itself, one has to define them locally
as the following example shows:



  local $XML::LibXML::skipXMLDeclaration = 1;
  local $XML::LibXML::skipDTD = 1;
  local $XML::LibXML::setTagCompression = 1;

If skipXMLDeclaration is defined and not '0', the XML declaration is omitted
during serialization.

If skipDTD is defined and not '0', an existing DTD would not be serialized with
the document.

If setTagCompression is defined and not '0' empty tags are displayed as open
and closing tags rather than the shortcut. For example the empty tag I<<<<<< foo >>>>>> will be rendered as I<<<<<< E<lt>fooE<gt>E<lt>/fooE<gt> >>>>>> rather than I<<<<<< E<lt>foo/E<gt> >>>>>>.


=head1 PARSER OPTIONS

Handling of libxml2 parser options has been unified and improved in XML::LibXML
1.70. You can now set default options for a particular parser instance by
passing them to the constructor as C<<<<<< XML::LibXML-E<gt>new({name=E<gt>value, ...}) >>>>>> or C<<<<<< XML::LibXML-E<gt>new(name=E<gt>value,...) >>>>>>. The options can be queried and changed using the following methods (pre-1.70
interfaces such as C<<<<<< $parser-E<gt>load_ext_dtd(0) >>>>>> also exist, see below):

=over 4

=item option_exists

  $parser->option_exists($name);

Returns 1 if the current XML::LibXML version supports the option C<<<<<< $name >>>>>>, otherwise returns 0 (note that this does not necessarily mean that the option
is supported by the underlying libxml2 library).


=item get_option

  $parser->get_option($name);

Returns the current value of the parser option C<<<<<< $name >>>>>>.


=item set_option

  $parser->set_option($name,$value);

Sets option C<<<<<< $name >>>>>> to value C<<<<<< $value >>>>>>.


=item set_options

  $parser->set_options({$name=>$value,...});

Sets multiple parsing options at once.



=back

IMPORTANT NOTE: This documentation reflects the parser flags available in
libxml2 2.7.3. Some options have no effect if an older version of libxml2 is
used.

Each of the flags listed below is labeled

=over 4

=item /parser/

if it can be used with a C<<<<<< XML::LibXML >>>>>> parser object (i.e. passed to C<<<<<< XML::LibXML-E<gt>new >>>>>>, C<<<<<< XML::LibXML-E<gt>set_option >>>>>>, etc.)


=item /html/

if it can be used passed to the C<<<<<< parse_html_* >>>>>> methods


=item /reader/

if it can be used with the C<<<<<< XML::LibXML::Reader >>>>>>.



=back

Unless specified otherwise, the default for boolean valued options is 0
(false).

The available options are:

=over 4

=item URI

/parser, html, reader/

In case of parsing strings or file handles, XML::LibXML doesn't know about the
base uri of the document. To make relative references such as XIncludes work,
one has to set a base URI, that is then used for the parsed document.


=item line_numbers

/parser, html, reader/

If this option is activated, libxml2 will store the line number of each element
node in the parsed document. The line number can be obtained using the C<<<<<< line_number() >>>>>> method of the C<<<<<< XML::LibXML::Node >>>>>> class (for non-element nodes this may report the line number of the containing
element). The line numbers are also used for reporting positions of validation
errors.

IMPORTANT: Due to limitations in the libxml2 library line numbers greater than
65535 will be returned as 65535. Unfortunately, this is a long and sad story,
please see L<<<<<< http://bugzilla.gnome.org/show_bug.cgi?id=325533 >>>>>> for more details.


=item encoding

/html/

character encoding of the input


=item recover

/parser, html, reader/

recover from errors; possible values are 0, 1, and 2

A true value turns on recovery mode which allows one to parse broken XML or
HTML data. The recovery mode allows the parser to return the successfully
parsed portion of the input document. This is useful for almost well-formed
documents, where for example a closing tag is missing somewhere. Still,
XML::LibXML will only parse until the first fatal (non-recoverable) error
occurs, reporting recoverable parsing errors as warnings. To suppress even
these warnings, use recover=>2.

Note that validation is switched off automatically in recovery mode.


=item expand_entities

/parser, reader/

substitute entities; possible values are 0 and 1; default is 1

Note that although this flag disables entity substitution, it does not prevent
the parser from loading external entities; when substitution of an external
entity is disabled, the entity will be represented in the document tree by an
XML_ENTITY_REF_NODE node whose subtree will be the content obtained by parsing
the external resource; Although this nesting is visible from the DOM it is
transparent to XPath data model, so it is possible to match nodes in an
unexpanded entity by the same XPath expression as if the entity were expanded.
See also ext_ent_handler.


=item ext_ent_handler

/parser/

Provide a custom external entity handler to be used when expand_entities is set
to 1. Possible value is a subroutine reference.

This feature does not work properly in libxml2 < 2.6.27!

The subroutine provided is called whenever the parser needs to retrieve the
content of an external entity. It is called with two arguments: the system ID
(URI) and the public ID. The value returned by the subroutine is parsed as the
content of the entity.

This method can be used to completely disable entity loading, e.g. to prevent
exploits of the type described at  (L<<<<<< http://searchsecuritychannel.techtarget.com/generic/0,295582,sid97_gci1304703,00.html >>>>>>), where a service is tricked to expose its private data by letting it parse a
remote file (RSS feed) that contains an entity reference to a local file (e.g. C<<<<<< /etc/fstab >>>>>>).

A more granular solution to this problem, however, is provided by custom URL
resolvers, as in

  my $c = XML::LibXML::InputCallback->new();
  sub match {   # accept file:/ URIs except for XML catalogs in /etc/xml/
    my ($uri) = @_;
    return ($uri=~m{^file:/}
            and $uri !~ m{^file:///etc/xml/})
           ? 1 : 0;
  }
  $c->register_callbacks([ \&match, sub{}, sub{}, sub{} ]);
  $parser->input_callbacks($c);




=item load_ext_dtd

/parser, reader/

load the external DTD subset while parsing; possible values are 0 and 1. Unless
specified, XML::LibXML sets this option to 1.

This flag is also required for DTD Validation, to provide complete attribute,
and to expand entities, regardless if the document has an internal subset. Thus
switching off external DTD loading, will disable entity expansion, validation,
and complete attributes on internal subsets as well.


=item complete_attributes

/parser, reader/

create default DTD attributes; possible values are 0 and 1


=item validation

/parser, reader/

validate with the DTD; possible values are 0 and 1


=item suppress_errors

/parser, html, reader/

suppress error reports; possible values are 0 and 1


=item suppress_warnings

/parser, html, reader/

suppress warning reports; possible values are 0 and 1


=item pedantic_parser

/parser, html, reader/

pedantic error reporting; possible values are 0 and 1


=item no_blanks

/parser, html, reader/

remove blank nodes; possible values are 0 and 1


=item no_defdtd

/html/

do not add a default DOCTYPE; possible values are 0 and 1

the default is (0) to add a DTD when the input html lacks one


=item expand_xinclude or xinclude

/parser, reader/

Implement XInclude substitution; possible values are 0 and 1

Expands XInclude tags immediately while parsing the document. Note that the
parser will use the URI resolvers installed via C<<<<<< XML::LibXML::InputCallback >>>>>> to parse the included document (if any).


=item no_xinclude_nodes

/parser, reader/

do not generate XINCLUDE START/END nodes; possible values are 0 and 1


=item no_network

/parser, html, reader/

Forbid network access; possible values are 0 and 1

If set to true, all attempts to fetch non-local resources (such as DTD or
external entities) will fail (unless custom callbacks are defined).

It may be necessary to use the flag C<<<<<< recover >>>>>> for processing documents requiring such resources while networking is off.


=item clean_namespaces

/parser, reader/

remove redundant namespaces declarations during parsing; possible values are 0
and 1.


=item no_cdata

/parser, html, reader/

merge CDATA as text nodes; possible values are 0 and 1


=item no_basefix

/parser, reader/

not fixup XINCLUDE xml#base URIS; possible values are 0 and 1


=item huge

/parser, html, reader/

relax any hardcoded limit from the parser; possible values are 0 and 1. Unless
specified, XML::LibXML sets this option to 0.

Note: the default value for this option was changed to protect against denial
of service through entity expansion attacks. Before enabling the option ensure
you have taken alternative measures to protect your application against this
type of attack.


=item gdome

/parser/

THIS OPTION IS EXPERIMENTAL!

Although quite powerful, XML::LibXML's DOM implementation is incomplete with
respect to the DOM level 2 or level 3 specifications. XML::GDOME is based on
libxml2 as well, and provides a rather complete DOM implementation by wrapping
libgdome. This flag allows you to make use of XML::LibXML's full parser options
and XML::GDOME's DOM implementation at the same time.

To make use of this function, one has to install libgdome and configure
XML::LibXML to use this library. For this you need to rebuild XML::LibXML!

Note: this feature was not seriously tested in recent XML::LibXML releases.



=back

For compatibility with XML::LibXML versions prior to 1.70, the following
methods are also supported for querying and setting the corresponding parser
options (if called without arguments, the methods return the current value of
the corresponding parser options; with an argument sets the option to a given
value):



  $parser->validation();
  $parser->recover();
  $parser->pedantic_parser();
  $parser->line_numbers();
  $parser->load_ext_dtd();
  $parser->complete_attributes();
  $parser->expand_xinclude();
  $parser->gdome_dom();
  $parser->clean_namespaces();
  $parser->no_network();

The following obsolete methods trigger parser options in some special way:

=over 4

=item recover_silently



  $parser->recover_silently(1);

If called without an argument, returns true if the current value of the C<<<<<< recover >>>>>> parser option is 2 and returns false otherwise. With a true argument sets the C<<<<<< recover >>>>>> parser option to 2; with a false argument sets the C<<<<<< recover >>>>>> parser option to 0.


=item expand_entities



  $parser->expand_entities(0);

Get/set the C<<<<<< expand_entities >>>>>> option. If called with a true argument, also turns the C<<<<<< load_ext_dtd >>>>>> option to 1.


=item keep_blanks



  $parser->keep_blanks(0);

This is actually the opposite of the C<<<<<< no_blanks >>>>>> parser option. If used without an argument retrieves negated value of C<<<<<< no_blanks >>>>>>. If used with an argument sets C<<<<<< no_blanks >>>>>> to the opposite value.


=item base_uri



  $parser->base_uri( $your_base_uri );

Get/set the C<<<<<< URI >>>>>> option.



=back


=head1 XML CATALOGS

C<<<<<< libxml2 >>>>>> supports XML catalogs. Catalogs are used to map remote resources to their local
copies. Using catalogs can speed up parsing processes if many external
resources from remote addresses are loaded into the parsed documents (such as
DTDs or XIncludes).

Note that libxml2 has a global pool of loaded catalogs, so if you apply the
method C<<<<<< load_catalog >>>>>> to one parser instance, all parser instances will start using the catalog (in
addition to other previously loaded catalogs).

Note also that catalogs are not used when a custom external entity handler is
specified. At the current state it is not possible to make use of both types of
resolving systems at the same time.

=over 4

=item load_catalog

  $parser->load_catalog( $catalog_file );

Loads the XML catalog file $catalog_file.



  # Global external entity loader (similar to ext_ent_handler option
  # but this works really globally, also in XML::LibXSLT include etc..)

  XML::LibXML::externalEntityLoader(\&my_loader);



=back


=head1 ERROR REPORTING

XML::LibXML throws exceptions during parsing, validation or XPath processing
(and some other occasions). These errors can be caught by using I<<<<<< eval >>>>>> blocks. The error is stored in I<<<<<< $@ >>>>>>. There are two implementations: the old one throws $@ which is just a message
string, in the new one $@ is an object from the class XML::LibXML::Error; this
class overrides the operator "" so that when printed, the object flattens to
the usual error message.

XML::LibXML throws errors as they occur. This is a very common misunderstanding
in the use of XML::LibXML. If the eval is omitted, XML::LibXML will always halt
your script by "croaking" (see Carp man page for details).

Also note that an increasing number of functions throw errors if bad data is
passed as arguments. If you cannot assure valid data passed to XML::LibXML you
should eval these functions.

Note: since version 1.59, get_last_error() is no longer available in
XML::LibXML for thread-safety reasons.

=head1 AUTHORS

Matt Sergeant,
Christian Glahn,
Petr Pajas


=head1 VERSION

2.0210

=head1 COPYRIGHT

2001-2007, AxKit.com Ltd.

2002-2006, Christian Glahn.

2006-2009, Petr Pajas.

=cut


=head1 LICENSE

This program is free software; you can redistribute it and/or modify it under
the same terms as Perl itself.

PK     N\i^	  ^	    LibXML/RelaxNG.podnu 6$        =head1 NAME

XML::LibXML::RelaxNG - RelaxNG Schema Validation

=head1 SYNOPSIS



  use XML::LibXML;
  $doc = XML::LibXML->new->parse_file($url);

  $rngschema = XML::LibXML::RelaxNG->new( location => $filename_or_url, no_network => 1 );
  $rngschema = XML::LibXML::RelaxNG->new( string => $xmlschemastring, no_network => 1 );
  $rngschema = XML::LibXML::RelaxNG->new( DOM => $doc, no_network => 1 );
  eval { $rngschema->validate( $doc ); };

=head1 DESCRIPTION

The XML::LibXML::RelaxNG class is a tiny frontend to libxml2's RelaxNG
implementation. Currently it supports only schema parsing and document
validation.


=head1 METHODS

=over 4

=item new

  $rngschema = XML::LibXML::RelaxNG->new( location => $filename_or_url, no_network => 1 );
  $rngschema = XML::LibXML::RelaxNG->new( string => $xmlschemastring, no_network => 1 );
  $rngschema = XML::LibXML::RelaxNG->new( DOM => $doc, no_network => 1 );

The constructor of XML::LibXML::RelaxNG needs to be called with list of
parameters. At least location, string or DOM parameter is required to specify
source of schema. Optional parameter no_network set to 1 cause that parser
would not access network and optional parameter recover set 1 cause that parser
would not call die() on errors.

It is important, that each schema only have a single source.

The location parameter allows one to parse a schema from the filesystem or a
(non-HTTPS) URL.

The string parameter will parse the schema from the given XML string.

The DOM parameter allows one to parse the schema from a pre-parsed L<<<<<< XML::LibXML::Document >>>>>>.

Note that the constructor will die() if the schema does not meed the
constraints of the RelaxNG specification.


=item validate

  eval { $rngschema->validate( $doc ); };

This function allows one to validate a (parsed) document against the given
RelaxNG schema. The argument of this function should be an
XML::LibXML::Document object. If this function succeeds, it will return 0,
otherwise it will die() and report the errors found. Because of this validate()
should be always evaluated.



=back

=head1 AUTHORS

Matt Sergeant,
Christian Glahn,
Petr Pajas


=head1 VERSION

2.0210

=head1 COPYRIGHT

2001-2007, AxKit.com Ltd.

2002-2006, Christian Glahn.

2006-2009, Petr Pajas.

=cut


=head1 LICENSE

This program is free software; you can redistribute it and/or modify it under
the same terms as Perl itself.

PK     N\,W-  -    LibXML/XPathContext.podnu 6$        =head1 NAME

XML::LibXML::XPathContext - XPath Evaluation

=head1 SYNOPSIS

  my $xpc = XML::LibXML::XPathContext->new();
  my $xpc = XML::LibXML::XPathContext->new($node);
  $xpc->registerNs($prefix, $namespace_uri)
  $xpc->unregisterNs($prefix)
  $uri = $xpc->lookupNs($prefix)
  $xpc->registerVarLookupFunc($callback, $data)
  $data = $xpc->getVarLookupData();
  $callback = $xpc->getVarLookupFunc();
  $xpc->unregisterVarLookupFunc($name);
  $xpc->registerFunctionNS($name, $uri, $callback)
  $xpc->unregisterFunctionNS($name, $uri)
  $xpc->registerFunction($name, $callback)
  $xpc->unregisterFunction($name)
  @nodes = $xpc->findnodes($xpath)
  @nodes = $xpc->findnodes($xpath, $context_node )
  $nodelist = $xpc->findnodes($xpath, $context_node )
  $object = $xpc->find($xpath )
  $object = $xpc->find($xpath, $context_node )
  $value = $xpc->findvalue($xpath )
  $value = $xpc->findvalue($xpath, $context_node )
  $bool = $xpc->exists( $xpath_expression, $context_node );
  $xpc->setContextNode($node)
  my $node = $xpc->getContextNode;
  $xpc->setContextPosition($position)
  my $position = $xpc->getContextPosition;
  $xpc->setContextSize($size)
  my $size = $xpc->getContextSize;
  $xpc->setContextNode($node)

=head1 DESCRIPTION

The XML::LibXML::XPathContext class provides an almost complete interface to
libxml2's XPath implementation. With XML::LibXML::XPathContext, it is possible
to evaluate XPath expressions in the context of arbitrary node, context size,
and context position, with a user-defined namespace-prefix mapping, custom
XPath functions written in Perl, and even a custom XPath variable resolver.


=head1 EXAMPLES


=head2 Namespaces

This example demonstrates C<<<<<< registerNs() >>>>>> method. It finds all paragraph nodes in an XHTML document.



  my $xc = XML::LibXML::XPathContext->new($xhtml_doc);
  $xc->registerNs('xhtml', 'http://www.w3.org/1999/xhtml');
  my @nodes = $xc->findnodes('//xhtml:p');


=head2 Custom XPath functions

This example demonstrates C<<<<<< registerFunction() >>>>>> method by defining a function filtering nodes based on a Perl regular
expression:



  sub grep_nodes {
    my ($nodelist,$regexp) =  @_;
    my $result = XML::LibXML::NodeList->new;
    for my $node ($nodelist->get_nodelist()) {
      $result->push($node) if $node->textContent =~ $regexp;
    }
    return $result;
  };

  my $xc = XML::LibXML::XPathContext->new($node);
  $xc->registerFunction('grep_nodes', \&grep_nodes);
  my @nodes = $xc->findnodes('//section[grep_nodes(para,"\bsearch(ing|es)?\b")]');


=head2 Variables

This example demonstrates C<<<<<< registerVarLookup() >>>>>> method. We use XPath variables to recycle results of previous evaluations:



  sub var_lookup {
    my ($varname,$ns,$data)=@_;
    return $data->{$varname};
  }

  my $areas = XML::LibXML->new->parse_file('areas.xml');
  my $empl = XML::LibXML->new->parse_file('employees.xml');

  my $xc = XML::LibXML::XPathContext->new($empl);

  my %variables = (
    A => $xc->find('/employees/employee[@salary>10000]'),
    B => $areas->find('/areas/area[district='Brooklyn']/street'),
  );

  # get names of employees from $A working in an area listed in $B
  $xc->registerVarLookupFunc(\&var_lookup, \%variables);
  my @nodes = $xc->findnodes('$A[work_area/street = $B]/name');


=head1 METHODS

=over 4

=item new

  my $xpc = XML::LibXML::XPathContext->new();

Creates a new XML::LibXML::XPathContext object without a context node.

  my $xpc = XML::LibXML::XPathContext->new($node);

Creates a new XML::LibXML::XPathContext object with the context node set to C<<<<<< $node >>>>>>.


=item registerNs

  $xpc->registerNs($prefix, $namespace_uri)

Registers namespace C<<<<<< $prefix >>>>>> to C<<<<<< $namespace_uri >>>>>>.


=item unregisterNs

  $xpc->unregisterNs($prefix)

Unregisters namespace C<<<<<< $prefix >>>>>>.


=item lookupNs

  $uri = $xpc->lookupNs($prefix)

Returns namespace URI registered with C<<<<<< $prefix >>>>>>. If C<<<<<< $prefix >>>>>> is not registered to any namespace URI returns C<<<<<< undef >>>>>>.


=item registerVarLookupFunc

  $xpc->registerVarLookupFunc($callback, $data)

Registers variable lookup function C<<<<<< $callback >>>>>>. The registered function is executed by the XPath engine each time an XPath
variable is evaluated. It takes three arguments: C<<<<<< $data >>>>>>, variable name, and variable ns-URI and must return one value: a number or
string or any C<<<<<< XML::LibXML:: >>>>>> object that can be a result of findnodes: Boolean, Literal, Number, Node (e.g.
Document, Element, etc.), or NodeList. For convenience, simple (non-blessed)
array references containing only L<<<<<< XML::LibXML::Node >>>>>> objects can be used instead of an L<<<<<< XML::LibXML::NodeList >>>>>>.


=item getVarLookupData

  $data = $xpc->getVarLookupData();

Returns the data that have been associated with a variable lookup function
during a previous call to C<<<<<< registerVarLookupFunc >>>>>>.


=item getVarLookupFunc

  $callback = $xpc->getVarLookupFunc();

Returns the variable lookup function previously registered with C<<<<<< registerVarLookupFunc >>>>>>.


=item unregisterVarLookupFunc

  $xpc->unregisterVarLookupFunc($name);

Unregisters variable lookup function and the associated lookup data.


=item registerFunctionNS

  $xpc->registerFunctionNS($name, $uri, $callback)

Registers an extension function C<<<<<< $name >>>>>> in C<<<<<< $uri >>>>>> namespace. C<<<<<< $callback >>>>>> must be a CODE reference. The arguments of the callback function are either
simple scalars or C<<<<<< XML::LibXML::* >>>>>> objects depending on the XPath argument types. The function is responsible for
checking the argument number and types. Result of the callback code must be a
single value of the following types: a simple scalar (number, string) or an
arbitrary C<<<<<< XML::LibXML::* >>>>>> object that can be a result of findnodes: Boolean, Literal, Number, Node (e.g.
Document, Element, etc.), or NodeList. For convenience, simple (non-blessed)
array references containing only L<<<<<< XML::LibXML::Node >>>>>> objects can be used instead of a L<<<<<< XML::LibXML::NodeList >>>>>>.


=item unregisterFunctionNS

  $xpc->unregisterFunctionNS($name, $uri)

Unregisters extension function C<<<<<< $name >>>>>> in C<<<<<< $uri >>>>>> namespace. Has the same effect as passing C<<<<<< undef >>>>>> as C<<<<<< $callback >>>>>> to registerFunctionNS.


=item registerFunction

  $xpc->registerFunction($name, $callback)

Same as C<<<<<< registerFunctionNS >>>>>> but without a namespace.


=item unregisterFunction

  $xpc->unregisterFunction($name)

Same as C<<<<<< unregisterFunctionNS >>>>>> but without a namespace.


=item findnodes

  @nodes = $xpc->findnodes($xpath)

  @nodes = $xpc->findnodes($xpath, $context_node )

  $nodelist = $xpc->findnodes($xpath, $context_node )

Performs the xpath statement on the current node and returns the result as an
array. In scalar context, returns an L<<<<<< XML::LibXML::NodeList >>>>>> object. Optionally, a node may be passed as a second argument to set the
context node for the query.

The xpath expression can be passed either as a string, or as a L<<<<<< XML::LibXML::XPathExpression >>>>>> object.


=item find

  $object = $xpc->find($xpath )

  $object = $xpc->find($xpath, $context_node )

Performs the xpath expression using the current node as the context of the
expression, and returns the result depending on what type of result the XPath
expression had. For example, the XPath C<<<<<< 1 * 3 + 	      52 >>>>>> results in an L<<<<<< XML::LibXML::Number >>>>>> object being returned. Other expressions might return a L<<<<<< XML::LibXML::Boolean >>>>>> object, or a L<<<<<< XML::LibXML::Literal >>>>>> object (a string). Each of those objects uses Perl's overload feature to ``do
the right thing'' in different contexts. Optionally, a node may be passed as a
second argument to set the context node for the query.

The xpath expression can be passed either as a string, or as a L<<<<<< XML::LibXML::XPathExpression >>>>>> object.


=item findvalue

  $value = $xpc->findvalue($xpath )

  $value = $xpc->findvalue($xpath, $context_node )

Is exactly equivalent to:



  $xpc->find( $xpath, $context_node )->to_literal;

That is, it returns the literal value of the results. This enables you to
ensure that you get a string back from your search, allowing certain shortcuts.
This could be used as the equivalent of <xsl:value-of select=``some_xpath''/>.
Optionally, a node may be passed in the second argument to set the context node
for the query.

The xpath expression can be passed either as a string, or as a L<<<<<< XML::LibXML::XPathExpression >>>>>> object.


=item exists

  $bool = $xpc->exists( $xpath_expression, $context_node );

This method behaves like I<<<<<< findnodes >>>>>>, except that it only returns a boolean value (1 if the expression matches a
node, 0 otherwise) and may be faster than I<<<<<< findnodes >>>>>>, because the XPath evaluation may stop early on the first match (this is true
for libxml2 >= 2.6.27).

For XPath expressions that do not return node-set, the method returns true if
the returned value is a non-zero number or a non-empty string.


=item setContextNode

  $xpc->setContextNode($node)

Set the current context node.


=item getContextNode

  my $node = $xpc->getContextNode;

Get the current context node.


=item setContextPosition

  $xpc->setContextPosition($position)

Set the current context position. By default, this value is -1 (and evaluating
XPath function C<<<<<< position() >>>>>> in the initial context raises an XPath error), but can be set to any value up
to context size. This usually only serves to cheat the XPath engine to return
given position when C<<<<<< position() >>>>>> XPath function is called. Setting this value to -1 restores the default
behavior.


=item getContextPosition

  my $position = $xpc->getContextPosition;

Get the current context position.


=item setContextSize

  $xpc->setContextSize($size)

Set the current context size. By default, this value is -1 (and evaluating
XPath function C<<<<<< last() >>>>>> in the initial context raises an XPath error), but can be set to any
non-negative value. This usually only serves to cheat the XPath engine to
return the given value when C<<<<<< last() >>>>>> XPath function is called. If context size is set to 0, position is
automatically also set to 0. If context size is positive, position is
automatically set to 1. Setting context size to -1 restores the default
behavior.


=item getContextSize

  my $size = $xpc->getContextSize;

Get the current context size.


=item setContextNode

  $xpc->setContextNode($node)

Set the current context node.



=back


=head1 BUGS AND CAVEATS

XML::LibXML::XPathContext objects I<<<<<< are >>>>>> reentrant, meaning that you can call methods of an XML::LibXML::XPathContext
even from XPath extension functions registered with the same object or from a
variable lookup function. On the other hand, you should rather avoid
registering new extension functions, namespaces and a variable lookup function
from within extension functions and a variable lookup function, unless you want
to experience untested behavior.


=head1 AUTHORS

Ilya Martynov and Petr Pajas, based on XML::LibXML and XML::LibXSLT code by
Matt Sergeant and Christian Glahn.


=head1 HISTORICAL REMARK

Prior to XML::LibXML 1.61 this module was distributed separately for
maintenance reasons.

=head1 AUTHORS

Matt Sergeant,
Christian Glahn,
Petr Pajas


=head1 VERSION

2.0210

=head1 COPYRIGHT

2001-2007, AxKit.com Ltd.

2002-2006, Christian Glahn.

2006-2009, Petr Pajas.

=cut


=head1 LICENSE

This program is free software; you can redistribute it and/or modify it under
the same terms as Perl itself.

PK     N\t9UX  X    LibXML/Common.podnu 6$        =head1 NAME

XML::LibXML::Common - Constants and Character Encoding Routines

=head1 SYNOPSIS



  use XML::LibXML::Common;

  $encodedstring = encodeToUTF8( $name_of_encoding, $sting_to_encode );
  $decodedstring = decodeFromUTF8($name_of_encoding, $string_to_decode );

=head1 DESCRIPTION

XML::LibXML::Common defines constants for all node types and provides interface
to libxml2 charset conversion functions.

Since XML::LibXML use their own node type definitions, one may want to use
XML::LibXML::Common in its compatibility mode:


=head2 Exporter TAGS



  use XML::LibXML::Common qw(:libxml);

C<<<<<< :libxml >>>>>> tag will use the XML::LibXML Compatibility mode, which defines the old 'XML_'
node-type definitions.



  use XML::LibXML::Common qw(:gdome);

C<<<<<< :gdome >>>>>> tag will use the XML::GDOME Compatibility mode, which defines the old 'GDOME_'
node-type definitions.



  use XML::LibXML::Common qw(:w3c);

This uses the nodetype definition names as specified for DOM.



  use XML::LibXML::Common qw(:encoding);

This tag can be used to export only the charset encoding functions of
XML::LibXML::Common.


=head2 Exports

By default the W3 definitions as defined in the DOM specifications and the
encoding functions are exported by XML::LibXML::Common.


=head2 Encoding functions

To encode or decode a string to or from UTF-8, XML::LibXML::Common exports two
functions, which provide an interface to the encoding support in C<<<<<< libxml2 >>>>>>. Which encodings are supported by these functions depends on how C<<<<<< libxml2 >>>>>> was compiled. UTF-16 is always supported and on most installations, ISO
encodings are supported as well.

This interface was useful for older versions of Perl. Since Perl >= 5.8
provides similar functions via the C<<<<<< Encode >>>>>> module, it is probably a good idea to use those instead.

=over 4

=item encodeToUTF8

  $encodedstring = encodeToUTF8( $name_of_encoding, $sting_to_encode );

The function will convert a byte string from the specified encoding to an UTF-8
encoded character string.


=item decodeToUTF8

  $decodedstring = decodeFromUTF8($name_of_encoding, $string_to_decode );

This function converts an UTF-8 encoded character string to a specified
encoding. Note that the conversion can raise an error if the given string
contains characters that cannot be represented in the target encoding.



=back

Both these functions report their errors on the standard error. If an error
occurs the function will croak(). To catch the error information it is required
to call the encoding function from within an eval block in order to prevent the
entire script from being stopped on encoding error.


=head2 A note on history

Before XML::LibXML 1.70, this class was available as a separate CPAN
distribution, intended to provide functionality shared between XML::LibXML,
XML::GDOME, and possibly other modules. Since there seems to be no progress in
this direction, we decided to merge XML::LibXML::Common 0.13 and XML::LibXML
1.70 to one CPAN distribution.

The merge also naturally eliminates a practical and urgent problem experienced
by many XML::LibXML users on certain platforms, namely mysterious misbehavior
of XML::LibXML occurring if the installed (often pre-packaged) version of
XML::LibXML::Common was compiled against an older version of libxml2 than
XML::LibXML.

=head1 AUTHORS

Matt Sergeant,
Christian Glahn,
Petr Pajas


=head1 VERSION

2.0210

=head1 COPYRIGHT

2001-2007, AxKit.com Ltd.

2002-2006, Christian Glahn.

2006-2009, Petr Pajas.

=cut


=head1 LICENSE

This program is free software; you can redistribute it and/or modify it under
the same terms as Perl itself.

PK     N\A  A    LibXML/NodeList.pmnu 6$        # $Id$
#
# This is free software, you may use it and distribute it under the same terms as
# Perl itself.
#
# Copyright 2001-2003 AxKit.com Ltd., 2002-2006 Christian Glahn, 2006-2009 Petr Pajas
#
#

package XML::LibXML::NodeList;

use strict;
use warnings;

use XML::LibXML::Boolean;
use XML::LibXML::Literal;
use XML::LibXML::Number;

use vars qw($VERSION);
$VERSION = "2.0210"; # VERSION TEMPLATE: DO NOT CHANGE

use overload
        '""' => \&to_literal,
        'bool' => \&to_boolean,
        'cmp' => sub {
            my($aa, $bb, $order) = @_;
            return ($order ? ("$bb" cmp "$aa") : ("$aa" cmp "$bb"));
        },
        ;

sub new {
    my $class = shift;
    bless [@_], $class;
}

sub new_from_ref {
    my ($class,$array_ref,$reuse) = @_;
    return bless $reuse ? $array_ref : [@$array_ref], $class;
}

sub pop {
    my $self = CORE::shift;
    CORE::pop @$self;
}

sub push {
    my $self = CORE::shift;
    CORE::push @$self, @_;
}

sub append {
    my $self = CORE::shift;
    my ($nodelist) = @_;
    CORE::push @$self, $nodelist->get_nodelist;
}

sub shift {
    my $self = CORE::shift;
    CORE::shift @$self;
}

sub unshift {
    my $self = CORE::shift;
    CORE::unshift @$self, @_;
}

sub prepend {
    my $self = CORE::shift;
    my ($nodelist) = @_;
    CORE::unshift @$self, $nodelist->get_nodelist;
}

sub size {
    my $self = CORE::shift;
    scalar @$self;
}

sub get_node {
    # uses array index starting at 1, not 0
    # this is mainly because of XPath.
    my $self = CORE::shift;
    my ($pos) = @_;
    $self->[$pos - 1];
}

sub item
{
    my ($self, $pos) = @_;
    return $self->[$pos];
}

sub get_nodelist {
    my $self = CORE::shift;
    @$self;
}

sub to_boolean {
    my $self = CORE::shift;
    return (@$self > 0) ? XML::LibXML::Boolean->True : XML::LibXML::Boolean->False;
}

# string-value of a nodelist is the string-value of the first node
sub string_value {
    my $self = CORE::shift;
    return '' unless @$self;
    return $self->[0]->string_value;
}

sub to_literal {
    my $self = CORE::shift;
    return XML::LibXML::Literal->new(
            join('', CORE::grep {defined $_} CORE::map { $_->string_value } @$self)
            );
}

sub to_literal_delimited {
    my $self = CORE::shift;
    return XML::LibXML::Literal->new(
            join(CORE::shift, CORE::grep {defined $_} CORE::map { $_->string_value } @$self)
            );
}

sub to_literal_list {
    my $self = CORE::shift;
    my @nodes = CORE::map{ XML::LibXML::Literal->new($_->string_value())->value() } @{$self};

    if (wantarray) {
        return( @nodes );
    }
    return( \@nodes );
}

sub to_number {
    my $self = CORE::shift;
    return XML::LibXML::Number->new(
            $self->to_literal
            );
}

sub iterator {
    warn "this function is obsolete!\nIt was disabled in version 1.54\n";
    return undef;
}

sub map {
    my $self = CORE::shift;
    my $sub  = __is_code(CORE::shift);
    local $_;
    my @results = CORE::map { @{[ $sub->($_) ]} } @$self;
    return unless defined wantarray;
    return wantarray ? @results : (ref $self)->new(@results);
}

sub grep {
    my $self = CORE::shift;
    my $sub  = __is_code(CORE::shift);
    local $_;
    my @results = CORE::grep { $sub->($_) } @$self;
    return unless defined wantarray;
    return wantarray ? @results : (ref $self)->new(@results);
}

sub sort {
    my $self = CORE::shift;
    my $sub  = __is_code(CORE::shift);
    my @results = CORE::sort { $sub->($a,$b) } @$self;
    return wantarray ? @results : (ref $self)->new(@results);
}

sub foreach {
    my $self = CORE::shift;
    my $sub  = CORE::shift;

    foreach my $item (@$self)
    {
        local $_ = $item;
        $sub->($item);
    }

    return wantarray ? @$self : $self;
}

sub reverse {
    my $self    = CORE::shift;
    my @results = CORE::reverse @$self;
    return wantarray ? @results : (ref $self)->new(@results);
}

sub reduce {
    my $self = CORE::shift;
    my $sub  = __is_code(CORE::shift);

    my @list = @$self;
    CORE::unshift @list, $_[0] if @_;

    my $a = CORE::shift(@list);
    foreach my $b (@list)
    {
        $a = $sub->($a, $b);
    }
    return $a;
}

sub __is_code {
    my ($code) = @_;

    if (ref $code eq 'CODE') {
        return $code;
    }

    # There are better ways of doing this, but here I've tried to
    # avoid adding any additional external dependencies.
    #
    if (UNIVERSAL::can($code, 'can')        # is blessed (sort of)
    and overload::Overloaded($code)         # is overloaded
    and overload::Method($code, '&{}')) {   # overloads '&{}'
        return $code;
    }

    # The other possibility is that $code is a coderef, but is
    # blessed into a class that doesn't overload '&{}'. In which
    # case... well, I'm stumped!

    die "Not a subroutine reference\n";
}

1;
__END__

=head1 NAME

XML::LibXML::NodeList - a list of XML document nodes

=head1 DESCRIPTION

An XML::LibXML::NodeList object contains an ordered list of nodes, as
detailed by the W3C DOM documentation of Node Lists.

=head1 SYNOPSIS

  my $results = $dom->findnodes('//somepath');
  foreach my $context ($results->get_nodelist) {
    my $newresults = $context->findnodes('./other/element');
    ...
  }

=head1 API

=head2 new(@nodes)

You will almost never have to create a new NodeList object, as it is all
done for you by XPath.

=head2 get_nodelist()

Returns a list of nodes, the contents of the node list, as a perl list.

=head2 string_value()

Returns the string-value of the first node in the list.
See the XPath specification for what "string-value" means.

=head2 to_literal()

Returns the concatenation of all the string-values of all
the nodes in the list.

=head2 to_literal_delimited($separator)

Returns the concatenation of all the string-values of all
the nodes in the list, delimited by the specified separator.

=head2 to_literal_list()

Returns all the string-values of all the nodes in the list as
a perl list.

=head2 get_node($pos)

Returns the node at $pos. The node position in XPath is based at 1, not 0.

=head2 size()

Returns the number of nodes in the NodeList.

=head2 pop()

Equivalent to perl's pop function.

=head2 push(@nodes)

Equivalent to perl's push function.

=head2 append($nodelist)

Given a nodelist, appends the list of nodes in $nodelist to the end of the
current list.

=head2 shift()

Equivalent to perl's shift function.

=head2 unshift(@nodes)

Equivalent to perl's unshift function.

=head2 prepend($nodelist)

Given a nodelist, prepends the list of nodes in $nodelist to the front of
the current list.

=head2 map($coderef)

Equivalent to perl's map function.

=head2 grep($coderef)

Equivalent to perl's grep function.

=head2 sort($coderef)

Equivalent to perl's sort function.

Caveat: Perl's magic C<$a> and C<$b> variables are not available in
C<$coderef>. Instead the two terms are passed to the coderef as arguments.

=head2 reverse()

Equivalent to perl's reverse function.

=head2 foreach($coderef)

Inspired by perl's foreach loop. Executes the coderef on each item in
the list. Similar to C<map>, but instead of returning the list of values
returned by $coderef, returns the original NodeList.

=head2 reduce($coderef, $init)

Equivalent to List::Util's reduce function. C<$init> is optional and
provides an initial value for the reduction.

Caveat: Perl's magic C<$a> and C<$b> variables are not available in
C<$coderef>. Instead the two terms are passed to the coderef as arguments.

=cut
PK     N\)6g&  &    LibXML/RegExp.podnu 6$        =head1 NAME

XML::LibXML::RegExp - XML::LibXML::RegExp - interface to libxml2 regular expressions

=head1 SYNOPSIS



  use XML::LibXML;
  my $compiled_re = XML::LibXML::RegExp->new('[0-9]{5}(-[0-9]{4})?');
  if ($compiled_re->isDeterministic()) { ... }
  if ($compiled_re->matches($string)) { ... }

  $compiled_re = XML::LibXML::RegExp->new( $regexp_str );
  $bool = $compiled_re->matches($string);
  $bool = $compiled_re->isDeterministic();

=head1 DESCRIPTION

This is a perl interface to libxml2's implementation of regular expressions,
which are used e.g. for validation of XML Schema simple types (pattern facet).

=over 4

=item new()

  $compiled_re = XML::LibXML::RegExp->new( $regexp_str );

The constructor takes a string containing a regular expression and returns a
compiled regexp object.


=item matches($string)

  $bool = $compiled_re->matches($string);

Given a string value, returns a true value if the value is matched by the
compiled regular expression.


=item isDeterministic()

  $bool = $compiled_re->isDeterministic();

Returns a true value if the regular expression is deterministic; returns false
otherwise. (See the definition of determinism in the XML spec (L<<<<<< http://www.w3.org/TR/REC-xml/#determinism >>>>>>))



=back

=head1 AUTHORS

Matt Sergeant,
Christian Glahn,
Petr Pajas


=head1 VERSION

2.0210

=head1 COPYRIGHT

2001-2007, AxKit.com Ltd.

2002-2006, Christian Glahn.

2006-2009, Petr Pajas.

=cut


=head1 LICENSE

This program is free software; you can redistribute it and/or modify it under
the same terms as Perl itself.

PK     N\0      LibXML/Devel.pmnu 6$        # $Id: $
# This is free software, you may use it and distribute it under the same terms as
# Perl itself.
#
# Copyright 2011 Joachim Zobel
#
package XML::LibXML::Devel;

use strict;
use warnings;

use XML::LibXML;

use vars qw ($VERSION);
$VERSION = "2.0210"; # VERSION TEMPLATE: DO NOT CHANGE

use 5.008_000;

use parent qw(Exporter);

use vars qw( @EXPORT @EXPORT_OK %EXPORT_TAGS );

# This allows declaration	use XML::LibXML::Devel ':all';
# If you do not need this, moving things directly into @EXPORT or @EXPORT_OK
# will save memory.
our %EXPORT_TAGS = ( 'all' => [ qw(
  node_to_perl
  node_from_perl
  refcnt_inc
  refcnt_dec
  refcnt
  fix_owner
  mem_used
) ] );

our @EXPORT_OK = ( @{ $EXPORT_TAGS{'all'} } );

# Preloaded methods go here.

1;
__END__

=head1 NAME

XML::LibXML::Devel - makes functions from LibXML.xs available

=head1 SYNOPSIS

  /**********************************************
   * C functions you want to access
   */
  xmlNode *return_node();
  void receive_node(xmlNode *);

  ###############################################
  # XS Code
  void *
    xs_return_node
    CODE:
        RETVAL = return_node();
    OUTPUT:
        RETVAL

  void
    xs_receive_node
        void *n
    CODE:
        receive_node(n);

  ###############################################
  # Perl code
  use XML::LibXML::Devel;

  sub return_node
  {
    my $raw_node = xs_return_node();
    my $node = XML::LibXML::Devel::node_to_perl($raw_node);
    XML::LibXML::Devel::refcnt_inc($raw_node);
    return $node;
  }

  sub receive_node
  {
    my ($node) = @_;
    my $raw_node = XML::LibXML::Devel::node_from_perl($node);
    xs_receive_node($raw_node);
    XML::LibXML::Devel::refcnt_inc($raw_node);
  }


=head1 DESCRIPTION

C<XML::LibXML::Devel> makes functions from LibXML.xs available that
are needed to wrap libxml2 nodes in and out of XML::LibXML::Nodes.
This gives cleaner dependencies than using LibXML.so directly.

To XS a library that uses libxml2 nodes the first step is to
do this so that xmlNodePtr is passed as void *. These raw nodes
are then turned into libxml nodes by using this C<Devel> functions.

Be aware that this module is currently rather experimental. The function
names may change if I XS more functions and introduce a reasonable
naming convention.

Be also aware that this module is a great tool to cause segfaults and
introduce memory leaks. It does however provide a partial cure by making
C<xmlMemUsed> available as C<mem_used>.

=head1 FUNCTIONS

=head2 NODE MANAGEMENT

=over 1

=item node_to_perl

  node_to_perl($raw_node);

Returns a LibXML::Node object. This has a proxy node with a reference
counter and an owner attached. The raw node will be deleted as soon
as the reference counter reaches zero.
If the C library is keeping a
pointer to the raw node, you need to call refcnt_inc immediately.
You also need to replace xmlFreeNode by a call to refcnt_dec.

=item node_to_perl

  node_from_perl($node);

Returns a raw node. This is a void * pointer and you can do nothing
but passing it to functions that treat it as an xmlNodePtr. The
raw node will be freed as soon as its reference counter reaches zero.
If the C library is keeping a
pointer to the raw node, you need to call refcnt_inc immediately.
You also need to replace xmlFreeNode by a call to refcnt_dec.

=item refcnt_inc

  refcnt_inc($raw_node);

Increments the raw nodes reference counter. The raw node must already
be known to perl to have a reference counter.

=item refcnt_dec

  refcnt_dec($raw_node);

Decrements the raw nodes reference counter and returns the value it
had before. if the counter becomes zero or less,
this method will free the proxy node holding the reference counter.
If the node is part of a
subtree, refcnt_dec will fix the reference counts and delete
the subtree if it is not required any more.

=item refcnt

  refcnt($raw_node);

Returns the value of the reference counter.

=item fix_owner

  fix_owner($raw_node, $raw_parent);

This functions fixes the reference counts for an entire subtree.
it is very important to fix an entire subtree after node operations
where the documents or the owner node may get changed. this method is
aware about nodes that already belong to a certain owner node.

=back

=head2 MEMORY DEBUGGING

=over 1

=item $ENV{DEBUG_MEMORY}

  BEGIN {$ENV{DEBUG_MEMORY} = 1;};
  use XML::LibXML;

This turns on libxml2 memory debugging. It must be set before
XML::LibXML is loaded.


=item mem_used

  mem_used();

Returns the number of bytes currently allocated.

=back

=head2 EXPORT

None by default.

=head1 SEE ALSO

This was created to support the needs of Apache2::ModXml2. So this
can serve as an example.

=head1 AUTHOR

Joachim Zobel E<lt>jz-2011@heute-morgen.deE<gt>

=head1 COPYRIGHT AND LICENSE

Copyright (C) 2011 by Joachim Zobel

This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself, either Perl version 5.10.1 or,
at your option, any later version of Perl 5 you may have available.


=cut

PK     N\;!      LibXML/SAX.pmnu 6$        # $Id$
#
# This is free software, you may use it and distribute it under the same terms as
# Perl itself.
#
# Copyright 2001-2003 AxKit.com Ltd., 2002-2006 Christian Glahn, 2006-2009 Petr Pajas
#
#

package XML::LibXML::SAX;

use strict;
use warnings;

use vars qw($VERSION @ISA);

$VERSION = "2.0210"; # VERSION TEMPLATE: DO NOT CHANGE

use XML::LibXML;
use XML::SAX::Base;

use parent qw(XML::SAX::Base);

use Carp;
use IO::File;

sub CLONE_SKIP {
  return $XML::LibXML::__threads_shared ? 0 : 1;
}

sub set_feature {
	my ($self, $feat, $val) = @_;

	if ($feat eq 'http://xmlns.perl.org/sax/join-character-data') {
		$self->{JOIN_CHARACTERS} = $val;
		return 1;
	}

	shift(@_);
	return $self->SUPER::set_feature(@_);
}

sub _parse_characterstream {
    my ( $self, $fh ) = @_;
    # this my catch the xml decl, so the parser won't get confused about
    # a possibly wrong encoding.
    croak( "not implemented yet" );
}

# See:
# https://rt.cpan.org/Public/Bug/Display.html?id=132759
sub _calc_new_XML_LibXML_parser_for_compatibility_with_XML_Simple_etc
{
    return XML::LibXML->new( expand_entities => 1, );
}

sub _parse_bytestream {
    my ( $self, $fh ) = @_;
    $self->{ParserOptions}{LibParser}      = $self->_calc_new_XML_LibXML_parser_for_compatibility_with_XML_Simple_etc() unless defined $self->{ParserOptions}{LibParser};
    $self->{ParserOptions}{ParseFunc}      = \&XML::LibXML::parse_fh;
    $self->{ParserOptions}{ParseFuncParam} = $fh;
    $self->_parse;
    return $self->end_document({});
}

sub _parse_string {
    my ( $self, $string ) = @_;
    $self->{ParserOptions}{LibParser}      = $self->_calc_new_XML_LibXML_parser_for_compatibility_with_XML_Simple_etc() unless defined $self->{ParserOptions}{LibParser};
    $self->{ParserOptions}{ParseFunc}      = \&XML::LibXML::parse_string;
    $self->{ParserOptions}{ParseFuncParam} = $string;
    $self->_parse;
    return $self->end_document({});
}

sub _parse_systemid {
    my $self = shift;
    $self->{ParserOptions}{LibParser}      = $self->_calc_new_XML_LibXML_parser_for_compatibility_with_XML_Simple_etc() unless defined $self->{ParserOptions}{LibParser};
    $self->{ParserOptions}{ParseFunc}      = \&XML::LibXML::parse_file;
    $self->{ParserOptions}{ParseFuncParam} = shift;
    $self->_parse;
    return $self->end_document({});
}

sub parse_chunk {
    my ( $self, $chunk ) = @_;
    $self->{ParserOptions}{LibParser}      = $self->_calc_new_XML_LibXML_parser_for_compatibility_with_XML_Simple_etc() unless defined $self->{ParserOptions}{LibParser};
    $self->{ParserOptions}{ParseFunc}      = \&XML::LibXML::parse_xml_chunk;
    $self->{ParserOptions}{LibParser}->{IS_FILTER}=1; # a hack to prevent parse_xml_chunk from issuing end_document
    $self->{ParserOptions}{ParseFuncParam} = $chunk;
    $self->_parse;
    return;
}

sub _parse {
    my $self = shift;
    my $args = bless $self->{ParserOptions}, ref($self);

    if (defined($self->{JOIN_CHARACTERS})) {
    	$args->{LibParser}->{JOIN_CHARACTERS} = $self->{JOIN_CHARACTERS};
    } else {
    	$args->{LibParser}->{JOIN_CHARACTERS} = 0;
    }

    $args->{LibParser}->set_handler( $self );
    eval {
      $args->{ParseFunc}->($args->{LibParser}, $args->{ParseFuncParam});
    };

    if ( $args->{LibParser}->{SAX}->{State} == 1 ) {
        croak( "SAX Exception not implemented, yet; Data ended before document ended\n" );
    }

    # break a possible circular reference
    $args->{LibParser}->set_handler( undef );
    if ( $@ ) {
        croak $@;
    }
    return;
}

1;

PK     N\4R|  |    LibXML/Number.pmnu 6$        # $Id$
#
# This is free software, you may use it and distribute it under the same terms as
# Perl itself.
#
# Copyright 2001-2003 AxKit.com Ltd., 2002-2006 Christian Glahn, 2006-2009 Petr Pajas
#
#

package XML::LibXML::Number;
use XML::LibXML::Boolean;
use XML::LibXML::Literal;
use strict;
use warnings;

use vars qw ($VERSION);
$VERSION = "2.0210"; # VERSION TEMPLATE: DO NOT CHANGE

use overload
        '""' => \&value,
        '0+' => \&value,
        '<=>' => \&cmp;

sub new {
    my $class = shift;
    my $number = shift;
    if ($number !~ /^\s*(-\s*)?(\d+(\.\d*)?|\.\d+)\s*$/) {
        $number = undef;
    }
    else {
        $number =~ s/\s+//g;
    }
    bless \$number, $class;
}

sub as_string {
    my $self = shift;
    defined $$self ? $$self : 'NaN';
}

sub as_xml {
    my $self = shift;
    return "<Number>" . (defined($$self) ? $$self : 'NaN') . "</Number>\n";
}

sub value {
    my $self = shift;
    $$self;
}

sub cmp {
    my $self = shift;
    my ($other, $swap) = @_;
    if ($swap) {
        return $other <=> $$self;
    }
    return $$self <=> $other;
}

sub evaluate {
    my $self = shift;
    $self;
}

sub to_boolean {
    my $self = shift;
    return $$self ? XML::LibXML::Boolean->True : XML::LibXML::Boolean->False;
}

sub to_literal { XML::LibXML::Literal->new($_[0]->as_string); }
sub to_number { $_[0]; }

sub string_value { return $_[0]->value }

1;
__END__

=head1 NAME

XML::LibXML::Number - Simple numeric values.

=head1 DESCRIPTION

This class holds simple numeric values. It doesn't support -0, +/- Infinity,
or NaN, as the XPath spec says it should, but I'm not hurting anyone I don't think.

=head1 API

=head2 new($num)

Creates a new XML::LibXML::Number object, with the value in $num. Does some
rudimentary numeric checking on $num to ensure it actually is a number.

=head2 value()

Also as overloaded stringification. Returns the numeric value held.

=cut
PK     N\      LibXML/AttributeHash.pmnu 6$        package XML::LibXML::AttributeHash;

use strict;
use warnings;
use Scalar::Util qw//;
use Tie::Hash;
our @ISA = qw/Tie::Hash/;

use vars qw($VERSION);
$VERSION = "2.0210"; # VERSION TEMPLATE: DO NOT CHANGE

BEGIN
{
    *__HAS_WEAKEN  = defined(&Scalar::Util::weaken)
        ? sub () { 1 }
        : sub () { 0 };
};

sub element
{
    return $_[0][0];
}

sub from_clark
{
    my ($self, $str) = @_;
    if ($str =~ m! \{ (.+) \} (.+) !x)
    {
        return ($1, $2);
    }
    return (undef, $str);
}

sub to_clark
{
    my ($self, $ns, $local) = @_;
    defined $ns ? "{$ns}$local" : $local;
}

sub all_keys
{
    my ($self, @keys) = @_;

    my $elem = $self->element;

    foreach my $attr (defined($elem) ? $elem->attributes : ())
    {
        if (! $attr->isa('XML::LibXML::Namespace'))
        {
            push @keys, $self->to_clark($attr->namespaceURI, $attr->localname);
        }
    }

    return sort @keys;
}

sub TIEHASH
{
    my ($class, $element, %args) = @_;
    my $self = bless [$element, undef, \%args], $class;
    if (__HAS_WEAKEN and $args{weaken})
    {
        Scalar::Util::weaken( $self->[0] );
    }
    return $self;
}

sub STORE
{
    my ($self, $key, $value) = @_;
    my ($key_ns, $key_local) = $self->from_clark($key);
    if (defined $key_ns)
    {
        return $self->element->setAttributeNS($key_ns, "xxx:$key_local", "$value");
    }
    else
    {
        return $self->element->setAttribute($key_local, "$value");
    }
}

sub FETCH
{
    my ($self, $key) = @_;
    my ($key_ns, $key_local) = $self->from_clark($key);
    if (defined $key_ns)
    {
        return $self->element->getAttributeNS($key_ns, "$key_local");
    }
    else
    {
        return $self->element->getAttribute($key_local);
    }
}

sub EXISTS
{
    my ($self, $key) = @_;
    my ($key_ns, $key_local) = $self->from_clark($key);
    if (defined $key_ns)
    {
        return $self->element->hasAttributeNS($key_ns, "$key_local");
    }
    else
    {
        return $self->element->hasAttribute($key_local);
    }
}

sub DELETE
{
    my ($self, $key) = @_;
    my ($key_ns, $key_local) = $self->from_clark($key);
    if (defined $key_ns)
    {
        return $self->element->removeAttributeNS($key_ns, "$key_local");
    }
    else
    {
        return $self->element->removeAttribute($key_local);
    }
}

sub FIRSTKEY
{
    my ($self) = @_;
    my @keys = $self->all_keys;
    $self->[1] = \@keys;
    if (wantarray)
    {
        return ($keys[0], $self->FETCH($keys[0]));
    }
    $keys[0];
}

sub NEXTKEY
{
    my ($self, $lastkey) = @_;
    my @keys = defined $self->[1] ? @{ $self->[1] } : $self->all_keys;
    my $found;
    foreach my $k (@keys)
    {
        if ($k gt $lastkey)
        {
            $found = $k and last;
        }
    }
    if (!defined $found)
    {
        $self->[1] = undef;
        return;
    }
    if (wantarray)
    {
        return ($found, $self->FETCH($found));
    }
    return $found;
}

sub SCALAR
{
    my ($self) = @_;
    return $self->element;
}

sub CLEAR
{
    my ($self) = @_;
    foreach my $k ($self->all_keys)
    {
        $self->DELETE($k);
    }
    return $self;
}

__PACKAGE__
__END__

=head1 NAME

XML::LibXML::AttributeHash - tie an XML::LibXML::Element to a hash to access its attributes

=head1 SYNOPSIS

 tie my %hash, 'XML::LibXML::AttributeHash', $element;
 $hash{'href'} = 'http://example.com/';
 print $element->getAttribute('href') . "\n";

=head1 DESCRIPTION

This class allows an element's attributes to be accessed as if they were a
plain old Perl hash. Attribute names become hash keys. Namespaced attributes
are keyed using Clark notation.

 my $XLINK = 'http://www.w3.org/1999/xlink';
 tie my %hash, 'XML::LibXML::AttributeHash', $element;
 $hash{"{$XLINK}href"} = 'http://localhost/';
 print $element->getAttributeNS($XLINK, 'href') . "\n";

There is rarely any need to use XML::LibXML::AttributeHash directly. In
general, it is possible to take advantage of XML::LibXML::Element's
overloading. The example in the SYNOPSIS could have been written:

 $element->{'href'} = 'http://example.com/';
 print $element->getAttribute('href') . "\n";

The tie interface allows the passing of additional arguments to
XML::LibXML::AttributeHash:

 tie my %hash, 'XML::LibXML::AttributeHash', $element, %args;

Currently only one argument is supported, the boolean "weaken" which (if
true) indicates that the tied object's reference to the element should be
a weak reference. This is used by XML::LibXML::Element's overloading. The
"weaken" argument is ignored if you don't have a working Scalar::Util::weaken.
PK     N\Ft  t    LibXML/Comment.podnu 6$        =head1 NAME

XML::LibXML::Comment - XML::LibXML Comment Class

=head1 SYNOPSIS



  use XML::LibXML;
  # Only methods specific to Comment nodes are listed here,
  # see the XML::LibXML::Node manpage for other methods

  $node = XML::LibXML::Comment->new( $content );

=head1 DESCRIPTION

This class provides all functions of L<<<<<< XML::LibXML::Text >>>>>>, but for comment nodes. This can be done, since only the output of the node
types is different, but not the data structure. :-)


=head1 METHODS

The class inherits from L<<<<<< XML::LibXML::Node >>>>>>. The documentation for Inherited methods is not listed here.

Many functions listed here are extensively documented in the DOM Level 3 specification (L<<<<<< http://www.w3.org/TR/DOM-Level-3-Core/ >>>>>>). Please refer to the specification for extensive documentation.

=over 4

=item new

  $node = XML::LibXML::Comment->new( $content );

The constructor is the only provided function for this package. It is required,
because I<<<<<< libxml2 >>>>>> treats text nodes and comment nodes slightly differently.



=back

=head1 AUTHORS

Matt Sergeant,
Christian Glahn,
Petr Pajas


=head1 VERSION

2.0210

=head1 COPYRIGHT

2001-2007, AxKit.com Ltd.

2002-2006, Christian Glahn.

2006-2009, Petr Pajas.

=cut


=head1 LICENSE

This program is free software; you can redistribute it and/or modify it under
the same terms as Perl itself.

PK     N\q      LibXML/Error.podnu 6$        =head1 NAME

XML::LibXML::Error - Structured Errors

=head1 SYNOPSIS



  eval { ... };
          if (ref($@)) {
            # handle a structured error (XML::LibXML::Error object)
          } elsif ($@) {
            # error, but not an XML::LibXML::Error object
          } else {
            # no error
          }

  $XML::LibXML::Error::WARNINGS=1;
  $message = $@->as_string();
  print $@->dump();
  $error_domain = $@->domain();
  $error_code = $@->code();
  $error_message = $@->message();
  $error_level = $@->level();
  $filename = $@->file();
  $line = $@->line();
  $nodename = $@->nodename();
  $error_str1 = $@->str1();
  $error_str2 = $@->str2();
  $error_str3 = $@->str3();
  $error_num1 = $@->num1();
  $error_num2 = $@->num2();
  $string = $@->context();
  $offset = $@->column();
  $previous_error = $@->_prev();

=head1 DESCRIPTION

The XML::LibXML::Error class is a tiny frontend to I<<<<<< libxml2 >>>>>>'s structured error support. If XML::LibXML is compiled with structured error
support, all errors reported by libxml2 are transformed to XML::LibXML::Error
objects. These objects automatically serialize to the corresponding error
messages when printed or used in a string operation, but as objects, can also
be used to get a detailed and structured information about the error that
occurred.

Unlike most other XML::LibXML objects, XML::LibXML::Error doesn't wrap an
underlying I<<<<<< libxml2 >>>>>> structure directly, but rather transforms it to a blessed Perl hash reference
containing the individual fields of the structured error information as hash
key-value pairs. Individual items (fields) of a structured error can either be
obtained directly as $@->{field}, or using autoloaded methods such as
$@->field() (where field is the field name). XML::LibXML::Error objects have
the following fields: domain, code, level, file, line, nodename, message, str1,
str2, str3, num1, num2, and _prev (some of them may be undefined).

=over 4

=item $XML::LibXML::Error::WARNINGS

  $XML::LibXML::Error::WARNINGS=1;

Traditionally, XML::LibXML was suppressing parser warnings by setting libxml2's
global variable xmlGetWarningsDefaultValue to 0. Since 1.70 we do not change
libxml2's global variables anymore; for backward compatibility, XML::LibXML
suppresses warnings. This variable can be set to 1 to enable reporting of these
warnings via Perl C<<<<<< warn >>>>>> and to 2 to report hem via C<<<<<< die >>>>>>.


=item as_string

  $message = $@->as_string();

This function serializes an XML::LibXML::Error object to a string containing
the full error message close to the message produced by I<<<<<< libxml2 >>>>>> default error handlers and tools like xmllint. This method is also used to
overload "" operator on XML::LibXML::Error, so it is automatically called
whenever XML::LibXML::Error object is treated as a string (e.g. in print $@).


=item dump

  print $@->dump();

This function serializes an XML::LibXML::Error to a string displaying all
fields of the error structure individually on separate lines of the form 'name'
=> 'value'.


=item domain

  $error_domain = $@->domain();

Returns string containing information about what part of the library raised the
error. Can be one of: "parser", "tree", "namespace", "validity", "HTML parser",
"memory", "output", "I/O", "ftp", "http", "XInclude", "XPath", "xpointer",
"regexp", "Schemas datatype", "Schemas parser", "Schemas validity", "Relax-NG
parser", "Relax-NG validity", "Catalog", "C14N", "XSLT", "validity".


=item code

  $error_code = $@->code();

Returns the actual libxml2 error code. The XML::LibXML::ErrNo module defines
constants for individual error codes. Currently libxml2 uses over 480 different
error codes.


=item message

  $error_message = $@->message();

Returns a human-readable informative error message.


=item level

  $error_level = $@->level();

Returns an integer value describing how consequent is the error.
XML::LibXML::Error defines the following constants:


=over 4

=item *

XML_ERR_NONE = 0



=item *

XML_ERR_WARNING = 1 : A simple warning.



=item *

XML_ERR_ERROR = 2 : A recoverable error.



=item *

XML_ERR_FATAL = 3 : A fatal error.



=back


=item file

  $filename = $@->file();

Returns the filename of the file being processed while the error occurred.


=item line

  $line = $@->line();

The line number, if available.


=item nodename

  $nodename = $@->nodename();

Name of the node where error occurred, if available. When this field is
non-empty, libxml2 actually returned a physical pointer to the specified node.
Due to memory management issues, it is very difficult to implement a way to
expose the pointer to the Perl level as a XML::LibXML::Node. For this reason,
XML::LibXML::Error currently only exposes the name the node.


=item str1

  $error_str1 = $@->str1();

Error specific. Extra string information.


=item str2

  $error_str2 = $@->str2();

Error specific. Extra string information.


=item str3

  $error_str3 = $@->str3();

Error specific. Extra string information.


=item num1

  $error_num1 = $@->num1();

Error specific. Extra numeric information.


=item num2

  $error_num2 = $@->num2();

In recent libxml2 versions, this value contains a column number of the error or
0 if N/A.


=item context

  $string = $@->context();

For parsing errors, this field contains about 80 characters of the XML near the
place where the error occurred. The field C<<<<<< $@-E<gt>column() >>>>>> contains the corresponding offset. Where N/A, the field is undefined.


=item column

  $offset = $@->column();

See C<<<<<< $@-E<gt>column() >>>>>> above.


=item _prev

  $previous_error = $@->_prev();

This field can possibly hold a reference to another XML::LibXML::Error object
representing an error which occurred just before this error.



=back

=head1 AUTHORS

Matt Sergeant,
Christian Glahn,
Petr Pajas


=head1 VERSION

2.0210

=head1 COPYRIGHT

2001-2007, AxKit.com Ltd.

2002-2006, Christian Glahn.

2006-2009, Petr Pajas.

=cut


=head1 LICENSE

This program is free software; you can redistribute it and/or modify it under
the same terms as Perl itself.

PK     N\So  So    LibXML/ErrNo.pmnu 6$        # $Id: ErrNo.pm,v 1.1.2.1 2004/04/20 20:09:48 pajas Exp $
#
#
# This is free software, you may use it and distribute it under the same terms as
# Perl itself.
#
# Copyright 2001-2003 AxKit.com Ltd., 2002-2006 Christian Glahn, 2006-2009 Petr Pajas
#
#

package XML::LibXML::ErrNo;

use strict;
use warnings;
use vars qw($VERSION);

$VERSION = "2.0210"; # VERSION TEMPLATE: DO NOT CHANGE

use constant ERR_OK                               => 0;
use constant ERR_INTERNAL_ERROR                   => 1;
use constant ERR_NO_MEMORY                        => 2;
use constant ERR_DOCUMENT_START                   => 3;
use constant ERR_DOCUMENT_EMPTY                   => 4;
use constant ERR_DOCUMENT_END                     => 5;
use constant ERR_INVALID_HEX_CHARREF              => 6;
use constant ERR_INVALID_DEC_CHARREF              => 7;
use constant ERR_INVALID_CHARREF                  => 8;
use constant ERR_INVALID_CHAR                     => 9;
use constant ERR_CHARREF_AT_EOF                   => 10;
use constant ERR_CHARREF_IN_PROLOG                => 11;
use constant ERR_CHARREF_IN_EPILOG                => 12;
use constant ERR_CHARREF_IN_DTD                   => 13;
use constant ERR_ENTITYREF_AT_EOF                 => 14;
use constant ERR_ENTITYREF_IN_PROLOG              => 15;
use constant ERR_ENTITYREF_IN_EPILOG              => 16;
use constant ERR_ENTITYREF_IN_DTD                 => 17;
use constant ERR_PEREF_AT_EOF                     => 18;
use constant ERR_PEREF_IN_PROLOG                  => 19;
use constant ERR_PEREF_IN_EPILOG                  => 20;
use constant ERR_PEREF_IN_INT_SUBSET              => 21;
use constant ERR_ENTITYREF_NO_NAME                => 22;
use constant ERR_ENTITYREF_SEMICOL_MISSING        => 23;
use constant ERR_PEREF_NO_NAME                    => 24;
use constant ERR_PEREF_SEMICOL_MISSING            => 25;
use constant ERR_UNDECLARED_ENTITY                => 26;
use constant WAR_UNDECLARED_ENTITY                => 27;
use constant ERR_UNPARSED_ENTITY                  => 28;
use constant ERR_ENTITY_IS_EXTERNAL               => 29;
use constant ERR_ENTITY_IS_PARAMETER              => 30;
use constant ERR_UNKNOWN_ENCODING                 => 31;
use constant ERR_UNSUPPORTED_ENCODING             => 32;
use constant ERR_STRING_NOT_STARTED               => 33;
use constant ERR_STRING_NOT_CLOSED                => 34;
use constant ERR_NS_DECL_ERROR                    => 35;
use constant ERR_ENTITY_NOT_STARTED               => 36;
use constant ERR_ENTITY_NOT_FINISHED              => 37;
use constant ERR_LT_IN_ATTRIBUTE                  => 38;
use constant ERR_ATTRIBUTE_NOT_STARTED            => 39;
use constant ERR_ATTRIBUTE_NOT_FINISHED           => 40;
use constant ERR_ATTRIBUTE_WITHOUT_VALUE          => 41;
use constant ERR_ATTRIBUTE_REDEFINED              => 42;
use constant ERR_LITERAL_NOT_STARTED              => 43;
use constant ERR_LITERAL_NOT_FINISHED             => 44;
use constant ERR_COMMENT_NOT_FINISHED             => 45;
use constant ERR_PI_NOT_STARTED                   => 46;
use constant ERR_PI_NOT_FINISHED                  => 47;
use constant ERR_NOTATION_NOT_STARTED             => 48;
use constant ERR_NOTATION_NOT_FINISHED            => 49;
use constant ERR_ATTLIST_NOT_STARTED              => 50;
use constant ERR_ATTLIST_NOT_FINISHED             => 51;
use constant ERR_MIXED_NOT_STARTED                => 52;
use constant ERR_MIXED_NOT_FINISHED               => 53;
use constant ERR_ELEMCONTENT_NOT_STARTED          => 54;
use constant ERR_ELEMCONTENT_NOT_FINISHED         => 55;
use constant ERR_XMLDECL_NOT_STARTED              => 56;
use constant ERR_XMLDECL_NOT_FINISHED             => 57;
use constant ERR_CONDSEC_NOT_STARTED              => 58;
use constant ERR_CONDSEC_NOT_FINISHED             => 59;
use constant ERR_EXT_SUBSET_NOT_FINISHED          => 60;
use constant ERR_DOCTYPE_NOT_FINISHED             => 61;
use constant ERR_MISPLACED_CDATA_END              => 62;
use constant ERR_CDATA_NOT_FINISHED               => 63;
use constant ERR_RESERVED_XML_NAME                => 64;
use constant ERR_SPACE_REQUIRED                   => 65;
use constant ERR_SEPARATOR_REQUIRED               => 66;
use constant ERR_NMTOKEN_REQUIRED                 => 67;
use constant ERR_NAME_REQUIRED                    => 68;
use constant ERR_PCDATA_REQUIRED                  => 69;
use constant ERR_URI_REQUIRED                     => 70;
use constant ERR_PUBID_REQUIRED                   => 71;
use constant ERR_LT_REQUIRED                      => 72;
use constant ERR_GT_REQUIRED                      => 73;
use constant ERR_LTSLASH_REQUIRED                 => 74;
use constant ERR_EQUAL_REQUIRED                   => 75;
use constant ERR_TAG_NAME_MISMATCH                => 76;
use constant ERR_TAG_NOT_FINISHED                 => 77;
use constant ERR_STANDALONE_VALUE                 => 78;
use constant ERR_ENCODING_NAME                    => 79;
use constant ERR_HYPHEN_IN_COMMENT                => 80;
use constant ERR_INVALID_ENCODING                 => 81;
use constant ERR_EXT_ENTITY_STANDALONE            => 82;
use constant ERR_CONDSEC_INVALID                  => 83;
use constant ERR_VALUE_REQUIRED                   => 84;
use constant ERR_NOT_WELL_BALANCED                => 85;
use constant ERR_EXTRA_CONTENT                    => 86;
use constant ERR_ENTITY_CHAR_ERROR                => 87;
use constant ERR_ENTITY_PE_INTERNAL               => 88;
use constant ERR_ENTITY_LOOP                      => 89;
use constant ERR_ENTITY_BOUNDARY                  => 90;
use constant ERR_INVALID_URI                      => 91;
use constant ERR_URI_FRAGMENT                     => 92;
use constant WAR_CATALOG_PI                       => 93;
use constant ERR_NO_DTD                           => 94;
use constant ERR_CONDSEC_INVALID_KEYWORD          => 95;
use constant ERR_VERSION_MISSING                  => 96;
use constant WAR_UNKNOWN_VERSION                  => 97;
use constant WAR_LANG_VALUE                       => 98;
use constant WAR_NS_URI                           => 99;
use constant WAR_NS_URI_RELATIVE                  => 100;
use constant NS_ERR_XML_NAMESPACE                 => 200;
use constant NS_ERR_UNDEFINED_NAMESPACE           => 201;
use constant NS_ERR_QNAME                         => 202;
use constant NS_ERR_ATTRIBUTE_REDEFINED           => 203;
use constant DTD_ATTRIBUTE_DEFAULT                => 500;
use constant DTD_ATTRIBUTE_REDEFINED              => 501;
use constant DTD_ATTRIBUTE_VALUE                  => 502;
use constant DTD_CONTENT_ERROR                    => 503;
use constant DTD_CONTENT_MODEL                    => 504;
use constant DTD_CONTENT_NOT_DETERMINIST          => 505;
use constant DTD_DIFFERENT_PREFIX                 => 506;
use constant DTD_ELEM_DEFAULT_NAMESPACE           => 507;
use constant DTD_ELEM_NAMESPACE                   => 508;
use constant DTD_ELEM_REDEFINED                   => 509;
use constant DTD_EMPTY_NOTATION                   => 510;
use constant DTD_ENTITY_TYPE                      => 511;
use constant DTD_ID_FIXED                         => 512;
use constant DTD_ID_REDEFINED                     => 513;
use constant DTD_ID_SUBSET                        => 514;
use constant DTD_INVALID_CHILD                    => 515;
use constant DTD_INVALID_DEFAULT                  => 516;
use constant DTD_LOAD_ERROR                       => 517;
use constant DTD_MISSING_ATTRIBUTE                => 518;
use constant DTD_MIXED_CORRUPT                    => 519;
use constant DTD_MULTIPLE_ID                      => 520;
use constant DTD_NO_DOC                           => 521;
use constant DTD_NO_DTD                           => 522;
use constant DTD_NO_ELEM_NAME                     => 523;
use constant DTD_NO_PREFIX                        => 524;
use constant DTD_NO_ROOT                          => 525;
use constant DTD_NOTATION_REDEFINED               => 526;
use constant DTD_NOTATION_VALUE                   => 527;
use constant DTD_NOT_EMPTY                        => 528;
use constant DTD_NOT_PCDATA                       => 529;
use constant DTD_NOT_STANDALONE                   => 530;
use constant DTD_ROOT_NAME                        => 531;
use constant DTD_STANDALONE_WHITE_SPACE           => 532;
use constant DTD_UNKNOWN_ATTRIBUTE                => 533;
use constant DTD_UNKNOWN_ELEM                     => 534;
use constant DTD_UNKNOWN_ENTITY                   => 535;
use constant DTD_UNKNOWN_ID                       => 536;
use constant DTD_UNKNOWN_NOTATION                 => 537;
use constant HTML_STRUCURE_ERROR                  => 800;
use constant HTML_UNKNOWN_TAG                     => 801;
use constant RNGP_ANYNAME_ATTR_ANCESTOR           => 1000;
use constant RNGP_ATTR_CONFLICT                   => 1001;
use constant RNGP_ATTRIBUTE_CHILDREN              => 1002;
use constant RNGP_ATTRIBUTE_CONTENT               => 1003;
use constant RNGP_ATTRIBUTE_EMPTY                 => 1004;
use constant RNGP_ATTRIBUTE_NOOP                  => 1005;
use constant RNGP_CHOICE_CONTENT                  => 1006;
use constant RNGP_CHOICE_EMPTY                    => 1007;
use constant RNGP_CREATE_FAILURE                  => 1008;
use constant RNGP_DATA_CONTENT                    => 1009;
use constant RNGP_DEF_CHOICE_AND_INTERLEAVE       => 1010;
use constant RNGP_DEFINE_CREATE_FAILED            => 1011;
use constant RNGP_DEFINE_EMPTY                    => 1012;
use constant RNGP_DEFINE_MISSING                  => 1013;
use constant RNGP_DEFINE_NAME_MISSING             => 1014;
use constant RNGP_ELEM_CONTENT_EMPTY              => 1015;
use constant RNGP_ELEM_CONTENT_ERROR              => 1016;
use constant RNGP_ELEMENT_EMPTY                   => 1017;
use constant RNGP_ELEMENT_CONTENT                 => 1018;
use constant RNGP_ELEMENT_NAME                    => 1019;
use constant RNGP_ELEMENT_NO_CONTENT              => 1020;
use constant RNGP_ELEM_TEXT_CONFLICT              => 1021;
use constant RNGP_EMPTY                           => 1022;
use constant RNGP_EMPTY_CONSTRUCT                 => 1023;
use constant RNGP_EMPTY_CONTENT                   => 1024;
use constant RNGP_EMPTY_NOT_EMPTY                 => 1025;
use constant RNGP_ERROR_TYPE_LIB                  => 1026;
use constant RNGP_EXCEPT_EMPTY                    => 1027;
use constant RNGP_EXCEPT_MISSING                  => 1028;
use constant RNGP_EXCEPT_MULTIPLE                 => 1029;
use constant RNGP_EXCEPT_NO_CONTENT               => 1030;
use constant RNGP_EXTERNALREF_EMTPY               => 1031;
use constant RNGP_EXTERNAL_REF_FAILURE            => 1032;
use constant RNGP_EXTERNALREF_RECURSE             => 1033;
use constant RNGP_FORBIDDEN_ATTRIBUTE             => 1034;
use constant RNGP_FOREIGN_ELEMENT                 => 1035;
use constant RNGP_GRAMMAR_CONTENT                 => 1036;
use constant RNGP_GRAMMAR_EMPTY                   => 1037;
use constant RNGP_GRAMMAR_MISSING                 => 1038;
use constant RNGP_GRAMMAR_NO_START                => 1039;
use constant RNGP_GROUP_ATTR_CONFLICT             => 1040;
use constant RNGP_HREF_ERROR                      => 1041;
use constant RNGP_INCLUDE_EMPTY                   => 1042;
use constant RNGP_INCLUDE_FAILURE                 => 1043;
use constant RNGP_INCLUDE_RECURSE                 => 1044;
use constant RNGP_INTERLEAVE_ADD                  => 1045;
use constant RNGP_INTERLEAVE_CREATE_FAILED        => 1046;
use constant RNGP_INTERLEAVE_EMPTY                => 1047;
use constant RNGP_INTERLEAVE_NO_CONTENT           => 1048;
use constant RNGP_INVALID_DEFINE_NAME             => 1049;
use constant RNGP_INVALID_URI                     => 1050;
use constant RNGP_INVALID_VALUE                   => 1051;
use constant RNGP_MISSING_HREF                    => 1052;
use constant RNGP_NAME_MISSING                    => 1053;
use constant RNGP_NEED_COMBINE                    => 1054;
use constant RNGP_NOTALLOWED_NOT_EMPTY            => 1055;
use constant RNGP_NSNAME_ATTR_ANCESTOR            => 1056;
use constant RNGP_NSNAME_NO_NS                    => 1057;
use constant RNGP_PARAM_FORBIDDEN                 => 1058;
use constant RNGP_PARAM_NAME_MISSING              => 1059;
use constant RNGP_PARENTREF_CREATE_FAILED         => 1060;
use constant RNGP_PARENTREF_NAME_INVALID          => 1061;
use constant RNGP_PARENTREF_NO_NAME               => 1062;
use constant RNGP_PARENTREF_NO_PARENT             => 1063;
use constant RNGP_PARENTREF_NOT_EMPTY             => 1064;
use constant RNGP_PARSE_ERROR                     => 1065;
use constant RNGP_PAT_ANYNAME_EXCEPT_ANYNAME      => 1066;
use constant RNGP_PAT_ATTR_ATTR                   => 1067;
use constant RNGP_PAT_ATTR_ELEM                   => 1068;
use constant RNGP_PAT_DATA_EXCEPT_ATTR            => 1069;
use constant RNGP_PAT_DATA_EXCEPT_ELEM            => 1070;
use constant RNGP_PAT_DATA_EXCEPT_EMPTY           => 1071;
use constant RNGP_PAT_DATA_EXCEPT_GROUP           => 1072;
use constant RNGP_PAT_DATA_EXCEPT_INTERLEAVE      => 1073;
use constant RNGP_PAT_DATA_EXCEPT_LIST            => 1074;
use constant RNGP_PAT_DATA_EXCEPT_ONEMORE         => 1075;
use constant RNGP_PAT_DATA_EXCEPT_REF             => 1076;
use constant RNGP_PAT_DATA_EXCEPT_TEXT            => 1077;
use constant RNGP_PAT_LIST_ATTR                   => 1078;
use constant RNGP_PAT_LIST_ELEM                   => 1079;
use constant RNGP_PAT_LIST_INTERLEAVE             => 1080;
use constant RNGP_PAT_LIST_LIST                   => 1081;
use constant RNGP_PAT_LIST_REF                    => 1082;
use constant RNGP_PAT_LIST_TEXT                   => 1083;
use constant RNGP_PAT_NSNAME_EXCEPT_ANYNAME       => 1084;
use constant RNGP_PAT_NSNAME_EXCEPT_NSNAME        => 1085;
use constant RNGP_PAT_ONEMORE_GROUP_ATTR          => 1086;
use constant RNGP_PAT_ONEMORE_INTERLEAVE_ATTR     => 1087;
use constant RNGP_PAT_START_ATTR                  => 1088;
use constant RNGP_PAT_START_DATA                  => 1089;
use constant RNGP_PAT_START_EMPTY                 => 1090;
use constant RNGP_PAT_START_GROUP                 => 1091;
use constant RNGP_PAT_START_INTERLEAVE            => 1092;
use constant RNGP_PAT_START_LIST                  => 1093;
use constant RNGP_PAT_START_ONEMORE               => 1094;
use constant RNGP_PAT_START_TEXT                  => 1095;
use constant RNGP_PAT_START_VALUE                 => 1096;
use constant RNGP_PREFIX_UNDEFINED                => 1097;
use constant RNGP_REF_CREATE_FAILED               => 1098;
use constant RNGP_REF_CYCLE                       => 1099;
use constant RNGP_REF_NAME_INVALID                => 1100;
use constant RNGP_REF_NO_DEF                      => 1101;
use constant RNGP_REF_NO_NAME                     => 1102;
use constant RNGP_REF_NOT_EMPTY                   => 1103;
use constant RNGP_START_CHOICE_AND_INTERLEAVE     => 1104;
use constant RNGP_START_CONTENT                   => 1105;
use constant RNGP_START_EMPTY                     => 1106;
use constant RNGP_START_MISSING                   => 1107;
use constant RNGP_TEXT_EXPECTED                   => 1108;
use constant RNGP_TEXT_HAS_CHILD                  => 1109;
use constant RNGP_TYPE_MISSING                    => 1110;
use constant RNGP_TYPE_NOT_FOUND                  => 1111;
use constant RNGP_TYPE_VALUE                      => 1112;
use constant RNGP_UNKNOWN_ATTRIBUTE               => 1113;
use constant RNGP_UNKNOWN_COMBINE                 => 1114;
use constant RNGP_UNKNOWN_CONSTRUCT               => 1115;
use constant RNGP_UNKNOWN_TYPE_LIB                => 1116;
use constant RNGP_URI_FRAGMENT                    => 1117;
use constant RNGP_URI_NOT_ABSOLUTE                => 1118;
use constant RNGP_VALUE_EMPTY                     => 1119;
use constant RNGP_VALUE_NO_CONTENT                => 1120;
use constant RNGP_XMLNS_NAME                      => 1121;
use constant RNGP_XML_NS                          => 1122;
use constant XPATH_EXPRESSION_OK                  => 1200;
use constant XPATH_NUMBER_ERROR                   => 1201;
use constant XPATH_UNFINISHED_LITERAL_ERROR       => 1202;
use constant XPATH_START_LITERAL_ERROR            => 1203;
use constant XPATH_VARIABLE_REF_ERROR             => 1204;
use constant XPATH_UNDEF_VARIABLE_ERROR           => 1205;
use constant XPATH_INVALID_PREDICATE_ERROR        => 1206;
use constant XPATH_EXPR_ERROR                     => 1207;
use constant XPATH_UNCLOSED_ERROR                 => 1208;
use constant XPATH_UNKNOWN_FUNC_ERROR             => 1209;
use constant XPATH_INVALID_OPERAND                => 1210;
use constant XPATH_INVALID_TYPE                   => 1211;
use constant XPATH_INVALID_ARITY                  => 1212;
use constant XPATH_INVALID_CTXT_SIZE              => 1213;
use constant XPATH_INVALID_CTXT_POSITION          => 1214;
use constant XPATH_MEMORY_ERROR                   => 1215;
use constant XPTR_SYNTAX_ERROR                    => 1216;
use constant XPTR_RESOURCE_ERROR                  => 1217;
use constant XPTR_SUB_RESOURCE_ERROR              => 1218;
use constant XPATH_UNDEF_PREFIX_ERROR             => 1219;
use constant XPATH_ENCODING_ERROR                 => 1220;
use constant XPATH_INVALID_CHAR_ERROR             => 1221;
use constant TREE_INVALID_HEX                     => 1300;
use constant TREE_INVALID_DEC                     => 1301;
use constant TREE_UNTERMINATED_ENTITY             => 1302;
use constant SAVE_NOT_UTF8                        => 1400;
use constant SAVE_CHAR_INVALID                    => 1401;
use constant SAVE_NO_DOCTYPE                      => 1402;
use constant SAVE_UNKNOWN_ENCODING                => 1403;
use constant REGEXP_COMPILE_ERROR                 => 1450;
use constant IO_UNKNOWN                           => 1500;
use constant IO_EACCES                            => 1501;
use constant IO_EAGAIN                            => 1502;
use constant IO_EBADF                             => 1503;
use constant IO_EBADMSG                           => 1504;
use constant IO_EBUSY                             => 1505;
use constant IO_ECANCELED                         => 1506;
use constant IO_ECHILD                            => 1507;
use constant IO_EDEADLK                           => 1508;
use constant IO_EDOM                              => 1509;
use constant IO_EEXIST                            => 1510;
use constant IO_EFAULT                            => 1511;
use constant IO_EFBIG                             => 1512;
use constant IO_EINPROGRESS                       => 1513;
use constant IO_EINTR                             => 1514;
use constant IO_EINVAL                            => 1515;
use constant IO_EIO                               => 1516;
use constant IO_EISDIR                            => 1517;
use constant IO_EMFILE                            => 1518;
use constant IO_EMLINK                            => 1519;
use constant IO_EMSGSIZE                          => 1520;
use constant IO_ENAMETOOLONG                      => 1521;
use constant IO_ENFILE                            => 1522;
use constant IO_ENODEV                            => 1523;
use constant IO_ENOENT                            => 1524;
use constant IO_ENOEXEC                           => 1525;
use constant IO_ENOLCK                            => 1526;
use constant IO_ENOMEM                            => 1527;
use constant IO_ENOSPC                            => 1528;
use constant IO_ENOSYS                            => 1529;
use constant IO_ENOTDIR                           => 1530;
use constant IO_ENOTEMPTY                         => 1531;
use constant IO_ENOTSUP                           => 1532;
use constant IO_ENOTTY                            => 1533;
use constant IO_ENXIO                             => 1534;
use constant IO_EPERM                             => 1535;
use constant IO_EPIPE                             => 1536;
use constant IO_ERANGE                            => 1537;
use constant IO_EROFS                             => 1538;
use constant IO_ESPIPE                            => 1539;
use constant IO_ESRCH                             => 1540;
use constant IO_ETIMEDOUT                         => 1541;
use constant IO_EXDEV                             => 1542;
use constant IO_NETWORK_ATTEMPT                   => 1543;
use constant IO_ENCODER                           => 1544;
use constant IO_FLUSH                             => 1545;
use constant IO_WRITE                             => 1546;
use constant IO_NO_INPUT                          => 1547;
use constant IO_BUFFER_FULL                       => 1548;
use constant IO_LOAD_ERROR                        => 1549;
use constant IO_ENOTSOCK                          => 1550;
use constant IO_EISCONN                           => 1551;
use constant IO_ECONNREFUSED                      => 1552;
use constant IO_ENETUNREACH                       => 1553;
use constant IO_EADDRINUSE                        => 1554;
use constant IO_EALREADY                          => 1555;
use constant IO_EAFNOSUPPORT                      => 1556;
use constant XINCLUDE_RECURSION                   => 1600;
use constant XINCLUDE_PARSE_VALUE                 => 1601;
use constant XINCLUDE_ENTITY_DEF_MISMATCH         => 1602;
use constant XINCLUDE_NO_HREF                     => 1603;
use constant XINCLUDE_NO_FALLBACK                 => 1604;
use constant XINCLUDE_HREF_URI                    => 1605;
use constant XINCLUDE_TEXT_FRAGMENT               => 1606;
use constant XINCLUDE_TEXT_DOCUMENT               => 1607;
use constant XINCLUDE_INVALID_CHAR                => 1608;
use constant XINCLUDE_BUILD_FAILED                => 1609;
use constant XINCLUDE_UNKNOWN_ENCODING            => 1610;
use constant XINCLUDE_MULTIPLE_ROOT               => 1611;
use constant XINCLUDE_XPTR_FAILED                 => 1612;
use constant XINCLUDE_XPTR_RESULT                 => 1613;
use constant XINCLUDE_INCLUDE_IN_INCLUDE          => 1614;
use constant XINCLUDE_FALLBACKS_IN_INCLUDE        => 1615;
use constant XINCLUDE_FALLBACK_NOT_IN_INCLUDE     => 1616;
use constant CATALOG_MISSING_ATTR                 => 1650;
use constant CATALOG_ENTRY_BROKEN                 => 1651;
use constant CATALOG_PREFER_VALUE                 => 1652;
use constant CATALOG_NOT_CATALOG                  => 1653;
use constant CATALOG_RECURSION                    => 1654;
use constant SCHEMAP_PREFIX_UNDEFINED             => 1700;
use constant SCHEMAP_ATTRFORMDEFAULT_VALUE        => 1701;
use constant SCHEMAP_ATTRGRP_NONAME_NOREF         => 1702;
use constant SCHEMAP_ATTR_NONAME_NOREF            => 1703;
use constant SCHEMAP_COMPLEXTYPE_NONAME_NOREF     => 1704;
use constant SCHEMAP_ELEMFORMDEFAULT_VALUE        => 1705;
use constant SCHEMAP_ELEM_NONAME_NOREF            => 1706;
use constant SCHEMAP_EXTENSION_NO_BASE            => 1707;
use constant SCHEMAP_FACET_NO_VALUE               => 1708;
use constant SCHEMAP_FAILED_BUILD_IMPORT          => 1709;
use constant SCHEMAP_GROUP_NONAME_NOREF           => 1710;
use constant SCHEMAP_IMPORT_NAMESPACE_NOT_URI     => 1711;
use constant SCHEMAP_IMPORT_REDEFINE_NSNAME       => 1712;
use constant SCHEMAP_IMPORT_SCHEMA_NOT_URI        => 1713;
use constant SCHEMAP_INVALID_BOOLEAN              => 1714;
use constant SCHEMAP_INVALID_ENUM                 => 1715;
use constant SCHEMAP_INVALID_FACET                => 1716;
use constant SCHEMAP_INVALID_FACET_VALUE          => 1717;
use constant SCHEMAP_INVALID_MAXOCCURS            => 1718;
use constant SCHEMAP_INVALID_MINOCCURS            => 1719;
use constant SCHEMAP_INVALID_REF_AND_SUBTYPE      => 1720;
use constant SCHEMAP_INVALID_WHITE_SPACE          => 1721;
use constant SCHEMAP_NOATTR_NOREF                 => 1722;
use constant SCHEMAP_NOTATION_NO_NAME             => 1723;
use constant SCHEMAP_NOTYPE_NOREF                 => 1724;
use constant SCHEMAP_REF_AND_SUBTYPE              => 1725;
use constant SCHEMAP_RESTRICTION_NONAME_NOREF     => 1726;
use constant SCHEMAP_SIMPLETYPE_NONAME            => 1727;
use constant SCHEMAP_TYPE_AND_SUBTYPE             => 1728;
use constant SCHEMAP_UNKNOWN_ALL_CHILD            => 1729;
use constant SCHEMAP_UNKNOWN_ANYATTRIBUTE_CHILD   => 1730;
use constant SCHEMAP_UNKNOWN_ATTR_CHILD           => 1731;
use constant SCHEMAP_UNKNOWN_ATTRGRP_CHILD        => 1732;
use constant SCHEMAP_UNKNOWN_ATTRIBUTE_GROUP      => 1733;
use constant SCHEMAP_UNKNOWN_BASE_TYPE            => 1734;
use constant SCHEMAP_UNKNOWN_CHOICE_CHILD         => 1735;
use constant SCHEMAP_UNKNOWN_COMPLEXCONTENT_CHILD => 1736;
use constant SCHEMAP_UNKNOWN_COMPLEXTYPE_CHILD    => 1737;
use constant SCHEMAP_UNKNOWN_ELEM_CHILD           => 1738;
use constant SCHEMAP_UNKNOWN_EXTENSION_CHILD      => 1739;
use constant SCHEMAP_UNKNOWN_FACET_CHILD          => 1740;
use constant SCHEMAP_UNKNOWN_FACET_TYPE           => 1741;
use constant SCHEMAP_UNKNOWN_GROUP_CHILD          => 1742;
use constant SCHEMAP_UNKNOWN_IMPORT_CHILD         => 1743;
use constant SCHEMAP_UNKNOWN_LIST_CHILD           => 1744;
use constant SCHEMAP_UNKNOWN_NOTATION_CHILD       => 1745;
use constant SCHEMAP_UNKNOWN_PROCESSCONTENT_CHILD => 1746;
use constant SCHEMAP_UNKNOWN_REF                  => 1747;
use constant SCHEMAP_UNKNOWN_RESTRICTION_CHILD    => 1748;
use constant SCHEMAP_UNKNOWN_SCHEMAS_CHILD        => 1749;
use constant SCHEMAP_UNKNOWN_SEQUENCE_CHILD       => 1750;
use constant SCHEMAP_UNKNOWN_SIMPLECONTENT_CHILD  => 1751;
use constant SCHEMAP_UNKNOWN_SIMPLETYPE_CHILD     => 1752;
use constant SCHEMAP_UNKNOWN_TYPE                 => 1753;
use constant SCHEMAP_UNKNOWN_UNION_CHILD          => 1754;
use constant SCHEMAP_ELEM_DEFAULT_FIXED           => 1755;
use constant SCHEMAP_REGEXP_INVALID               => 1756;
use constant SCHEMAP_FAILED_LOAD                  => 1756;
use constant SCHEMAP_NOTHING_TO_PARSE             => 1757;
use constant SCHEMAP_NOROOT                       => 1758;
use constant SCHEMAP_REDEFINED_GROUP              => 1759;
use constant SCHEMAP_REDEFINED_TYPE               => 1760;
use constant SCHEMAP_REDEFINED_ELEMENT            => 1761;
use constant SCHEMAP_REDEFINED_ATTRGROUP          => 1762;
use constant SCHEMAP_REDEFINED_ATTR               => 1763;
use constant SCHEMAP_REDEFINED_NOTATION           => 1764;
use constant SCHEMAP_FAILED_PARSE                 => 1765;
use constant SCHEMAV_NOROOT                       => 1800;
use constant SCHEMAV_UNDECLAREDELEM               => 1801;
use constant SCHEMAV_NOTTOPLEVEL                  => 1802;
use constant SCHEMAV_MISSING                      => 1803;
use constant SCHEMAV_WRONGELEM                    => 1804;
use constant SCHEMAV_NOTYPE                       => 1805;
use constant SCHEMAV_NOROLLBACK                   => 1806;
use constant SCHEMAV_ISABSTRACT                   => 1807;
use constant SCHEMAV_NOTEMPTY                     => 1808;
use constant SCHEMAV_ELEMCONT                     => 1809;
use constant SCHEMAV_HAVEDEFAULT                  => 1810;
use constant SCHEMAV_NOTNILLABLE                  => 1811;
use constant SCHEMAV_EXTRACONTENT                 => 1812;
use constant SCHEMAV_INVALIDATTR                  => 1813;
use constant SCHEMAV_INVALIDELEM                  => 1814;
use constant SCHEMAV_NOTDETERMINIST               => 1815;
use constant SCHEMAV_CONSTRUCT                    => 1816;
use constant SCHEMAV_INTERNAL                     => 1817;
use constant SCHEMAV_NOTSIMPLE                    => 1818;
use constant SCHEMAV_ATTRUNKNOWN                  => 1819;
use constant SCHEMAV_ATTRINVALID                  => 1820;
use constant SCHEMAV_VALUE                        => 1821;
use constant SCHEMAV_FACET                        => 1822;
use constant XPTR_UNKNOWN_SCHEME                  => 1900;
use constant XPTR_CHILDSEQ_START                  => 1901;
use constant XPTR_EVAL_FAILED                     => 1902;
use constant XPTR_EXTRA_OBJECTS                   => 1903;
use constant C14N_CREATE_CTXT                     => 1950;
use constant C14N_REQUIRES_UTF8                   => 1951;
use constant C14N_CREATE_STACK                    => 1952;
use constant C14N_INVALID_NODE                    => 1953;
use constant FTP_PASV_ANSWER                      => 2000;
use constant FTP_EPSV_ANSWER                      => 2001;
use constant FTP_ACCNT                            => 2002;
use constant HTTP_URL_SYNTAX                      => 2020;
use constant HTTP_USE_IP                          => 2021;
use constant HTTP_UNKNOWN_HOST			 => 2022;

1;
PK     N\e呟      LibXML/Pattern.podnu 6$        =head1 NAME

XML::LibXML::Pattern - XML::LibXML::Pattern - interface to libxml2 XPath patterns

=head1 SYNOPSIS



  use XML::LibXML;
  my $pattern = XML::LibXML::Pattern->new('/x:html/x:body//x:div', { 'x' => 'http://www.w3.org/1999/xhtml' });
  # test a match on an XML::LibXML::Node $node

  if ($pattern->matchesNode($node)) { ... }

  # or on an XML::LibXML::Reader

  if ($reader->matchesPattern($pattern)) { ... }

  # or skip reading all nodes that do not match

  print $reader->nodePath while $reader->nextPatternMatch($pattern);

  $pattern = XML::LibXML::Pattern->new( pattern, { prefix => namespace_URI, ... } );
  $bool = $pattern->matchesNode($node);

=head1 DESCRIPTION

This is a perl interface to libxml2's pattern matching support I<<<<<< http://xmlsoft.org/html/libxml-pattern.html >>>>>>. This feature requires recent versions of libxml2.

Patterns are a small subset of XPath language, which is limited to
(disjunctions of) location paths involving the child and descendant axes in
abbreviated form as described by the extended BNF given below:



  Selector ::=     Path ( '|' Path )*
  Path     ::=     ('.//' | '//' | '/' )? Step ( '/' Step )*
  Step     ::=     '.' | NameTest
  NameTest ::=     QName | '*' | NCName ':' '*'

For readability, whitespace may be used in selector XPath expressions even
though not explicitly allowed by the grammar: whitespace may be freely added
within patterns before or after any token, where



  token     ::=     '.' | '/' | '//' | '|' | NameTest

Note that no predicates or attribute tests are allowed.

Patterns are particularly useful for stream parsing provided via the C<<<<<< XML::LibXML::Reader >>>>>> interface.

=over 4

=item new()

  $pattern = XML::LibXML::Pattern->new( pattern, { prefix => namespace_URI, ... } );

The constructor of a pattern takes a pattern expression (as described by the
BNF grammar above) and an optional HASH reference mapping prefixes to namespace
URIs. The method returns a compiled pattern object.

Note that if the document has a default namespace, it must still be given an
prefix in order to be matched (as demanded by the XPath 1.0 specification). For
example, to match an element C<<<<<< E<lt>a xmlns="http://foo.bar"E<lt>/aE<gt> >>>>>>, one should use a pattern like this:



  $pattern = XML::LibXML::Pattern->new( 'foo:a', { foo => 'http://foo.bar' });


=item matchesNode($node)

  $bool = $pattern->matchesNode($node);

Given an XML::LibXML::Node object, returns a true value if the node is matched
by the compiled pattern expression.



=back


=head1 SEE ALSO

L<<<<<< XML::LibXML::Reader >>>>>> for other methods involving compiled patterns.

=head1 AUTHORS

Matt Sergeant,
Christian Glahn,
Petr Pajas


=head1 VERSION

2.0210

=head1 COPYRIGHT

2001-2007, AxKit.com Ltd.

2002-2006, Christian Glahn.

2006-2009, Petr Pajas.

=cut


=head1 LICENSE

This program is free software; you can redistribute it and/or modify it under
the same terms as Perl itself.

PK     N\	.Y      LibXML/DOM.podnu 6$        =head1 NAME

XML::LibXML::DOM - XML::LibXML DOM Implementation

=head1 DESCRIPTION

XML::LibXML provides a lightweight interface to I<<<<<< modify >>>>>> a node of the document tree generated by the XML::LibXML parser. This interface
follows as far as possible the DOM Level 3 specification. In addition to the
specified functions, XML::LibXML supports some functions that are more handy to
use in the perl environment.

One also has to remember, that XML::LibXML is an interface to libxml2 nodes
which actually reside on the C-Level of XML::LibXML. This means each node is a
reference to a structure which is different from a perl hash or array. The only
way to access these structures' values is through the DOM interface provided by
XML::LibXML. This also means, that one I<<<<<< can't >>>>>> simply inherit an XML::LibXML node and add new member variables as if they were
hash keys.

The DOM interface of XML::LibXML does not intend to implement a full DOM
interface as it is done by XML::GDOME and used for full featured application.
Moreover, it offers an simple way to build or modify documents that are created
by XML::LibXML's parser.

Another target of the XML::LibXML interface is to make the interfaces of
libxml2 available to the perl community. This includes also some workarounds to
some features where libxml2 assumes more control over the C-Level that most
perl users don't have.

One of the most important parts of the XML::LibXML DOM interface is that the
interfaces try to follow the DOM Level 3 specification (L<<<<<< http://www.w3.org/TR/DOM-Level-3-Core/ >>>>>>) rather strictly. This means the interface functions are named as the DOM
specification says and not what widespread Java interfaces claim to be the
standard. Although there are several functions that have only a singular
interface that conforms to the DOM spec XML::LibXML provides an additional Java
style alias interface.

Moreover, there are some function interfaces left over from early stages of
XML::LibXML for compatibility reasons. These interfaces are for compatibility
reasons I<<<<<< only >>>>>>. They might disappear in one of the future versions of XML::LibXML, so a user
is requested to switch over to the official functions.


=head2 Encodings and XML::LibXML's DOM implementation

See the section on Encodings in the I<<<<<< XML::LibXML >>>>>> manual page.


=head2 Namespaces and XML::LibXML's DOM implementation

XML::LibXML's DOM implementation is limited by the DOM implementation of
libxml2 which treats namespaces slightly differently than required by the DOM
Level 2 specification.

According to the DOM Level 2 specification, namespaces of elements and
attributes should be persistent, and nodes should be permanently bound to
namespace URIs as they get created; it should be possible to manipulate the
special attributes used for declaring XML namespaces just as other attributes
without affecting the namespaces of other nodes. In DOM Level 2, the
application is responsible for creating the special attributes consistently
and/or for correct serialization of the document.

This is both inconvenient, causes problems in serialization of DOM to XML, and
most importantly, seems almost impossible to implement over libxml2.

In libxml2, namespace URI and prefix of a node is provided by a pointer to a
namespace declaration (appearing as a special xmlns attribute in the XML
document). If the prefix or namespace URI of the declaration changes, the
prefix and namespace URI of all nodes that point to it changes as well.
Moreover, in contrast to DOM, a node (element or attribute) can only be bound
to a namespace URI if there is some namespace declaration in the document to
point to.

Therefore current DOM implementation in XML::LibXML tries to treat namespace
declarations in a compromise between reason, common sense, limitations of
libxml2, and the DOM Level 2 specification.

In XML::LibXML, special attributes declaring XML namespaces are often created
automatically, usually when a namespaced node is attached to a document and no
existing declaration of the namespace and prefix is in the scope to be reused.
In this respect, XML::LibXML DOM implementation differs from the DOM Level 2
specification according to which special attributes for declaring the
appropriate XML namespaces should not be added when a node with a namespace
prefix and namespace URI is created.

Namespace declarations are also created when L<<<<<< XML::LibXML::Document >>>>>>'s createElementNS() or createAttributeNS() function are used. If the a
namespace is not declared on the documentElement, the namespace will be locally
declared for the newly created node. In case of Attributes this may look a bit
confusing, since these nodes cannot have namespace declarations itself. In this
case the namespace is internally applied to the attribute and later declared on
the node the attribute is appended to (if required).

The following example may explain this a bit:



  my $doc = XML::LibXML->createDocument;
  my $root = $doc->createElementNS( "", "foo" );
  $doc->setDocumentElement( $root );

  my $attr = $doc->createAttributeNS( "bar", "bar:foo", "test" );
  $root->setAttributeNodeNS( $attr );

This piece of code will result in the following document:



  <?xml version="1.0"?>
  <foo xmlns:bar="bar" bar:foo="test"/>

The namespace is declared on the document element during the
setAttributeNodeNS() call.

Namespaces can be also declared explicitly by the use of XML::LibXML::Element's
setNamespace() function. Since 1.61, they can also be manipulated with
functions setNamespaceDeclPrefix() and setNamespaceDeclURI() (not available in
DOM). Changing an URI or prefix of an existing namespace declaration affects
the namespace URI and prefix of all nodes which point to it (that is the nodes
in its scope).

It is also important to repeat the specification: While working with namespaces
you should use the namespace aware functions instead of the simplified
versions. For example you should I<<<<<< never >>>>>> use setAttribute() but setAttributeNS().

=head1 AUTHORS

Matt Sergeant,
Christian Glahn,
Petr Pajas


=head1 VERSION

2.0210

=head1 COPYRIGHT

2001-2007, AxKit.com Ltd.

2002-2006, Christian Glahn.

2006-2009, Petr Pajas.

=cut


=head1 LICENSE

This program is free software; you can redistribute it and/or modify it under
the same terms as Perl itself.

PK     N\me,        LibXML/Common.pmnu 6$        #-------------------------------------------------------------------------#
# $Id: Common.pm,v 1.5 2003/02/27 18:32:59 phish108 Exp $
#
#
# This is free software, you may use it and distribute it under the same terms as
# Perl itself.
#
# Copyright 2001-2003 AxKit.com Ltd., 2002-2006 Christian Glahn, 2006-2009 Petr Pajas
#
#
#-------------------------------------------------------------------------#
package XML::LibXML::Common;


#-------------------------------------------------------------------------#
# global blur                                                             #
#-------------------------------------------------------------------------#
use strict;
use warnings;

require Exporter;
use vars qw( @ISA $VERSION @EXPORT @EXPORT_OK %EXPORT_TAGS);

@ISA = qw(Exporter);

$VERSION = "2.0210"; # VERSION TEMPLATE: DO NOT CHANGE

use XML::LibXML qw(:libxml);

#-------------------------------------------------------------------------#
# export information                                                      #
#-------------------------------------------------------------------------#
%EXPORT_TAGS = (
                all => [qw(
                           ELEMENT_NODE
                           ATTRIBUTE_NODE
                           TEXT_NODE
                           CDATA_SECTION_NODE
                           ENTITY_REFERENCE_NODE
                           ENTITY_NODE
                           PI_NODE
                           PROCESSING_INSTRUCTION_NODE
                           COMMENT_NODE
                           DOCUMENT_NODE
                           DOCUMENT_TYPE_NODE
                           DOCUMENT_FRAG_NODE
                           DOCUMENT_FRAGMENT_NODE
                           NOTATION_NODE
                           HTML_DOCUMENT_NODE
                           DTD_NODE
                           ELEMENT_DECLARATION
                           ATTRIBUTE_DECLARATION
                           ENTITY_DECLARATION
                           NAMESPACE_DECLARATION
                           XINCLUDE_END
                           XINCLUDE_START
                           encodeToUTF8
                           decodeFromUTF8
                          )],
                w3c => [qw(
                           ELEMENT_NODE
                           ATTRIBUTE_NODE
                           TEXT_NODE
                           CDATA_SECTION_NODE
                           ENTITY_REFERENCE_NODE
                           ENTITY_NODE
                           PI_NODE
                           PROCESSING_INSTRUCTION_NODE
                           COMMENT_NODE
                           DOCUMENT_NODE
                           DOCUMENT_TYPE_NODE
                           DOCUMENT_FRAG_NODE
                           DOCUMENT_FRAGMENT_NODE
                           NOTATION_NODE
                           HTML_DOCUMENT_NODE
                           DTD_NODE
                           ELEMENT_DECLARATION
                           ATTRIBUTE_DECLARATION
                           ENTITY_DECLARATION
                           NAMESPACE_DECLARATION
                           XINCLUDE_END
                           XINCLUDE_START
                          )],
                libxml => [qw(
                           XML_ELEMENT_NODE
                           XML_ATTRIBUTE_NODE
                           XML_TEXT_NODE
                           XML_CDATA_SECTION_NODE
                           XML_ENTITY_REF_NODE
                           XML_ENTITY_NODE
                           XML_PI_NODE
                           XML_COMMENT_NODE
                           XML_DOCUMENT_NODE
                           XML_DOCUMENT_TYPE_NODE
                           XML_DOCUMENT_FRAG_NODE
                           XML_NOTATION_NODE
                           XML_HTML_DOCUMENT_NODE
                           XML_DTD_NODE
                           XML_ELEMENT_DECL
                           XML_ATTRIBUTE_DECL
                           XML_ENTITY_DECL
                           XML_NAMESPACE_DECL
                           XML_XINCLUDE_END
                           XML_XINCLUDE_START
                          )],
                gdome => [qw(
                           GDOME_ELEMENT_NODE
                           GDOME_ATTRIBUTE_NODE
                           GDOME_TEXT_NODE
                           GDOME_CDATA_SECTION_NODE
                           GDOME_ENTITY_REF_NODE
                           GDOME_ENTITY_NODE
                           GDOME_PI_NODE
                           GDOME_COMMENT_NODE
                           GDOME_DOCUMENT_NODE
                           GDOME_DOCUMENT_TYPE_NODE
                           GDOME_DOCUMENT_FRAG_NODE
                           GDOME_NOTATION_NODE
                           GDOME_HTML_DOCUMENT_NODE
                           GDOME_DTD_NODE
                           GDOME_ELEMENT_DECL
                           GDOME_ATTRIBUTE_DECL
                           GDOME_ENTITY_DECL
                           GDOME_NAMESPACE_DECL
                           GDOME_XINCLUDE_END
                           GDOME_XINCLUDE_START
                          )],
                encoding => [qw(
                                encodeToUTF8
                                decodeFromUTF8
                               )],
               );

@EXPORT_OK = (
              @{$EXPORT_TAGS{encoding}},
              @{$EXPORT_TAGS{w3c}},
              @{$EXPORT_TAGS{libxml}},
              @{$EXPORT_TAGS{gdome}},
             );

@EXPORT = (
           @{$EXPORT_TAGS{encoding}},
           @{$EXPORT_TAGS{w3c}},
          );

#-------------------------------------------------------------------------#
# W3 conform node types                                                   #
#-------------------------------------------------------------------------#
use constant ELEMENT_NODE                => 1;
use constant ATTRIBUTE_NODE              => 2;
use constant TEXT_NODE                   => 3;
use constant CDATA_SECTION_NODE          => 4;
use constant ENTITY_REFERENCE_NODE       => 5;
use constant ENTITY_NODE                 => 6;
use constant PROCESSING_INSTRUCTION_NODE => 7;
use constant COMMENT_NODE                => 8;
use constant DOCUMENT_NODE               => 9;
use constant DOCUMENT_TYPE_NODE          => 10;
use constant DOCUMENT_FRAGMENT_NODE      => 11;
use constant NOTATION_NODE               => 12;
use constant HTML_DOCUMENT_NODE          => 13;
use constant DTD_NODE                    => 14;
use constant ELEMENT_DECLARATION         => 15;
use constant ATTRIBUTE_DECLARATION       => 16;
use constant ENTITY_DECLARATION          => 17;
use constant NAMESPACE_DECLARATION       => 18;

#-------------------------------------------------------------------------#
# some extras for the W3 spec
#-------------------------------------------------------------------------#
use constant PI_NODE                     => 7;
use constant DOCUMENT_FRAG_NODE          => 11;
use constant XINCLUDE_END                => 19;
use constant XINCLUDE_START              => 20;

#-------------------------------------------------------------------------#
# libgdome compat names                                                   #
#-------------------------------------------------------------------------#
use constant GDOME_ELEMENT_NODE          => 1;
use constant GDOME_ATTRIBUTE_NODE        => 2;
use constant GDOME_TEXT_NODE             => 3;
use constant GDOME_CDATA_SECTION_NODE    => 4;
use constant GDOME_ENTITY_REF_NODE       => 5;
use constant GDOME_ENTITY_NODE           => 6;
use constant GDOME_PI_NODE               => 7;
use constant GDOME_COMMENT_NODE          => 8;
use constant GDOME_DOCUMENT_NODE         => 9;
use constant GDOME_DOCUMENT_TYPE_NODE    => 10;
use constant GDOME_DOCUMENT_FRAG_NODE    => 11;
use constant GDOME_NOTATION_NODE         => 12;
use constant GDOME_HTML_DOCUMENT_NODE    => 13;
use constant GDOME_DTD_NODE              => 14;
use constant GDOME_ELEMENT_DECL          => 15;
use constant GDOME_ATTRIBUTE_DECL        => 16;
use constant GDOME_ENTITY_DECL           => 17;
use constant GDOME_NAMESPACE_DECL        => 18;
use constant GDOME_XINCLUDE_START        => 19;
use constant GDOME_XINCLUDE_END          => 20;

1;
#-------------------------------------------------------------------------#
__END__

PK     N\3  3    LibXML/DocumentFragment.podnu 6$        =head1 NAME

XML::LibXML::DocumentFragment - XML::LibXML's DOM L2 Document Fragment Implementation

=head1 SYNOPSIS



  use XML::LibXML;


=head1 DESCRIPTION

This class is a helper class as described in the DOM Level 2 Specification. It
is implemented as a node without name. All adding, inserting or replacing
functions are aware of document fragments now.

As well I<<<<<< all >>>>>> unbound nodes (all nodes that do not belong to any document sub-tree) are
implicit members of document fragments.

=head1 AUTHORS

Matt Sergeant,
Christian Glahn,
Petr Pajas


=head1 VERSION

2.0210

=head1 COPYRIGHT

2001-2007, AxKit.com Ltd.

2002-2006, Christian Glahn.

2006-2009, Petr Pajas.

=cut


=head1 LICENSE

This program is free software; you can redistribute it and/or modify it under
the same terms as Perl itself.

PK     N\-      LibXML/SAX.podnu 6$        =head1 NAME

XML::LibXML::SAX - XML::LibXML direct SAX parser

=head1 DESCRIPTION

XML::LibXML provides an interface to libxml2 direct SAX interface. Through this
interface it is possible to generate SAX events directly while parsing a
document. While using the SAX parser XML::LibXML will not create a DOM Document
tree.

Such an interface is useful if very large XML documents have to be processed
and no DOM functions are required. By using this interface it is possible to
read data stored within an XML document directly into the application data
structures without loading the document into memory.

The SAX interface of XML::LibXML is based on the famous XML::SAX interface. It
uses the generic interface as provided by XML::SAX::Base.

Additionally to the generic functions, which are only able to process entire
documents, XML::LibXML::SAX provides I<<<<<< parse_chunk() >>>>>>. This method generates SAX events from well balanced data such as is often
provided by databases.


=head1 FEATURES

I<<<<<< NOTE: >>>>>> This feature is experimental.

You can enable character data joining which may yield a significant speed boost
in your XML processing in lower markup ratio situations by enabling the
http://xmlns.perl.org/sax/join-character-data feature of this parser. This is
done via the set_feature method like this:



  $p->set_feature('http://xmlns.perl.org/sax/join-character-data', 1);

You can also specify a 0 to disable. The default is to have this feature
disabled.

=head1 AUTHORS

Matt Sergeant,
Christian Glahn,
Petr Pajas


=head1 VERSION

2.0210

=head1 COPYRIGHT

2001-2007, AxKit.com Ltd.

2002-2006, Christian Glahn.

2006-2009, Petr Pajas.

=cut


=head1 LICENSE

This program is free software; you can redistribute it and/or modify it under
the same terms as Perl itself.

PK     N\qP      LibXML/Text.podnu 6$        =head1 NAME

XML::LibXML::Text - XML::LibXML Class for Text Nodes

=head1 SYNOPSIS



  use XML::LibXML;
  # Only methods specific to Text nodes are listed here,
  # see the XML::LibXML::Node manpage for other methods

  $text = XML::LibXML::Text->new( $content );
  $nodedata = $text->data;
  $text->setData( $text_content );
  $text->substringData($offset, $length);
  $text->appendData( $somedata );
  $text->insertData($offset, $string);
  $text->deleteData($offset, $length);
  $text->deleteDataString($remstring, $all);
  $text->replaceData($offset, $length, $string);
  $text->replaceDataString($old, $new, $flag);
  $text->replaceDataRegEx( $search_cond, $replace_cond, $reflags );

=head1 DESCRIPTION

Unlike the DOM specification, XML::LibXML implements the text node as the base
class of all character data node. Therefore there exists no CharacterData
class. This allows one to apply methods of text nodes also to Comments and
CDATA-sections.


=head1 METHODS

The class inherits from L<<<<<< XML::LibXML::Node >>>>>>. The documentation for Inherited methods is not listed here.

Many functions listed here are extensively documented in the DOM Level 3 specification (L<<<<<< http://www.w3.org/TR/DOM-Level-3-Core/ >>>>>>). Please refer to the specification for extensive documentation.

=over 4

=item new

  $text = XML::LibXML::Text->new( $content );

The constructor of the class. It creates an unbound text node.


=item data

  $nodedata = $text->data;

Although there exists the C<<<<<< nodeValue >>>>>> attribute in the Node class, the DOM specification defines data as a separate
attribute. C<<<<<< XML::LibXML >>>>>> implements these two attributes not as different attributes, but as aliases,
such as C<<<<<< libxml2 >>>>>> does. Therefore



  $text->data;

and



  $text->nodeValue;

will have the same result and are not different entities.


=item setData($string)

  $text->setData( $text_content );

This function sets or replaces text content to a node. The node has to be of
the type "text", "cdata" or "comment".


=item substringData($offset,$length)

  $text->substringData($offset, $length);

Extracts a range of data from the node. (DOM Spec) This function takes the two
parameters $offset and $length and returns the sub-string, if available.

If the node contains no data or $offset refers to an non-existing string index,
this function will return I<<<<<< undef >>>>>>. If $length is out of range C<<<<<< substringData >>>>>> will return the data starting at $offset instead of causing an error.


=item appendData($string)

  $text->appendData( $somedata );

Appends a string to the end of the existing data. If the current text node
contains no data, this function has the same effect as C<<<<<< setData >>>>>>.


=item insertData($offset,$string)

  $text->insertData($offset, $string);

Inserts the parameter $string at the given $offset of the existing data of the
node. This operation will not remove existing data, but change the order of the
existing data.

The $offset has to be a positive value. If $offset is out of range, C<<<<<< insertData >>>>>> will have the same behaviour as C<<<<<< appendData >>>>>>.


=item deleteData($offset, $length)

  $text->deleteData($offset, $length);

This method removes a chunk from the existing node data at the given offset.
The $length parameter tells, how many characters should be removed from the
string.


=item deleteDataString($string, [$all])

  $text->deleteDataString($remstring, $all);

This method removes a chunk from the existing node data. Since the DOM spec is
quite unhandy if you already know C<<<<<< which >>>>>> string to remove from a text node, this method allows more perlish code :)

The functions takes two parameters: I<<<<<< $string >>>>>> and optional the I<<<<<< $all >>>>>> flag. If $all is not set, I<<<<<< undef >>>>>> or I<<<<<< 0 >>>>>>, C<<<<<< deleteDataString >>>>>> will remove only the first occurrence of $string. If $all is I<<<<<< TRUE >>>>>>C<<<<<< deleteDataString >>>>>> will remove all occurrences of I<<<<<< $string >>>>>> from the node data.


=item replaceData($offset, $length, $string)

  $text->replaceData($offset, $length, $string);

The DOM style version to replace node data.


=item replaceDataString($oldstring, $newstring, [$all])

  $text->replaceDataString($old, $new, $flag);

The more programmer friendly version of replaceData() :)

Instead of giving offsets and length one can specify the exact string (I<<<<<< $oldstring >>>>>>) to be replaced. Additionally the I<<<<<< $all >>>>>> flag allows one to replace all occurrences of I<<<<<< $oldstring >>>>>>.


=item replaceDataRegEx( $search_cond, $replace_cond, $reflags )

  $text->replaceDataRegEx( $search_cond, $replace_cond, $reflags );

This method replaces the node's data by a C<<<<<< simple >>>>>> regular expression. Optional, this function allows one to pass some flags that
will be added as flag to the replace statement.

I<<<<<< NOTE: >>>>>> This is a shortcut for



  my $datastr = $node->getData();
   $datastr =~ s/somecond/replacement/g; # 'g' is just an example for any flag
   $node->setData( $datastr );

This function can make things easier to read for simple replacements. For more
complex variants it is recommended to use the code snippet above.



=back

=head1 AUTHORS

Matt Sergeant,
Christian Glahn,
Petr Pajas


=head1 VERSION

2.0210

=head1 COPYRIGHT

2001-2007, AxKit.com Ltd.

2002-2006, Christian Glahn.

2006-2009, Petr Pajas.

=cut


=head1 LICENSE

This program is free software; you can redistribute it and/or modify it under
the same terms as Perl itself.

PK     N\R	K      LibXML/XPathContext.pmnu 6$        # $Id: XPathContext.pm 422 2002-11-08 17:10:30Z phish $
#
# This is free software, you may use it and distribute it under the same terms as
# Perl itself.
#
# Copyright 2001-2003 AxKit.com Ltd., 2002-2006 Christian Glahn, 2006-2009 Petr Pajas
#
#

package XML::LibXML::XPathContext;

use strict;
use warnings;
use vars qw($VERSION @ISA $USE_LIBXML_DATA_TYPES);

use Carp;
use XML::LibXML;
use XML::LibXML::NodeList;

$VERSION = "2.0210"; # VERSION TEMPLATE: DO NOT CHANGE

# should LibXML XPath data types be used for simple objects
# when passing parameters to extension functions (default: no)
$USE_LIBXML_DATA_TYPES = 0;

sub CLONE_SKIP { 1 }

sub findnodes {
    my ($self, $xpath, $node) = @_;

    my @nodes = $self->_guarded_find_call('_findnodes', $node, $xpath);

    if (wantarray) {
        return @nodes;
    }
    else {
        return XML::LibXML::NodeList->new(@nodes);
    }
}

sub find {
    my ($self, $xpath, $node) = @_;

    my ($type, @params) = $self->_guarded_find_call('_find', $node, $xpath,0);

    if ($type) {
        return $type->new(@params);
    }
    return undef;
}

sub exists {
    my ($self, $xpath, $node) = @_;
    my (undef, $value) = $self->_guarded_find_call('_find', $node, $xpath,1);
    return $value;
}

sub findvalue {
    my $self = shift;
    return $self->find(@_)->to_literal->value;
}

sub _guarded_find_call {
    my ($self, $method, $node)=(shift,shift,shift);

    my $prev_node;
    if (ref($node)) {
        $prev_node = $self->getContextNode();
        $self->setContextNode($node);
    }
    my @ret;
    eval {
        @ret = $self->$method(@_);
    };
    $self->_free_node_pool;
    $self->setContextNode($prev_node) if ref($node);

    if ($@) {
      my $err = $@;
      chomp $err;
      croak $err;
    }

    return @ret;
}

sub registerFunction {
    my ($self, $name, $sub) = @_;
    $self->registerFunctionNS($name, undef, $sub);
    return;
}

sub unregisterNs {
    my ($self, $prefix) = @_;
    $self->registerNs($prefix, undef);
    return;
}

sub unregisterFunction {
    my ($self, $name) = @_;
    $self->registerFunctionNS($name, undef, undef);
    return;
}

sub unregisterFunctionNS {
    my ($self, $name, $ns) = @_;
    $self->registerFunctionNS($name, $ns, undef);
    return;
}

sub unregisterVarLookupFunc {
    my ($self) = @_;
    $self->registerVarLookupFunc(undef, undef);
    return;
}

# extension function perl dispatcher
# borrowed from XML::LibXSLT

sub _perl_dispatcher {
    my $func = shift;
    my @params = @_;
    my @perlParams;

    my $i = 0;
    while (@params) {
        my $type = shift(@params);
        if ($type eq 'XML::LibXML::Literal' or
            $type eq 'XML::LibXML::Number' or
            $type eq 'XML::LibXML::Boolean')
        {
            my $val = shift(@params);
            unshift(@perlParams, $USE_LIBXML_DATA_TYPES ? $type->new($val) : $val);
        }
        elsif ($type eq 'XML::LibXML::NodeList') {
            my $node_count = shift(@params);
            unshift(@perlParams, $type->new(splice(@params, 0, $node_count)));
        }
    }

    $func = "main::$func" unless ref($func) || $func =~ /(.+)::/;
    no strict 'refs';
    my $res = $func->(@perlParams);
    return $res;
}

1;
PK     N\lGl  Gl  	  Parser.pmnu 6$        # XML::Parser
#
# Copyright (c) 1998-2000 Larry Wall and Clark Cooper
# All rights reserved.
#
# This program is free software; you can redistribute it and/or
# modify it under the same terms as Perl itself.

package XML::Parser;

use strict;

our ( $VERSION, $LWP_load_failed );

use Carp;

BEGIN {
    require XML::Parser::Expat;
    $VERSION = '2.47';
    die "Parser.pm and Expat.pm versions don't match"
      unless $VERSION eq $XML::Parser::Expat::VERSION;
}

$LWP_load_failed = 0;

sub new {
    my ( $class, %args ) = @_;
    my $style = $args{Style};

    my $nonexopt = $args{Non_Expat_Options} ||= {};

    $nonexopt->{Style}             = 1;
    $nonexopt->{Non_Expat_Options} = 1;
    $nonexopt->{Handlers}          = 1;
    $nonexopt->{_HNDL_TYPES}       = 1;
    $nonexopt->{NoLWP}             = 1;

    $args{_HNDL_TYPES}          = {%XML::Parser::Expat::Handler_Setters};
    $args{_HNDL_TYPES}->{Init}  = 1;
    $args{_HNDL_TYPES}->{Final} = 1;

    $args{Handlers} ||= {};
    my $handlers = $args{Handlers};

    if ( defined($style) ) {
        my $stylepkg = $style;

        if ( $stylepkg !~ /::/ ) {
            $stylepkg = "\u$style";

            eval {
                my $fullpkg   = "XML::Parser::Style::$stylepkg";
                my $stylefile = $fullpkg;
                $stylefile =~ s/::/\//g;
                require "$stylefile.pm";
                $stylepkg = $fullpkg;
            };
            if ($@) {

                # fallback to old behaviour
                $stylepkg = "XML::Parser::$stylepkg";
            }
        }

        foreach my $htype ( keys %{ $args{_HNDL_TYPES} } ) {

            # Handlers explicitly given override
            # handlers from the Style package
            unless ( defined( $handlers->{$htype} ) ) {

                # A handler in the style package must either have
                # exactly the right case as the type name or a
                # completely lower case version of it.

                my $hname = "${stylepkg}::$htype";
                if ( defined(&$hname) ) {
                    $handlers->{$htype} = \&$hname;
                    next;
                }

                $hname = "${stylepkg}::\L$htype";
                if ( defined(&$hname) ) {
                    $handlers->{$htype} = \&$hname;
                    next;
                }
            }
        }
    }

    unless ( defined( $handlers->{ExternEnt} )
        or defined( $handlers->{ExternEntFin} ) ) {

        if ( $args{NoLWP} or $LWP_load_failed ) {
            $handlers->{ExternEnt}    = \&file_ext_ent_handler;
            $handlers->{ExternEntFin} = \&file_ext_ent_cleanup;
        }
        else {
            # The following just bootstraps the real LWP external entity
            # handler

            $handlers->{ExternEnt} = \&initial_ext_ent_handler;

            # No cleanup function available until LWPExternEnt.pl loaded
        }
    }

    $args{Pkg} ||= caller;
    bless \%args, $class;
}    # End of new

sub setHandlers {
    my ( $self, @handler_pairs ) = @_;

    croak('Uneven number of arguments to setHandlers method')
      if ( int(@handler_pairs) & 1 );

    my @ret;
    while (@handler_pairs) {
        my $type    = shift @handler_pairs;
        my $handler = shift @handler_pairs;
        unless ( defined( $self->{_HNDL_TYPES}->{$type} ) ) {
            my @types = sort keys %{ $self->{_HNDL_TYPES} };

            croak("Unknown Parser handler type: $type\n Valid types: @types");
        }
        push( @ret, $type, $self->{Handlers}->{$type} );
        $self->{Handlers}->{$type} = $handler;
    }

    return @ret;
}

sub parse_start {
    my $self          = shift;
    my @expat_options = ();

    my ( $key, $val );
    while ( ( $key, $val ) = each %{$self} ) {
        push( @expat_options, $key, $val )
          unless exists $self->{Non_Expat_Options}->{$key};
    }

    my %handlers = %{ $self->{Handlers} };
    my $init     = delete $handlers{Init};
    my $final    = delete $handlers{Final};

    my $expatnb = XML::Parser::ExpatNB->new( @expat_options, @_ );
    $expatnb->setHandlers(%handlers);

    &$init($expatnb)
      if defined($init);

    $expatnb->{_State_} = 1;

    $expatnb->{FinalHandler} = $final
      if defined($final);

    return $expatnb;
}

sub parse {
    my $self          = shift;
    my $arg           = shift;
    my @expat_options = ();
    my ( $key, $val );
    while ( ( $key, $val ) = each %{$self} ) {
        push( @expat_options, $key, $val )
          unless exists $self->{Non_Expat_Options}->{$key};
    }

    my $expat    = XML::Parser::Expat->new( @expat_options, @_ );
    my %handlers = %{ $self->{Handlers} };
    my $init     = delete $handlers{Init};
    my $final    = delete $handlers{Final};

    $expat->setHandlers(%handlers);

    if ( $self->{Base} ) {
        $expat->base( $self->{Base} );
    }

    &$init($expat)
      if defined($init);

    my @result = ();
    my $result;
    eval { $result = $expat->parse($arg); };
    my $err = $@;
    if ($err) {
        $expat->release;
        die $err;
    }

    if ( $result and defined($final) ) {
        if (wantarray) {
            @result = &$final($expat);
        }
        else {
            $result = &$final($expat);
        }
    }

    $expat->release;

    return unless defined wantarray;
    return wantarray ? @result : $result;
}

sub parsestring {
    my $self = shift;
    $self->parse(@_);
}

sub parsefile {
    my $self = shift;
    my $file = shift;

    open( my $fh, '<', $file ) or croak "Couldn't open $file:\n$!";
    binmode($fh);
    my @ret;
    my $ret;

    $self->{Base} = $file;

    if (wantarray) {
        eval { @ret = $self->parse( $fh, @_ ); };
    }
    else {
        eval { $ret = $self->parse( $fh, @_ ); };
    }
    my $err = $@;
    close($fh);
    die $err if $err;

    return unless defined wantarray;
    return wantarray ? @ret : $ret;
}

sub initial_ext_ent_handler {

    # This just bootstraps in the real lwp_ext_ent_handler which
    # also loads the URI and LWP modules.

    unless ($LWP_load_failed) {
        local ($^W) = 0;

        my $stat = eval { require('XML/Parser/LWPExternEnt.pl'); };

        if ($stat) {
            $_[0]->setHandlers(
                ExternEnt    => \&lwp_ext_ent_handler,
                ExternEntFin => \&lwp_ext_ent_cleanup
            );

            goto &lwp_ext_ent_handler;
        }

        # Failed to load lwp handler, act as if NoLWP

        $LWP_load_failed = 1;

        my $cmsg = "Couldn't load LWP based external entity handler\n" . "Switching to file-based external entity handler\n" . " (To avoid this message, use NoLWP option to XML::Parser)\n";
        warn($cmsg);
    }

    $_[0]->setHandlers(
        ExternEnt    => \&file_ext_ent_handler,
        ExternEntFin => \&file_ext_ent_cleanup
    );
    goto &file_ext_ent_handler;

}

sub file_ext_ent_handler {
    my ( $xp, $base, $path ) = @_;

    # Prepend base only for relative paths

    if ( defined($base)
        and not( $path =~ m!^(?:[\\/]|\w+:)! ) ) {
        my $newpath = $base;
        $newpath =~ s![^\\/:]*$!$path!;
        $path = $newpath;
    }

    if (   $path =~ /^\s*[|>+]/
        or $path =~ /\|\s*$/ ) {
        $xp->{ErrorMessage} .= "System ID ($path) contains Perl IO control characters";
        return undef;
    }

    require IO::File;
    my $fh = IO::File->new($path);
    unless ( defined $fh ) {
        $xp->{ErrorMessage} .= "Failed to open $path:\n$!";
        return undef;
    }

    $xp->{_BaseStack} ||= [];
    $xp->{_FhStack}   ||= [];

    push( @{ $xp->{_BaseStack} }, $base );
    push( @{ $xp->{_FhStack} },   $fh );

    $xp->base($path);

    return $fh;
}

sub file_ext_ent_cleanup {
    my ($xp) = @_;

    my $fh = pop( @{ $xp->{_FhStack} } );
    $fh->close;

    my $base = pop( @{ $xp->{_BaseStack} } );
    $xp->base($base);
}

1;

__END__

=head1 NAME

XML::Parser - A perl module for parsing XML documents

=head1 SYNOPSIS

  use XML::Parser;

  $p1 = XML::Parser->new(Style => 'Debug');
  $p1->parsefile('REC-xml-19980210.xml');
  $p1->parse('<foo id="me">Hello World</foo>');

  # Alternative
  $p2 = XML::Parser->new(Handlers => {Start => \&handle_start,
                                     End   => \&handle_end,
                                     Char  => \&handle_char});
  $p2->parse($socket);

  # Another alternative
  $p3 = XML::Parser->new(ErrorContext => 2);

  $p3->setHandlers(Char    => \&text,
                   Default => \&other);

  open(my $fh, 'xmlgenerator |');
  $p3->parse($fh, ProtocolEncoding => 'ISO-8859-1');
  close($fh);

  $p3->parsefile('junk.xml', ErrorContext => 3);

=begin man
.ds PI

=end man

=head1 DESCRIPTION

This module provides ways to parse XML documents. It is built on top of
L<XML::Parser::Expat>, which is a lower level interface to James Clark's
expat library. Each call to one of the parsing methods creates a new
instance of XML::Parser::Expat which is then used to parse the document.
Expat options may be provided when the XML::Parser object is created.
These options are then passed on to the Expat object on each parse call.
They can also be given as extra arguments to the parse methods, in which
case they override options given at XML::Parser creation time.

The behavior of the parser is controlled either by C<L</STYLES>> and/or
C<L</HANDLERS>> options, or by L</setHandlers> method. These all provide
mechanisms for XML::Parser to set the handlers needed by XML::Parser::Expat.
If neither C<Style> nor C<Handlers> are specified, then parsing just
checks the document for being well-formed.

When underlying handlers get called, they receive as their first parameter
the I<Expat> object, not the Parser object.

=head1 METHODS

=over 4

=item new

This is a class method, the constructor for XML::Parser. Options are passed
as keyword value pairs. Recognized options are:

=over 4

=item * Style

This option provides an easy way to create a given style of parser. The
built in styles are: L<"Debug">, L<"Subs">, L<"Tree">, L<"Objects">,
and L<"Stream">. These are all defined in separate packages under
C<XML::Parser::Style::*>, and you can find further documentation for
each style both below, and in those packages.

Custom styles can be provided by giving a full package name containing
at least one '::'. This package should then have subs defined for each
handler it wishes to have installed. See L<"STYLES"> below
for a discussion of each built in style.

=item * Handlers

When provided, this option should be an anonymous hash containing as
keys the type of handler and as values a sub reference to handle that
type of event. All the handlers get passed as their 1st parameter the
instance of expat that is parsing the document. Further details on
handlers can be found in L<"HANDLERS">. Any handler set here
overrides the corresponding handler set with the Style option.

=item * Pkg

Some styles will refer to subs defined in this package. If not provided,
it defaults to the package which called the constructor.

=item * ErrorContext

This is an Expat option. When this option is defined, errors are reported
in context. The value should be the number of lines to show on either side
of the line in which the error occurred.

=item * ProtocolEncoding

This is an Expat option. This sets the protocol encoding name. It defaults
to none. The built-in encodings are: C<UTF-8>, C<ISO-8859-1>, C<UTF-16>, and
C<US-ASCII>. Other encodings may be used if they have encoding maps in one
of the directories in the @Encoding_Path list. Check L<"ENCODINGS"> for
more information on encoding maps. Setting the protocol encoding overrides
any encoding in the XML declaration.

=item * Namespaces

This is an Expat option. If this is set to a true value, then namespace
processing is done during the parse. See L<XML::Parser::Expat/"Namespaces">
for further discussion of namespace processing.

=item * NoExpand

This is an Expat option. Normally, the parser will try to expand references
to entities defined in the internal subset. If this option is set to a true
value, and a default handler is also set, then the default handler will be
called when an entity reference is seen in text. This has no effect if a
default handler has not been registered, and it has no effect on the expansion
of entity references inside attribute values.

=item * Stream_Delimiter

This is an Expat option. It takes a string value. When this string is found
alone on a line while parsing from a stream, then the parse is ended as if it
saw an end of file. The intended use is with a stream of xml documents in a
MIME multipart format. The string should not contain a trailing newline.

=item * ParseParamEnt

This is an Expat option. Unless standalone is set to "yes" in the XML
declaration, setting this to a true value allows the external DTD to be read,
and parameter entities to be parsed and expanded.

=item * NoLWP

This option has no effect if the ExternEnt or ExternEntFin handlers are
directly set. Otherwise, if true, it forces the use of a file based external
entity handler.

=item * Non_Expat_Options

If provided, this should be an anonymous hash whose keys are options that
shouldn't be passed to Expat. This should only be of concern to those
subclassing XML::Parser.

=back

=item  setHandlers(TYPE, HANDLER [, TYPE, HANDLER [...]])

This method registers handlers for various parser events. It overrides any
previous handlers registered through the Style or Handler options or through
earlier calls to setHandlers. By providing a false or undefined value as
the handler, the existing handler can be unset.

This method returns a list of type, handler pairs corresponding to the
input. The handlers returned are the ones that were in effect prior to
the call.

See a description of the handler types in L<"HANDLERS">.

=item parse(SOURCE [, OPT => OPT_VALUE [...]])

The SOURCE parameter should either be a string containing the whole XML
document, or it should be an open IO::Handle. Constructor options to
XML::Parser::Expat given as keyword-value pairs may follow the SOURCE
parameter. These override, for this call, any options or attributes passed
through from the XML::Parser instance.

A die call is thrown if a parse error occurs. Otherwise it will return 1
or whatever is returned from the B<Final> handler, if one is installed.
In other words, what parse may return depends on the style.

=item parsestring

This is just an alias for parse for backwards compatibility.

=item parsefile(FILE [, OPT => OPT_VALUE [...]])

Open FILE for reading, then call parse with the open handle. The file
is closed no matter how parse returns. Returns what parse returns.

=item parse_start([ OPT => OPT_VALUE [...]])

Create and return a new instance of XML::Parser::ExpatNB. Constructor
options may be provided. If an init handler has been provided, it is
called before returning the ExpatNB object. Documents are parsed by
making incremental calls to the parse_more method of this object, which
takes a string. A single call to the parse_done method of this object,
which takes no arguments, indicates that the document is finished.

If there is a final handler installed, it is executed by the parse_done
method before returning and the parse_done method returns whatever is
returned by the final handler.

=back

=head1 HANDLERS

Expat is an event based parser. As the parser recognizes parts of the
document (say the start or end tag for an XML element), then any handlers
registered for that type of an event are called with suitable parameters.
All handlers receive an instance of XML::Parser::Expat as their first
argument. See L<XML::Parser::Expat/"METHODS"> for a discussion of the
methods that can be called on this object.

=head2 Init                (Expat)

This is called just before the parsing of the document starts.

=head2 Final                (Expat)

This is called just after parsing has finished, but only if no errors
occurred during the parse. Parse returns what this returns.

=head2 Start                (Expat, Element [, Attr, Val [,...]])

This event is generated when an XML start tag is recognized. Element is the
name of the XML element type that is opened with the start tag. The Attr &
Val pairs are generated for each attribute in the start tag.

=head2 End                (Expat, Element)

This event is generated when an XML end tag is recognized. Note that
an XML empty tag (<foo/>) generates both a start and an end event.

=head2 Char                (Expat, String)

This event is generated when non-markup is recognized. The non-markup
sequence of characters is in String. A single non-markup sequence of
characters may generate multiple calls to this handler. Whatever the
encoding of the string in the original document, this is given to the
handler in UTF-8.

=head2 Proc                (Expat, Target, Data)

This event is generated when a processing instruction is recognized.

=head2 Comment                (Expat, Data)

This event is generated when a comment is recognized.

=head2 CdataStart        (Expat)

This is called at the start of a CDATA section.

=head2 CdataEnd                (Expat)

This is called at the end of a CDATA section.

=head2 Default                (Expat, String)

This is called for any characters that don't have a registered handler.
This includes both characters that are part of markup for which no
events are generated (markup declarations) and characters that
could generate events, but for which no handler has been registered.

Whatever the encoding in the original document, the string is returned to
the handler in UTF-8.

=head2 Unparsed                (Expat, Entity, Base, Sysid, Pubid, Notation)

This is called for a declaration of an unparsed entity. Entity is the name
of the entity. Base is the base to be used for resolving a relative URI.
Sysid is the system id. Pubid is the public id. Notation is the notation
name. Base and Pubid may be undefined.

=head2 Notation                (Expat, Notation, Base, Sysid, Pubid)

This is called for a declaration of notation. Notation is the notation name.
Base is the base to be used for resolving a relative URI. Sysid is the system
id. Pubid is the public id. Base, Sysid, and Pubid may all be undefined.

=head2 ExternEnt        (Expat, Base, Sysid, Pubid)

This is called when an external entity is referenced. Base is the base to be
used for resolving a relative URI. Sysid is the system id. Pubid is the public
id. Base, and Pubid may be undefined.

This handler should either return a string, which represents the contents of
the external entity, or return an open filehandle that can be read to obtain
the contents of the external entity, or return undef, which indicates the
external entity couldn't be found and will generate a parse error.

If an open filehandle is returned, it must be returned as either a glob
(*FOO) or as a reference to a glob (e.g. an instance of IO::Handle).

A default handler is installed for this event. The default handler is
XML::Parser::lwp_ext_ent_handler unless the NoLWP option was provided with
a true value, otherwise XML::Parser::file_ext_ent_handler is the default
handler for external entities. Even without the NoLWP option, if the
URI or LWP modules are missing, the file based handler ends up being used
after giving a warning on the first external entity reference.

The LWP external entity handler will use proxies defined in the environment
(http_proxy, ftp_proxy, etc.).

Please note that the LWP external entity handler reads the entire
entity into a string and returns it, where as the file handler opens a
filehandle.

Also note that the file external entity handler will likely choke on
absolute URIs or file names that don't fit the conventions of the local
operating system.

The expat base method can be used to set a basename for
relative pathnames. If no basename is given, or if the basename is itself
a relative name, then it is relative to the current working directory.

=head2 ExternEntFin        (Expat)

This is called after parsing an external entity. It's not called unless
an ExternEnt handler is also set. There is a default handler installed
that pairs with the default ExternEnt handler.

If you're going to install your own ExternEnt handler, then you should
set (or unset) this handler too.

=head2 Entity                (Expat, Name, Val, Sysid, Pubid, Ndata, IsParam)

This is called when an entity is declared. For internal entities, the Val
parameter will contain the value and the remaining three parameters will be
undefined. For external entities, the Val parameter will be undefined, the
Sysid parameter will have the system id, the Pubid parameter will have the
public id if it was provided (it will be undefined otherwise), the Ndata
parameter will contain the notation for unparsed entities. If this is a
parameter entity declaration, then the IsParam parameter is true.

Note that this handler and the Unparsed handler above overlap. If both are
set, then this handler will not be called for unparsed entities.

=head2 Element                (Expat, Name, Model)

The element handler is called when an element declaration is found. Name
is the element name, and Model is the content model as an XML::Parser::Content
object. See L<XML::Parser::Expat/"XML::Parser::ContentModel Methods">
for methods available for this class.

=head2 Attlist                (Expat, Elname, Attname, Type, Default, Fixed)

This handler is called for each attribute in an ATTLIST declaration.
So an ATTLIST declaration that has multiple attributes will generate multiple
calls to this handler. The Elname parameter is the name of the element with
which the attribute is being associated. The Attname parameter is the name
of the attribute. Type is the attribute type, given as a string. Default is
the default value, which will either be "#REQUIRED", "#IMPLIED" or a quoted
string (i.e. the returned string will begin and end with a quote character).
If Fixed is true, then this is a fixed attribute.

=head2 Doctype                (Expat, Name, Sysid, Pubid, Internal)

This handler is called for DOCTYPE declarations. Name is the document type
name. Sysid is the system id of the document type, if it was provided,
otherwise it's undefined. Pubid is the public id of the document type,
which will be undefined if no public id was given. Internal is the internal
subset, given as a string. If there was no internal subset, it will be
undefined. Internal will contain all whitespace, comments, processing
instructions, and declarations seen in the internal subset. The declarations
will be there whether or not they have been processed by another handler
(except for unparsed entities processed by the Unparsed handler). However,
comments and processing instructions will not appear if they've been processed
by their respective handlers.

=head2 * DoctypeFin                (Parser)

This handler is called after parsing of the DOCTYPE declaration has finished,
including any internal or external DTD declarations.

=head2 XMLDecl                (Expat, Version, Encoding, Standalone)

This handler is called for xml declarations. Version is a string containing
the version. Encoding is either undefined or contains an encoding string.
Standalone will be either true, false, or undefined if the standalone attribute
is yes, no, or not made respectively.

=head1 STYLES

=head2 Debug

This just prints out the document in outline form. Nothing special is
returned by parse.

=head2 Subs

Each time an element starts, a sub by that name in the package specified
by the Pkg option is called with the same parameters that the Start
handler gets called with.

Each time an element ends, a sub with that name appended with an underscore
("_"), is called with the same parameters that the End handler gets called
with.

Nothing special is returned by parse.

=head2 Tree

Parse will return a parse tree for the document. Each node in the tree
takes the form of a tag, content pair. Text nodes are represented with
a pseudo-tag of "0" and the string that is their content. For elements,
the content is an array reference. The first item in the array is a
(possibly empty) hash reference containing attributes. The remainder of
the array is a sequence of tag-content pairs representing the content
of the element.

So for example the result of parsing:

  <foo><head id="a">Hello <em>there</em></head><bar>Howdy<ref/></bar>do</foo>

would be:

             Tag   Content
  ==================================================================
  [foo, [{}, head, [{id => "a"}, 0, "Hello ",  em, [{}, 0, "there"]],
              bar, [         {}, 0, "Howdy",  ref, [{}]],
                0, "do"
        ]
  ]

The root document "foo", has 3 children: a "head" element, a "bar"
element and the text "do". After the empty attribute hash, these are
represented in it's contents by 3 tag-content pairs.

=head2 Objects

This is similar to the Tree style, except that a hash object is created for
each element. The corresponding object will be in the class whose name
is created by appending "::" and the element name to the package set with
the Pkg option. Non-markup text will be in the ::Characters class. The
contents of the corresponding object will be in an anonymous array that
is the value of the Kids property for that object.

=head2 Stream

This style also uses the Pkg package. If none of the subs that this
style looks for is there, then the effect of parsing with this style is
to print a canonical copy of the document without comments or declarations.
All the subs receive as their 1st parameter the Expat instance for the
document they're parsing.

It looks for the following routines:

=over 4

=item * StartDocument

Called at the start of the parse .

=item * StartTag

Called for every start tag with a second parameter of the element type. The $_
variable will contain a copy of the tag and the %_ variable will contain
attribute values supplied for that element.

=item * EndTag

Called for every end tag with a second parameter of the element type. The $_
variable will contain a copy of the end tag.

=item * Text

Called just before start or end tags with accumulated non-markup text in
the $_ variable.

=item * PI

Called for processing instructions. The $_ variable will contain a copy of
the PI and the target and data are sent as 2nd and 3rd parameters
respectively.

=item * EndDocument

Called at conclusion of the parse.

=back

=head1 ENCODINGS

XML documents may be encoded in character sets other than Unicode as
long as they may be mapped into the Unicode character set. Expat has
further restrictions on encodings. Read the xmlparse.h header file in
the expat distribution to see details on these restrictions.

Expat has built-in encodings for: C<UTF-8>, C<ISO-8859-1>, C<UTF-16>, and
C<US-ASCII>. Encodings are set either through the XML declaration
encoding attribute or through the ProtocolEncoding option to XML::Parser
or XML::Parser::Expat.

For encodings other than the built-ins, expat calls the function
load_encoding in the Expat package with the encoding name. This function
looks for a file in the path list @XML::Parser::Expat::Encoding_Path, that
matches the lower-cased name with a '.enc' extension. The first one it
finds, it loads.

If you wish to build your own encoding maps, check out the XML::Encoding
module from CPAN.

=head1 AUTHORS

Larry Wall <F<larry@wall.org>> wrote version 1.0.

Clark Cooper <F<coopercc@netheaven.com>> picked up support, changed the API
for this version (2.x), provided documentation,
and added some standard package features.

Matt Sergeant <F<matt@sergeant.org>> is now maintaining XML::Parser

=cut
PK     N\TO  O  !  Parser/Encodings/x-sjis-cp932.encnu 6$        x-sjis-cp932                             .                               	   
                                                                      !   "   #   $   %   &   '   (   )   *   +   ,   -   .   /   0   1   2   3   4   5   6   7   8   9   :   ;   <   =   >   ?   @   A   B   C   D   E   F   G   H   I   J   K   L   M   N   O   P   Q   R   S   T   U   V   W   X   Y   Z   [   \   ]   ^   _   `   a   b   c   d   e   f   g   h   i   j   k   l   m   n   o   p   q   r   s   t   u   v   w   x   y   z   {   |   }   ~     a  b  c  d  e  f  g  h  i  j  k  l  m  n  o  p  q  r  s  t  u  v  w  x  y  z  {  |  }  ~                                                                  \                          g               @        @                                            O^                                          @                                             @                                                 @]                                        ?@            ^t                                                   @                                        @                                        @L                                        @	                                        @                                        @                                        @@                                        @                                        @	                                        @
w                                        @4                                        @                                        @                                        @k                                        @(                                        @                                            @                                        @_                                        @                                        @                                        @                                        @S                                        @                                        @                                        @                                        @G                                        @                                        @                                        @~                                        @;                                        @                                        @                                        @r                                        @e/                                                   @                                        @Q                                        @                                        @                                        @                                                               \ ~         	 
                   abcdefghijklmnopqrstuvwxyz{|}~     ! " # $ % & ' ( ) * + , -0 00000 @ >?00000N0000  <^"%\ & %    	00;=[]00	0
0000000   "`"f"g""4&B&@  2 3!
  &&%%%%%%%%%%% ;0!!!!0"""""""*")"'"(!!" "" "#"""a"R"j"k""=""5"+",!+ 0&o&m&j   ! %!"#$%&'()*+,-./0123456789:ABCDEFGHIJKLMNOPQRSTUVWXYZ0A0B0C0D0E0F0G0H0I0J0K0L0M0N0O0P0Q0R0S0T0U0V0W0X0Y0Z0[0\0]0^0_0`0a0b0c0d0e0f0g0h0i0j0k0l0m0n0o0p0q0r0s0t0u0v0w0x0y0z0{0|0}0~00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 !"#$%&'()*+,-./012345Q6789:;<=>?@ABCDEFGHIJKLMNO% %%%%%%%,%$%4%<%%%%%%%#%3%+%;%K% %/%(%7%?%%0%%%8%B$`$a$b$c$d$e$f$g$h$i$j$k$l$m$n$o$p$q$r$s!`!a!b!c!d!e!f!g!h!i3I33"3M33'3363Q3W33&3#3+3J3;33333333{00!3!!222222122293~3}3|"R"a"+"."""" """5")"*NUZ?Tac(Y"uzP`cn%efhW'ebq[YІ{}b}b|[^c	fhHǗgONO
OMOPIVY7YZ\	`aapfipuOupy}}ÄcUzS;NNW߀xN Xn8z2(/QASpTTVY_m-bpTS[pSo\zNxn&VUk;YSmftܕVBNKOSU[0_qf fhl8lm)t[vzN4[`muvʙ`iSQWX0YD[^`(cclopqqYqs?~vх`[XielZu%QY.Ye__bej*k'ksV,\l{Q\KahvraNYOSx`in)zONSNOUO=OOsRSV	YZ[[yfggkLlpksyyz<{ۃwӇfV)NO\brYu;傽řNOVXJX^_`*``babbe9AffhmwppuLv}uQRYT[]ahimxˈWrmlWgΒRVT^bdh<h8ksrxzkҍk핣i[f\i}MNc{ j+jho_RrU`pbm;nnф[DN9Sij:h*Q\zÄܓV[(h"1|RtN~OQ[R
RR]UX*Y[[[^r^y`aacacebghShk>kSlWo"ooEtuvwz{|!}6f̌Qeә(N8T+\]svLw<\TXOOSqUVhWYG[	[\^^~_cg:eeghhj_^0kll}uyH[cz } _w̏<NP}Q Y[b/bdk:ruyGpcʗT	TUhTjXpx'guSt[PNNENOST8[_`%eQg=lBlrlpxtzvz{}|}fer[S\E]bbcn Z1ݒoyZNNNOOPQGzQqQSTS!SSUX\_7_J`/`P`mceYjKlrrwNWZNQ\-fim\@fiushP|PRWG]&ek#k=t4yy{K}ʂ̈_9ёTN]P6SS:rsw掯ƙșQwa^UzzPv[ӐGN2jۑ\Q\Hczltazq|h~phQlRT͐SfyAOPRQDUSW-sWYQ_b_`uavagacd:elfohBnufz=|}L}~KkJ͊cfΛRbdohAPk lzoTzt}P@#gNP9P&PeQ|R8RcUWXZ^aabcrij)r}rs.xxo}ywҐcuzUxQCSS^{_&nnss}C7 PNNPST|VY[d]^_'b8eEgnVr|ʈN7ǘgNNOSHTIT>Z/__`hjtZxwN^NO|OPPQIQlRRRSSTTUWQWY}[T[][]]]^x^^^_`RaLbbce;ffCfgmh!hil_m*min/nu2vxlz?|}}}^}T*RLaʑuqx?M؝;R[RSTXboj_QKR;TJVz@w`sDo	pu_`ښrۏkdNVWdXZZ`haffh9hmu}:nBNOPSU]o]]gltsxPWP^c+PPQg TX^Y[_ibMch=ksnp}rxx&yme}0܈	RdW(gPjQWB*X:iT]WxO\RJTd>f(ggz{V}"/h\{9SQR7[bddg-kvcLvfRN	PS\q`dech_qsu#{~ۑxefkNNO:OR:SSUVXYYY[P\M^^+_`ce/[\eeegkbk{lsEyIy|}}+󉖊^ifǌܖ̘koNO<OQP[W[aHcfBk!nlr>tuxy:3ꄔlP_X+z[NSWY1Z[`nou[ {Prg\aJ~Q\chfeqny>}ʐnǐPR\:gSp|r5Lȓ+[_1`N;S[bKg1krsz.kRQSTj[cj9} VSTh[\1]Oabm2yy}B~MҁFrt/1KlƑNOOQESA_bglAnsc~&͒SY[my]~.|X~qQSO\f%wzQ_eiokmnodv}]uQRb@ffn^}rfRSYs^_`UdPQRS SGSTUFU1VYhYZ<[\\\\^^^_pbbbccwfff-fvg~hjj5lmn	nXq<q&qguwx]yyeyz{|}9քI]<Tsaޑf~N
NNNWQRpWX4X["^8`dgagVmDruszcr V1Wbikq~Twr߇U\;O8OOUZ [[_aNc/efKhimxmu3uwy^y}3ク:2ݗNNRXuX\u\=N
Ŗcm{%ϘbVST9W^%cl4pwa|pBTt^]]iepgcngIiŘodz[Np,u]f/QR6RY_`'be?etffthhkcnrruv|VXːRYez^-`befgwzM|M~>
d_xRbcdBb-z{}vINQHSCS`[\\]b&bGdhh4lmEmgo\qNq}ez{}~Jz9n΍xwRMUo8q6Qhy~U|VLXQ\cffiZruuyyVy|} }D4;a PRuSSP	UXYOr=[\dS``c\cc?cdef]iioqNuvz|}}aIXlōpmPXaӅ5 OPtRGSs`ocIg_n,O\^e}SRQvc[X[k\
dgQ\NYY*lpQU>XY`bSg5iU@Ě(OSX[\^/_` aKb4flnހ΁Ԉ .ۛNSY'{,Lnp'SSUD[bXbblot"8o8QSSOFTYj1]zꏿhڌ7rHj=N9SXVWfbcekNmn[pwz{}=Ɔˊ[VX_>efjku7P$wW0_`efzl`uznE{u\z{Qyz6Zw@N-N[_bf<glkw;Njp&s*WNQFQU[^^3^__5_k_acfgonrRu:w:t9xv܍󒚕wRcWvgls͌Ósm%XiȉuېXZhciOCo,g؏&}Ti?opWjX[,},r*T
㝴NONP\PuRCTHX$[^^^^_`bc:chl@xyz}GD-؟ldXdeunv{inT_dMDQxXkY)\U^m~u[pOkou0QNTX5XWY\`_eg\n!v{ߌMx%x:R^WYt`PQZQQR UXTXXYW[\]`bd-gqhChhvmnompoq_Suyw{I{T{R|}qR0ciFv-0PRTX\admwzS\S?__mrywcy{kr슭hjaQzi4\J[őIpVx\o`eflZATQfǒYHQNMQꅙpXczKib~uwSWi`ߖl]N\<_Sрy^eNsQeY\?NY_͊oyyb[qs+q^t_c{dq|NC^NKWV`o}3]bdgwlm>t6x4ZFuO^bceWgovrL̀)MPWZhisqdrXjyw)O/ReSZbglv}{|6fo r~Q{xr{{Hj^auQu`QkbnvzOpb{OVzXY䖼O4R$SJSS^d,egl>lNrHrsuT~A,錩{đqic=fiujvxЅCS*SQT&Y^_|`bIbybekluvxy}w^j|8P\>_gkt5w	;gzS9u_f_<_ub{F<hgYZ}v~,O_jjl7otyhhUy^cuy҂ד(򄜆-T_lem\pӘ;eOtNNWY+Zf[Q^^`bvewefnmnr6{&P\tDOdkfaj\iSzWORo_^Egyym_bUlNriRT;VtXabnqYn||}e^NOuQuX@^c^s_
gN&=[|sPXvVxR%w{POY	rG{}菺ԐMORZ)_O݂WcUkiu+܏zBRXaUb
fk|?P#OSTFX1YI[\\])^bcge>egllpx2~+ނ*JҘlNONPRVWJY^=__b?fgghQ}! ~2T ,SPS\Xdg4rgwfzFRlkX ^LYTg,QvdixTWYf'gkTi^UggRh]NOSbg+lO~mNabno+Tsg*E]{\[ƇnJzY|lw RY"q!r_wۗ'aiZZQTT}fvߏYr]nQMh}}bdxj!Y[_ksv}Q2g(vgbR\$b;|~UO`}SN_QYr:6_%wS_y}3Vg󅮔Sa	alvR8U/OQQ*RS[^}`acg	gngms6s7u1yPՊJćYNOYN?P^|Y[^ccdfiJimnqu(z Iɉ!
e}
a~bk2lmtmge<m}a=jNqSu]Pko͆-R)T\egNhttuψ̖x_sz˄NcueRmAnt	uYxk|zܟOaneņ\NNPN!Q[ehmsvBwz|oҐ|ϖuR}P+Sgmqt3*Wt`XAm}/^NO6OQR]`sy<Ӓ4
bfktRRpȈ^`Kao#qI|>}o#,TBojp2RZA^_gi|imjorbr{~KQmy2P-Tqkjā`gNNkhi n~xU_NNN*N1N6N<N?NBNVNXNNkN_NNNNNNNNNNNNNNNNNNO	OZO0O[O]OWOGOvOOOO{OiOpOOoOOQOOOOOOOOOOPP(PP*P%POOP!P)P,OOPPPCPGgPUPPPHPZPVPlPxPPPPPPPPPPPPPPPPPQ	QQQQQQQ!Q:Q7Q<Q;Q?Q@QRQLQTQbzQiQjQnQQVQQQQQQQQQQQQQQQQQQQQQQQUQQQQQRRRRR'R*R.R3R9RORDRKRLR^RTRjRtRiRsRR}RRRRqRRRRRRRRRRRRRRRRRSSu8SSSSSS#S/S1S3S8S@SFSENSISMQS^SiSnYS{SwSSSSSSSSS|SfqSSSSTT=T@T,T-T<T.T6T)TTNTTuTT_TqTwTpTT{TTvTTTTTTTTTTTTTTTTTTTUUTTTTTU9U@UcULU.U\UEUVUWU8U3U]UUTUUU{U~UUUU|UUUUUUUUUUUVUVUUVUVNVPqV4V6V2V8VkVdV/VlVjVVVVVVVVVVVVVVVVVVVVVVW VWW	WWWWWWUWW&W7W8WNW;W@WOWiWWWaWWWWWWWWWWWWWX
WWXXXXrX!XbXKXpkXRX=XyXXXXXXXXXXXXXXXXXXXXXXXXXYY
YYhY%Y,Y-Y2Y8Y>zYUYPYNYZYXYbY`YgYlYiYxYYO^OYYYYYYYYZ%ZZZZ	ZZ@ZlZIZ5Z6ZbZjZZZZZZZZZZZZZ[[[[2Z[*[6[>[C[E[@[Q[U[Z[[[e[i[p[s[u[xe[z[[[[[[[[[[[[[[[[[[\\\\\\ \"\(\8\9\A\F\N\S\P\O[q\l\nNb\v\y\\\Y\\\\\\\\\\\\\]\]]]]\]]]]]"]]]]L]R]N]K]l]s]v]]]]]]]]]]]]]]]]]]]]^^^^^^6^7^D^C^@^N^W^T^_^b^d^G^u^v^z^^^^^^^^^^^^^^^^^^^^^^^__	_]_\____)_-_8_A_H_L_N_/_Q_V_W_Y_a_m_s_w____________________`_`!`````)``1```+`&``:`Z`A`j`w`_`J`F`M`c`C`d`B`l`k`Y`````````````````_````aMaa``a ``aa!``aaaGa>a(a'aJa?a<a,a4a=aBaDasawaXaYaZakataoaeaqa_a]aSauaaaaaaaaaaaaaaaaaaayaaaaaaaaaab bb	bbbbbb!b*b.b0b2b3bAbNb^bcb[b`bhb|bbb~bbbbbbbbbbbbdbbbbbbbbcbbc'ccbbcPc>cMdcOcccccvcccccckcicccccccccdd4ddd&d6edd(ddgdodvdNe*ddddddddddddddd	ddbdde,dddde deeee$e#e+e4e5e7e6e8uKeHeVeUeMeXe^e]erexeeeeeeeeeeeeeeeeegrf
fegsf5f6f4ffOfDfIfAf^f]fdfgfhf_fbfpffffffffffffffffff?fffffgggg&g'8g.g?g6gAg8g7gFg^g`gYgcgdggpgg|gjgggggggggggggggggggggjhhFh)h@hMh2hNhh+hYhchwhhhhhhhhjhhthhhihh~ihihi"i&hihhhhi6iihhi%hhhi(i*ii#i!hiyiwi\ixikiTi~ini9iti=iYi0iai^i]iijiiiiiiii[iiiiij.iiiiiiijjik
iiijijijij
jjj#jjDjjrj6jxjGjbjYjfjHj8j"jjjjjjjjjjjjjjjjjjjjkjkk1kk8k7vk9kGkCkIkPkYkTk[k_kakxkykkkkkkkkkkkkkkkkkkkkkkkkklllll$l#l^lUlbljllllll~lhlslllllllllllllllllmMm6m+m=m8mm5m3mmmcmmdmZmymYmmommnn
mmmmmmmmmmmmmmmmmn-nnn.nnrn_n>n#nkn+nvnMnnCn:nNn$nnn8nnnnnnnnnnnnnnnnoAopLnnno?no1no2no>onoozoxooooo[oomoo|oXoooofooooooooooooooop	popppoppotpppp0p>p2pQpcppppppppppppq	pqqqeqUqqfqbqLqVqlqqqqqqqqqqqqqqqqqqqqrrrr(r-r,r0r2r;r<r?r@rFrKrXrtr~rrrrrrrrrrrrrrrrrrrPss
ssss4s/s)s%s>sNsOsWsjshspsxsus{szsssssssstttot%st2t:tUt?t_tYtAt\titptctjtvt~ttttttsttttttttttuuuuuuuuuu&u,u<uDuMuJuIu[uFuZuiudugukumuxuvuuutuuuuuuuuuuuuuuuuuuuuuuuuuvuuuuvvv	vv'v v!v"v$v4v0v;vGvHvFv\vXvavbvhvivjvgvlvpvrvvvxv|vvvvvvvvvvvvvvvvvvvvvvv/vwwww)w$ww%w&ww7w8wGwZwhwkw[weww~wywwwwwwwwwwwwwwwwwwwwxxy&x y*xExxtxx|xxxxxxxxxxxxxxxxxxxyyyyy,y+y@y`yWy_yZyUySyzyyyyKyyyyyyyyyyyzzzzz zyz1z;z>z7zCzWzIzazbzizpzyz}zzzzzzzzzzzzzzzzzzzzzzzzzz{{{
{{3{{{{5{({6{P{z{{M{{L{E{u{e{t{g{p{q{l{n{{{{{{{{{{]{{{{{{{{{||{{|`| ||{{||{|#|'|*||7|+|=|L|C|T|O|@|P|X|_|d|V|e|l|u|||||||||||||||||||||;|||||}}}}}
}E}K}.}2}?}5}F}s}V}N}r}h}n}O}c}}}[}}}}}}}}}}}~=}}}}}}}}}}}}}~~
~#~!~~1~~	~~"~F~f~;~5~9~C~7~2~:~g~]~V~^~Y~Z~y~j~i~|~{~}~}~~~~~~~~~~~~8:ELMNPQUTX_`higxq܀!(?;JFRXZ_bhsrpvy}Qۀـ݀Āڀց	)#/KF>SQqneft_Ɂ́сف؁ȁځ߁
)+83@YX]Z_dbhjk.qwx~߂҂ރ܃	ك5421@9PE/+#|su΃؄" 8m*<ZwkniF,oy5ʄbل̈́ڄЄƄք!,@cXHAKUmꅇw~ɅυЅՅ݅܅
"0?MNUT_gqĆƆɈ#Ԇކ߆ۆ 	
4?7;%)`_xLNtWhnYScjˇЖևćǇƇ҈"!169';DBRY^bk~u}rÈĈԈ؈و݈
C%*+AD;68L`^fdmjotw~ډ܉݉%6A[RFH|mlbĊ͊ڊފۋ 3&+>(ALONIV[Zk_lot}:A?HLNPUblxz|bȌڌ
N͍gmqsύڍ֍̍ۍˍߍ	B504JGILPHYd`*cUvr|ƎŎȎˎێ
&3;9EB>LIFNW\bcdڏ!'659OPQRI>VX^hovr}bHۑ20JVXceisrɑˑБ֑ߑۑ,^WEIdH?KPZϒD."#:5;\`|nV֓דؓÓݓГȓ6+5!:ARD[`b^j)puw}Z|~oÕ͕̕Օԕ֕ܕ!(./BLOKw\^]_frlΖ˖ɖ͉MܗՖ$*09=>DFHBI\`dfhRҗkqy|z×Ɨȗ˗ܗOzߗ8$!7=FOKkopqtsĘØƘ	!$ ,.=>BIEPKQRLUߙۙݙؙљ+7EB@C>UM[W_bedikjϚњӚԚޚߚ"#%'()*./2DCOMNQXtʛƛϛћқԛ:	
.%$!0G2F>Z`gvx	*&#DA?>FH]^dQPYrozĝƝϝٝӝuy}a̞ΞϞОԞܞޞݞv!,>JRTc_`afgljwrvX/iǐYtdQq~HOpf1hȒf_EN(NNO OO9OVOOOOOP@P"OPPFPpPBPPPQJQdQQQRRRRRS SS$SrSSSTTTTUWYWeWWWXXYYSY[Y]YcYY[V[u/[[\\\\]']S]B]m]]]_!_4_g__`]````a `aa7a0abbcd`ddeNf ff;f	f.ff$fefWfYfsfffffg)gfghRghhDhihiij0jkjFjsj~jjkl?l\llolmmmommmmmmn9n\n'n<noooppp(ppqqq\qFqGqqrrs$swssssstst&t*t)t.tbttuuovvvvvwFRx!xNxdxzy0yyzzz{}H}\}}}~RGbǃHSYk !7y"Sv#$%g&'ڑבޑ
:@<NYQ9gwxגْ'Ւӓ%!(pWƓޓ1EH)3;CMOQUWe*+',Nٚܛur pk-!p!q!r!s!t!u!v!w!x!y!p!q!r!s!t!u!v!w!x!y!`!a!b!c!d!e!f!g!h!i21!!!"5~HOpf1hȒf_EN(NNO OO9OVOOOOOP@P"OPPFPpPBPPPQJQdQQQRRRRRS SS$SrSSSTTTTUWYWeWWWXXYYSY[Y]YcYY[V[u/[[\\\\]']S]B]m]]]_!_4_g__`]````a `aa7a0abbcd`ddeNf ff;f	f.ff$fefWfYfsfffffg)gfghRghhDhihiij0jkjFjsj~jjkl?l\llolmmmommmmmmn9n\n'n<noooppp(ppqqq\qFqGqqrrs$swssssstst&t*t)t.tbttuuovvvvvwFRx!xNxdxzy0yyzzz{}H}\}}}~RGbǃHSYk !7y"Sv#$%g&'ڑבޑ
:@<NYQ9gwxגْ'Ւӓ%!(pWƓޓ1EH)3;CMOQUWe*+',Nٚܛur pk-PK     N\d80  0    Parser/Encodings/iso-8859-3.encnu 6$        ISO-8859-3                                                                 	   
                                                                      !   "   #   $   %   &   '   (   )   *   +   ,   -   .   /   0   1   2   3   4   5   6   7   8   9   :   ;   <   =   >   ?   @   A   B   C   D   E   F   G   H   I   J   K   L   M   N   O   P   Q   R   S   T   U   V   W   X   Y   Z   [   \   ]   ^   _   `   a   b   c   d   e   f   g   h   i   j   k   l   m   n   o   p   q   r   s   t   u   v   w   x   y   z   {   |   }   ~        &          $        0  ^    4     {     '              %        1  _    5     |              
                                                                  l  \                   	                                         !                      m  ]  PK     N\M0  0    Parser/Encodings/iso-8859-5.encnu 6$        ISO-8859-5                                                                 	   
                                                                      !   "   #   $   %   &   '   (   )   *   +   ,   -   .   /   0   1   2   3   4   5   6   7   8   9   :   ;   <   =   >   ?   @   A   B   C   D   E   F   G   H   I   J   K   L   M   N   O   P   Q   R   S   T   U   V   W   X   Y   Z   [   \   ]   ^   _   `   a   b   c   d   e   f   g   h   i   j   k   l   m   n   o   p   q   r   s   t   u   v   w   x   y   z   {   |   }   ~                        	  
                                                !  "  #  $  %  &  '  (  )  *  +  ,  -  .  /  0  1  2  3  4  5  6  7  8  9  :  ;  <  =  >  ?  @  A  B  C  D  E  F  G  H  I  J  K  L  M  N  O  !  Q  R  S  T  U  V  W  X  Y  Z  [  \     ^  _PK     N\_0  0  !  Parser/Encodings/windows-1252.encnu 6$        windows-1252                                                               	   
                                                                      !   "   #   $   %   &   '   (   )   *   +   ,   -   .   /   0   1   2   3   4   5   6   7   8   9   :   ;   <   =   >   ?   @   A   B   C   D   E   F   G   H   I   J   K   L   M   N   O   P   Q   R   S   T   U   V   W   X   Y   Z   [   \   ]   ^   _   `   a   b   c   d   e   f   g   h   i   j   k   l   m   n   o   p   q   r   s   t   u   v   w   x   y   z   {   |   }   ~                 &       !     0  `   9  R  }               "          !"  a   :  S  ~  x                                                                                                                                                                                                                                                                                                PK     N\ؒ0  0    Parser/Encodings/iso-8859-8.encnu 6$        ISO-8859-8                                                                 	   
                                                                      !   "   #   $   %   &   '   (   )   *   +   ,   -   .   /   0   1   2   3   4   5   6   7   8   9   :   ;   <   =   >   ?   @   A   B   C   D   E   F   G   H   I   J   K   L   M   N   O   P   Q   R   S   T   U   V   W   X   Y   Z   [   \   ]   ^   _   `   a   b   c   d   e   f   g   h   i   j   k   l   m   n   o   p   q   r   s   t   u   v   w   x   y   z   {   |   }   ~                                                >                                                                                                      PK     N\Te0  0    Parser/Encodings/koi8-r.encnu 6$        koi8-r                                                                     	   
                                                                      !   "   #   $   %   &   '   (   )   *   +   ,   -   .   /   0   1   2   3   4   5   6   7   8   9   :   ;   <   =   >   ?   @   A   B   C   D   E   F   G   H   I   J   K   L   M   N   O   P   Q   R   S   T   U   V   W   X   Y   Z   [   \   ]   ^   _   `   a   b   c   d   e   f   g   h   i   j   k   l   m   n   o   p   q   r   s   t   u   v   w   x   y   z   {   |   }   ~     %   %  %  %  %  %  %  %$  %,  %4  %<  %  %  %  %  %  %  %  %  #   %  "  "  "H  "d  "e     #!              %P  %Q  %R  Q  %S  %T  %U  %V  %W  %X  %Y  %Z  %[  %\  %]  %^  %_  %`  %a    %b  %c  %d  %e  %f  %g  %h  %i  %j  %k  %l     N  0  1  F  4  5  D  3  E  8  9  :  ;  <  =  >  ?  O  @  A  B  C  6  2  L  K  7  H  M  I  G  J  .      &      $    %                  /     !  "  #      ,  +    (  -  )  '  *PK     N\Im
0  0  !  Parser/Encodings/windows-1255.encnu 6$        windows-1255                                                               	   
                                                                      !   "   #   $   %   &   '   (   )   *   +   ,   -   .   /   0   1   2   3   4   5   6   7   8   9   :   ;   <   =   >   ?   @   A   B   C   D   E   F   G   H   I   J   K   L   M   N   O   P   Q   R   S   T   U   V   W   X   Y   Z   [   \   ]   ^   _   `   a   b   c   d   e   f   g   h   i   j   k   l   m   n   o   p   q   r   s   t   u   v   w   x   y   z   {   |   }   ~                 &       !     0   9               "          !"   :                                                                                                                                                                                                            PK     N\!?0  0    Parser/Encodings/iso-8859-7.encnu 6$        ISO-8859-7                                                                 	   
                                                                      !   "   #   $   %   &   '   (   )   *   +   ,   -   .   /   0   1   2   3   4   5   6   7   8   9   :   ;   <   =   >   ?   @   A   B   C   D   E   F   G   H   I   J   K   L   M   N   O   P   Q   R   S   T   U   V   W   X   Y   Z   [   \   ]   ^   _   `   a   b   c   d   e   f   g   h   i   j   k   l   m   n   o   p   q   r   s   t   u   v   w   x   y   z   {   |   }   ~                                                                                                                                   z                                                                                                                                                                               PK     N\\^0  0  !  Parser/Encodings/windows-1251.encnu 6$        windows-1251                                                               	   
                                                                      !   "   #   $   %   &   '   (   )   *   +   ,   -   .   /   0   1   2   3   4   5   6   7   8   9   :   ;   <   =   >   ?   @   A   B   C   D   E   F   G   H   I   J   K   L   M   N   O   P   Q   R   S   T   U   V   W   X   Y   Z   [   \   ]   ^   _   `   a   b   c   d   e   f   g   h   i   j   k   l   m   n   o   p   q   r   s   t   u   v   w   x   y   z   {   |   }   ~            S      &       !      0  	   9  
        R               "        !"  Y   :  Z  \  [  _       ^                                            V             Q  !  T     X    U  W                                     !  "  #  $  %  &  '  (  )  *  +  ,  -  .  /  0  1  2  3  4  5  6  7  8  9  :  ;  <  =  >  ?  @  A  B  C  D  E  F  G  H  I  J  K  L  M  N  OPK     N\lFL      Parser/Encodings/READMEnu 6$        This directory contains binary encoding maps for some selected encodings.
If they are placed in a directory listed in @XML::Parser::Expat::Encoding_Path,
then they are automatically loaded by the XML::Parser::Expat::load_encoding
function as needed. Otherwise you may load what you need directly by
explicitly calling this function.

These maps were generated by a perl script that comes with the module
XML::Encoding, compile_encoding, from XML formatted encoding maps that
are distributed with that module. These XML encoding maps were generated
in turn with a different script, domap, from mapping information contained
on the Unicode version 2.0 CD-ROM. This CD-ROM comes with the Unicode
Standard reference manual and can be ordered from the Unicode Consortium
at http://www.unicode.org. The identical information is available on the
internet at ftp://ftp.unicode.org/Public/MAPPINGS.

See the encoding.h header in the Expat sub-directory for a description of
the structure of these files.

Clark Cooper
December 12, 1998

================================================================

Contributed maps

This distribution contains four contributed encodings from MURATA Makoto
<murata@apsdc.ksp.fujixerox.co.jp> that are variations on the encoding
commonly called Shift_JIS:

x-sjis-cp932.enc
x-sjis-jdk117.enc
x-sjis-jisx0221.enc
x-sjis-unicode.enc	(This is the same encoding as the shift_jis.enc that
			 was distributed with this module in version 2.17)

Please read his message (Japanese_Encodings.msg) about why these are here
and why I've removed the shift_jis.enc encoding.

We also have two contributed encodings that are variations of the EUC-JP
encoding from Yoshida Masato <yoshidam@inse.co.jp>:

x-euc-jp-jisx0221.enc
x-euc-jp-unicode.enc

The comments that MURATA Makoto made in his message apply to these
encodings too.

KangChan Lee <dolphin@comeng.chungnam.ac.kr> supplied the euc-kr encoding.

Clark Cooper
December 26, 1998
PK     N\Rx0G  G  $  Parser/Encodings/x-sjis-jisx0221.encnu 6$        x-sjis-jisx0221                          (%                               	   
                                                                      !   "   #   $   %   &   '   (   )   *   +   ,   -   .   /   0   1   2   3   4   5   6   7   8   9   :   ;   <   =   >   ?   @   A   B   C   D   E   F   G   H   I   J   K   L   M   N   O   P   Q   R   S   T   U   V   W   X   Y   Z   [      ]   ^   _   `   a   b   c   d   e   f   g   h   i   j   k   l   m   n   o   p   q   r   s   t   u   v   w   x   y   z   {   |   }   >     a  b  c  d  e  f  g  h  i  j  k  l  m  n  o  p  q  r  s  t  u  v  w  x  y  z  {  |  }  ~                                                                  \                                          @        @                                            OL                                          @                                             @                                                 ^                                                   @c                                        @                                         @                                        @                                        @W                                        @                                        @                                        @                                        @	K                                        @
                                        @
                                        @                                        @?                                        @                                        @                                        @v                                            @3                                        @                                        @                                        @j                                        @'                                        @                                        @                                        @^                                        @                                        @                                        @                                        @R                                        @                                        @                                        @                                        @F                                        @                                        @e                                                     >         	 
                  abcdefghijklmnopqrstuvwxyz{|}~      ! " # $ % & '0 00000 @ >?00000N0000   \0 \ & %    	00;=[]00	0
0000000"   "`"f"g""4&B&@  2 3!  
  &&%%%%%%%%%%% ;0!!!!0"""""""*")"'"( !!" "" "#"""a"R"j"k""=""5"+",!+ 0&o&m&j   ! %!"#$%&'()*+,-./0123456789:ABCDEFGHIJKLMNOPQRSTUVWXYZ0A0B0C0D0E0F0G0H0I0J0K0L0M0N0O0P0Q0R0S0T0U0V0W0X0Y0Z0[0\0]0^0_0`0a0b0c0d0e0f0g0h0i0j0k0l0m0n0o0p0q0r0s0t0u0v0w0x0y0z0{0|0}0~00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 !"#$%&'()*+,-./012345Q6789:;<=>?@ABCDEFGHIJKLMNO% %%%%%%%,%$%4%<%%%%%%%#%3%+%;%K% %/%(%7%?%%0%%%8%BNUZ?Tac(Y"uzP`cn%efhW'ebq[YІ{}b}b|[^c	fhHǗgONO
OMOPIVY7YZ\	`aapfipuOupy}}ÄcUzS;NNW߀xN Xn8z2(/QASpTTVY_m-bpTS[pSo\zNxn&VUk;YSmftܕVBNKOSU[0_qf fhl8lm)t[vzN4[`muvʙ`iSQWX0YD[^`(cclopqqYqs?~vх`[XielZu%QY.Ye__bej*k'ksV,\l{Q\KahvraNYOSx`in)zONSNOUO=OOsRSV	YZ[[yfggkLlpksyyz<{ۃwӇfV)NO\brYu;傽řNOVXJX^_`*``babbe9AffhmwppuLv}uQRYT[]ahimxˈWrmlWgΒRVT^bdh<h8ksrxzkҍk핣i[f\i}MNc{ j+jho_RrU`pbm;nnф[DN9Sij:h*Q\zÄܓV[(h"1|RtN~OQ[R
RR]UX*Y[[[^r^y`aacacebghShk>kSlWo"ooEtuvwz{|!}6f̌Qeә(N8T+\]svLw<\TXOOSqUVhWYG[	[\^^~_cg:eeghhj_^0kll}uyH[cz } _w̏<NP}Q Y[b/bdk:ruyGpcʗT	TUhTjXpx'guSt[PNNENOST8[_`%eQg=lBlrlpxtzvz{}|}fer[S\E]bbcn Z1ݒoyZNNNOOPQGzQqQSTS!SSUX\_7_J`/`P`mceYjKlrrwNWZNQ\-fim\@fiushP|PRWG]&ek#k=t4yy{K}ʂ̈_9ёTN]P6SS:rsw掯ƙșQwa^UzzPv[ӐGN2jۑ\Q\Hczltazq|h~phQlRT͐SfyAOPRQDUSW-sWYQ_b_`uavagacd:elfohBnufz=|}L}~KkJ͊cfΛRbdohAPk lzoTzt}P@#gNP9P&PeQ|R8RcUWXZ^aabcrij)r}rs.xxo}ywҐcuzUxQCSS^{_&nnss}C7 PNNPST|VY[d]^_'b8eEgnVr|ʈN7ǘgNNOSHTIT>Z/__`hjtZxwN^NO|OPPQIQlRRRSSTTUWQWY}[T[][]]]^x^^^_`RaLbbce;ffCfgmh!hil_m*min/nu2vxlz?|}}}^}T*RLaʑuqx?M؝;R[RSTXboj_QKR;TJVz@w`sDo	pu_`ښrۏkdNVWdXZZ`haffh9hmu}:nBNOPSU]o]]gltsxPWP^c+PPQg TX^Y[_ibMch=ksnp}rxx&yme}0܈	RdW(gPjQWB*X:iT]WxO\RJTd>f(ggz{V}"/h\{9SQR7[bddg-kvcLvfRN	PS\q`dech_qsu#{~ۑxefkNNO:OR:SSUVXYYY[P\M^^+_`ce/[\eeegkbk{lsEyIy|}}+󉖊^ifǌܖ̘koNO<OQP[W[aHcfBk!nlr>tuxy:3ꄔlP_X+z[NSWY1Z[`nou[ {Prg\aJ~Q\chfeqny>}ʐnǐPR\:gSp|r5Lȓ+[_1`N;S[bKg1krsz.kRQSTj[cj9} VSTh[\1]Oabm2yy}B~MҁFrt/1KlƑNOOQESA_bglAnsc~&͒SY[my]~.|X~qQSO\f%wzQ_eiokmnodv}]uQRb@ffn^}rfRSYs^_`UdPQRS SGSTUFU1VYhYZ<[\\\\^^^_pbbbccwfff-fvg~hjj5lmn	nXq<q&qguwx]yyeyz{|}9քI]<Tsaޑf~N
NNNWQRpWX4X["^8`dgagVmDruszcr V1Wbikq~Twr߇U\;O8OOUZ [[_aNc/efKhimxmu3uwy^y}3ク:2ݗNNRXuX\u\=N
Ŗcm{%ϘbVST9W^%cl4pwa|pBTt^]]iepgcngIiŘodz[Np,u]f/QR6RY_`'be?etffthhkcnrruv|VXːRYez^-`befgwzM|M~>
d_xRbcdBb-z{}vINQHSCS`[\\]b&bGdhh4lmEmgo\qNq}ez{}~Jz9n΍xwRMUo8q6Qhy~U|VLXQ\cffiZruuyyVy|} }D4;a PRuSSP	UXYOr=[\dS``c\cc?cdef]iioqNuvz|}}aIXlōpmPXaӅ5 OPtRGSs`ocIg_n,O\^e}SRQvc[X[k\
dgQ\NYY*lpQU>XY`bSg5iU@Ě(OSX[\^/_` aKb4flnހ΁Ԉ .ۛNSY'{,Lnp'SSUD[bXbblot"8o8QSSOFTYj1]zꏿhڌ7rHj=N9SXVWfbcekNmn[pwz{}=Ɔˊ[VX_>efjku7P$wW0_`efzl`uznE{u\z{Qyz6Zw@N-N[_bf<glkw;Njp&s*WNQFQU[^^3^__5_k_acfgonrRu:w:t9xv܍󒚕wRcWvgls͌Ósm%XiȉuېXZhciOCo,g؏&}Ti?opWjX[,},r*T
㝴NONP\PuRCTHX$[^^^^_`bc:chl@xyz}GD-؟ldXdeunv{inT_dMDQxXkY)\U^m~u[pOkou0QNTX5XWY\`_eg\n!v{ߌMx%x:R^WYt`PQZQQR UXTXXYW[\]`bd-gqhChhvmnompoq_Suyw{I{T{R|}qR0ciFv-0PRTX\admwzS\S?__mrywcy{kr슭hjaQzi4\J[őIpVx\o`eflZATQfǒYHQNMQꅙpXczKib~uwSWi`ߖl]N\<_Sрy^eNsQeY\?NY_͊oyyb[qs+q^t_c{dq|NC^NKWV`o}3]bdgwlm>t6x4ZFuO^bceWgovrL̀)MPWZhisqdrXjyw)O/ReSZbglv}{|6fo r~Q{xr{{Hj^auQu`QkbnvzOpb{OVzXY䖼O4R$SJSS^d,egl>lNrHrsuT~A,錩{đqic=fiujvxЅCS*SQT&Y^_|`bIbybekluvxy}w^j|8P\>_gkt5w	;gzS9u_f_<_ub{F<hgYZ}v~,O_jjl7otyhhUy^cuy҂ד(򄜆-T_lem\pӘ;eOtNNWY+Zf[Q^^`bvewefnmnr6{&P\tDOdkfaj\iSzWORo_^Egyym_bUlNriRT;VtXabnqYn||}e^NOuQuX@^c^s_
gN&=[|sPXvVxR%w{POY	rG{}菺ԐMORZ)_O݂WcUkiu+܏zBRXaUb
fk|?P#OSTFX1YI[\\])^bcge>egllpx2~+ނ*JҘlNONPRVWJY^=__b?fgghQ}! ~2T ,SPS\Xdg4rgwfzFRlkX ^LYTg,QvdixTWYf'gkTi^UggRh]NOSbg+lO~mNabno+Tsg*E]{\[ƇnJzY|lw RY"q!r_wۗ'aiZZQTT}fvߏYr]nQMh}}bdxj!Y[_ksv}Q2g(vgbR\$b;|~UO`}SN_QYr:6_%wS_y}3Vg󅮔Sa	alvR8U/OQQ*RS[^}`acg	gngms6s7u1yPՊJćYNOYN?P^|Y[^ccdfiJimnqu(z Iɉ!
e}
a~bk2lmtmge<m}a=jNqSu]Pko͆-R)T\egNhttuψ̖x_sz˄NcueRmAnt	uYxk|zܟOaneņ\NNPN!Q[ehmsvBwz|oҐ|ϖuR}P+Sgmqt3*Wt`XAm}/^NO6OQR]`sy<Ӓ4
bfktRRpȈ^`Kao#qI|>}o#,TBojp2RZA^_gi|imjorbr{~KQmy2P-Tqkjā`gNNkhi n~xU_NNN*N1N6N<N?NBNVNXNNkN_NNNNNNNNNNNNNNNNNNO	OZO0O[O]OWOGOvOOOO{OiOpOOoOOQOOOOOOOOOOPP(PP*P%POOP!P)P,OOPPPCPGgPUPPPHPZPVPlPxPPPPPPPPPPPPPPPPPQ	QQQQQQQ!Q:Q7Q<Q;Q?Q@QRQLQTQbzQiQjQnQQVQQQQQQQQQQQQQQQQQQQQQQQUQQQQQRRRRR'R*R.R3R9RORDRKRLR^RTRjRtRiRsRR}RRRRqRRRRRRRRRRRRRRRRRSSu8SSSSSS#S/S1S3S8S@SFSENSISMQS^SiSnYS{SwSSSSSSSSS|SfqSSSSTT=T@T,T-T<T.T6T)TTNTTuTT_TqTwTpTT{TTvTTTTTTTTTTTTTTTTTTTUUTTTTTU9U@UcULU.U\UEUVUWU8U3U]UUTUUU{U~UUUU|UUUUUUUUUUUVUVUUVUVNVPqV4V6V2V8VkVdV/VlVjVVVVVVVVVVVVVVVVVVVVVVW VWW	WWWWWWUWW&W7W8WNW;W@WOWiWWWaWWWWWWWWWWWWWX
WWXXXXrX!XbXKXpkXRX=XyXXXXXXXXXXXXXXXXXXXXXXXXXYY
YYhY%Y,Y-Y2Y8Y>zYUYPYNYZYXYbY`YgYlYiYxYYO^OYYYYYYYYZ%ZZZZ	ZZ@ZlZIZ5Z6ZbZjZZZZZZZZZZZZZ[[[[2Z[*[6[>[C[E[@[Q[U[Z[[[e[i[p[s[u[xe[z[[[[[[[[[[[[[[[[[[\\\\\\ \"\(\8\9\A\F\N\S\P\O[q\l\nNb\v\y\\\Y\\\\\\\\\\\\\]\]]]]\]]]]]"]]]]L]R]N]K]l]s]v]]]]]]]]]]]]]]]]]]]]^^^^^^6^7^D^C^@^N^W^T^_^b^d^G^u^v^z^^^^^^^^^^^^^^^^^^^^^^^__	_]_\____)_-_8_A_H_L_N_/_Q_V_W_Y_a_m_s_w____________________`_`!`````)``1```+`&``:`Z`A`j`w`_`J`F`M`c`C`d`B`l`k`Y`````````````````_````aMaa``a ``aa!``aaaGa>a(a'aJa?a<a,a4a=aBaDasawaXaYaZakataoaeaqa_a]aSauaaaaaaaaaaaaaaaaaaayaaaaaaaaaab bb	bbbbbb!b*b.b0b2b3bAbNb^bcb[b`bhb|bbb~bbbbbbbbbbbbdbbbbbbbbcbbc'ccbbcPc>cMdcOcccccvcccccckcicccccccccdd4ddd&d6edd(ddgdodvdNe*ddddddddddddddd	ddbdde,dddde deeee$e#e+e4e5e7e6e8uKeHeVeUeMeXe^e]erexeeeeeeeeeeeeeeeeegrf
fegsf5f6f4ffOfDfIfAf^f]fdfgfhf_fbfpffffffffffffffffff?fffffgggg&g'8g.g?g6gAg8g7gFg^g`gYgcgdggpgg|gjgggggggggggggggggggggjhhFh)h@hMh2hNhh+hYhchwhhhhhhhhjhhthhhihh~ihihi"i&hihhhhi6iihhi%hhhi(i*ii#i!hiyiwi\ixikiTi~ini9iti=iYi0iai^i]iijiiiiiiii[iiiiij.iiiiiiijjik
iiijijijij
jjj#jjDjjrj6jxjGjbjYjfjHj8j"jjjjjjjjjjjjjjjjjjjjkjkk1kk8k7vk9kGkCkIkPkYkTk[k_kakxkykkkkkkkkkkkkkkkkkkkkkkkkklllll$l#l^lUlbljllllll~lhlslllllllllllllllllmMm6m+m=m8mm5m3mmmcmmdmZmymYmmommnn
mmmmmmmmmmmmmmmmmn-nnn.nnrn_n>n#nkn+nvnMnnCn:nNn$nnn8nnnnnnnnnnnnnnnnoAopLnnno?no1no2no>onoozoxooooo[oomoo|oXoooofooooooooooooooop	popppoppotpppp0p>p2pQpcppppppppppppq	pqqqeqUqqfqbqLqVqlqqqqqqqqqqqqqqqqqqqqrrrr(r-r,r0r2r;r<r?r@rFrKrXrtr~rrrrrrrrrrrrrrrrrrrPss
ssss4s/s)s%s>sNsOsWsjshspsxsus{szsssssssstttot%st2t:tUt?t_tYtAt\titptctjtvt~ttttttsttttttttttuuuuuuuuuu&u,u<uDuMuJuIu[uFuZuiudugukumuxuvuuutuuuuuuuuuuuuuuuuuuuuuuuuuvuuuuvvv	vv'v v!v"v$v4v0v;vGvHvFv\vXvavbvhvivjvgvlvpvrvvvxv|vvvvvvvvvvvvvvvvvvvvvvv/vwwww)w$ww%w&ww7w8wGwZwhwkw[weww~wywwwwwwwwwwwwwwwwwwwwxxy&x y*xExxtxx|xxxxxxxxxxxxxxxxxxxyyyyy,y+y@y`yWy_yZyUySyzyyyyKyyyyyyyyyyyzzzzz zyz1z;z>z7zCzWzIzazbzizpzyz}zzzzzzzzzzzzzzzzzzzzzzzzzz{{{
{{3{{{{5{({6{P{z{{M{{L{E{u{e{t{g{p{q{l{n{{{{{{{{{{]{{{{{{{{{||{{|`| ||{{||{|#|'|*||7|+|=|L|C|T|O|@|P|X|_|d|V|e|l|u|||||||||||||||||||||;|||||}}}}}
}E}K}.}2}?}5}F}s}V}N}r}h}n}O}c}}}[}}}}}}}}}}}~=}}}}}}}}}}}}}~~
~#~!~~1~~	~~"~F~f~;~5~9~C~7~2~:~g~]~V~^~Y~Z~y~j~i~|~{~}~}~~~~~~~~~~~~8:ELMNPQUTX_`higxq܀!(?;JFRXZ_bhsrpvy}Qۀـ݀Āڀց	)#/KF>SQqneft_Ɂ́сف؁ȁځ߁
)+83@YX]Z_dbhjk.qwx~߂҂ރ܃	ك5421@9PE/+#|su΃؄" 8m*<ZwkniF,oy5ʄbل̈́ڄЄƄք!,@cXHAKUmꅇw~ɅυЅՅ݅܅
"0?MNUT_gqĆƆɈ#Ԇކ߆ۆ 	
4?7;%)`_xLNtWhnYScjˇЖևćǇƇ҈"!169';DBRY^bk~u}rÈĈԈ؈و݈
C%*+AD;68L`^fdmjotw~ډ܉݉%6A[RFH|mlbĊ͊ڊފۋ 3&+>(ALONIV[Zk_lot}:A?HLNPUblxz|bȌڌ
N͍gmqsύڍ֍̍ۍˍߍ	B504JGILPHYd`*cUvr|ƎŎȎˎێ
&3;9EB>LIFNW\bcdڏ!'659OPQRI>VX^hovr}bHۑ20JVXceisrɑˑБ֑ߑۑ,^WEIdH?KPZϒD."#:5;\`|nV֓דؓÓݓГȓ6+5!:ARD[`b^j)puw}Z|~oÕ͕̕Օԕ֕ܕ!(./BLOKw\^]_frlΖ˖ɖ͉MܗՖ$*09=>DFHBI\`dfhRҗkqy|z×Ɨȗ˗ܗOzߗ8$!7=FOKkopqtsĘØƘ	!$ ,.=>BIEPKQRLUߙۙݙؙљ+7EB@C>UM[W_bedikjϚњӚԚޚߚ"#%'()*./2DCOMNQXtʛƛϛћқԛ:	
.%$!0G2F>Z`gvx	*&#DA?>FH]^dQPYrozĝƝϝٝӝuy}a̞ΞϞОԞܞޞݞv!,>JRTc_`afgljwrvX/iǐYtdQqPK     N\̿0  0     Parser/Encodings/iso-8859-15.encnu 6$        ISO-8859-15                                                                	   
                                                                      !   "   #   $   %   &   '   (   )   *   +   ,   -   .   /   0   1   2   3   4   5   6   7   8   9   :   ;   <   =   >   ?   @   A   B   C   D   E   F   G   H   I   J   K   L   M   N   O   P   Q   R   S   T   U   V   W   X   Y   Z   [   \   ]   ^   _   `   a   b   c   d   e   f   g   h   i   j   k   l   m   n   o   p   q   r   s   t   u   v   w   x   y   z   {   |   }   ~                                                                                                                       `     a                                   }           ~           R  S  x                                                                                                                                                                                                   PK     N\#Y0  0    Parser/Encodings/ibm866.encnu 6$        ibm866                                                                     	   
                                                                      !   "   #   $   %   &   '   (   )   *   +   ,   -   .   /   0   1   2   3   4   5   6   7   8   9   :   ;   <   =   >   ?   @   A   B   C   D   E   F   G   H   I   J   K   L   M   N   O   P   Q   R   S   T   U   V   W   X   Y   Z   [   \   ]   ^   _   `   a   b   c   d   e   f   g   h   i   j   k   l   m   n   o   p   q   r   s   t   u   v   w   x   y   z   {   |   }   ~                                        !  "  #  $  %  &  '  (  )  *  +  ,  -  .  /  0  1  2  3  4  5  6  7  8  9  :  ;  <  =  >  ?  %  %  %  %  %$  %a  %b  %V  %U  %c  %Q  %W  %]  %\  %[  %  %  %4  %,  %  %   %<  %^  %_  %Z  %T  %i  %f  %`  %P  %l  %g  %h  %d  %e  %Y  %X  %R  %S  %k  %j  %  %  %  %  %  %  %  @  A  B  C  D  E  F  G  H  I  J  K  L  M  N  O    Q    T    W    ^     "     "  !     %   PK     N\G  G  "  Parser/Encodings/x-sjis-jdk117.encnu 6$        x-sjis-jdk117                            (%                               	   
                                                                      !   "   #   $   %   &   '   (   )   *   +   ,   -   .   /   0   1   2   3   4   5   6   7   8   9   :   ;   <   =   >   ?   @   A   B   C   D   E   F   G   H   I   J   K   L   M   N   O   P   Q   R   S   T   U   V   W   X   Y   Z   [   \   ]   ^   _   `   a   b   c   d   e   f   g   h   i   j   k   l   m   n   o   p   q   r   s   t   u   v   w   x   y   z   {   |   }   ~     a  b  c  d  e  f  g  h  i  j  k  l  m  n  o  p  q  r  s  t  u  v  w  x  y  z  {  |  }  ~                                                                  \                                          @        @                                            OL                                          @                                             @                                                 ^                                                   @c                                        @                                         @                                        @                                        @W                                        @                                        @                                        @                                        @	K                                        @
                                        @
                                        @                                        @?                                        @                                        @                                        @v                                            @3                                        @                                        @                                        @j                                        @'                                        @                                        @                                        @^                                        @                                        @                                        @                                        @R                                        @                                        @                                        @                                        @F                                        @                                        @e                                                    \ ~         	 
                  abcdefghijklmnopqrstuvwxyz{|}~      ! " # $ % & '0 00000 @ >?00000N0000   \0 \ & %    	00;=[]00	0
0000000"   "`"f"g""4&B&@  2 3!  
  &&%%%%%%%%%%% ;0!!!!0"""""""*")"'"( !!" "" "#"""a"R"j"k""=""5"+",!+ 0&o&m&j   ! %!"#$%&'()*+,-./0123456789:ABCDEFGHIJKLMNOPQRSTUVWXYZ0A0B0C0D0E0F0G0H0I0J0K0L0M0N0O0P0Q0R0S0T0U0V0W0X0Y0Z0[0\0]0^0_0`0a0b0c0d0e0f0g0h0i0j0k0l0m0n0o0p0q0r0s0t0u0v0w0x0y0z0{0|0}0~00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 !"#$%&'()*+,-./012345Q6789:;<=>?@ABCDEFGHIJKLMNO% %%%%%%%,%$%4%<%%%%%%%#%3%+%;%K% %/%(%7%?%%0%%%8%BNUZ?Tac(Y"uzP`cn%efhW'ebq[YІ{}b}b|[^c	fhHǗgONO
OMOPIVY7YZ\	`aapfipuOupy}}ÄcUzS;NNW߀xN Xn8z2(/QASpTTVY_m-bpTS[pSo\zNxn&VUk;YSmftܕVBNKOSU[0_qf fhl8lm)t[vzN4[`muvʙ`iSQWX0YD[^`(cclopqqYqs?~vх`[XielZu%QY.Ye__bej*k'ksV,\l{Q\KahvraNYOSx`in)zONSNOUO=OOsRSV	YZ[[yfggkLlpksyyz<{ۃwӇfV)NO\brYu;傽řNOVXJX^_`*``babbe9AffhmwppuLv}uQRYT[]ahimxˈWrmlWgΒRVT^bdh<h8ksrxzkҍk핣i[f\i}MNc{ j+jho_RrU`pbm;nnф[DN9Sij:h*Q\zÄܓV[(h"1|RtN~OQ[R
RR]UX*Y[[[^r^y`aacacebghShk>kSlWo"ooEtuvwz{|!}6f̌Qeә(N8T+\]svLw<\TXOOSqUVhWYG[	[\^^~_cg:eeghhj_^0kll}uyH[cz } _w̏<NP}Q Y[b/bdk:ruyGpcʗT	TUhTjXpx'guSt[PNNENOST8[_`%eQg=lBlrlpxtzvz{}|}fer[S\E]bbcn Z1ݒoyZNNNOOPQGzQqQSTS!SSUX\_7_J`/`P`mceYjKlrrwNWZNQ\-fim\@fiushP|PRWG]&ek#k=t4yy{K}ʂ̈_9ёTN]P6SS:rsw掯ƙșQwa^UzzPv[ӐGN2jۑ\Q\Hczltazq|h~phQlRT͐SfyAOPRQDUSW-sWYQ_b_`uavagacd:elfohBnufz=|}L}~KkJ͊cfΛRbdohAPk lzoTzt}P@#gNP9P&PeQ|R8RcUWXZ^aabcrij)r}rs.xxo}ywҐcuzUxQCSS^{_&nnss}C7 PNNPST|VY[d]^_'b8eEgnVr|ʈN7ǘgNNOSHTIT>Z/__`hjtZxwN^NO|OPPQIQlRRRSSTTUWQWY}[T[][]]]^x^^^_`RaLbbce;ffCfgmh!hil_m*min/nu2vxlz?|}}}^}T*RLaʑuqx?M؝;R[RSTXboj_QKR;TJVz@w`sDo	pu_`ښrۏkdNVWdXZZ`haffh9hmu}:nBNOPSU]o]]gltsxPWP^c+PPQg TX^Y[_ibMch=ksnp}rxx&yme}0܈	RdW(gPjQWB*X:iT]WxO\RJTd>f(ggz{V}"/h\{9SQR7[bddg-kvcLvfRN	PS\q`dech_qsu#{~ۑxefkNNO:OR:SSUVXYYY[P\M^^+_`ce/[\eeegkbk{lsEyIy|}}+󉖊^ifǌܖ̘koNO<OQP[W[aHcfBk!nlr>tuxy:3ꄔlP_X+z[NSWY1Z[`nou[ {Prg\aJ~Q\chfeqny>}ʐnǐPR\:gSp|r5Lȓ+[_1`N;S[bKg1krsz.kRQSTj[cj9} VSTh[\1]Oabm2yy}B~MҁFrt/1KlƑNOOQESA_bglAnsc~&͒SY[my]~.|X~qQSO\f%wzQ_eiokmnodv}]uQRb@ffn^}rfRSYs^_`UdPQRS SGSTUFU1VYhYZ<[\\\\^^^_pbbbccwfff-fvg~hjj5lmn	nXq<q&qguwx]yyeyz{|}9քI]<Tsaޑf~N
NNNWQRpWX4X["^8`dgagVmDruszcr V1Wbikq~Twr߇U\;O8OOUZ [[_aNc/efKhimxmu3uwy^y}3ク:2ݗNNRXuX\u\=N
Ŗcm{%ϘbVST9W^%cl4pwa|pBTt^]]iepgcngIiŘodz[Np,u]f/QR6RY_`'be?etffthhkcnrruv|VXːRYez^-`befgwzM|M~>
d_xRbcdBb-z{}vINQHSCS`[\\]b&bGdhh4lmEmgo\qNq}ez{}~Jz9n΍xwRMUo8q6Qhy~U|VLXQ\cffiZruuyyVy|} }D4;a PRuSSP	UXYOr=[\dS``c\cc?cdef]iioqNuvz|}}aIXlōpmPXaӅ5 OPtRGSs`ocIg_n,O\^e}SRQvc[X[k\
dgQ\NYY*lpQU>XY`bSg5iU@Ě(OSX[\^/_` aKb4flnހ΁Ԉ .ۛNSY'{,Lnp'SSUD[bXbblot"8o8QSSOFTYj1]zꏿhڌ7rHj=N9SXVWfbcekNmn[pwz{}=Ɔˊ[VX_>efjku7P$wW0_`efzl`uznE{u\z{Qyz6Zw@N-N[_bf<glkw;Njp&s*WNQFQU[^^3^__5_k_acfgonrRu:w:t9xv܍󒚕wRcWvgls͌Ósm%XiȉuېXZhciOCo,g؏&}Ti?opWjX[,},r*T
㝴NONP\PuRCTHX$[^^^^_`bc:chl@xyz}GD-؟ldXdeunv{inT_dMDQxXkY)\U^m~u[pOkou0QNTX5XWY\`_eg\n!v{ߌMx%x:R^WYt`PQZQQR UXTXXYW[\]`bd-gqhChhvmnompoq_Suyw{I{T{R|}qR0ciFv-0PRTX\admwzS\S?__mrywcy{kr슭hjaQzi4\J[őIpVx\o`eflZATQfǒYHQNMQꅙpXczKib~uwSWi`ߖl]N\<_Sрy^eNsQeY\?NY_͊oyyb[qs+q^t_c{dq|NC^NKWV`o}3]bdgwlm>t6x4ZFuO^bceWgovrL̀)MPWZhisqdrXjyw)O/ReSZbglv}{|6fo r~Q{xr{{Hj^auQu`QkbnvzOpb{OVzXY䖼O4R$SJSS^d,egl>lNrHrsuT~A,錩{đqic=fiujvxЅCS*SQT&Y^_|`bIbybekluvxy}w^j|8P\>_gkt5w	;gzS9u_f_<_ub{F<hgYZ}v~,O_jjl7otyhhUy^cuy҂ד(򄜆-T_lem\pӘ;eOtNNWY+Zf[Q^^`bvewefnmnr6{&P\tDOdkfaj\iSzWORo_^Egyym_bUlNriRT;VtXabnqYn||}e^NOuQuX@^c^s_
gN&=[|sPXvVxR%w{POY	rG{}菺ԐMORZ)_O݂WcUkiu+܏zBRXaUb
fk|?P#OSTFX1YI[\\])^bcge>egllpx2~+ނ*JҘlNONPRVWJY^=__b?fgghQ}! ~2T ,SPS\Xdg4rgwfzFRlkX ^LYTg,QvdixTWYf'gkTi^UggRh]NOSbg+lO~mNabno+Tsg*E]{\[ƇnJzY|lw RY"q!r_wۗ'aiZZQTT}fvߏYr]nQMh}}bdxj!Y[_ksv}Q2g(vgbR\$b;|~UO`}SN_QYr:6_%wS_y}3Vg󅮔Sa	alvR8U/OQQ*RS[^}`acg	gngms6s7u1yPՊJćYNOYN?P^|Y[^ccdfiJimnqu(z Iɉ!
e}
a~bk2lmtmge<m}a=jNqSu]Pko͆-R)T\egNhttuψ̖x_sz˄NcueRmAnt	uYxk|zܟOaneņ\NNPN!Q[ehmsvBwz|oҐ|ϖuR}P+Sgmqt3*Wt`XAm}/^NO6OQR]`sy<Ӓ4
bfktRRpȈ^`Kao#qI|>}o#,TBojp2RZA^_gi|imjorbr{~KQmy2P-Tqkjā`gNNkhi n~xU_NNN*N1N6N<N?NBNVNXNNkN_NNNNNNNNNNNNNNNNNNO	OZO0O[O]OWOGOvOOOO{OiOpOOoOOQOOOOOOOOOOPP(PP*P%POOP!P)P,OOPPPCPGgPUPPPHPZPVPlPxPPPPPPPPPPPPPPPPPQ	QQQQQQQ!Q:Q7Q<Q;Q?Q@QRQLQTQbzQiQjQnQQVQQQQQQQQQQQQQQQQQQQQQQQUQQQQQRRRRR'R*R.R3R9RORDRKRLR^RTRjRtRiRsRR}RRRRqRRRRRRRRRRRRRRRRRSSu8SSSSSS#S/S1S3S8S@SFSENSISMQS^SiSnYS{SwSSSSSSSSS|SfqSSSSTT=T@T,T-T<T.T6T)TTNTTuTT_TqTwTpTT{TTvTTTTTTTTTTTTTTTTTTTUUTTTTTU9U@UcULU.U\UEUVUWU8U3U]UUTUUU{U~UUUU|UUUUUUUUUUUVUVUUVUVNVPqV4V6V2V8VkVdV/VlVjVVVVVVVVVVVVVVVVVVVVVVW VWW	WWWWWWUWW&W7W8WNW;W@WOWiWWWaWWWWWWWWWWWWWX
WWXXXXrX!XbXKXpkXRX=XyXXXXXXXXXXXXXXXXXXXXXXXXXYY
YYhY%Y,Y-Y2Y8Y>zYUYPYNYZYXYbY`YgYlYiYxYYO^OYYYYYYYYZ%ZZZZ	ZZ@ZlZIZ5Z6ZbZjZZZZZZZZZZZZZ[[[[2Z[*[6[>[C[E[@[Q[U[Z[[[e[i[p[s[u[xe[z[[[[[[[[[[[[[[[[[[\\\\\\ \"\(\8\9\A\F\N\S\P\O[q\l\nNb\v\y\\\Y\\\\\\\\\\\\\]\]]]]\]]]]]"]]]]L]R]N]K]l]s]v]]]]]]]]]]]]]]]]]]]]^^^^^^6^7^D^C^@^N^W^T^_^b^d^G^u^v^z^^^^^^^^^^^^^^^^^^^^^^^__	_]_\____)_-_8_A_H_L_N_/_Q_V_W_Y_a_m_s_w____________________`_`!`````)``1```+`&``:`Z`A`j`w`_`J`F`M`c`C`d`B`l`k`Y`````````````````_````aMaa``a ``aa!``aaaGa>a(a'aJa?a<a,a4a=aBaDasawaXaYaZakataoaeaqa_a]aSauaaaaaaaaaaaaaaaaaaayaaaaaaaaaab bb	bbbbbb!b*b.b0b2b3bAbNb^bcb[b`bhb|bbb~bbbbbbbbbbbbdbbbbbbbbcbbc'ccbbcPc>cMdcOcccccvcccccckcicccccccccdd4ddd&d6edd(ddgdodvdNe*ddddddddddddddd	ddbdde,dddde deeee$e#e+e4e5e7e6e8uKeHeVeUeMeXe^e]erexeeeeeeeeeeeeeeeeegrf
fegsf5f6f4ffOfDfIfAf^f]fdfgfhf_fbfpffffffffffffffffff?fffffgggg&g'8g.g?g6gAg8g7gFg^g`gYgcgdggpgg|gjgggggggggggggggggggggjhhFh)h@hMh2hNhh+hYhchwhhhhhhhhjhhthhhihh~ihihi"i&hihhhhi6iihhi%hhhi(i*ii#i!hiyiwi\ixikiTi~ini9iti=iYi0iai^i]iijiiiiiiii[iiiiij.iiiiiiijjik
iiijijijij
jjj#jjDjjrj6jxjGjbjYjfjHj8j"jjjjjjjjjjjjjjjjjjjjkjkk1kk8k7vk9kGkCkIkPkYkTk[k_kakxkykkkkkkkkkkkkkkkkkkkkkkkkklllll$l#l^lUlbljllllll~lhlslllllllllllllllllmMm6m+m=m8mm5m3mmmcmmdmZmymYmmommnn
mmmmmmmmmmmmmmmmmn-nnn.nnrn_n>n#nkn+nvnMnnCn:nNn$nnn8nnnnnnnnnnnnnnnnoAopLnnno?no1no2no>onoozoxooooo[oomoo|oXoooofooooooooooooooop	popppoppotpppp0p>p2pQpcppppppppppppq	pqqqeqUqqfqbqLqVqlqqqqqqqqqqqqqqqqqqqqrrrr(r-r,r0r2r;r<r?r@rFrKrXrtr~rrrrrrrrrrrrrrrrrrrPss
ssss4s/s)s%s>sNsOsWsjshspsxsus{szsssssssstttot%st2t:tUt?t_tYtAt\titptctjtvt~ttttttsttttttttttuuuuuuuuuu&u,u<uDuMuJuIu[uFuZuiudugukumuxuvuuutuuuuuuuuuuuuuuuuuuuuuuuuuvuuuuvvv	vv'v v!v"v$v4v0v;vGvHvFv\vXvavbvhvivjvgvlvpvrvvvxv|vvvvvvvvvvvvvvvvvvvvvvv/vwwww)w$ww%w&ww7w8wGwZwhwkw[weww~wywwwwwwwwwwwwwwwwwwwwxxy&x y*xExxtxx|xxxxxxxxxxxxxxxxxxxyyyyy,y+y@y`yWy_yZyUySyzyyyyKyyyyyyyyyyyzzzzz zyz1z;z>z7zCzWzIzazbzizpzyz}zzzzzzzzzzzzzzzzzzzzzzzzzz{{{
{{3{{{{5{({6{P{z{{M{{L{E{u{e{t{g{p{q{l{n{{{{{{{{{{]{{{{{{{{{||{{|`| ||{{||{|#|'|*||7|+|=|L|C|T|O|@|P|X|_|d|V|e|l|u|||||||||||||||||||||;|||||}}}}}
}E}K}.}2}?}5}F}s}V}N}r}h}n}O}c}}}[}}}}}}}}}}}~=}}}}}}}}}}}}}~~
~#~!~~1~~	~~"~F~f~;~5~9~C~7~2~:~g~]~V~^~Y~Z~y~j~i~|~{~}~}~~~~~~~~~~~~8:ELMNPQUTX_`higxq܀!(?;JFRXZ_bhsrpvy}Qۀـ݀Āڀց	)#/KF>SQqneft_Ɂ́сف؁ȁځ߁
)+83@YX]Z_dbhjk.qwx~߂҂ރ܃	ك5421@9PE/+#|su΃؄" 8m*<ZwkniF,oy5ʄbل̈́ڄЄƄք!,@cXHAKUmꅇw~ɅυЅՅ݅܅
"0?MNUT_gqĆƆɈ#Ԇކ߆ۆ 	
4?7;%)`_xLNtWhnYScjˇЖևćǇƇ҈"!169';DBRY^bk~u}rÈĈԈ؈و݈
C%*+AD;68L`^fdmjotw~ډ܉݉%6A[RFH|mlbĊ͊ڊފۋ 3&+>(ALONIV[Zk_lot}:A?HLNPUblxz|bȌڌ
N͍gmqsύڍ֍̍ۍˍߍ	B504JGILPHYd`*cUvr|ƎŎȎˎێ
&3;9EB>LIFNW\bcdڏ!'659OPQRI>VX^hovr}bHۑ20JVXceisrɑˑБ֑ߑۑ,^WEIdH?KPZϒD."#:5;\`|nV֓דؓÓݓГȓ6+5!:ARD[`b^j)puw}Z|~oÕ͕̕Օԕ֕ܕ!(./BLOKw\^]_frlΖ˖ɖ͉MܗՖ$*09=>DFHBI\`dfhRҗkqy|z×Ɨȗ˗ܗOzߗ8$!7=FOKkopqtsĘØƘ	!$ ,.=>BIEPKQRLUߙۙݙؙљ+7EB@C>UM[W_bedikjϚњӚԚޚߚ"#%'()*./2DCOMNQXtʛƛϛћқԛ:	
.%$!0G2F>Z`gvx	*&#DA?>FH]^dQPYrozĝƝϝٝӝuy}a̞ΞϞОԞܞޞݞv!,>JRTc_`afgljwrvX/iǐYtdQqPK     N\W    &  Parser/Encodings/x-euc-jp-jisx0221.encnu 6$        X-EUC-JP-JISX0221                        4A                               	   
                                                                      !   "   #   $   %   &   '   (   )   *   +   ,   -   .   /   0   1   2   3   4   5   6   7   8   9   :   ;   <   =   >   ?   @   A   B   C   D   E   F   G   H   I   J   K   L   M   N   O   P   Q   R   S   T   U   V   W   X   Y   Z   [   \   ]   ^   _   `   a   b   c   d   e   f   g   h   i   j   k   l   m   n   o   p   q   r   s   t   u   v   w   x   y   z   {   |   }   ~   g                                                      ? g                                                        L                     ?                                  ^                                                     ^P                                                     CK                                                      S                                                     VL                                                     8                                                        Q                                                       +                                                           ^K                                                    ^                                                    ^                                                    ^e                                                    ^                                                    ^!                                                    ^                                                    ^                                                    ^;                                                    ^                                                    ^                                                    ^U                                                    ^                                                    ^                                                    ^o                                                    ^                                                    ^	+                                                    ^	                                                    ^	                                                    ^
E                                                    ^
                                                    ^                                                    ^_                                                    ^                                                    ^                                                    ^y                                                    ^                                                    ^5                                                    ^                                                    ^                                                    ^O                                                    3                                                         ^                                                    ^>                                                    ^                                                    ^                                                    ^X                                                    ^                                                    ^                                                    ^r                                                    ^                                                    ^.                                                    ^                                                    ^                                                    ^H                                                    ^                                                    ^                                                    ^b                                                    ^                                                    ^                                                    ^|                                                    ^                                                    ^8                                                    ^                                                    ^                                                    ^R                                                    ^                                                    ^                                                    ^l                                                    ^                                                    ^(                                                    ^                                                    ^                                                    ^B                                                    ^                                                    ^                                                    ^\                                                    ^                                                                                                        ~           C                                                          a                                                            =}                                                            0                                                    V      W                                                     WA                                                     ^                                                    ^                                                    ^T                                                    ^                                                    ^                                                    ^n                                                    ^                                                    ^ *                                                    ^                                                     ^                                                     ^!D                                                    ^!                                                    ^"                                                     ^"^                                                    ^"                                                    ^#                                                    ^#x                                                    ^#                                                    ^$4                                                    ^$                                                    ^$                                                    ^%N                                                    ^%                                                    ^&
                                                    ^&h                                                    ^&                                                    ^'$                                                    ^'                                                    ^'                                                    ^(>                                                    ^(                                                    ^(                                                    ^)X                                                    ^)                                                    ^*                                                    ^*r                                                    ^*                                                    ^+.                                                    ^+                                                    ^+                                                    ^,H                                                    ^,                                                    ^-                                                    ^-b                                                    ^-                                                    ^.                                                    ^.|                                                    ^.                                                    ^/8                                                    ^/                                                    ^/                                                    ^0R                                                    ^0                                                    ^1                                                    ^1l                                                    ^1                                                    ^2(                                                    ^2                                                    ^2                                                    ^3B                                                    ^3                                                    C3                                                                	 
                        ! " # $ % & ' ( ) * + , - . / 0 1 2 3 4 5 6 7 8 9 : ; < = > ? @ A B C D E F G H I J K L M N Oabcdefghijklmnopqrstuvwxyz{|}~ P Q R S T U V W X Y Z [ \ ] ^ _ ` a b c d e f g h i j k l m n o p q r s t u v w x y z { | } ~                     0 00000 @ >?00000N0000   \0 \ & %    	00;=[]00	0
0000000"   "`"f"g""4&B&@  2 3!  
  &&%%%%%%%%%%% ;0!!!!0"""""""*")"'"( !!" "" "#"""a"R"j"k""=""5"+",!+ 0&o&m&j   ! %!"#$%&'()*+,-./0123456789:ABCDEFGHIJKLMNOPQRSTUVWXYZ0A0B0C0D0E0F0G0H0I0J0K0L0M0N0O0P0Q0R0S0T0U0V0W0X0Y0Z0[0\0]0^0_0`0a0b0c0d0e0f0g0h0i0j0k0l0m0n0o0p0q0r0s0t0u0v0w0x0y0z0{0|0}0~00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 !"#$%&'()*+,-./012345Q6789:;<=>?@ABCDEFGHIJKLMNO% %%%%%%%,%$%4%<%%%%%%%#%3%+%;%K% %/%(%7%?%%0%%%8%BNUZ?Tac(Y"uzP`cn%efhW'ebq[YІ{}b}b|[^c	fhHǗgONO
OMOPIVY7YZ\	`aapfipuOupy}}ÄcUzS;NNW߀xN Xn8z2(/QASpTTVY_m-bpTS[pSo\zNxn&VUk;YSmftܕVBNKOSU[0_qf fhl8lm)t[vzN4[`muvʙ`iSQWX0YD[^`(cclopqqYqs?~vх`[XielZu%QY.Ye__bej*k'ksV,\l{Q\KahvraNYOSx`in)zONSNOUO=OOsRSV	YZ[[yfggkLlpksyyz<{ۃwӇfV)NO\brYu;傽řNOVXJX^_`*``babbe9AffhmwppuLv}uQRYT[]ahimxˈWrmlWgΒRVT^bdh<h8ksrxzkҍk핣i[f\i}MNc{ j+jho_RrU`pbm;nnф[DN9Sij:h*Q\zÄܓV[(h"1|RtN~OQ[R
RR]UX*Y[[[^r^y`aacacebghShk>kSlWo"ooEtuvwz{|!}6f̌Qeә(N8T+\]svLw<\TXOOSqUVhWYG[	[\^^~_cg:eeghhj_^0kll}uyH[cz } _w̏<NP}Q Y[b/bdk:ruyGpcʗT	TUhTjXpx'guSt[PNNENOST8[_`%eQg=lBlrlpxtzvz{}|}fer[S\E]bbcn Z1ݒoyZNNNOOPQGzQqQSTS!SSUX\_7_J`/`P`mceYjKlrrwNWZNQ\-fim\@fiushP|PRWG]&ek#k=t4yy{K}ʂ̈_9ёTN]P6SS:rsw掯ƙșQwa^UzzPv[ӐGN2jۑ\Q\Hczltazq|h~phQlRT͐SfyAOPRQDUSW-sWYQ_b_`uavagacd:elfohBnufz=|}L}~KkJ͊cfΛRbdohAPk lzoTzt}P@#gNP9P&PeQ|R8RcUWXZ^aabcrij)r}rs.xxo}ywҐcuzUxQCSS^{_&nnss}C7 PNNPST|VY[d]^_'b8eEgnVr|ʈN7ǘgNNOSHTIT>Z/__`hjtZxwN^NO|OPPQIQlRRRSSTTUWQWY}[T[][]]]^x^^^_`RaLbbce;ffCfgmh!hil_m*min/nu2vxlz?|}}}^}T*RLaʑuqx?M؝;R[RSTXboj_QKR;TJVz@w`sDo	pu_`ښrۏkdNVWdXZZ`haffh9hmu}:nBNOPSU]o]]gltsxPWP^c+PPQg TX^Y[_ibMch=ksnp}rxx&yme}0܈	RdW(gPjQWB*X:iT]WxO\RJTd>f(ggz{V}"/h\{9SQR7[bddg-kvcLvfRN	PS\q`dech_qsu#{~ۑxefkNNO:OR:SSUVXYYY[P\M^^+_`ce/[\eeegkbk{lsEyIy|}}+󉖊^ifǌܖ̘koNO<OQP[W[aHcfBk!nlr>tuxy:3ꄔlP_X+z[NSWY1Z[`nou[ {Prg\aJ~Q\chfeqny>}ʐnǐPR\:gSp|r5Lȓ+[_1`N;S[bKg1krsz.kRQSTj[cj9} VSTh[\1]Oabm2yy}B~MҁFrt/1KlƑNOOQESA_bglAnsc~&͒SY[my]~.|X~qQSO\f%wzQ_eiokmnodv}]uQRb@ffn^}rfRSYs^_`UdPQRS SGSTUFU1VYhYZ<[\\\\^^^_pbbbccwfff-fvg~hjj5lmn	nXq<q&qguwx]yyeyz{|}9քI]<Tsaޑf~N
NNNWQRpWX4X["^8`dgagVmDruszcr V1Wbikq~Twr߇U\;O8OOUZ [[_aNc/efKhimxmu3uwy^y}3ク:2ݗNNRXuX\u\=N
Ŗcm{%ϘbVST9W^%cl4pwa|pBTt^]]iepgcngIiŘodz[Np,u]f/QR6RY_`'be?etffthhkcnrruv|VXːRYez^-`befgwzM|M~>
d_xRbcdBb-z{}vINQHSCS`[\\]b&bGdhh4lmEmgo\qNq}ez{}~Jz9n΍xwRMUo8q6Qhy~U|VLXQ\cffiZruuyyVy|} }D4;a PRuSSP	UXYOr=[\dS``c\cc?cdef]iioqNuvz|}}aIXlōpmPXaӅ5 OPtRGSs`ocIg_n,O\^e}SRQvc[X[k\
dgQ\NYY*lpQU>XY`bSg5iU@Ě(OSX[\^/_` aKb4flnހ΁Ԉ .ۛNSY'{,Lnp'SSUD[bXbblot"8o8QSSOFTYj1]zꏿhڌ7rHj=N9SXVWfbcekNmn[pwz{}=Ɔˊ[VX_>efjku7P$wW0_`efzl`uznE{u\z{QĐyz6Zw@N-N[_bf<glkw;Njp&s*WNQFQU[^^3^__5_k_acfgonrRu:w:t9xv܍󒚕wRcWvgls͌Ósm%XiȉuېXZhciOCo,g؏&}Ti?opWjX[,},r*T
㝴NONP\PuRCTHX$[^^^^_`bc:chl@xyz}GD-؟ldXdeunv{inT_dMDQxXkY)\U^m~u[pOkou0QNTX5XWY\`_eg\n!v{ߌMx%x:R^WYt`PQZQQR UXTXXYW[\]`bd-gqhChhvmnompoq_Suyw{I{T{R|}qR0ciFv-0PRTX\admwzS\S?__mrywcy{kr슭hjaQzi4\J[őIpVx\o`eflZATQfǒYHQNMQꅙpXczKib~uwSWi`ߖl]N\<_Sрy^eNsQeY\?NY_͊oyyb[qs+q^t_c{dq|NC^NKWV`o}3]bdgwlm>t6x4ZFuO^bceWgovrL̀)MPWZhisqdrXjyw)O/ReSZbglv}{|6fo r~Q{xr{{Hj^auQu`QkbnvzOpb{OVzXY䖼O4R$SJSS^d,egl>lNrHrsuT~A,錩{đqic=fiujvxЅCS*SQT&Y^_|`bIbybekluvxy}w^j|8P\>_gkt5w	;gzS9u_f_<_ub{F<hgYZ}v~,O_jjl7otyhhUy^cuy҂ד(򄜆-T_lem\pӘ;eOtNNWY+Zf[Q^^`bvewefnmnr6{&P\tDOdkfaj\iSzWORo_^Egyym_bUlNriRT;VtXabnqYn||}e^NOuQuX@^c^s_
gN&=[|sPXvVxR%w{POY	rG{}菺ԐMORZ)_O݂WcUkiu+܏zBRXaUb
fk|?P#OSTFX1YI[\\])^bcge>egllpx2~+ނ*JҘlNONPRVWJY^=__b?fgghQ}! ~2T ,SPS\Xdg4rgwfzFRlkX ^LYTg,QvdixTWYf'gkTi^UggRh]NOSbg+lO~mNabno+Tsg*E]{\[ƇnJzY|lw RY"q!r_wۗ'aiZZQTT}fvߏYr]nQMh}}bdxj!Y[_ksv}Q2g(vgbR\$b;|~UO`}SN_QYr:6_%wS_y}3Vg󅮔Sa	alvR8U/OQQ*RS[^}`acg	gngms6s7u1yPՊJćYNOYN?P^|Y[^ccdfiJimnqu(z Iɉ!
e}
a~bk2lmtmge<m}a=jNqSu]Pko͆-R)T\egNhttuψ̖x_sz˄NcueRmAnt	uYxk|zܟOaneņ\NNPN!Q[ehmsvBwz|oҐ|ϖuR}P+Sgmqt3*Wt`XAm}/^NO6OQR]`sy<Ӓ4
bfktRRpȈ^`Kao#qI|>}o#,TBojp2RZA^_gi|imjorbr{~KQmy2P-Tqkjā`gNNkhi n~xU_NNN*N1N6N<N?NBNVNXNNkN_NNNNNNNNNNNNNNNNNNO	OZO0O[O]OWOGOvOOOO{OiOpOOoOOQOOOOOOOOOOPP(PP*P%POOP!P)P,OOPPPCPGgPUPPPHPZPVPlPxPPPPPPPPPPPPPPPPPQ	QQQQQQQ!Q:Q7Q<Q;Q?Q@QRQLQTQbzQiQjQnQQVQQQQQQQQQQQQQQQQQQQQQQQUQQQQQRRRRR'R*R.R3R9RORDRKRLR^RTRjRtRiRsRR}RRRRqRRRRRRRRRRRRRRRRRSSu8SSSSSS#S/S1S3S8S@SFSENSISMQS^SiSnYS{SwSSSSSSSSS|SfqSSSSTT=T@T,T-T<T.T6T)TTNTTuTT_TqTwTpTT{TTvTTTTTTTTTTTTTTTTTTTUUTTTTTU9U@UcULU.U\UEUVUWU8U3U]UUTUUU{U~UUUU|UUUUUUUUUUUVUVUUVUVNVPqV4V6V2V8VkVdV/VlVjVVVVVVVVVVVVVVVVVVVVVVW VWW	WWWWWWUWW&W7W8WNW;W@WOWiWWWaWWWWWWWWWWWWWX
WWXXXXrX!XbXKXpkXRX=XyXXXXXXXXXXXXXXXXXXXXXXXXXYY
YYhY%Y,Y-Y2Y8Y>zYUYPYNYZYXYbY`YgYlYiYxYYO^OYYYYYYYYZ%ZZZZ	ZZ@ZlZIZ5Z6ZbZjZZZZZZZZZZZZZ[[[[2Z[*[6[>[C[E[@[Q[U[Z[[[e[i[p[s[u[xe[z[[[[[[[[[[[[[[[[[[\\\\\\ \"\(\8\9\A\F\N\S\P\O[q\l\nNb\v\y\\\Y\\\\\\\\\\\\\]\]]]]\]]]]]"]]]]L]R]N]K]l]s]v]]]]]]]]]]]]]]]]]]]]^^^^^^6^7^D^C^@^N^W^T^_^b^d^G^u^v^z^^^^^^^^^^^^^^^^^^^^^^^__	_]_\____)_-_8_A_H_L_N_/_Q_V_W_Y_a_m_s_w____________________`_`!`````)``1```+`&``:`Z`A`j`w`_`J`F`M`c`C`d`B`l`k`Y`````````````````_````aMaa``a ``aa!``aaaGa>a(a'aJa?a<a,a4a=aBaDasawaXaYaZakataoaeaqa_a]aSauaaaaaaaaaaaaaaaaaaayaaaaaaaaaab bb	bbbbbb!b*b.b0b2b3bAbNb^bcb[b`bhb|bbb~bbbbbbbbbbbbdbbbbbbbbcbbc'ccbbcPc>cMdcOcccccvcccccckcicccccccccdd4ddd&d6edd(ddgdodvdNe*ddddddddddddddd	ddbdde,dddde deeee$e#e+e4e5e7e6e8uKeHeVeUeMeXe^e]erexeeeeeeeeeeeeeeeeegrf
fegsf5f6f4ffOfDfIfAf^f]fdfgfhf_fbfpffffffffffffffffff?fffffgggg&g'8g.g?g6gAg8g7gFg^g`gYgcgdggpgg|gjgggggggggggggggggggggjhhFh)h@hMh2hNhh+hYhchwhhhhhhhhjhhthhhihh~ihihi"i&hihhhhi6iihhi%hhhi(i*ii#i!hiyiwi\ixikiTi~ini9iti=iYi0iai^i]iijiiiiiiii[iiiiij.iiiiiiijjik
iiijijijij
jjj#jjDjjrj6jxjGjbjYjfjHj8j"jjjjjjjjjjjjjjjjjjjjkjkk1kk8k7vk9kGkCkIkPkYkTk[k_kakxkykkkkkkkkkkkkkkkkkkkkkkkkklllll$l#l^lUlbljllllll~lhlslllllllllllllllllmMm6m+m=m8mm5m3mmmcmmdmZmymYmmommnn
mmmmmmmmmmmmmmmmmn-nnn.nnrn_n>n#nkn+nvnMnnCn:nNn$nnn8nnnnnnnnnnnnnnnnoAopLnnno?no1no2no>onoozoxooooo[oomoo|oXoooofooooooooooooooop	popppoppotpppp0p>p2pQpcppppppppppppq	pqqqeqUqqfqbqLqVqlqqqqqqqqqqqqqqqqqqqqrrrr(r-r,r0r2r;r<r?r@rFrKrXrtr~rrrrrrrrrrrrrrrrrrrPss
ssss4s/s)s%s>sNsOsWsjshspsxsus{szsssssssstttot%st2t:tUt?t_tYtAt\titptctjtvt~ttttttsttttttttttuuuuuuuuuu&u,u<uDuMuJuIu[uFuZuiudugukumuxuvuuutuuuuuuuuuuuuuuuuuuuuuuuuuvuuuuvvv	vv'v v!v"v$v4v0v;vGvHvFv\vXvavbvhvivjvgvlvpvrvvvxv|vvvvvvvvvvvvvvvvvvvvvvv/vwwww)w$ww%w&ww7w8wGwZwhwkw[weww~wywwwwwwwwwwwwwwwwwwwwxxy&x y*xExxtxx|xxxxxxxxxxxxxxxxxxxyyyyy,y+y@y`yWy_yZyUySyzyyyyKyyyyyyyyyyyzzzzz zyz1z;z>z7zCzWzIzazbzizpzyz}zzzzzzzzzzzzzzzzzzzzzzzzzz{{{
{{3{{{{5{({6{P{z{{M{{L{E{u{e{t{g{p{q{l{n{{{{{{{{{{]{{{{{{{{{||{{|`| ||{{||{|#|'|*||7|+|=|L|C|T|O|@|P|X|_|d|V|e|l|u|||||||||||||||||||||;|||||}}}}}
}E}K}.}2}?}5}F}s}V}N}r}h}n}O}c}}}[}}}}}}}}}}}~=}}}}}}}}}}}}}~~
~#~!~~1~~	~~"~F~f~;~5~9~C~7~2~:~g~]~V~^~Y~Z~y~j~i~|~{~}~}~~~~~~~~~~~~8:ELMNPQUTX_`higxq܀!(?;JFRXZ_bhsrpvy}Qۀـ݀Āڀց	)#/KF>SQqneft_Ɂ́сف؁ȁځ߁
)+83@YX]Z_dbhjk.qwx~߂҂ރ܃	ك5421@9PE/+#|su΃؄" 8m*<ZwkniF,oy5ʄbل̈́ڄЄƄք!,@cXHAKUmꅇw~ɅυЅՅ݅܅
"0?MNUT_gqĆƆɈ#Ԇކ߆ۆ 	
4?7;%)`_xLNtWhnYScjˇЖևćǇƇ҈"!169';DBRY^bk~u}rÈĈԈ؈و݈
C%*+AD;68L`^fdmjotw~ډ܉݉%6A[RFH|mlbĊ͊ڊފۋ 3&+>(ALONIV[Zk_lot}:A?HLNPUblxz|bȌڌ
N͍gmqsύڍ֍̍ۍˍߍ	B504JGILPHYd`*cUvr|ƎŎȎˎێ
&3;9EB>LIFNW\bcdڏ!'659OPQRI>VX^hovr}bHۑ20JVXceisrɑˑБ֑ߑۑ,^WEIdH?KPZϒD."#:5;\`|nV֓דؓÓݓГȓ6+5!:ARD[`b^j)puw}Z|~oÕ͕̕Օԕ֕ܕ!(./BLOKw\^]_frlΖ˖ɖ͉MܗՖ$*09=>DFHBI\`dfhRҗkqy|z×Ɨȗ˗ܗOzߗ8$!7=FOKkopqtsĘØƘ	!$ ,.=>BIEPKQRLUߙۙݙؙљ+7EB@C>UM[W_bedikjϚњӚԚޚߚ"#%'()*./2DCOMNQXtʛƛϛћқԛ:	
.%$!0G2F>Z`gvx	*&#DA?>FH]^dQPYrozĝƝϝٝӝuy}a̞ΞϞОԞܞޞݞv!,>JRTc_`afgljwrvX/iǐYtdQq   ~       !" !	
RSTUVWXYZ[\^_ &2A?J Rf   '138B@IK S g         
    " $    0*.(469=;CGE     PL TXVZ\`^db    lpjrnht xvy}{      	     !%    +/)57:><DHF     QM UYW[]a_ec    mqksoiu  wz~|NNNNNNN#N$N(N+N.N/N0N5N@NANDNGNQNZN\NcNhNiNtNuNyNNNNNNNNNNNNNNNNNNNNNNO OOOOOOOOOOO.O1O`O3O5O7O9O;O>O@OBOHOIOKOLOROTOVOXO_OcOjOlOnOqOwOxOyOzO}O~OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOP PPPP
PPPPPPPPPPP"P'P.P0P2P3P5P@PAPBPEPFPJPLPNPQPRPSPWPYP_P`PbPcPfPgPjPmPpPqP;PPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPQQQQQQQQPQQQQQQQQ#Q'Q(Q,Q-Q/Q1Q3Q4Q5Q8Q9QBQJQOQSQUQWQXQ_QdQfQ~QQQQQQQQQQQQQQQQQQQQQQQQQQQQQQRRRRRRRRR"R(R1R2R5R<RERIRURWRXRZR\R_R`RaRfRnRwRxRyRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRS SS
SSSSSSSSSS%S'S(S)S+S,S-S0S2S5S<S=S>SBSLSKSYS[SaScSeSlSmSrSyS~SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSTTTT!T'T(T*T/T1T4T5TCTDTGTMTOT^TbTdTfTgTiTkTmTnTtTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTU UUUU	UUUUU*U+U2U5U6U;U<U=UAUGUIUJUMUPUQUXUZU[U^U`UaUdUfUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUVVV
VVVVVVVV,V0V3V5V7V9V;V<V=V?V@VAVCVDVFVIVKVMVOVTV^V`VaVbVcVfViVmVoVqVrVuVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVWWWW
WWWWWWW W"W#W$W%W)W*W,W.W/W3W4W=W>W?WEWFWLWMWRWbWeWgWhWkWmWnWoWpWqWsWtWuWwWyWzW{W|W~WWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWXXXX	WXXXXXX X&X'X-X2X9X?XIXLXMXOXPXUX_XaXdXgXhXxX|XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXYYYYYYYAYY!Y#Y$Y(Y/Y0Y3Y5Y6Y?YCYFYRYSYYY[Y]Y^Y_YaYcYkYmYoYrYuYvYyY{Y|YYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYZ ZZZZZZZZ#Z$Z'Z(Z*Z-Z0ZDZEZGZHZLZPZUZ^ZcZeZgZmZwZzZ{Z~ZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZ[ [[[[4[[[[![%[-[8[A[K[L[R[V[^[h[n[o[|[}[~[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[\\\\\#\&\)\+\,\.\0\2\5\6\Y\Z\\\b\c\g\h\i\m\p\t\u\z\{\|\}\\\\\\\\\\\\\\\\\\\\\\\\\]]]]]+]#]$]&]']1]4]9]=]?]B]C]F]H]U]Q]Y]J]_]`]a]b]d]j]m]p]y]z]~]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]^ ^^^^^^^^ ^.^(^2^5^>^K^P^I^Q^V^X^[^\^^^h^j^k^l^m^n^p^^^^^^^^^^^^^^^^^^^^^^^^^^_________!_"_#_$_(_+_,_._0_4_6_;_=_?_@_D_E_G_M_P_T_X_[_`_c_d_g_o_r_t_u_x_z_}_~________________________________________``
````````$`-`3`5`@`G`H`I`L`Q`T`V`W`]`a`g`q`~``````````````````````````````````````````aaa
aaaaaaaaaaaa"a*a+a0a1a5a6a7a9aAaEaFaIa^a`alaraxa{a|aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabbbbbbbb b"b#b'b)b+b9b=bBbCbDbFbLbPbQbRbTbVbZb\bdbmbobsbzb}bbbbbbbbbbbbbbbbbbbbbbccc
ccccccc)c*c-c5c6c9c<cAcBcCcDcFcJcKcNcRcScTcXc[cecfclcmcqctcucxc|c}cccccccccccccccccccccccccccccccccccd	d
dddddd d"d$d%d)d*d/d0d5d=d?dKdOdQdRdSdTdZd[d\d]d_d`dadcdmdsdtd{d}dddddddddddddddddddddddddddddddddddddddeeee	e
eeeeeeeee"e&e)e.e1e:e<e=eCeGeIePeReTe_e`egekeze}eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeef fff	ffffffff!f"f#f$f&f)f*f+f,f.f0f1f3f9f7f@fEfFfJfLfQfNfWfXfYf[f\f`faffjfkflf~fsfuffwfxfyf{ff|fffffffffffffffffffffffffffffffffggggggg g"g3g>gEgGgHgLgTgUg]gfglgngtgvg{gggggggggggggggggggggggggggggggggghRhhhhh(h'h,h-h/h0h1h3h;h?hDhEhJhLhUhWhXh[hkhnhohphqhrhuhyhzh{h|hhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhii	i
iiiiii1i3i5i8i;iBiEiIiNiWi[icidieifihiiilipiqirizi{iiiiiiiiiiiiiiiiiiiiiiiiiiiiiij jjjjjjjj j$j(j0j2j4j7j;j>j?jEjFjIjJjNjPjQjRjUjVj[jdjgjjjqjsj~jjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjkkkkk	kkkkkkk$k(k+k,k/k5k6k;k?kFkJkMkRkVkXk]k`kgkkknkpkuk}k~kkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkllll	lllllll&l'l(l,l.l3l5l6l:l;l?lJlKlMlOlRlTlYl[l\lklmloltlvlxlyl{llllllllllllllllllllllllllllllllmmm
mmmmmm&m'm(lgm.m/m1m9m<m?mWm^m_mamemgmompm|mmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmn nnn"n'n2n6n9n;n<nDnEnHnInKnOnQnRnSnTnWn\n]n^nbncnhnsn{n}nnnnnnnnnnnnnnnnnnnnnnnnnnooo
ooooooo&o)o*o/o0o3o6o;o<o-oOoQoRoSoWoYoZo]o^oaoboholo}o~ooooooooooooooooooooooooooooooooooooop pppppp p#p/p4p7p9p<pCpDpHpIpJpKpTpUp]p^pNpdpeplpnpupvp~pppppppppppppppppppppppppqqqqqqqqqq q+q-q/q0q1q8qAqEqFqGqJqKqPqRqWqZq\q^q`qhqyqqqqqqqqqqqqqqqqqqqqqqqqqqqr rrr	rrrrrr$r+r/r4r8r9rArBrCrErNrOrPrSrUrVrZr\r^r`rcrhrkrnrorqrwrxr{r|rrrrrrrrrrrrrrrrrrrrrrrrrrrssssssssssss"s$s's(s,s1s2s5s:s;s=sCsMsPsRsVsXs]s^s_s`sfsgsiskslsnsosqswsys|ssssssssssssssssssssssssssssssssssssssssssssssssssst tttt
tttt$t&t(t)t*t+t,t-t.t/t0t1t9t@tCtDtFtGtKtMtQtRtWt]tbtftgthtktmtntqtrtttttttttttttttttttttttttttttttttttttttttttttttttttuuuuu u!u$u'u)u*u/u6u9u=u>u?u@uCuGuHuNuPuRuWu^u_uauouquyuzu{u|u}u~uuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuv vvvvvv
vvvvvvvvvvvv#v%v&v)v-v2v3v5v8v9v:v<vJv@vAvCvDvEvIvKvUvYv_vdvevmvnvovqvtvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvw ww
wwwwwwwww"w(w-w.w/w4w5w6w9w=w>wBwEwFwJwMwNwOwRwVwWw\w^w_w`wbwdwgwjwlwpwrwswtwzw}wwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwxxx	xxxxx!x"x#x-x.x0x5x7xCxDxGxHxLxNxRx\x^x`xaxcxdxhxjxnxzx~xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxy xxxxxyyyyyyyy y%y'y)y-y1y4y5y;y=y?yDyEyFyJyKyOyQyTyXy[y\ygyiykyryyy{y|y~yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyzzzz	z
zzzzzz!z'z+z-z/z0z4z5z8z9z:zDzEzGzHzLzUzVzYz\z]z_z`zezgzjzmzuzxz~zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz{{{{#{'{){*{+{-{.{/{0{1{4{={?{@{A{G{N{U{`{d{f{i{j{m{o{r{s{w{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{||||||	||||||| |%|&|(|,|1|3|4|6|9|:|F|J|U|Q|R|S|Y|Z|[|\|]|^|a|c|g|i|m|n|p|r|y|||}|||||||||||||||||||||||||||||||}}}}	}}}}}}}}#}&}*}-}1}<}=}>}@}A}G}H}M}Q}S}W}Y}Z}\}]}e}g}j}p}x}z}{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}~ }}}}}}}}}}}~~~~~~~~ ~'~(~,~-~/~3~6~?~D~E~G~N~P~R~X~_~a~b~e~k~n~o~s~x~~~~~~~~~~~~~<;=>?CDGORS[\]acdefmq}~
 $&,.04579:<>@D`dfmquȀ̀πҀԀՀ׀؀ $',05:<EGJLRW`aghimowˁÁŁʁ΁ρՁׁہ݁ށ !"(24:CDEFKNOQV\`cgmt{}ƂЂՂڂ 
T!",-.037:<=BCDGMNQUVWpx}ǃɃσЃуԃ݃S
/9EGHJMOQRVXYZ\`degjpstvx|}ǄȄ̄τӄ܄2"#$%'*+/346?FOPQRSVY\]^_`abdkoyz{}ǅʅ˅΅؅څ߅ !')68:<=@BFRSVWXY]`abcdilouvwzÆņц҆Ն׆چ܆熈!#(./129:<=>@CEMX]adeoqr{ȇɇʇ·Շևهڇ܇߇	
(-.025:<ACEHIJKNQUVXZ\_`diqy{ʈˈ͈̈Έш҈ӈۈވ &'(01259:>@BEFIORWZ[\abcknpsuz{|}ԉՉ։׉؉ "$&+,/57=>@CEGIMNSVWX\]aeguvwyz{~ÊƊȊɊʊъӊԊՊ׊݊ߊ
-07<BCDEFHRSTYM^cmvxy|~89=>EGIKOQSTWX[]Ycdfhimsuv{~ŌƌɌˌό֌Ռٌ݌	eilnōƍǍȍʍ΍эԍՍ׍ٍ !"#&'136789=@AKMNOT[\]^abilmopqyz{ÎĎǎώюԎ܎  !#%'(,-.4567:@ACGOQRSTUX]^eƏʏˏ͏ЏҏӏՏ()/*,-347?CDL[]bfglpty̐ÐĐŐǐȐՐאِؐܐݐߐҐ  %"#')./14679:<=CGHOSWYZ[adgmtyz{Ñőӑԑבّڑޑ 	
#$%&(./035689:<>@BCFGJMNOQXY\]`aeghinopuvwxy{|}ÒŒƒǒȒ˒̒͒ΒВӒՒגْؒܒݒߒ !$%')*3467GHIPQRUWXZ^degijmopqstvz}ēœƓǓɓʓ˓͓̓ӓٓܓޓߓ	./1234;?=CEHJLUY\_achkmnoqrxy~ƕȕɕ˕Еѕҕӕٕڕݕޕߕ"$%&,13789:<=ARTVWXant{|~ʖ]ؖږݖޖߖ	!"#(13ACJNOUWXZ[cgjnsvwx{}ėŗǗɗʗ̗͗ΗЗїԗחؗٗݗޗۗ
 #&+./0235%>DGJQRSVWYZbcefjlŘȘ̘"&'+123459:;<@AFGHMNTXY[\^_`Ùəәԙٙڙܙޙ "#$'-.3568GADJKLNQTV]ÚƚȚΚКҚ՚֚ךۚܚ 	 &+-34579:=HKLUVW[^acefhjklmnsuwxyǛțΛЛכ؛ݛߛ "#&'()*1567=ACDEIJNOPSTVX[]^_cij\khnpruw{/0234:<E=BCGJST_cbeijkpvw{|~Ýǝɝʝԝ՝֝םڝޝߝ
z{|ƞȞ˞՞ߞ	"&*+/12479:<=?ACDEFGSUVWXZ]^himnopqsuz}PK     N\0q0  0    Parser/Encodings/iso-8859-9.encnu 6$        ISO-8859-9                                                                 	   
                                                                      !   "   #   $   %   &   '   (   )   *   +   ,   -   .   /   0   1   2   3   4   5   6   7   8   9   :   ;   <   =   >   ?   @   A   B   C   D   E   F   G   H   I   J   K   L   M   N   O   P   Q   R   S   T   U   V   W   X   Y   Z   [   \   ]   ^   _   `   a   b   c   d   e   f   g   h   i   j   k   l   m   n   o   p   q   r   s   t   u   v   w   x   y   z   {   |   }   ~                                                                                                                                                                                           0  ^                                                                                           1  _   PK     N\*0  0  !  Parser/Encodings/windows-1250.encnu 6$        windows-1250                                                               	   
                                                                      !   "   #   $   %   &   '   (   )   *   +   ,   -   .   /   0   1   2   3   4   5   6   7   8   9   :   ;   <   =   >   ?   @   A   B   C   D   E   F   G   H   I   J   K   L   M   N   O   P   Q   R   S   T   U   V   W   X   Y   Z   [   \   ]   ^   _   `   a   b   c   d   e   f   g   h   i   j   k   l   m   n   o   p   q   r   s   t   u   v   w   x   y   z   {   |   }   ~            &       !   0  `   9  Z  d  }  y               "        !"  a   :  [  e  ~  z         A                   ^           {          B                   _     =    >  |  T             9                             C  G        P        X  n     p        b     U             :                             D  H        Q        Y  o     q        c  PK     N\:\    '  Parser/Encodings/Japanese_Encodings.msgnu 6$        Mapping files for Japanese encodings

1998 12/25

Fuji Xerox Information Systems
MURATA Makoto

1.  Overview

This version of XML::Parser and XML::Encoding does not come with map files for
the charset "Shift_JIS" and the charset "euc-jp".  Unfortunately, each of these 
charsets has more than one mapping.  None of these mappings are
considered as authoritative.

Therefore, we have come to believe that it is dangerous to provide map files
for these charsets.  Rather, we introduce several private charsets and map
files for these private charsets.  If IANA, Unicode Consoritum, and JIS
eventually reach a consensus, we will be able to provide map files for
"Shift_JIS" and "euc-jp".

2. Different mappings from existing charsets to Unicode

1) Different mappings in JIS X0221 and Unicode

The mapping between JIS X0208:1990 and Unicode 1.1 and the mapping
between JIS X0212:1990 and Unicode 1.1 are published from Unicode
consortium.  They are available at 
ftp://ftp.unicode.org/Public/MAPPINGS/EASTASIA/JIS/JIS0208.TXT and 
ftp://ftp.unicode.org/Public/MAPPINGS/EASTASIA/JIS/JIS0212.TXT, 
respectively.)  These mapping files have a note as below:

#   The kanji mappings are a normative part of ISO/IEC 10646.  The
#       non-kanji mappings are provisional, pending definition of
#       official mappings by Japanese standards bodies.

Unfortunately, the non-kanji mappings in the Japanese standard for ISO 10646/1,
namely JIS X 0221:1995, is different from the Unicode Consortium mapping since
0x213D of JIS X 0208 is mapped to U+2014 (em dash) rather than U+2015
(horizontal bar).  Furthermore, JIS X 0221 clearly says that the mapping is
informational and non-normative.  As a result, some companies (e.g., Microsoft and
Apple) have introduced slightly different mappings.  Therefore, neither the
Unicode consortium mapping nor the JIS X 0221 mapping are considered as
authoritative.

2) Shift-JIS

This charset is especially problematic, since its definition has been unclear
since its inception.

The current registration of the charset "Shift_JIS" is as below:

>Name: Shift_JIS  (preferred MIME name)
>MIBenum: 17
>Source: A Microsoft code that extends csHalfWidthKatakana to include 
>       kanji by adding a second byte when the value of the first 
>       byte is in the ranges 81-9F or E0-EF.
>Alias: MS_Kanji 
>Alias: csShiftJIS

First, this does not reference to the mapping "Shift-JIS to Unicode" 
published by the Unicode consortium (available at
ftp://ftp.unicode.org/Public/MAPPINGS/EASTASIA/JIS/SHIFTJIS.TXT).

Second, "kanji" in this registration can be interepreted in different ways.
Does this "kanji" reference to JIS X0208:1978, JIS X0208:1983, or JIS
X0208:1990(== JIS X0208:1997)?  These three standards are *incompatible* with
each other.  Moreover, we can even argue that "kanji" refers to JIS X0212 or
ideographic characters in other countries.

Third, each company has extended Shift JIS. For example, Microsoft introduced
OEM extensions (NEC extensionsand IBM extensions).

Forth, Shift JIS uses JIS X0201, which is almost upper-compatible with US-ASCII
but is not quite.  5C and 7E of JIS X 0201 are different from backslash and 
tilde, respectively.  However, many programming languages (e.g., Java) 
ignore this difference and assumes that 5C and 7E of Shift JIS are backslash 
and tilde.


3.  Proposed charsets and mappings

As a tentative solution, we introduce two private charsets for EUC-JP and four
priviate charsets for Shift JIS.

1) EUC-JP

We have two charsets, namely "x-eucjp-unicode" and "x-eucjp-jisx0221".  Their 
difference is only one code point.  The mapping for the former is based 
on the Unicode Consortium mapping, while the latter is based on the JIS X0221 
mapping.

2) Shift JIS

We have four charsets, namely x-sjis-unicode, x-sjis-jisx0221, 
x-sjis-jdk117, and x-sjis-cp932.

The mapping for the charset x-sjis-unicode is the one published by the Unicode
consortium.  The mapping for x-sjis-jisx0221 is almost equivalent to
x-sjis-unicode, but 0x213D of JIS X 0208 is mapped to U+2014 (em dash) rather
than U+2015.  The charset x-sjis-jdk117 is again almost equivalent to
x-sjis-unicode, but 0x5C and 0x7E of JIS X0201 are mapped to backslash and
tilde.

The charset x-sjis-cp932 is used by Microsoft Windows, and its mapping is
published from the Unicode Consortium (available at:
ftp://ftp.unicode.org/Public/MAPPINGS/VENDORS/MICSFT/WINDOWS/CP932.txt).  The
coded character set for this charset includes NEC-extensions and
IBM-extensions.  0x5C and 0x7E of JIS X0201 are mapped to backslash and tilde;
0x213D is mapped to U+2015; and 0x2140, 0x2141, 0x2142, and 0x215E of JIS X
0208 are mapped to compatibility characters.

Makoto
 
Fuji Xerox Information Systems
 
Tel: +81-44-812-7230   Fax: +81-44-812-7231
E-mail: murata@apsdc.ksp.fujixerox.co.jp
PK     N\      Parser/Encodings/euc-kr.encnu 6$        EUC-KR                                   }F                               	   
                                                                      !   "   #   $   %   &   '   (   )   *   +   ,   -   .   /   0   1   2   3   4   5   6   7   8   9   :   ;   <   =   >   ?   @   A   B   C   D   E   F   G   H   I   J   K   L   M   N   O   P   Q   R   S   T   U   V   W   X   Y   Z   [   \   ]   ^   _   `   a   b   c   d   e   f   g   h   i   j   k   l   m   n   o   p   q   r   s   t   u   v   w   x   y   z   {   |   }   ~   }                  ?                                A }                                        A;                                        A                                        A                                        Au                                        A3                                        A                                        A                                        Am                                        A+                                        A                                        A                                        A	e                                        A
#                                        A
                                        A                                        A]                                        A                                        A                                        A                                        AU                                        A                                        A                                        A                                        AM                                        A                                        A                                        A                                        AE                                        A                                        A                                        A                                        A=                                        A                                        ?   A                                        A^                                        A                                        A                                           Ax                                          A'                                        _A                                        A                                         AV                                         A                                           A`                                                    A`!                                                   A`!}                                                   A!                                        A"                                        A#Y                                        A$                                        A$                                        A%                                        A&Q                                        A'                                        A'                                        A(                                        A)I                                        A*                                        A*                                        A+                                        A,A                                        A,                                        A-                                        A.{                                        A/9                                        A/                                        A0                                        A1s                                        A21                                                 ^2                                                    ^3M                                                    ^3                                                    ^4	                                                    ^4g                                                    ^4                                                    ^5#                                                    ^5                                                    ^5                                                    ^6=                                                    ^6                                                    ^6                                                    ^7W                                                    ^7                                                    ^8                                                    ^8q                                                    ^8                                                    ^9-                                                    ^9                                                    ^9                                                    ^:G                                                    ^:                                                    ^;                                                    ^;a                                                    ^;                                                    ^<                                                    ^<{                                                    ^<                                                    ^=7                                                    ^=                                                    ^=                                                    ^>Q                                                    ^>                                                    ^?                                                    ^?k                                                    ^?                                                    ^@'                                                    ^@                                                    ^@                                                    ^AA                                                    ^A                                                    ^A                                                    ^B[                                                    ^B                                                    ^C                                                    ^Cu                                                    ^C                                                    ^D1                                                    ^D                                                    ^D                                                    ^EK                                                    ^E                                                    ^F                                                    ^Fe                                                             	 
                        ! " # $ % & ' ( ) * + , - . / 0 1 2 3 4 5 6 7 8 9 : ; < = > ? @ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z [ \ ] ^ _ ` a b c d e f g h i j k l m n o p q r s t u v w x y z { |!"#%&'()*+.234567:;=>?ABCDEFGHIJLNOPQRSUVWYZ[]^_`abcdefghijklmnorsuvy{|}~¬ìŬƬǬɬʬˬͬάϬЬѬҬӬԬ֬ج٬ڬ۬ܬݬެ߬	
!"#$%&'(*+./0123679:;=>?@ABCFHJKLMNOQRSUVWYZ[\]^_`bdefghijknoqrwxyz~­íŭƭǭɭʭ˭̭ͭέϭҭԭխ֭׭ح٭ڭۭݭޭ߭
 !"#$%&'()*+,-./23569;<=>?BDGHIKOQRSUWXYZ[^bcdfgjkmnoqrstuvwz~®îŮƮǮȮɮʮˮήҮӮԮծ֮׮ڮۮݮޮ߮ 	
 !"#$%&'()*+./1356789:;>@DEFGJKLMNOQRSTUVWXYZ[^_`abcfghijklmnopqrstuvwxz{|}~¯ïįůƯʯ̯ϯЯѯүӯկ֯ׯدٯگۯݯޯ߯	
 !"#$%&')*+,-./0123456789:;<=>?@ABCFGIKMOPQRVXZ[\^_`abcdefghijklmnopqrstuvwxyz{~°ðưʰ˰̰ͰΰϰӰհְװٰڰ۰ܰݰް߰ 
 !"&')*+-./01236:;<=>?BCEFGIJKLMNORSVWYZ[]^_abcdefghijklmnopqrstuvwz{}~±ñıűƱǱȱɱʱ˱ͱαϱѱұӱֱױرٱڱ۱ޱ 	
!"#$%&'()*+,-./012356789:;=>?@ABCDEFGHIJKLMNOPQRSTUVWYZ[]^_abcdefgjklmnopqrsvwxyz{}~²òĲŲƲǲʲ˲ͲβϲѲӲԲղֲײڲܲ޲߲	
 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSWYZ]`abcfhjlmorsuvwyz{|}~³óƳǳɳʳͳϳѳҳӳֳسڳܳ޳߳ 	
!"#$%&'*,-./012356789:;<=>?@ABCDEFGHIJKLMNORSUVWYZ[\]^_bdfghijkmnopqrstuvwxyz{|}~´ôŴƴǴɴʴ˴̴ʹδϴѴҴӴԴִ״شٴڴ۴޴ߴ 	
 !"#&+,-./235679:;<=>?BFGHIJNOQRSUVWXYZ[^bcdefghijklmnopqrstuvwxyz{|}~µõŵƵǵȵɵʵ˵εҵӵԵյֵ׵ٵڵ۵ܵݵ޵ߵ 	
 !"#$&'()*+-./012356789:;<=>?@ABCDEFGIJKLMNOPQRSTUVWXYZ[\]^_`abcefgijklmnopqrstuvwxyz{|}~¶öĶŶƶǶȶɶʶ˶̶Ͷζ϶жѶҶӶնֶ׶ضٶڶ۶ܶ޶߶	
 !"#$%&'*+-.1234567:<=>?@ABCEFGIJKMNOPQRSVWXYZ[\]^_abcefgijklmnortvwxyz{~·÷ķŷƷȷʷ˷̷ͷηϷзѷҷӷԷշַ׷طٷڷ۷ܷ޷߷
 !"#&')*+-./01236:;<=>?ABCEFGHIJKLMNOPRTUVWXYZ[^_abcefghijknprstuvwyz{}~¸ĸƸǸȸɸʸ˸͸θϸѸҸӸոָ׸ظٸڸ۸ܸ޸ 	
!"#$%&'()*+,-./0123456789:;>?ABCEFGHIJKMNPRSTUVWZ[]^_abcdefgjlnopqrsvwyz{}~¹ùĹŹƹǹʹ˹͹ӹԹչֹ׹ڹܹ߹	
 !"#$%&'()*+,-./01234567:;=>?ACDEFGJLOPQRVWYZ[]^_`abcfjklmnorsuvwyz{|}~ºúźƺǺɺʺ˺̺ͺκϺкѺҺӺԺպֺ׺ںۺܺݺ޺ߺ	
!"#$%&'(*,-./012379:?@ABCFHJKLNQRSUVWYZ[\]^_`bdefghijkmnopqrstuvwxyz{|}~»ûŻƻǻɻʻ˻̻ͻλϻѻһԻջֻ׻ػٻڻۻܻݻ޻߻
 !"#&(*+,./235679:;<=>?BFGHJKNOQRSTUVWXYZ[\^_`abcdefghijklmnopqrstuvwxyz{|}~¼üżƼǼȼɼʼ˼̼μҼӼԼּ׼ټڼۼݼ޼߼ 
 !"#%&'()*+-./0123456789:;<=>?ABCDEFGJKMNOQRSTUVWZ[\]^_`abcefgijklmnopqrstuvwxyz{|}~½ýĽŽƽǽȽɽʽ˽̽ͽνϽнѽҽӽֽ׽ٽڽ۽ݽ޽߽	
 !"#$%&'()*+,-./0123456789:;<=>?@ABCFGIJKMOPQRSVX\]^_bcefgiklmnorvwxyz~¾þľžƾǾȾɾʾ˾̾;ξϾҾվ־پھ۾ܾݾ޾߾ 
 !"#$%&'()*+,-./0123456789:;<=>?BCEFGIJKLMNORSTVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~¿ÿĿƿǿȿɿʿ˿οϿѿҿӿտֿ׿ؿٿڿۿݿ޿ 	
 !"#$%&'()*+,-./0123456789:;=>?@ABCDEFGHIJKLMNOPRSTUVWYZ[]^_abcdefgjklmnopqrstuvwxyz{|}~	
!"%()*+.23457:;=>?ABCDEFGJNOPQRSVWYZ[]^_`abcfjklmnoqrsuvwyz{|}~	
!"#$%&'*,.0356789:;<=>?@ABCDEFGIJKLMNORSUVWYZ[\]^_abcdfghijknoqrsuvwxyz{~ ¡¢£¦§©ª«®¯°±²³¶¸º»¼½¾¿
 !"#&'*+,-./0123456789:;<=>?@ABCDFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefgjkmnoqstuvwz{~ÀÁÂÃÅÆÇÉÊËÍÎÏÐÑÒÓÔÕÖ×ØÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ 	
 !"#%&'()*+-./12356789:;>?@ABCDEFGIJKLMNOPQRSTUVWXYZ[\]^_`abcfgijkmnopqrsvwxz{|}~āĂăĄąĆćĈĉĊċČčĎďĐđĒēĕĖėĘęĚěĝĞğĠġĢģĤĥĦħĨĩĪīĬĭĮįİıĲĳĴĵĶķĹĺĻĽľĿ	
 !"#$%&'*+-./1234567:<>?@ABCFGKOPQRVZ[\_bcefgijklmnorvwxyz{~ŁłŃŅņňŉŊŋŎŐŒœŔŖřŚśŝŞşšŢţŤťŦŧŨŪūŬŭŮůŰűŲųŶŷźſ	
 !"#&')*+/1268:<=>?BCEFGIJKLMNORVWXYZ[^_abcdefghijkmnprstuvwz{}~ƁƂƃƄƅƆƇƊƌƎƏƐƑƒƓƖƗƙƚƛƝƞƟƠơƢƣƦƨƪƫƬƭƮƯƲƳƵƶƷƻƼƽƾƿ 	
"#%&')*+,-./24689:;>?ABCEFGHIKNPYZ[]^_abcdefgijlmnopqrsvwyz{ǀǁǂǆǋǌǍǏǒǓǕǙǛǜǝǞǟǢǧǨǩǪǫǮǯǱǲǳǵǶǷǸǹǺǻǾ	!"#%&'()*+.02345679:;=>?ABCDEFGJKNOPQRSUVWXYZ[\]^_`abcdefghijklmnorsuvwy{|}~ȂȄȈȉȊȎȏȐȑȒȓȕȖȗȘșȚțȜȞȠȢȣȤȥȦȧȩȪȫȬȭȮȯȰȱȲȳȴȵȶȷȸȹȺȻȾȿ	
0 00  % & 0  "%<"<    0000	0
0000000   "`"d"e""4  2 3!!+&B&@" "#"""a"R  ;&&%%%%%%%%%%%!!!!!0"j"k""=""5"+","""""""*")"'"( !"#$%&'()*+-./012356789:;<=>?@ABCDEFGHIJKLMNORSUVWYZ[\]^_bdefghijkmno!!" " ^   "."" !	 0%%%%&d&`&a&e&g&c"%%%%%%%%%%%&h&&&&    !!!!!!&m&i&j&l22!3!"33!!qrsuvwxyz{}~ɀɁɂɃɄɅɆɇɊɋɍɎɏɑɒɓɔɕɖɗɚɜɞɟɠɡɢɣɤɥɦɧɨɩɪɫɬɭɮɯɰɱɲɳɴɵɶɷɸɹɺɻɼɽɾɿ	
 !"#$%&'()*+,-./0123456789:;=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]
 !"#$%&'(*+,-./0123456789:;<=>?@ABCDEF1112131415161718191:1;1<1=1>1?1@1A1B1C1D1E1F1G1H1I1J1K1L1M1N1O1P1Q1R1S1T1U1V1W1X1Y1Z1[1\1]1^1_1`1a1b1c1d1e1f1g1h1i1j1k1l1m1n1o1p1q1r1s1t1u1v1w1x1y1z1{1|1}1~1111111111111111GHIJKNOQRSUVWXYZ[^bcdefgijklmnopqrstuvwxyz{|~ʀʁʂʃʅʆʇʈʉʊʋʌʍʎʏʐʑʒʓʔʕʖʗʙʚʛʜʝʞʟʠʡʢʣʤʥʦʧ!p!q!r!s!t!u!v!w!x!y!`!a!b!c!d!e!f!g!h!iʨʩʪʫʬʭʮʯʰʱʲʳʴʵʶʷʸʹʺʻʾʿ 	
% %%%%%%%,%$%4%<%%%%%%%#%3%+%;%K% %/%(%7%?%%0%%%8%B%%%%%%%%%%%!%"%&%'%)%*%-%.%1%2%5%6%9%:%=%>%@%A%C%D%E%F%G%H%I%J"#$%&'()*+,-./0123456789:;<=>?@BCDEFGJKMNOQRSTUVWZ[\^_`abcefghijkl333!3333333333333333333333333333333333333333333333333333!&3333333333333333333333mnopqrstuvwz{|}~ˀˁ˂˃˄˅ˆˇˈˉˊˋˌˍˎˏːˑ˒˓˔˕˖˗˘˙˚˛˝˞˟ˠˡˢˣˤ˥˦˧˨˩˪˫ˬ˭ˮ˯˰˱˲˳˴˵˶˷˹˺˻˼˽˾˿   &2?A R  fJ2`2a2b2c2d2e2f2g2h2i2j2k2l2m2n2o2p2q2r2s2t2u2v2w2x2y2z2{$$$$$$$$$$$$$$$$$$$$$$$$$$$`$a$b$c$d$e$f$g$h$i$j$k$l$m$n !S!T  ![!\!]!^ 	
 #$  '138@B S  gKI2 222222222	2
22222222222222222$$$$$$$$$$$$$$$$$$$$$$$$$$$t$u$v$w$x$y$z${$|$}$~$$$$    t     %&*+-/1234567:?@ABCFGIJKMNOPQRSVZ[\]^_abcegijklmnoqrstvwxyz{|}~̀́̂̃̄̅̆̇̈̉̊̋̌̍̎̏̐̑̒̓0A0B0C0D0E0F0G0H0I0J0K0L0M0N0O0P0Q0R0S0T0U0V0W0X0Y0Z0[0\0]0^0_0`0a0b0c0d0e0f0g0h0i0j0k0l0m0n0o0p0q0r0s0t0u0v0w0x0y0z0{0|0}0~000000000000000000000̶̷̡̢̧̛̖̗̝̞̟̣̤̥̦̪̮̯̰̱̲̳̹̺̻̔̽̾̿̕̚00000000000000000000000000000000000000000000000000000000000000000000000000000000000000 
 !"#%&')*+-./012345678:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[]^_ !"#$%&'()*+,-./012345Q6789:;<=>?@ABCDEFGHIJKLMNOabcefghijknprstuvwyz{|}~͇͉͍͎̀́͂̓̈́͆͊͋͌ͅ͏͓͖͙͚͐͑͒͗͛ͣͦͨͪͫͬͭͮͯ͟͢͝͞͠͡ͱͲͳʹ͵Ͷͷ͸͹ͺͻͼͽ;Ϳ 	
"#%&')*+,-./246789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWZ[]^bcdefgjlnopqrsvwyz{}~΀΁΂΃ΆΈΊ΋Ό΍ΎΏΒΓΕΖΗΙΚΛΜΝΞΟ΢ΦΧΨΩΪΫήίΰαβγδεζηθικλμνξο 	
 $,-/0189<@KMTX\pqtwxzĬȬ̬լ׬ 	
!"#%&'()*+.2345679:;<=>?@ABCDEFGHIJKLMNOPQRSVWYZ[]^_`abcfhjkl ),-458<DEGIPTXaclmpstuv{|}ĭȭЭѭӭܭ 	01478:@ACEFJLMNPTV\]_`aehilpxmnorsuvwyz{|}~ρςστφχψωϊϋύώϏϐϑϒϓϔϕϖϗϘϙϚϛϜϝϞϟϠϢϣϤϥϦϧϩϪϫϬϭϮϯϱϲϳϴϵ϶ϷϸϹϺϻϼϽϾϿˮy{|}Į̮ͮϮЮѮخٮܮ,-024<=?ABCHIP\]deyǯȯɯ˯ͯίԯܯ (DEHJLNSTUWY	
 !"#$%&'()*+,]|}İŰǰȰɰаѰ԰ذ	#$%(,45789@ADHPQTUX\`xy|̱бԱܱ./0123679:;=>?@ABCFHJKLMNOQRSUVWYZ[\]^_abcdefghijknoqrsuvwxyz{~ЀЂЃЄЅІЇЈЉЊЋЌЍЎЏАБВГД߱ 4<X\`hitu|Ȳɲ̲вҲزٲ۲ݲ TUVX[\^_deЕЖЗИЙКЛМНОПРСТУЦЧЩЪЫЭЮЯабвгжиклмноп giknpqtxĳųȳ˳̳γгԳճ׳ٳ۳ݳ ()+4PQTX`acelĴȴдմܴݴ$%'()*0148	
 !"#$%&'()*+,-./235679;<=>?BFGHIJKNOQRSUVWXYZ[^`bcdefgijkm@ACDEKLMPT\]_`aĵ̵͵ϵеѵص%,4HdhԶ (),/089;DHLTU`dhpqsu|}nopqrstuvwxyz{}~рстухцчщъыьэюяѐёђѓєѕіїјљњћќѝўџѢѣѥѦѧѩѪѫѬѭѮѯѲѴѶѷѸѹѻѽѾѿϷǷɷ 	$%(,45789@DQS\]`dlmoqx|øŸ̸иԸݸ߸ <=@DLOQXY\`hi 
 !"#$%&'()kmtux|ȹɹ̹ιϹйѹҹعٹ۹ݹ޹ 89<@BHIKMNSTUX\deghipqtxĺȺغٺ*+./12356789:;>@BCDEFGIJKLMNOPQRSTUVWXYZ[]^_`abcefghijklmnopqrstuvwxyz{|}~҂҃҅҆҇҉ҊҋҌ  )+4568;<=>DEGIMOPTXaclĻȻлӻ 	$%')-0148@ACDEILMP]ҍҎҏҒғҔҖҗҘҙҚқҝҞҟҡҢңҥҦҧҨҩҪҫҭҮүҰҲҳҴҵҶҷҺһҽҾļͼϼмѼռؼܼ	$,@HILPXYdhԽսؽܽ DEHLNTUWYZ[`ad	
"#$&'*+-./1234567:>?@ABCFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghihjpqstu{|}оѾԾ׾ؾ	@ADHPQUſ̿ͿпԿܿ߿<QX\`hijklmnopqrstuvwxyz{~ӁӂӃӅӆӇӈӉӊӋӎӒӓӔӕӖӗӚӛӝӞӟӡӢӣӤӥӦӧӪӬӮӯӰӱӲӳӵӶӷӹӺӻӽӾӿ  #$&',-/01689<@HIKLMTUX\deghiptx  ()+- 	
 !"#$%&'()*+,-./01234567/124HPQTX`elmpt|}¤¥¨¬­´µ·¹ 	$%()Ehilprxy|}ÄÈÌ$,089:;<=>?ABCEFGHIJKLMNOPQRSTUVWXYZ[]^_abcefghijklnpqrstuvwz{}~ԁԃԄԅԆԇԊԌԎԏԐԑԒԓԕԖԗԘԙԚԛԜԝ4<=HdehltuyĀĔĜĸļ (),089;=DEHIJLMNSTUWXY]^`adhpqstu|}ŀńŇŌōŏőŕŗŘŜŠũŴŵŸŹŻżŽžԞԟԠԡԢԣԤԥԦԧԨԪԫԬԭԮԯ԰ԱԲԳԴԵԶԷԸԹԺԻԼԽԾԿ $%(,-.034579;@ADHPQSTU\]`loqxy|ƀƈƉƋƍƔƕƘƜƤƥƧƩưƱƴƸƹƺ 	
 !"#$%&'()*+,-./0123456789:;>?ABCEFGHIJKNPRSTUVWZ[]^_abc !$(01357<=@DJLMOQRSTUVWX\`hktux|}~ǃǄǅǇǈǉǊǎǐǑǔǖǗǘǚǠǡǣǤǥǦǬǭǰǴǼǽǿ 
dfgjlnopqrsvwyz{}~ՀՁՂՃՆՊՋՌՍՎՏՑՒՓՔՕՖ՗՘ՙ՚՛՜՝՞՟ՠաբգդզէըթժիլխծկհձղճմյնշոչպջռսվտ $,-/18<@HILMTpqtxzȀȁȃȅȆȇȋȌȍȔȝȟȡȨȼȽ ,4PQTX`aclpt|ɈɉɌɐɘəɛɝ	
!"#%&'()*+,./01234567:; 	)LMPT\]_`ah}ʄʘʼʽ !AHILPXY]dxy˜˸!"'(),.089;=>?ABCDFGJLNOPRSVWYZ[]^_`abcdefhjklmnorsuvwxyz{|}~րցւքֆևֈ։֊֋֎֏֑֖֛֢֣֤֥֦֧֪֚֒֓֕֗֘֙֜֞֠֩<=>DEHLTUWXY`dfhpų̴̵̸̘̙̜̠̩̫̬̭̼	$(,9\`dlmoqx͈͔͕ͤͥͧͩ͘͜Ͱ !$(0135ֱֲֳִֵֶַָֺּֽ֭֮֫֯־ֿ	
XY\_`ahikmtux|΄΅·ΉΐΑΔΘΠΡΣΤΥάέ  $,-/018TUX\degipqtxπυόϡϨϰ -458<!"#$%&'*,./0123679:;=>?@ABCEFHJKLMNORSUZ[\]^_bdfghjkmnoqrsuvwxyz{~׀ׂ׃ׅׄ׆ׇ׊׋DEGIPTX`lmpt|}ЁФХШЬдезй0148:@ACDELMPT\]_ahl|фшѠѡѤѨѰѱѳѵѺѼ	,-04<=?AH\׍׎׏בגדהוזחךלמןנסעףdҀҁ҄҈ҐґҕҜҠҤҬұҸҹҼҿ  !%(),089;<=DE|}ӀӄӌӍӏӐӑӘәӜӠӨөӫӭӴӸӼ@D\`dmoxy|ԀԂԈԉԋԍԔԩ<=@DLMOQXY\`ehikmtux|ՄՅՇՈՉՐե  $-89<@EHIKMQTUX\gipqtփօ֌֍֐ְֹֻ֔֝֟֡֨֬  ()+-458<DGIPQTVWXY`aceilpt|}ׁ׈׉׌אטיכםO=OsPGPRSTuTV	Z[fgggkLsuz<ۃW6ȍώR;StT`jadksρҕOR
XYxY^r^yacgFghovNwxzz|!nq땓NkUfn4xz[NRWNX*]Laab!ebgjDnuuvw}:QRS#\u2ے@R[XY\]^_:_Jawl_uzu|}s}T!AMGNNPQXOa7a>ahe9iouvv{ U[WQ|P(S\E]bcnddn py[ݎ}EN~NPe]^aiWqTGu+N^Pgph@Q	RRjwR`/PHacdh<joXr}ru}y~mtcQblzoT}P:#Q|aJ{WNOPPQRRSWpX^_avadelfoffhmpptttuxlxzz}E}?f8ZOUSX:YQ[c\F`bhBhhnuLvxxz=|~k~|?SSTJTqVY[d\;^be7eEerfgiluvw~z?1.ǘg؟Tefhz@7`VWd]fhhnt(lhOQlQqR[T]`P`mbce;szzN2[bgtyуӊNKF^iQ[[achk>pLt/t{Pŉܙ(R.`]bOQIS!X^fm8prs{P[SfckNVPXJX`*a'biЛA[}_NPTU[]]e*eNh!jKrvw}^NߏNʙUNNEN]NOQwRS@SSTVWuW[]^abeQggikPkklBnpxrstwwzv}	
߈b3dҚEןW\@ʗTzَ͐X \Hcz[_zyzP&R8RSwWbcrk
mw7SsWhvg:jopm̙Kfwkx<SW-YNcisxEzz|us5RWGuG{`̒jXQKRKRbhiuPRRaeh9it~{K뉲9љI	NYdfjt4yy~_
&OS`%bqlr}}fNQbw܀OOQvQUVhW;WWYYGY[\]]^~_beeggg^hhj_k:l#l}lmst&t*ttuxuxxyAyGyHyz{} }-OHw!$Qe}OvT	bhTUQ:ZabbfqV cOczSW!gi`ns"u7#$%}&'rVZ()*+,NC-QgYHg.Ys^tdy_`lbc{[[R/Yt_)`012tY3456789:;<=>?@ABCoDE`FGfHI\?JKLMNOPQZ%g{}RSTUVWXY\<lS?nY6N9NOFUWX_VeejknMwz|}ކˈ2[doszuTUVWMadfmn[omouCAǋZluS{T]UXXX^bbdhuv|ևNWWnY'\\^6_b4ds[_`PR R0WX5XW\\`\]^_`ccdhChjmn!noqvwyyz;HSMvkprXrshwcy{~X`efeflqqɌZNmzNQQRTagqhPhmo|uwzcQ\eg\guzǃsZF-\oAo_]jYqv{{I'0Ua[vi?\mps}a=]j^NSukkp>r-RL]Pde,ko|C~͉dbɁ؈^gmjrttoO]_
QcueNPQiQhj|||oҏOQ7RTB^anb>ejoy*܈#bjRfkwpy+bBab e#o#qIt}o&#JQRRmpȈ^eko|>suNO6V_\]`s{-΀F4HaOoyR`ddjo^prv\2ouxy}ɓX_g'p't|`~Q!p(rbxʌڌNP[^eqvBwJ|'XZA\bjmov;}/~78KRegimAnpt	t`uYv$xk,^Qmb.xOP+]m}*_aDhaRҀQQi^z}uOR)STU\e`gNhmlrrttbu|lyψ̑ЖTo~qtWgmt3x,z{ |ditjuxx虬T[^Uo NSMZ)]_Nabc=fifno+pcw,;E;Ubg+l	jzNY__g}T+WYZ[f'ghkqdu㐁EL@[_lsvv߄QQMQRhlww }}bnŅQTT}ffi'nvwiOQRY^=aUdxdyfgj!kkr_ratAw8wۀ (g(lrgvwfzFklY"g&SoXY^cf4gsn:s+zׂד(R]aab
bdeiYkfkq!su]~Fj'aXPRT;UOelv}
}^RlriTsZ\>]K_L_g*hicn<nDw	|sa\`aaeOeellss}ᕔ[ƇR]SZbddg4j8lst{|~6O4SJSSbd,e eiloXsuTv"vvxxy,}F,ԘRbdn$oQv|ˑbCP#PWJY\(^G_wb?e>eef	ginx}!+*2POcW_bcgonCqvÀ̀ڈ)MjO/Op^gh"v}v~D^aj
qiqujd~ACO{OpQ^hl>lNlr{ălt:PRXdjtvVx9eS^_R%wINPQu\[^wff:ghpuuyzݏ' OX!X1[fnkemnzo}su+܉\OPSS\[_gyy/9;g,NvOYI\\\cghpqt+~+"ҜNNOPRVRoT&TWY+Zf[Z[u[^fbvewemnnr6{&|?6PQ@tܖDٜSRT)VtXYTYn_abnfl~qv||}gO[__b])ghx|~ClNPSS*SQYZb^`abIbyegikkkklht5uxxyy|}ဥ>芹l^۟;V[*_lejkm\opr]sӘ;al7XNMNNNO:O<OOPSSUUVXYbZ[[\]^+_`cheegghk{lln#p	sExy>y@y`y{}}rцǈߊP^܍fߞRJigjPR*\qeclUsu#u{x0Nwdkq^N	kgIhnkcoN
PPQUFUV[@\\^8^^^`hQjanXr=r@rvye{ԈsaޗX^tUlza}"rrruu%m{XX]^^_`UbceMfffhhrt^{n}n}r͟ YYm^-`ffsglPmo_wxƑ˓+NPQHU[[bGe~en2q}ttDttvly}~Uz9ux%MSh\QiTlm)n+;-gRafk~]emqnWY[`'`bff_s)svw{lVreNRkrmz{9}0oSV/XQ[\\]b@cdf-hlmnppqu&uuv{{|+} }9,m4a7O\lg_m|~[k]d\s[`g~mފR7ppQxpOSUVWXZ[\\^%abbKcde6exj9kl4mo1qrsxttv&wayzWz|}}~a)1څꈖ8Bl֗ ӛSX~Y[p[moZqt!t]__`BehiojSkm5msvw{M}#@cbđbSe]]']it_hob҉6rNNXPRSGbf~i^OSV6YZ\8\N\M^_`Cef/fBggswy:ń͉fiUzW[_`obikn\q{҇UXߘO8OOT{Z [a<efhqu3y^}3Nヘ·
qY1[[`[\_lrmpuNSAslNOQRU^Z%\brYY?ř	]X
\]^D`acjn%TNw[\c	fOhHw<Te˕U5\]^fvLXbrΝ(NY.`f;ky&STW]afmx~DSb|cm~
KMjLN_P;QY`ci0r:6t_1uv}o厍wOoxyX[C`YceemfziJj#mpqluvyzp{|D}}~
W_eov yZlQabjPCX0_fq	 [|OQ<VYDcm]imQNOYYk_l]tyE9?]NW_yfu~yo[VX'YZ[^cPc;i=llmmmopq6qYqqxOxo{u}~/M[`mqSgpq0t0v}fqIXK]_qf fiyil8ln6oAopp/qPqspt[tvzN~`HNBP*RSflmos
wzb݆Ԋc}kNOOPSHT>T3UXbXYgZ[`aeVefdhlZopqsR{}2\KlsDs:ntevzi~
Q@Xdtuvp͙Tn&tzzهxZI[[hi mcstt,x}UL.f_egljsP-ZkjwY]l]s%uOPQX/Y-YY[]bdddfjHqtdzz~G~^ p YÐRa~k2mt~%OPQRWX[^aBimngnqtbu(u,s8Ɏ
NOQPvQ*SSS[[\$aaer[st@vyPyy}Ն^GꖅR_gef1h/q\z6
NjRkoqSK1NqQCSTWWWZZ[`(a?clm9nrnr0s?tWшE`ƖbXg^OMPIPSqWYZ\	apfn-r2tK}Äf?_[U˛ONsOQQjU/U[z[^|^}^``aa	ce8g	ggiaiblm'n8os6s7t\u1vR}8Պۊ0BJ>zIɓnX	kӀQAYk\9odsגۀbp}hW`iaGkNYTm-pcl㐑QaɁOPQ [aadikuwdcpNNO
Y7Y]__[`!r>supuy3Q茽p7vNNRSpTVY[__nn}j5mwN OZO~Xen8NXYY`AzOQeSDNRi[UNR:TYY[P[W[\`caHnpqnstux}+(ɊǖO\RVef(p|pr5}Lr[qhkozv\fo[{|*6NNS X4XXYl\^3^_5cfgVjjko?rFsPtz|x߁烊l#ψݍwQTW([bMgPh=hn=np}~!	KNr-{͓OGONQ2TY^bguinjlnrs*u{}5W[Ο_RT
Z[dXeunrvzM{|M~>߃{+ʍd_iOCOzPQhQxRMRjXaX|Y`\\U^`b0hkloqNt u0u8uQvr{L{{{~n>I?"+ZkRb*bmYvdz{}vS`\^o8p|cdzvNNNP\PuTHY[^@^^_`c:e?etefvfxgihjkcl@mmnn^ppssu:w[xyzz}|}Gꌞ-Jؒf̓ V\R6RU|X$^_`choym{,ͅDd=LJOQFQRV2__kcdefAffghhioonqgqr*tw:yVyZyz z||}D~pT m;՜e|[X\
SRbsP'[_`akhmt.z.}B}~1k*5~OPWP]^c+jN;OOOPZY݀TjThUYO[]^f]g1gh*lm2nJopsu|L}},}ۊ;p31NRDz|OQQW[\fYj=mZnoquoz"!u˙N-NFS}jiklAzXafbpuu~RINKSTW0W@_ccdoe/efzggkbl`lo,wx%yIyW}󂝂rvzz7~TwUUXuc/d"fIfKhmikm%nsthtu[uvwwy~	~/:ю돰2csOSYZ^hNtuyz̏egWoW}ݏ/_aoNOPSU]o]k!kdx{IʐncId>w@z/jdoqttz|~|~
}LR9[dg-}.PSXyaXaYaezًP	P!RuU1Z<^_pa4e^ff6fino2sv!z9YքPW[[_icx&}܅!ǑQg{VQY`UPRT\:a}bbdenv 
`_NSCUY)]dlmszw!QTU_do}M5P\lmuw|=|dyXY^cwrRuwk܌^ftm}˗Q RCfmn}.^RRTabbhiiZj5pq&x]yyyzxՃIIbOVqwׇ [_gQSXZ[`ad`~=p%dP]g Xbciixjnkvy˂)ύKۚ6Nu\y]z{Q{~.ĎYtf%i?tCQg.QE_l]w`ST9V4Z6\1pZ퍣_PtNS`n,\dOP$U\^_`ehlmquuvazzI}}n􆩏əRRGRŘ퉪NgoO[glmxtx'ݓ|yz1_NTU>XY`bSbg6iU5@P,SSUDW|bXdfkgoot"t88TQVWf_HakNpXp}Yj+cw=XTd-i[^noiQLSY*` aKklpl{΂ԍƐdodeQNTWa_hvu{R}qXí* 9PxYWYb*a]ryWaZF]bddgwlm>r,t6x4wۘR$WBgrHt㌩*QkScLOiU`eWlmrLrz_mopaOPObArG{}MWj^sgUT [^c^_
e=[OHSSSTTW^`bbcUlmfux2ށ/ބa^EffprOR}_jaSgSjotyhhyǘĚCTziSJ_|buvBS9_<_lsubu{FNO<NOUSY^f0ltUwfPX[xP[`h`elWo"opU𕑕PRrDQT+TUcUjm}؂fwyTTv҆䕤Ԗ\NO	YZ]`RbgmhAln/8*	NPUTWYZ[i[aiwmwp#r琂횸Rh8P^xgOGLNTVs	WVSX[1ajs{kGWYUr kiO\_&af[lpsssw)wM}C}b~#7R
Io[Qzt@ZOSTY>\c>myrϘ0NQDRW_blnppPpqstiJaQn_W`agfYJNNNT|XXY}\_'b6bHf
fgkmimnVnooop]rt%tZtvy\|~ႦkN_twj e`bwZZfmn>t?B_`{T_l^lm*p}y;ST[j:pkuuyyqAtde+xxzkN8UYP[^{`ckafehSnqet}i%m;ns>AQ^L_`M`a0aLfCfDiln_nobqLtv{|'RWQS/V^_`b`affgjmoppsj~j4ԊRsr[jkTV[]eHefhmmr;uMOPSTT<UU^?_g=qfsݐRRXdXqqqfUfqJ1SIUk_Y_cfqGOd:pufg`dNQGQSm6fk#puT\y}k k=kFT8`pm=ՂPQUVkVY[	^aab1f^fqqqryz pPK     N\/g    %  Parser/Encodings/x-euc-jp-unicode.encnu 6$        X-EUC-JP-Unicode                         4A                               	   
                                                                      !   "   #   $   %   &   '   (   )   *   +   ,   -   .   /   0   1   2   3   4   5   6   7   8   9   :   ;   <   =   >   ?   @   A   B   C   D   E   F   G   H   I   J   K   L   M   N   O   P   Q   R   S   T   U   V   W   X   Y   Z   [   \   ]   ^   _   `   a   b   c   d   e   f   g   h   i   j   k   l   m   n   o   p   q   r   s   t   u   v   w   x   y   z   {   |   }   ~   g                                                      ? g                                                        L                     ?                                  ^                                                     ^P                                                     CK                                                      S                                                     VL                                                     8                                                        Q                                                       +                                                           ^K                                                    ^                                                    ^                                                    ^e                                                    ^                                                    ^!                                                    ^                                                    ^                                                    ^;                                                    ^                                                    ^                                                    ^U                                                    ^                                                    ^                                                    ^o                                                    ^                                                    ^	+                                                    ^	                                                    ^	                                                    ^
E                                                    ^
                                                    ^                                                    ^_                                                    ^                                                    ^                                                    ^y                                                    ^                                                    ^5                                                    ^                                                    ^                                                    ^O                                                    3                                                         ^                                                    ^>                                                    ^                                                    ^                                                    ^X                                                    ^                                                    ^                                                    ^r                                                    ^                                                    ^.                                                    ^                                                    ^                                                    ^H                                                    ^                                                    ^                                                    ^b                                                    ^                                                    ^                                                    ^|                                                    ^                                                    ^8                                                    ^                                                    ^                                                    ^R                                                    ^                                                    ^                                                    ^l                                                    ^                                                    ^(                                                    ^                                                    ^                                                    ^B                                                    ^                                                    ^                                                    ^\                                                    ^                                                                                                        ~           C                                                          a                                                            =}                                                            0                                                    V      W                                                     WA                                                     ^                                                    ^                                                    ^T                                                    ^                                                    ^                                                    ^n                                                    ^                                                    ^ *                                                    ^                                                     ^                                                     ^!D                                                    ^!                                                    ^"                                                     ^"^                                                    ^"                                                    ^#                                                    ^#x                                                    ^#                                                    ^$4                                                    ^$                                                    ^$                                                    ^%N                                                    ^%                                                    ^&
                                                    ^&h                                                    ^&                                                    ^'$                                                    ^'                                                    ^'                                                    ^(>                                                    ^(                                                    ^(                                                    ^)X                                                    ^)                                                    ^*                                                    ^*r                                                    ^*                                                    ^+.                                                    ^+                                                    ^+                                                    ^,H                                                    ^,                                                    ^-                                                    ^-b                                                    ^-                                                    ^.                                                    ^.|                                                    ^.                                                    ^/8                                                    ^/                                                    ^/                                                    ^0R                                                    ^0                                                    ^1                                                    ^1l                                                    ^1                                                    ^2(                                                    ^2                                                    ^2                                                    ^3B                                                    ^3                                                    C3                                                                	 
                        ! " # $ % & ' ( ) * + , - . / 0 1 2 3 4 5 6 7 8 9 : ; < = > ? @ A B C D E F G H I J K L M N Oabcdefghijklmnopqrstuvwxyz{|}~ P Q R S T U V W X Y Z [ \ ] ^ _ ` a b c d e f g h i j k l m n o p q r s t u v w x y z { | } ~                     0 00000 @ >?00000N0000   \0 \ & %    	00;=[]00	0
0000000"   "`"f"g""4&B&@  2 3!  
  &&%%%%%%%%%%% ;0!!!!0"""""""*")"'"( !!" "" "#"""a"R"j"k""=""5"+",!+ 0&o&m&j   ! %!"#$%&'()*+,-./0123456789:ABCDEFGHIJKLMNOPQRSTUVWXYZ0A0B0C0D0E0F0G0H0I0J0K0L0M0N0O0P0Q0R0S0T0U0V0W0X0Y0Z0[0\0]0^0_0`0a0b0c0d0e0f0g0h0i0j0k0l0m0n0o0p0q0r0s0t0u0v0w0x0y0z0{0|0}0~00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 !"#$%&'()*+,-./012345Q6789:;<=>?@ABCDEFGHIJKLMNO% %%%%%%%,%$%4%<%%%%%%%#%3%+%;%K% %/%(%7%?%%0%%%8%BNUZ?Tac(Y"uzP`cn%efhW'ebq[YІ{}b}b|[^c	fhHǗgONO
OMOPIVY7YZ\	`aapfipuOupy}}ÄcUzS;NNW߀xN Xn8z2(/QASpTTVY_m-bpTS[pSo\zNxn&VUk;YSmftܕVBNKOSU[0_qf fhl8lm)t[vzN4[`muvʙ`iSQWX0YD[^`(cclopqqYqs?~vх`[XielZu%QY.Ye__bej*k'ksV,\l{Q\KahvraNYOSx`in)zONSNOUO=OOsRSV	YZ[[yfggkLlpksyyz<{ۃwӇfV)NO\brYu;傽řNOVXJX^_`*``babbe9AffhmwppuLv}uQRYT[]ahimxˈWrmlWgΒRVT^bdh<h8ksrxzkҍk핣i[f\i}MNc{ j+jho_RrU`pbm;nnф[DN9Sij:h*Q\zÄܓV[(h"1|RtN~OQ[R
RR]UX*Y[[[^r^y`aacacebghShk>kSlWo"ooEtuvwz{|!}6f̌Qeә(N8T+\]svLw<\TXOOSqUVhWYG[	[\^^~_cg:eeghhj_^0kll}uyH[cz } _w̏<NP}Q Y[b/bdk:ruyGpcʗT	TUhTjXpx'guSt[PNNENOST8[_`%eQg=lBlrlpxtzvz{}|}fer[S\E]bbcn Z1ݒoyZNNNOOPQGzQqQSTS!SSUX\_7_J`/`P`mceYjKlrrwNWZNQ\-fim\@fiushP|PRWG]&ek#k=t4yy{K}ʂ̈_9ёTN]P6SS:rsw掯ƙșQwa^UzzPv[ӐGN2jۑ\Q\Hczltazq|h~phQlRT͐SfyAOPRQDUSW-sWYQ_b_`uavagacd:elfohBnufz=|}L}~KkJ͊cfΛRbdohAPk lzoTzt}P@#gNP9P&PeQ|R8RcUWXZ^aabcrij)r}rs.xxo}ywҐcuzUxQCSS^{_&nnss}C7 PNNPST|VY[d]^_'b8eEgnVr|ʈN7ǘgNNOSHTIT>Z/__`hjtZxwN^NO|OPPQIQlRRRSSTTUWQWY}[T[][]]]^x^^^_`RaLbbce;ffCfgmh!hil_m*min/nu2vxlz?|}}}^}T*RLaʑuqx?M؝;R[RSTXboj_QKR;TJVz@w`sDo	pu_`ښrۏkdNVWdXZZ`haffh9hmu}:nBNOPSU]o]]gltsxPWP^c+PPQg TX^Y[_ibMch=ksnp}rxx&yme}0܈	RdW(gPjQWB*X:iT]WxO\RJTd>f(ggz{V}"/h\{9SQR7[bddg-kvcLvfRN	PS\q`dech_qsu#{~ۑxefkNNO:OR:SSUVXYYY[P\M^^+_`ce/[\eeegkbk{lsEyIy|}}+󉖊^ifǌܖ̘koNO<OQP[W[aHcfBk!nlr>tuxy:3ꄔlP_X+z[NSWY1Z[`nou[ {Prg\aJ~Q\chfeqny>}ʐnǐPR\:gSp|r5Lȓ+[_1`N;S[bKg1krsz.kRQSTj[cj9} VSTh[\1]Oabm2yy}B~MҁFrt/1KlƑNOOQESA_bglAnsc~&͒SY[my]~.|X~qQSO\f%wzQ_eiokmnodv}]uQRb@ffn^}rfRSYs^_`UdPQRS SGSTUFU1VYhYZ<[\\\\^^^_pbbbccwfff-fvg~hjj5lmn	nXq<q&qguwx]yyeyz{|}9քI]<Tsaޑf~N
NNNWQRpWX4X["^8`dgagVmDruszcr V1Wbikq~Twr߇U\;O8OOUZ [[_aNc/efKhimxmu3uwy^y}3ク:2ݗNNRXuX\u\=N
Ŗcm{%ϘbVST9W^%cl4pwa|pBTt^]]iepgcngIiŘodz[Np,u]f/QR6RY_`'be?etffthhkcnrruv|VXːRYez^-`befgwzM|M~>
d_xRbcdBb-z{}vINQHSCS`[\\]b&bGdhh4lmEmgo\qNq}ez{}~Jz9n΍xwRMUo8q6Qhy~U|VLXQ\cffiZruuyyVy|} }D4;a PRuSSP	UXYOr=[\dS``c\cc?cdef]iioqNuvz|}}aIXlōpmPXaӅ5 OPtRGSs`ocIg_n,O\^e}SRQvc[X[k\
dgQ\NYY*lpQU>XY`bSg5iU@Ě(OSX[\^/_` aKb4flnހ΁Ԉ .ۛNSY'{,Lnp'SSUD[bXbblot"8o8QSSOFTYj1]zꏿhڌ7rHj=N9SXVWfbcekNmn[pwz{}=Ɔˊ[VX_>efjku7P$wW0_`efzl`uznE{u\z{QĐyz6Zw@N-N[_bf<glkw;Njp&s*WNQFQU[^^3^__5_k_acfgonrRu:w:t9xv܍󒚕wRcWvgls͌Ósm%XiȉuېXZhciOCo,g؏&}Ti?opWjX[,},r*T
㝴NONP\PuRCTHX$[^^^^_`bc:chl@xyz}GD-؟ldXdeunv{inT_dMDQxXkY)\U^m~u[pOkou0QNTX5XWY\`_eg\n!v{ߌMx%x:R^WYt`PQZQQR UXTXXYW[\]`bd-gqhChhvmnompoq_Suyw{I{T{R|}qR0ciFv-0PRTX\admwzS\S?__mrywcy{kr슭hjaQzi4\J[őIpVx\o`eflZATQfǒYHQNMQꅙpXczKib~uwSWi`ߖl]N\<_Sрy^eNsQeY\?NY_͊oyyb[qs+q^t_c{dq|NC^NKWV`o}3]bdgwlm>t6x4ZFuO^bceWgovrL̀)MPWZhisqdrXjyw)O/ReSZbglv}{|6fo r~Q{xr{{Hj^auQu`QkbnvzOpb{OVzXY䖼O4R$SJSS^d,egl>lNrHrsuT~A,錩{đqic=fiujvxЅCS*SQT&Y^_|`bIbybekluvxy}w^j|8P\>_gkt5w	;gzS9u_f_<_ub{F<hgYZ}v~,O_jjl7otyhhUy^cuy҂ד(򄜆-T_lem\pӘ;eOtNNWY+Zf[Q^^`bvewefnmnr6{&P\tDOdkfaj\iSzWORo_^Egyym_bUlNriRT;VtXabnqYn||}e^NOuQuX@^c^s_
gN&=[|sPXvVxR%w{POY	rG{}菺ԐMORZ)_O݂WcUkiu+܏zBRXaUb
fk|?P#OSTFX1YI[\\])^bcge>egllpx2~+ނ*JҘlNONPRVWJY^=__b?fgghQ}! ~2T ,SPS\Xdg4rgwfzFRlkX ^LYTg,QvdixTWYf'gkTi^UggRh]NOSbg+lO~mNabno+Tsg*E]{\[ƇnJzY|lw RY"q!r_wۗ'aiZZQTT}fvߏYr]nQMh}}bdxj!Y[_ksv}Q2g(vgbR\$b;|~UO`}SN_QYr:6_%wS_y}3Vg󅮔Sa	alvR8U/OQQ*RS[^}`acg	gngms6s7u1yPՊJćYNOYN?P^|Y[^ccdfiJimnqu(z Iɉ!
e}
a~bk2lmtmge<m}a=jNqSu]Pko͆-R)T\egNhttuψ̖x_sz˄NcueRmAnt	uYxk|zܟOaneņ\NNPN!Q[ehmsvBwz|oҐ|ϖuR}P+Sgmqt3*Wt`XAm}/^NO6OQR]`sy<Ӓ4
bfktRRpȈ^`Kao#qI|>}o#,TBojp2RZA^_gi|imjorbr{~KQmy2P-Tqkjā`gNNkhi n~xU_NNN*N1N6N<N?NBNVNXNNkN_NNNNNNNNNNNNNNNNNNO	OZO0O[O]OWOGOvOOOO{OiOpOOoOOQOOOOOOOOOOPP(PP*P%POOP!P)P,OOPPPCPGgPUPPPHPZPVPlPxPPPPPPPPPPPPPPPPPQ	QQQQQQQ!Q:Q7Q<Q;Q?Q@QRQLQTQbzQiQjQnQQVQQQQQQQQQQQQQQQQQQQQQQQUQQQQQRRRRR'R*R.R3R9RORDRKRLR^RTRjRtRiRsRR}RRRRqRRRRRRRRRRRRRRRRRSSu8SSSSSS#S/S1S3S8S@SFSENSISMQS^SiSnYS{SwSSSSSSSSS|SfqSSSSTT=T@T,T-T<T.T6T)TTNTTuTT_TqTwTpTT{TTvTTTTTTTTTTTTTTTTTTTUUTTTTTU9U@UcULU.U\UEUVUWU8U3U]UUTUUU{U~UUUU|UUUUUUUUUUUVUVUUVUVNVPqV4V6V2V8VkVdV/VlVjVVVVVVVVVVVVVVVVVVVVVVW VWW	WWWWWWUWW&W7W8WNW;W@WOWiWWWaWWWWWWWWWWWWWX
WWXXXXrX!XbXKXpkXRX=XyXXXXXXXXXXXXXXXXXXXXXXXXXYY
YYhY%Y,Y-Y2Y8Y>zYUYPYNYZYXYbY`YgYlYiYxYYO^OYYYYYYYYZ%ZZZZ	ZZ@ZlZIZ5Z6ZbZjZZZZZZZZZZZZZ[[[[2Z[*[6[>[C[E[@[Q[U[Z[[[e[i[p[s[u[xe[z[[[[[[[[[[[[[[[[[[\\\\\\ \"\(\8\9\A\F\N\S\P\O[q\l\nNb\v\y\\\Y\\\\\\\\\\\\\]\]]]]\]]]]]"]]]]L]R]N]K]l]s]v]]]]]]]]]]]]]]]]]]]]^^^^^^6^7^D^C^@^N^W^T^_^b^d^G^u^v^z^^^^^^^^^^^^^^^^^^^^^^^__	_]_\____)_-_8_A_H_L_N_/_Q_V_W_Y_a_m_s_w____________________`_`!`````)``1```+`&``:`Z`A`j`w`_`J`F`M`c`C`d`B`l`k`Y`````````````````_````aMaa``a ``aa!``aaaGa>a(a'aJa?a<a,a4a=aBaDasawaXaYaZakataoaeaqa_a]aSauaaaaaaaaaaaaaaaaaaayaaaaaaaaaab bb	bbbbbb!b*b.b0b2b3bAbNb^bcb[b`bhb|bbb~bbbbbbbbbbbbdbbbbbbbbcbbc'ccbbcPc>cMdcOcccccvcccccckcicccccccccdd4ddd&d6edd(ddgdodvdNe*ddddddddddddddd	ddbdde,dddde deeee$e#e+e4e5e7e6e8uKeHeVeUeMeXe^e]erexeeeeeeeeeeeeeeeeegrf
fegsf5f6f4ffOfDfIfAf^f]fdfgfhf_fbfpffffffffffffffffff?fffffgggg&g'8g.g?g6gAg8g7gFg^g`gYgcgdggpgg|gjgggggggggggggggggggggjhhFh)h@hMh2hNhh+hYhchwhhhhhhhhjhhthhhihh~ihihi"i&hihhhhi6iihhi%hhhi(i*ii#i!hiyiwi\ixikiTi~ini9iti=iYi0iai^i]iijiiiiiiii[iiiiij.iiiiiiijjik
iiijijijij
jjj#jjDjjrj6jxjGjbjYjfjHj8j"jjjjjjjjjjjjjjjjjjjjkjkk1kk8k7vk9kGkCkIkPkYkTk[k_kakxkykkkkkkkkkkkkkkkkkkkkkkkkklllll$l#l^lUlbljllllll~lhlslllllllllllllllllmMm6m+m=m8mm5m3mmmcmmdmZmymYmmommnn
mmmmmmmmmmmmmmmmmn-nnn.nnrn_n>n#nkn+nvnMnnCn:nNn$nnn8nnnnnnnnnnnnnnnnoAopLnnno?no1no2no>onoozoxooooo[oomoo|oXoooofooooooooooooooop	popppoppotpppp0p>p2pQpcppppppppppppq	pqqqeqUqqfqbqLqVqlqqqqqqqqqqqqqqqqqqqqrrrr(r-r,r0r2r;r<r?r@rFrKrXrtr~rrrrrrrrrrrrrrrrrrrPss
ssss4s/s)s%s>sNsOsWsjshspsxsus{szsssssssstttot%st2t:tUt?t_tYtAt\titptctjtvt~ttttttsttttttttttuuuuuuuuuu&u,u<uDuMuJuIu[uFuZuiudugukumuxuvuuutuuuuuuuuuuuuuuuuuuuuuuuuuvuuuuvvv	vv'v v!v"v$v4v0v;vGvHvFv\vXvavbvhvivjvgvlvpvrvvvxv|vvvvvvvvvvvvvvvvvvvvvvv/vwwww)w$ww%w&ww7w8wGwZwhwkw[weww~wywwwwwwwwwwwwwwwwwwwwxxy&x y*xExxtxx|xxxxxxxxxxxxxxxxxxxyyyyy,y+y@y`yWy_yZyUySyzyyyyKyyyyyyyyyyyzzzzz zyz1z;z>z7zCzWzIzazbzizpzyz}zzzzzzzzzzzzzzzzzzzzzzzzzz{{{
{{3{{{{5{({6{P{z{{M{{L{E{u{e{t{g{p{q{l{n{{{{{{{{{{]{{{{{{{{{||{{|`| ||{{||{|#|'|*||7|+|=|L|C|T|O|@|P|X|_|d|V|e|l|u|||||||||||||||||||||;|||||}}}}}
}E}K}.}2}?}5}F}s}V}N}r}h}n}O}c}}}[}}}}}}}}}}}~=}}}}}}}}}}}}}~~
~#~!~~1~~	~~"~F~f~;~5~9~C~7~2~:~g~]~V~^~Y~Z~y~j~i~|~{~}~}~~~~~~~~~~~~8:ELMNPQUTX_`higxq܀!(?;JFRXZ_bhsrpvy}Qۀـ݀Āڀց	)#/KF>SQqneft_Ɂ́сف؁ȁځ߁
)+83@YX]Z_dbhjk.qwx~߂҂ރ܃	ك5421@9PE/+#|su΃؄" 8m*<ZwkniF,oy5ʄbل̈́ڄЄƄք!,@cXHAKUmꅇw~ɅυЅՅ݅܅
"0?MNUT_gqĆƆɈ#Ԇކ߆ۆ 	
4?7;%)`_xLNtWhnYScjˇЖևćǇƇ҈"!169';DBRY^bk~u}rÈĈԈ؈و݈
C%*+AD;68L`^fdmjotw~ډ܉݉%6A[RFH|mlbĊ͊ڊފۋ 3&+>(ALONIV[Zk_lot}:A?HLNPUblxz|bȌڌ
N͍gmqsύڍ֍̍ۍˍߍ	B504JGILPHYd`*cUvr|ƎŎȎˎێ
&3;9EB>LIFNW\bcdڏ!'659OPQRI>VX^hovr}bHۑ20JVXceisrɑˑБ֑ߑۑ,^WEIdH?KPZϒD."#:5;\`|nV֓דؓÓݓГȓ6+5!:ARD[`b^j)puw}Z|~oÕ͕̕Օԕ֕ܕ!(./BLOKw\^]_frlΖ˖ɖ͉MܗՖ$*09=>DFHBI\`dfhRҗkqy|z×Ɨȗ˗ܗOzߗ8$!7=FOKkopqtsĘØƘ	!$ ,.=>BIEPKQRLUߙۙݙؙљ+7EB@C>UM[W_bedikjϚњӚԚޚߚ"#%'()*./2DCOMNQXtʛƛϛћқԛ:	
.%$!0G2F>Z`gvx	*&#DA?>FH]^dQPYrozĝƝϝٝӝuy}a̞ΞϞОԞܞޞݞv!,>JRTc_`afgljwrvX/iǐYtdQq   ~       !" !	
RSTUVWXYZ[\^_ &2A?J Rf   '138B@IK S g         
    " $    0*.(469=;CGE     PL TXVZ\`^db    lpjrnht xvy}{      	     !%    +/)57:><DHF     QM UYW[]a_ec    mqksoiu  wz~|NNNNNNN#N$N(N+N.N/N0N5N@NANDNGNQNZN\NcNhNiNtNuNyNNNNNNNNNNNNNNNNNNNNNNO OOOOOOOOOOO.O1O`O3O5O7O9O;O>O@OBOHOIOKOLOROTOVOXO_OcOjOlOnOqOwOxOyOzO}O~OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOP PPPP
PPPPPPPPPPP"P'P.P0P2P3P5P@PAPBPEPFPJPLPNPQPRPSPWPYP_P`PbPcPfPgPjPmPpPqP;PPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPQQQQQQQQPQQQQQQQQ#Q'Q(Q,Q-Q/Q1Q3Q4Q5Q8Q9QBQJQOQSQUQWQXQ_QdQfQ~QQQQQQQQQQQQQQQQQQQQQQQQQQQQQQRRRRRRRRR"R(R1R2R5R<RERIRURWRXRZR\R_R`RaRfRnRwRxRyRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRS SS
SSSSSSSSSS%S'S(S)S+S,S-S0S2S5S<S=S>SBSLSKSYS[SaScSeSlSmSrSyS~SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSTTTT!T'T(T*T/T1T4T5TCTDTGTMTOT^TbTdTfTgTiTkTmTnTtTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTU UUUU	UUUUU*U+U2U5U6U;U<U=UAUGUIUJUMUPUQUXUZU[U^U`UaUdUfUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUVVV
VVVVVVVV,V0V3V5V7V9V;V<V=V?V@VAVCVDVFVIVKVMVOVTV^V`VaVbVcVfViVmVoVqVrVuVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVWWWW
WWWWWWW W"W#W$W%W)W*W,W.W/W3W4W=W>W?WEWFWLWMWRWbWeWgWhWkWmWnWoWpWqWsWtWuWwWyWzW{W|W~WWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWXXXX	WXXXXXX X&X'X-X2X9X?XIXLXMXOXPXUX_XaXdXgXhXxX|XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXYYYYYYYAYY!Y#Y$Y(Y/Y0Y3Y5Y6Y?YCYFYRYSYYY[Y]Y^Y_YaYcYkYmYoYrYuYvYyY{Y|YYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYZ ZZZZZZZZ#Z$Z'Z(Z*Z-Z0ZDZEZGZHZLZPZUZ^ZcZeZgZmZwZzZ{Z~ZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZ[ [[[[4[[[[![%[-[8[A[K[L[R[V[^[h[n[o[|[}[~[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[\\\\\#\&\)\+\,\.\0\2\5\6\Y\Z\\\b\c\g\h\i\m\p\t\u\z\{\|\}\\\\\\\\\\\\\\\\\\\\\\\\\]]]]]+]#]$]&]']1]4]9]=]?]B]C]F]H]U]Q]Y]J]_]`]a]b]d]j]m]p]y]z]~]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]^ ^^^^^^^^ ^.^(^2^5^>^K^P^I^Q^V^X^[^\^^^h^j^k^l^m^n^p^^^^^^^^^^^^^^^^^^^^^^^^^^_________!_"_#_$_(_+_,_._0_4_6_;_=_?_@_D_E_G_M_P_T_X_[_`_c_d_g_o_r_t_u_x_z_}_~________________________________________``
````````$`-`3`5`@`G`H`I`L`Q`T`V`W`]`a`g`q`~``````````````````````````````````````````aaa
aaaaaaaaaaaa"a*a+a0a1a5a6a7a9aAaEaFaIa^a`alaraxa{a|aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabbbbbbbb b"b#b'b)b+b9b=bBbCbDbFbLbPbQbRbTbVbZb\bdbmbobsbzb}bbbbbbbbbbbbbbbbbbbbbbccc
ccccccc)c*c-c5c6c9c<cAcBcCcDcFcJcKcNcRcScTcXc[cecfclcmcqctcucxc|c}cccccccccccccccccccccccccccccccccccd	d
dddddd d"d$d%d)d*d/d0d5d=d?dKdOdQdRdSdTdZd[d\d]d_d`dadcdmdsdtd{d}dddddddddddddddddddddddddddddddddddddddeeee	e
eeeeeeeee"e&e)e.e1e:e<e=eCeGeIePeReTe_e`egekeze}eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeef fff	ffffffff!f"f#f$f&f)f*f+f,f.f0f1f3f9f7f@fEfFfJfLfQfNfWfXfYf[f\f`faffjfkflf~fsfuffwfxfyf{ff|fffffffffffffffffffffffffffffffffggggggg g"g3g>gEgGgHgLgTgUg]gfglgngtgvg{gggggggggggggggggggggggggggggggggghRhhhhh(h'h,h-h/h0h1h3h;h?hDhEhJhLhUhWhXh[hkhnhohphqhrhuhyhzh{h|hhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhii	i
iiiiii1i3i5i8i;iBiEiIiNiWi[icidieifihiiilipiqirizi{iiiiiiiiiiiiiiiiiiiiiiiiiiiiiij jjjjjjjj j$j(j0j2j4j7j;j>j?jEjFjIjJjNjPjQjRjUjVj[jdjgjjjqjsj~jjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjkkkkk	kkkkkkk$k(k+k,k/k5k6k;k?kFkJkMkRkVkXk]k`kgkkknkpkuk}k~kkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkllll	lllllll&l'l(l,l.l3l5l6l:l;l?lJlKlMlOlRlTlYl[l\lklmloltlvlxlyl{llllllllllllllllllllllllllllllllmmm
mmmmmm&m'm(lgm.m/m1m9m<m?mWm^m_mamemgmompm|mmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmn nnn"n'n2n6n9n;n<nDnEnHnInKnOnQnRnSnTnWn\n]n^nbncnhnsn{n}nnnnnnnnnnnnnnnnnnnnnnnnnnooo
ooooooo&o)o*o/o0o3o6o;o<o-oOoQoRoSoWoYoZo]o^oaoboholo}o~ooooooooooooooooooooooooooooooooooooop pppppp p#p/p4p7p9p<pCpDpHpIpJpKpTpUp]p^pNpdpeplpnpupvp~pppppppppppppppppppppppppqqqqqqqqqq q+q-q/q0q1q8qAqEqFqGqJqKqPqRqWqZq\q^q`qhqyqqqqqqqqqqqqqqqqqqqqqqqqqqqr rrr	rrrrrr$r+r/r4r8r9rArBrCrErNrOrPrSrUrVrZr\r^r`rcrhrkrnrorqrwrxr{r|rrrrrrrrrrrrrrrrrrrrrrrrrrrssssssssssss"s$s's(s,s1s2s5s:s;s=sCsMsPsRsVsXs]s^s_s`sfsgsiskslsnsosqswsys|ssssssssssssssssssssssssssssssssssssssssssssssssssst tttt
tttt$t&t(t)t*t+t,t-t.t/t0t1t9t@tCtDtFtGtKtMtQtRtWt]tbtftgthtktmtntqtrtttttttttttttttttttttttttttttttttttttttttttttttttttuuuuu u!u$u'u)u*u/u6u9u=u>u?u@uCuGuHuNuPuRuWu^u_uauouquyuzu{u|u}u~uuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuv vvvvvv
vvvvvvvvvvvv#v%v&v)v-v2v3v5v8v9v:v<vJv@vAvCvDvEvIvKvUvYv_vdvevmvnvovqvtvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvw ww
wwwwwwwww"w(w-w.w/w4w5w6w9w=w>wBwEwFwJwMwNwOwRwVwWw\w^w_w`wbwdwgwjwlwpwrwswtwzw}wwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwxxx	xxxxx!x"x#x-x.x0x5x7xCxDxGxHxLxNxRx\x^x`xaxcxdxhxjxnxzx~xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxy xxxxxyyyyyyyy y%y'y)y-y1y4y5y;y=y?yDyEyFyJyKyOyQyTyXy[y\ygyiykyryyy{y|y~yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyzzzz	z
zzzzzz!z'z+z-z/z0z4z5z8z9z:zDzEzGzHzLzUzVzYz\z]z_z`zezgzjzmzuzxz~zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz{{{{#{'{){*{+{-{.{/{0{1{4{={?{@{A{G{N{U{`{d{f{i{j{m{o{r{s{w{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{||||||	||||||| |%|&|(|,|1|3|4|6|9|:|F|J|U|Q|R|S|Y|Z|[|\|]|^|a|c|g|i|m|n|p|r|y|||}|||||||||||||||||||||||||||||||}}}}	}}}}}}}}#}&}*}-}1}<}=}>}@}A}G}H}M}Q}S}W}Y}Z}\}]}e}g}j}p}x}z}{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}~ }}}}}}}}}}}~~~~~~~~ ~'~(~,~-~/~3~6~?~D~E~G~N~P~R~X~_~a~b~e~k~n~o~s~x~~~~~~~~~~~~~<;=>?CDGORS[\]acdefmq}~
 $&,.04579:<>@D`dfmquȀ̀πҀԀՀ׀؀ $',05:<EGJLRW`aghimowˁÁŁʁ΁ρՁׁہ݁ށ !"(24:CDEFKNOQV\`cgmt{}ƂЂՂڂ 
T!",-.037:<=BCDGMNQUVWpx}ǃɃσЃуԃ݃S
/9EGHJMOQRVXYZ\`degjpstvx|}ǄȄ̄τӄ܄2"#$%'*+/346?FOPQRSVY\]^_`abdkoyz{}ǅʅ˅΅؅څ߅ !')68:<=@BFRSVWXY]`abcdilouvwzÆņц҆Ն׆چ܆熈!#(./129:<=>@CEMX]adeoqr{ȇɇʇ·Շևهڇ܇߇	
(-.025:<ACEHIJKNQUVXZ\_`diqy{ʈˈ͈̈Έш҈ӈۈވ &'(01259:>@BEFIORWZ[\abcknpsuz{|}ԉՉ։׉؉ "$&+,/57=>@CEGIMNSVWX\]aeguvwyz{~ÊƊȊɊʊъӊԊՊ׊݊ߊ
-07<BCDEFHRSTYM^cmvxy|~89=>EGIKOQSTWX[]Ycdfhimsuv{~ŌƌɌˌό֌Ռٌ݌	eilnōƍǍȍʍ΍эԍՍ׍ٍ !"#&'136789=@AKMNOT[\]^abilmopqyz{ÎĎǎώюԎ܎  !#%'(,-.4567:@ACGOQRSTUX]^eƏʏˏ͏ЏҏӏՏ()/*,-347?CDL[]bfglpty̐ÐĐŐǐȐՐאِؐܐݐߐҐ  %"#')./14679:<=CGHOSWYZ[adgmtyz{Ñőӑԑבّڑޑ 	
#$%&(./035689:<>@BCFGJMNOQXY\]`aeghinopuvwxy{|}ÒŒƒǒȒ˒̒͒ΒВӒՒגْؒܒݒߒ !$%')*3467GHIPQRUWXZ^degijmopqstvz}ēœƓǓɓʓ˓͓̓ӓٓܓޓߓ	./1234;?=CEHJLUY\_achkmnoqrxy~ƕȕɕ˕Еѕҕӕٕڕݕޕߕ"$%&,13789:<=ARTVWXant{|~ʖ]ؖږݖޖߖ	!"#(13ACJNOUWXZ[cgjnsvwx{}ėŗǗɗʗ̗͗ΗЗїԗחؗٗݗޗۗ
 #&+./0235%>DGJQRSVWYZbcefjlŘȘ̘"&'+123459:;<@AFGHMNTXY[\^_`Ùəәԙٙڙܙޙ "#$'-.3568GADJKLNQTV]ÚƚȚΚКҚ՚֚ךۚܚ 	 &+-34579:=HKLUVW[^acefhjklmnsuwxyǛțΛЛכ؛ݛߛ "#&'()*1567=ACDEIJNOPSTVX[]^_cij\khnpruw{/0234:<E=BCGJST_cbeijkpvw{|~Ýǝɝʝԝ՝֝םڝޝߝ
z{|ƞȞ˞՞ߞ	"&*+/12479:<=?ACDEFGSUVWXZ]^himnopqsuz}PK     N\E&      Parser/Encodings/big5.encnu 6$        BIG5                                     YA                               	   
                                                                      !   "   #   $   %   &   '   (   )   *   +   ,   -   .   /   0   1   2   3   4   5   6   7   8   9   :   ;   <   =   >   ?   @   A   B   C   D   E   F   G   H   I   J   K   L   M   N   O   P   Q   R   S   T   U   V   W   X   Y   Z   [   \   ]   ^   _   `   a   b   c   d   e   f   g   h   i   j   k   l   m   n   o   p   q   r   s   t   u   v   w   x   y   z   {   |   }   ~   Y                                                      @ Y                                            @                                            @                                                    @W                                            @                                            @                                            @                                            @S                                            @                                            @                                            @                                            @O                                            @	                                            @	                                            @
                                            @K                                            @
                                            @                                            @                                            @G                                            @                                            @                                            @                                            @C                                            @                                            @                                            @                                            @?                                            @                                            @                                            @|                                            @;                                            @                                            @                                            @x                                            @7                                            @                                            @                                            @t                                            @1                                            @                                            @                                            @n                                            @ -                                            @                                             @!                                            @"j                                            @#)                                            @#                                            @$                                            @%f                                            @&%                                            @&                                            @'                                            @(b                                            @)!                                            @)                                            @*                                            @+^                                            @,                                            @,                                            @-                                            @.Z                                            @/                                            @/                                            @0                                            @1V                                            @2                                            @2                                            @3                                            @4R                                            @5                                            @5                                            @6                                            @7N                                            @8                                            @8                                            @9                                            @:J                                            @;	                                            @;                                            @<                                            @=F                                            @>                                            @>                                            @?                                            @@B                                            @A                                            ?              	 
                        ! " # $ % & ' ( ) * + , - . / 0 1 2 3 4 5 6 7 8 9 : ; < = > ? @ A B C D E F G H I J K L M N O P Q R S T U V W X0 00 "0 & %PdR TUVW\ 1 34O	56[]78009:00;<0
0=>00	?@00AB00CDYZ[\]^    00 5 2
 ; 0%%%%%&&%%%%%%2! >?IJMNKL_`a   ""f"g"`""R"abcdef"<")"*"" ""33"+"."5"4&@&B&A&	!!!!!!!!"%"#< 0   !!	ijk333333333 QYQ[Q^Q]QaQcUt|%%%%%%%%%%%%%%%%<%4%,%$%%% %%%%%%%m%n%p%o%P%^%j%a%%%%%q%r%s!`!a!b!c!d!e!f!g!h!i0!0"0#0$0%0&0'0(0)SD!"#$%&'()*+,-./0123456789:ABCDEFGHIJKLMNOPQRSTUVWXYZ11111	1
1111111111111111111111 1!1"1#1$1%1&1'1(1)N NYNNNCN]NNNQ?QeQkQR RRSSAS\SN	NNN
N+N8QNENHN_N^NNQ@RRSCSSWXYY'Ys[P[Q[S[\\"\8\q]]]]]]^r^__bMNNNN-N0N9NK\9NNNNNNNNNNNNNNNQCQAQgQmQnQlQQRRRRRRSS9SHSGSES^SSSSXY)Y+Y*Y-[T\\$\:\o]^{^___bb6bKbNe/eeeeefgg(k kbkykkkll4pkr*r6r;rGrYr[rsNNNNNN;NMNONNNNNNNNNNNNQEQDQQQQQQR
RRSSSSNSJSISaS`SoSnSSSSSSSSSSSSSSSSSSSSVVYY.Y1YtYv[U[\<]]]^^^s^|____b
bSbTbRbQeeg.g,g*g+g-kcklll8lAl@l>rssttuuu(u)u0u1u2u3uv}vvvwwwy:yztzNNNRNSNiNNNNNO	OO
OOOOONNNNNNOOQIQGQFQHQhQqQQRRRRRRSS!S SpSqT	TTT
TTTTTTTTTTTVVVW3W0W(W-W,W/W)YYY7Y8YYxYY}YyYY[W[X[[[[[\\y]^^v^t____bbbbbcb[bXe6eeeeffg	g=g4g1g5k!kdk{ll]lWlYl_l`lPlUlal[lMlNppr_r]v~z|s|63nr~k@Lc!N2NOMOOOGOWO^O4O[OUO0OPOQO=O:O8OCOTO<OFOcO\O`O/ONO6OYO]OHOZQLQKQMQuQQR%R$R)R*R(RRRRS#SsSuTT-TT>T&TNT'TFTCT3THTBTT)TJT9T;T8T.T5T6T T<T@T1T+TT,VVVVWJWQW@WMWGWNW>WPWOW;XY>YYYYYYYYYYYY[][\[Z[[[[[\,\@\A\?\>\\\\]^^^^^___d_b_w_y________bbbbbbbvbbmbb|b~bybsbbobbnbbbbe9e;e8efg_gNgOgPgQg\gVg^gIgFg`gSgWkeklBl^llllllljlzllpllhlll}llrl~ltllvllllpvp|p}pxrbrar`rrsu,u+u7u8vvwyyyzv|UoҊ 7FUdpʏƏŏ]ᐑIƑ̖2.1*,N&NVNsNNNNNOoOOOsOOlOOOOOpOuOOiO{OO~OOOzQTQRQUQiQwQvQxQQR;R8R7R:R0R.R6RARRSRSTSSSQSfSwSxSySSSTsTuTTxTTT{TwTTTT|TTqTvTTTbThTT}TVWWwWjWiWaWfWdW|YYIYGYHYDYTYYYYYYYYYYYYYYYY[_[d[c[[[[[[\\H\E\F\\\\\\\^^^^^^^x^^^^^^_&_'_)____|_____```/`5``*``!`'`)`+`bbb?b>b@bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbe>eeefffffff fff
fgggmgggqggsgwggggogpggg~gguggg|gjgrk#kfkgkllllllllllllllllllllllllllllllllllpppppr,r-r8rHrgrirrrrrsssssu=uuuvvvvwwy>y@yAyyzzzyz|TNqRhˏΏԏѐǑѕw@?;DBR^NNNOOOOOOOOOOOOOOOOOOOOOOQWQQQRNRCRJRMRLRKRGRRRRSSWS{SSTTTTTTTTTTTTTTTTTTTTTTVWWWWWWWWYUYQYOYNYPYYYYYZYYYYZY[i[[[[[\\N\O\M\K\\]^^%^^}^^^__-_e_______``` `%``(`M`p`h`b`F`C`l`k`j`dbAbcc	bbcbbcbbbbbbcce?eEeeef%f-f f'f/ff(f1f$fgggggggggggggggggggggggggkjkkkkkllmm2m*mAm%mm1mmm;m=m>m6mlm9m'm8m)m.m5mm+pppppppppr0rrrortrrrsssssssuu-uOuLuNuKuuuuuvxvvvvvvvwvvw	wvvwwxxxxyFyIyHyGyyyyyzzzz|}}}} }	}}}86րڀÀĀ̀ۀ΀ހ݁"ۂ	҂ׂ܂Ԃтނӂ߂Py{zMkԊts͎̏ʐΐÑKJ͕PKLMbi˗ۘߙNXNPPP#OP&P%OP)PPP<PPPPOP PP(OP!PPPOOP-P*OP+P	Q|QQQQQQQRVR\RTR[R]S*SSSSTUUU7TTTUTUTTTU	TTTU'UTUWWWWWWX	YYWYXYZZZZZZZYZ Z#Z)Z%ZZ	[k\X[[[[[[[[\\Q\U\P\\\\\\\]\]^-^+^^^_1___`Y`c`e`P`U`m`i`o````````bGbcbcNc>c/cUcBcFcOcIc:cPc=c*c+c(cMcLeHeIeeefBfIfOfCfRfLfEfAfgggh!h8hHhFhSh9hBhTh)hhhLhQh=ghPh@h<hCh*hEhhhAkkkl#l'l(l&l$lmjmmmmfmxmwmYmmlmmnmZmtmimmmymmemppppppr9ryrrrrrsst	ssssuTu]u\uZuYuuuuuuuuuuvvvvvw)ww w(wx0x'x8xx4x7x%x-x xx2yUyPy`y_yVy^y]yWyZyyyyyyyzzz{{|}!}}}
} }"}}}}}}}}:_=?
 *+(,+RTJ8PI54O296@1(CTpw}y
HzywҎԎϏ ݐRMLؑݑבܑٕbca[]dX^♬؛%2<N~PzP}P\PGPCPLPZPIPePvPNPUPuPtPwPOPPoPmQ\QQRjRoRRRRSSSS?S@S>SfUFUjUfUDU^UaUCUJU1UVUOUUU/UdU8U.U\U,UcU3UAUWWWW	WXX
XWWWXX5WWY YbZ6ZAZIZfZjZ@Z<ZbZZZFZJ[p[[[[[[\	\\\`\\\]]]]]]]"]])]]]$]']]^8^6^3^7^^^^^_5_7_W_l_i_k_______`````````````````````bbbHcccrccccwcgcccqccccckcccccccccc{cichcze]eVeQeYeWU_eOeXeUeTeeeeeeef]fZfdfhfff^fRghhhhhhhvhhhhhhhhhhhhhhhk2kkkl+mmmmmmmmmmnmmmmmmmmmmmmnmmmmmmmmmmmmmmpq	q
ppr=r}rsssssstt
ttsttttuu"ueufubupuuuuuuvvvvw7w>w<w6w8w:xkxCxNyeyhymyzz{ {({{,{&{{{.|||}F}C}q}.}9}<}@}0}3}D}/}B}2}1=ҀJF/#+)0$5769xw{|U_jǆĆƆˆɈS*#%1-"IZgfێߐ# "WΑ镉jusxptvwlzzߘZuPPPPPPPPPg QRrRtRuRiRRRSZSU{UUU|UUUUUUUUUUUUUU>UUUUUU~UUUWX/X*X4X$X0X1X!XX XXY`ZwZZZZZ[s[q[[[[\
\\1]L]P]4]G]^E^=^@^C^~^^^^_<_m___`````aa#`a```ah`a`a	a abbIccccccccccccccccvcccdRcce^efebeceeefnfpftfvfoffzf~fwffgghhhhhihhhhhhhhhhiiihhinhk>k:k=kkkkl.l/l,n/n8nTn!n2ngnJn n%n#nn[nXn$nVnnn-n&non4nMn:n,nCnn>nnnnNncnDnrnin_qqq&q0q!q6qnqrLrrs6s%s4s)t:t*t3t"t%t5t6t4t/tt&t(u%u&ukujuuuuuuuv{v|vvvvwOwx]xlxozzzzz zzzzz{I{V{F{P{R{T{M{K{O{Q||}^}P}h}U}+}n}r}a}f}b}p}sUՀRUTKQN9F>LStńW
̃ʄ8܄ԃ߆[߆نԆۆІވW;`U^<AT[PF4:6Va΍ݍˍڍэ̍ۍƎ.51826	ceϒ#	}rŖĖƖǖ̘홮Þ͞NPPPPPPPPPPPRRwR}RRRRRS/UUUUUUUUUUUUUUUUUWWX^XQXXXWXZXTXkXLXmXJXbXRXKYgZZZZZZZZZ]i]o^L^y^^__Y__aaaHa`a`aaaNaLaDaMa>a4a'aaa7b!b"dd>dd*d-d=d,ddddd6dddeleeffffffffgiimiZiwi`iTiui0iiJihiki^iSiyii]ici[kGkrkkkknnnnnnnnnnnnnnnnnnnnnnqNqYqiqdqIqgq\qlqfqLqeq^qFqhqVr:rRs7sEs?s>totZtUt_t^tAt?tYt[t\uvuxv uvuuuuuuvvw[wkwfw^wcwywjwlw\wewhwbwxxxxxxx|xxxyzyy,yzzz zzzzz{w{{`{n{g|||}}y}}}}[nijrVXqpxenskyzfGw=1ufkIl[<5acimF^\_ 
Y߈Ԉو܈؈݈ʈՈ҉krsfip|cqmbnly{>hbʌǌȌČÌōߍ掲	
KJSBT<UPGONMQ>Aljiɒ7W8=@>[KdQ4IME9?Z͖˖ɖʖVtv
鞂 PPPPPPPPPPPPQbQRRS1SUV VVUVVV	VVUVVVVUWWXuX~XXXXyXX}XY%Y"Y$YjYiZZZZZZZ[u[[[[[[[[[\\b]]^[^c^U^W^T^^_
_F_p_aGa?aKawabaca_aZaXaub*ddXdTddxd_dzdQdgd4dmd{ereeefffiiiiiiiiiiiiiiiiiiikIkLl3o3onono)o>o o,ooo"nnoo1o8o2o#oo+o/oo*nonnnqqq}qqqr>rrsDsPtdtctjtptmuuv'vvv	vvvww}wwaxxxxxxyyyz.z1zzzz{{{{u{{{{{{{|||}}}}}}}}}}}}}}}}}}}p߀^ZPKɄƄĄ˄ӄфʇ?;"%4U7)jӌьҍk`X\cY^b][uxwtx{|̖җ |	AB󞼟;JQQ PPPQQQ	QQRRRRRRSV.V;V9V2V?V4V)VSVNVWVtV6V/V0XXXXXXXXYm[	Z[Z[[[[[[\d\e]]^b^_^a^^^^^^_H_q__avagana]aUaa|apaka~aaaaaaaaab.didodyddddddddddddddddddeuewexffffj#jijjjij!jj
ijjijkPkNkkko?o|ooQofoToomo[oxonoozopodooXnooo`o_qqqqrVrsNsWtittt~tuv v)vv$v&v!v"vvvwwwwwxxxxxxxxz?z<z@z=z7z;zz{{{{{{{{{|}}}}}}}}}}}}}}}}uw&=,-#!%tv`fxhYWLS[]
ҊǊĊˊɊ֊͊یLNlތ܌m+")!)&*%inhmw0-'1Œ꒬Ғǒ𒲕	`!+
ݙЙߙۙљՙҙٚ'EDwo	XRQQQQQQQQRRRVYVkVyViVdVxVjVhVeVqVoVlVbVvXXXXYn[[4[x[\_Jaaaaaaaaab0ddddddddddddddetffffffj=j8j:jYjkjXj9jDjbjajKjGj5j_jHkYkwlooooooooooooooqqqqqqqqqqqqshttttttuuv4v8v:vvwwwwxxxxyzMzNzFzLzKz{|{{{{{{||~
~~~~#~~~	~y(XYJYHhiCImj^a*2%+! ܊kmD14B95;/83utxr|z4 63/"+&!.՗[\f08;7-9$(!񚸚(#&(؞ԟQ*QQ!Q2RVVVVVVXXXX[0[*[$[z\7\h]]]]^k_L_aaaaab2b4ddddddddddeeffjjjjjjjj~jjjk\kkloooooooooooooooqqqqqqqqqr5rFspsrttttvFvBvLvwwwwwwwxxxxyyyzWz||{{|{|||||||~.~>~F~7~2~C~+~=~1~E~A~4~9~H~5~?~/DqrposƁÁɁ	q~gч҇Ƈȇˉ;6D8=
 A?sIKHJD>BE?}9M(uJeK~l[pZTʕ˕̕ȕƖ֗ӘF5;?Ϟޞܞݞ۟>KSVVXX[8_]ab3dddedddefg&jjjjjjjjk_kxkp	popoppqqqqswsuttuvVvXvRwwwwyyzazbz`zz|+|'|*||#|!|~T~U~^~Z~a~R~YHwv́ς
υͅЅɅ(9,+PYcfd_UIMГԕ֕ЕՖܖٖۖޗ$MOLNS>?=.ONMʛɛțQ]`,Q3VXXX[^aaaae effjjjjppp(pppprrrXrsxsztttuuv_vawyyzkzi|>|?|8|=|7|@~k~m~y~i~j~s؅݅Յ`_V^A\XIZNOFY
|rvlztTNѓߓÓȓܓݓ͓֓ؓדܖ*'aܗ^X[EI֛۝arjlRVVVVVX[@[C[}[]aaeeefg'jp>p0p2rs{tvbvey&y*y,y+zz|L|C|M||~}~|~L ڂf
dplfo_k˔0ęRQ+075y/_caQ7Q8VVVY\l]aaeeefjkjkpLrrttviw|P~~-#"!jltw}_.35:82+892geWEC@>ϛTQ-%\fgQ<Q;VVV[]]_Nae$k
kapQpXstuvnvly|`|_~}߉roaHDQR=>×kUUMқI1>;ӝן4ljV]b e#e+e*fktz|d|c|e~~~8?1c`dho\Z[WӚԚќTWV垟VXe,p^vqvrwP69bwjBHDƘp_"X_|}wr^kpc|l|n;rpq^֛#pdwڋwɚbe~Ŕ}~|wxTr(j1|r00000A0B0C0D0E0F0G0H0I0J0K0L0M0N0O0P0Q0R0S0T0U0V0W0X0Y0Z0[0\0]0^0_0`0a0b0c0d0e0f0g0h0i0j0k0l0m0n0o0p0q0r0s0t0u0v0w0x0y0z0{0|0}0~00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000#$%&'()*+,-./012345Q6789:;<=>?@ABCDEFGHIJKLMNO$`$a$b$c$d$e$f$g$h$i$t$u$v$w$x$y$z${$|$}NBN\QSSNNNGNV\n_sNQNN.NNNNQRSlSW YY,\]ekklr?N1N<NNNNNNRSSLW"W#YY/[[\\;\t\s^^^_b	bPll6lCl?l;rrsyOOO,NONO NOOOOO"OONOQRR	RRS"SSMSTVVW.W*W4Y<YY|YY{Y~YwY[V\\%\|\z\{\~]^u^___t___b\b^bdbabfbbbYb`bZbeeeg>g9g8g;g:g?g<g3llFlRl\lOlJlTlKlLpqr^rrsu*vzuQx|}M~"$ #OVO;ObOIOSOdO>OgORO_OAOXO-O3O?OaQQRRR!RRS	ScSrSST0T7T*TTTETTT%TT=TOTAT(T$TGVVVWAWEWLWIWKWRYY@YYYYYYYYYY[[\(\*\\\\\\\\\\]^
^^^^^^___x_v______________` _b:bbbbbbbqb{bzbpbbbwb}brbte7eeeeegEgGgYgUgLgHg]gMgZgKklllxlglkllllqlolillmllllflslel{lptpzrcrrrrrrrsssssu:u9uuvy=4xɏ0(/-N3OO|OO}OOOvOtOOOwOLOOjOOyOOxOOOOOOOOkOnQQQR5R2R3RFR1RS
SS<SSTTTTTTTkTzT~TeTlTtTfTToTaT`TTcTgTdVVWoWrWmWkWqWpWvWWuW{WsWtWbWhW}YYEYYYYYYYYYYYYYYYYY[b[e[[\D\G\\\\\\\\\\\\\\\\\\^^^_(_"_#_$_T__~_}__`-`&``2``4`
``3```,`"```.````	`bb=bbbbbbbbbbbbbbe=eef	efffeffffefffg
gglgggvg{ggggtgggzggggg}ggxgygk%kk~kllllllllllllllllllllllllllm0lllllllppppppppppprjrrrrrrrrrrssssssssttu?u@u>uuvvvvvwwwwwwyBy?yzxz{z|u|5 ÂpomnVҏˏӏ͏֏Տא9=<:COOOOOOOOOOOOOOOOOOORDRIRRS=S|SSSSTTTTTTÃTTTTTTTTpTTTTrTTWWWWWWWWWWWWWWWXYYSYYYZ YYYYYYYYYYYYYYYYY[\L\\\\\\\\\\\\\\\\\\\\]^!^"^#^ ^$^^^^^^__._V_`7`9`T`r`^`E`S`G`I`[`L`@`B`_`$`D`X`f`nbBbCbccbccbbccbbc ccbcbbeAeCeef6f!f2f5ff&f"f3f+f:ff4f9f.ggggggggggggggggggggggggggggggggggggggggggk(kkkkkkl l!m(m4m-mm<m?mm
lm3mmm:mmm mmBmmm7mmm@mm m,mm"m	mppppppppprArIrJrlrprsrnrrrrrrrrsssssssssssssssssttu.uGuHuuvyvwwwww
vvvwwxxxxxxxx	xxyJyLyKyEyDyyyyyzz~z{ {|z|x|y|||}}}X7؀ǀрȀЀŀـ܀ʀՀɀπ׀́!ق Ճ:ւwt|sANgjiӊr񐽐ՐŐǐːȑԑӖTOQSJNPPPPP"P0POOP3P7P,OOPPP P'P5P/P1PQZQQQQQQQRaRZRRR^R_RURbRSSU&TUUTTTUTUUTUUTU
TTTTUUUWWWX2WWWWWWWWWWWWWYYJZZZ-Z.ZZZZ
ZZ3[l[[[\\V\T\\\\\] \^)^(^^^^_3_0_g`]`Z`g`A`````````````bbFbccVc,cDcEc6cCcc9cKcJc<c)cAc4cXcTcYc-cGc3cZcQc8cWc@cHeJeFeeeefJf_fGfQgghhhIh2h3h;hKhOhh1hh5h+h-h/hNhDh4hhhh&h(h.hMh:h%h k,k/k-k1k4kmkkkkkkkl%mzmcmdmvmmammXmbmmmommmmmm^mgm`mmpm|m_mmm/mhmm~mmmmm{m}mumppppp9ppppppppppppprBrxrwrvs rrrrrrssssssssssssssssssttttu!u[u_uuuuuuuuvvwwwwww#wwwww"w'x#x,x"x5x/x(x.x+x!x)x3x*x1yTy[yOy\ySyRyQyyyyyyyyyzzzzzzzz{{{{{{{
{{	{|||||||}}}}}}}}}}}\a^`][>9 /%3-DQ%V?A&"BN*<M$ 7/)GELS,K'HSRCDmuvrqo~t|GW{vxюӏ֐ِڐߐؐېאܐPNOՑږ\_ߛ/NPpPjPaP^P`PSPKP]PrPHPMPAP[PJPbPPEP_PiPkPcPdPFP@PnPsPWPQQRkRmRlRnRRS-SUuUvU<UMUPU4U*UQUbU6U5U0URUEUU2UeUNU9UHU-U;U@UKW
WWXWWWWX WWXWXWWXWWWWWWXWXWXXWWWXXY\Z`ZXZUZgZ^Z8Z5ZmZPZ_ZeZlZSZdZWZCZ]ZRZDZ[ZHZZ>ZMZ9ZLZpZiZGZQZVZBZ\[r[n[[\Y]]]]] ]](]]&]%]]0]]#]].^>^4^^^^^_6_8___`````````````````````c2ceccc}ccccccccocccnccuccmcc|cc;ccxcccccpeSefefaf[fYf\fbghyhhhhmhnhhiVhohhhhuhthhhwhh|hkhrhhhqh~hhhhhhhxh{hhhh}k6k3k7k8kkkkkl*mmmmntmmmmmmn mmmmmmmmmmmmmmmmmmmmmmmmmmmpqpqpqpqpqppqqq ppqqqr~r{r|rssssss
srssssssttstt sssttstuducuuuuuuuvvvw9w/w-w1w2w4w3w=w%w;w5xHxRxIxMxJxLx&xExPydygyiyjycykyayyyyyzzz{5{G{4{%{0{"{${3{{*{{1{+{-{/{2{8{{#||||}5}=}8}6}:}E},})}A}G}>}?}J};}(cɀGCH%-,!'"83:42tzstu}~vYVņȆ̆ÆR։ىՊ0',9;\]}}{y؎ގݎ܎׎$!ԐVXZSUz|mkqoj噗PPPPPPPPPPPhPPPPQ_QSSSSUUUUUwVEUUUUUUUUUU}UUUUUUWX)X7XXX'X#X(WXHX%XXX3X?X6X.X9X8X-X,X;YaZZZZzZZZxZZ|ZZZZZ7ZZZZZZZ{Z}ZZZZZ[[[[[[[\\0]7]C]k]A]K]?]5]Q]N]U]3]:]R]=]1]Y]B]9]I]8]<]2]6]@]E^D^A_X___``````a`a
aa`a````aaaa`aabJccccccccdcccccccdaccccccccccccccce2egejede\eheeeeeeeef|flf{ffqfyfjfrgihihi*hhhihhhhhiihhihiiphihhihhhhhii
ihhhhhhhihhii%hk9k;k?k<kkkkkkkkl0mnFnGnnInn<n=nEnbn+n?nAn]nsnn3nKn@nQn;nn.n^nhn\nan1n(n`nqnkn9n"n0nSnen'nxndnwnUnynRnfn5n6nZq qq/pq.q1q#q%q"q2qq(q:qrKrZrrrrrsss0s"s1s3s's2s-s&s#s5st.t,t0t+ttt!t-t1t$t#tt)t t2tu/uouluuuuuuuuvvvwFwGwDwMwEwJwNwKwLwwx`xdxex\xmxqxjxnxpxixhx^xbytysyrypzz
zzzzzz{J{;{D{H{L{N{@{X{E||||}X}o}c}S}V}g}j}O}m}\}k}R}T}i}Q}_}N>?ef׀QOPԁCJROG=M:<=?u;σ#ƃȃヿ݃؃˃΃փɄ	ބՃǃуÃă׃ۃ؆ӆچ݆܆׆шHVU׈ɉ݉ډۊNM9Y@WXDERHQJLO_؍Ӎ͍Ǎ֍܍ύՍٍȍ׍Ŏ-4/, ad_b`
%& '${~ȖÖlpnNNNPPPPPPPPPPPPPPPPPQRzRxR{R|UUUUUUUUUUUUUUUUUUUUUUUWXSXhXdXOXMXIXoXUXNX]XYXeX[X=XcXqXZZZZZZZZZZZZZZZZZZZZ[[[\\3]q]c]J]e]r]l]^]h]g]b]^O^N^J^M^K^^^^^_@__`aIaJa+aEa6a2a.aFa/aOa)a@b hb#b%b$cccddd	d d$d3dCdddd9d7d"d#dd&d0d(dAd5d/d
dd@d%d'dcdd.d!deoeefffffffffxg ifi_i8iNibiqi?iEiji9iBiWiYiziHiIi5ili3i=iehixi4iii@ioiDiviXiAitiLi;iKi7i\iOiQi2iRi/i{i<kFkEkCkBkHkAkkkkkknnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnqGqTqRqcq`qAq]qbqrqxqjqaqBqXqCqKqpq_qPqSqDqMqZrOrrrrrs<sBs;s:s@sJsItDtJtKtRtQtWt@tOtPtNtBtFtMtTttttuuyuwiuvvuuuuuvuuuuuvvvwUw_w`wRwVwZwiwgwTwYwmwxxxxxxxxxxxyxxxx{y|yy}yyzzzzzzz"zzzzzzz{f{d{m{t{i{r{e{s{q{p{a{x{v{c|||}}}}}}}z}}{}}|}}}}}}mkghl܀!d`w\i[brg!^vgoDaID@BE?VvyeQ@g0M}ZYts]^7:4zCx2E)لK/B-_p9NLRoń;G63h~D+`TnPֆM	ֈˈ͈Έވۈڈ̈Љ߉܉va?wutz<KJedf̍hiЍ R?DI=noHR0:f3e^.JFmlO`go6ap1TcPrNSLV2Ζswxr[瞀PPPPPPPPPPPPPPPQRRRRS0SV'VVVUVVVVVUVVUUXX|XXXXXXtXXzXXXXvXXX{XXXYkZZZZZZZZZZZZZZZZZZ[w[[\c]]]}]]z]]w]]]]~]|]]y]^X^Y^S^^^^^^^^^_D_C_o_a,a(aAa^aqasaRaSaralaataTaza[aea;ajaaaVb)b'b+d+dMd[d]dtdvdrdsd}dudfddNdd^d\dKdSd`dPdd?dldkdYdedwesefffggg"iiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiikJkMkKkkkkkknnnoo%no7no.o	oNooo'oo;ono
o6osnno-o@o0o<o5noooConno9ono:ooooo!qqqqqqqq{qqqrDrSrrrsCsMsQsLtbtstqtutrtgtnu uuu}uvvvvvv
vvww|wwwnwwow~wxxxxxx~xxxxxxxyyyyyyyyyyyz+zJz0z/z(z&zzzz{{{{{{{{{{{{R{{{||||}}}}}}}}}}}}}}}}}}}}}}}}s$]\΄̈́ЄǄ̄քτׄԄ҄ۄa3#(k@.!C,A>F 2*-<:15B&'8$0뉝芫=hiՌό׍	
 # "$!zrysvzy}~-X}z~{Η͘ Ùǚ>?`a_PQQ0PQQPPQQPQ
RRRRVHVBVLV5VAVJVIVFVXVZV@V3V=V,V>V8V*V:WXXXXXXXXXXZZZZZ[Z[Z[[[[\g]]]]]]]]]]]]^i^]^`^\}^^^_I_aaayaaaaaaaaaaaaaafab-dndpddddddddddddhddevezeye{eefffffffj jjiijiij iiijjij'iijiij@jiijiij	jjj%jij&jijkQkkkkll kloAo&o~oooooooboOooZoovolooUoroRoPoWooo]o oaoko}ogooSooiooocowojo{qqqqqqqqqqqqqqqqqrrsXsRs^s_s`s]s[sasZsYsbtttttt}ttt|tyuuu~v%vvvvv#vv(vvvvvwwwwxxxxxxxxxxxyyyyyykvz9zzz{{{{{{{{{||||}}}}}}~}}}}}}}vdgOSRPNQ$; )	
'+*(.1& 0/bVcdwsXT[RaZQ^mjPN_]olzn\eO{ubgiZ	ϊƊӊъԊՊ׊Ŋ؊Êٌ>Mߌٌڌ݌獠 #%$.&',$ #spogk/+)*2&.ВÒĒْϒߒؒגݒ̒ʒȒΒ͒Ւɒޒђƒ|ӗZЗϘ&)( 'ܙ͙ϙәԙΙəؙ֙˙י̚FCgtqfvuphdl ӟQQQQQQS4SVpV`VnVsVfVcVmVrV^VwWWXXXXXXXX[[[[![[[[[([[ [[]]]]]]]]]]]]]^g^h^f^o^^^^^_K_aaaaaaaaaaaaddddddddddde3ee|effffffffffg#j4jfjIjgj2jhj>j]jmjvj[jQj(jZj;j?jAjjjdjPjOjTjojij`j<j^jVjUjMjNjFkUkTkVkkkkkllloooooooo^ooooopoooooooooooooooqqqqqqqqqqqqqqqqqqrrsisfsgslsesksjtttttttuuv/v-v1v=v3v<v5v2v0vvwwwwwwwwwwxxxxxxxxxxxxyzDzHzGzzzzz{{{{{{{{{{{{{{{{|||||~~!~~~~ ~~~~~~"~~~~~~%~$C{|z*)lUVWVEkMSaX@FdAbDQGc>[qNnuUg`f]Telcedy&0-.'1")#/,݋ߊȊފln3>8@E6<=A0?6.52974vy{356'z8<#F-˓%4$)95*	 ͕ԗ5/2$')皹3|~{z}% )"՞֞=Q&Q%Q"Q$Q Q)RVVVVVVV~VVVXXXX[-[%[2[#[,['[&[/[.[{[[]^l^j__aaaaaaaaaddddddeeeefjjjjjjjjjjjjjjjjjjjjjjjk[kl	ooooooooooooooqqqqqqqsssnsotttttttttuuuuuvCvHvIvGvvwwwwwwwwwxxyxxxyxxyyyz\z[zVzXzTzZzzz||{| {{|{|{||	||{{|{{||
|~-~<~B~3H~8~*~I~@~G~)~L~0~;~6~D~:E~},ā́ʁŁǁ[Z\{w|zxWyvhŇɇÇ̇ćʇއ53<>AR7B"OprqooNMSPLGC@~8dVG|X\vIPQ`mLjyWUROqw{a^cgNYǕɕÕŕ ՗ԗADJIEC%+,*32/-10H3Ag6./180EBC>7@=-Ȟڞ$#"TQ1Q-Q.VVVVVVYp[<\i\j]^m^naaaaaaaaaadeddeedeefffjjjjjjjjjjjk^klpppppppop op&oop
rqqrqsvttttttttuuv\vdvYvPvSvWvZvvvwwxyyyy	yyyyyz_||)|| ||-||&|(|"|%|0~\~P~V~c~X~b~_~Q~`~W~SuсЂ_^ƅÅǅą˅΅ȅŅ҆$iۇ߇ԇ܇Ӈ؇㇤ׇو݉SKOLFPQI*'#305G/<>1%7&6.$;=:Bu \b`WV^eg[Za]iTFGHK(:;>ҕӕіז]ߖؖݗ#"%חٗ֗ؗPQRA<:	
ܛ)5JLKǛƛÛӛě\SOJ[KYVLWRT_XZߟ %+*)(LUQ4Q5RRSVVVVVVXXXY[=[>[?]^p_aeeee	eeeeefjjjjjjjjjjjjjk`klpp'p pp+p!p"p#p)pp$pp*rr
rrrrrrrrttttuv`wwwwyyy!yyyyzgzh|3|<|9|,|;||~v~u~x~p~w~o~z~r~t~hKJxׁՂdacمڅׅ؅߅܅хޅ 	
bZ[Wa\X]YPHJ@SVTKUQBRWCwv	mxsjo{RQOPS@?ޓǓϓړГ̓ٓʓԓՓēΓғ}ڕۖ)+,(&ݗޗߘ\Y]WHGC%$" '#
7ޛԛכܛٛ՛ڝwqx}ktupis{oyh-@AMVWXS7VVVX[E]]^^__aeeeeefffjjjjjjjjp<p5p/p7p4p1pBp8p?p:p9p@p;p3pArrrs}s|tvvvvwwwwwy%y#y'y(y$y)yznzlzmz|I|H|J|G|E|~{~~~~yہقhi" 	cf`j]hcegmYVWUXZCA ( 	
ޕߗ./`bc_PNYLKS241,*6).8-ǚʚƛ@	0.[`^]YQ:Q9RRVVV[H[G]]^aekjkjk pCpDpJpHpIpEpFrrrs~uvjwy-y1y/|T|S|~~~~~~M0݆*&#'.! )%) $+JminkyxEz{^[]FDE?;6)=<09*7,@15:dɘƘXV9=FDBA:?͛:R+,#()$!ǝʝϝŝÝΝȝ̝͝z1NedNVVVYq[K[L]]^e!e e&e"kkk	lpUpVpWpRrrrsttttvmvy5yzpzq|W|\|Y|[|Z||~Oނk453,26,(&*%q~`bGLPJKOGEHIF?ji˙T[NSTLOHJIRPЛ+;VUFH?D93A<742=6۝ҝޝڝ˝Нܝѝߝٝ؝֝՝ݞ532BkQ=RXXYr[M]؈/_Obbbe)e%efkkkkp[pZr"sssvpw|g|f~l:@9<1;>02.3vtsEdcbU]W^ėŘ VY RXPJMKUYLNО876COqpnoVV[N\me-ffkp_pap]p`r#ttwy8yy|j~mC875KkhiFCGǗ^՛Ycgfb^` 	FtuvVe.ekkkkpbr&rwwy9|i|k|~~~~FGHyz|{nmoqsIr_hnm	Gx{zyWpf|o<Ôtxvu`tsqu
phpe|j>=?ɗKst̙adfg$Hbkr'Lih.r)Kyvukzpipj~IPK     N\#G  G  #  Parser/Encodings/x-sjis-unicode.encnu 6$        x-sjis-unicode                           (%                               	   
                                                                      !   "   #   $   %   &   '   (   )   *   +   ,   -   .   /   0   1   2   3   4   5   6   7   8   9   :   ;   <   =   >   ?   @   A   B   C   D   E   F   G   H   I   J   K   L   M   N   O   P   Q   R   S   T   U   V   W   X   Y   Z   [      ]   ^   _   `   a   b   c   d   e   f   g   h   i   j   k   l   m   n   o   p   q   r   s   t   u   v   w   x   y   z   {   |   }   >     a  b  c  d  e  f  g  h  i  j  k  l  m  n  o  p  q  r  s  t  u  v  w  x  y  z  {  |  }  ~                                                                  \                                          @        @                                            OL                                          @                                             @                                                 ^                                                   @c                                        @                                         @                                        @                                        @W                                        @                                        @                                        @                                        @	K                                        @
                                        @
                                        @                                        @?                                        @                                        @                                        @v                                            @3                                        @                                        @                                        @j                                        @'                                        @                                        @                                        @^                                        @                                        @                                        @                                        @R                                        @                                        @                                        @                                        @F                                        @                                        @e                                                     >         	 
                  abcdefghijklmnopqrstuvwxyz{|}~      ! " # $ % & '0 00000 @ >?00000N0000   \0 \ & %    	00;=[]00	0
0000000"   "`"f"g""4&B&@  2 3!  
  &&%%%%%%%%%%% ;0!!!!0"""""""*")"'"( !!" "" "#"""a"R"j"k""=""5"+",!+ 0&o&m&j   ! %!"#$%&'()*+,-./0123456789:ABCDEFGHIJKLMNOPQRSTUVWXYZ0A0B0C0D0E0F0G0H0I0J0K0L0M0N0O0P0Q0R0S0T0U0V0W0X0Y0Z0[0\0]0^0_0`0a0b0c0d0e0f0g0h0i0j0k0l0m0n0o0p0q0r0s0t0u0v0w0x0y0z0{0|0}0~00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 !"#$%&'()*+,-./012345Q6789:;<=>?@ABCDEFGHIJKLMNO% %%%%%%%,%$%4%<%%%%%%%#%3%+%;%K% %/%(%7%?%%0%%%8%BNUZ?Tac(Y"uzP`cn%efhW'ebq[YІ{}b}b|[^c	fhHǗgONO
OMOPIVY7YZ\	`aapfipuOupy}}ÄcUzS;NNW߀xN Xn8z2(/QASpTTVY_m-bpTS[pSo\zNxn&VUk;YSmftܕVBNKOSU[0_qf fhl8lm)t[vzN4[`muvʙ`iSQWX0YD[^`(cclopqqYqs?~vх`[XielZu%QY.Ye__bej*k'ksV,\l{Q\KahvraNYOSx`in)zONSNOUO=OOsRSV	YZ[[yfggkLlpksyyz<{ۃwӇfV)NO\brYu;傽řNOVXJX^_`*``babbe9AffhmwppuLv}uQRYT[]ahimxˈWrmlWgΒRVT^bdh<h8ksrxzkҍk핣i[f\i}MNc{ j+jho_RrU`pbm;nnф[DN9Sij:h*Q\zÄܓV[(h"1|RtN~OQ[R
RR]UX*Y[[[^r^y`aacacebghShk>kSlWo"ooEtuvwz{|!}6f̌Qeә(N8T+\]svLw<\TXOOSqUVhWYG[	[\^^~_cg:eeghhj_^0kll}uyH[cz } _w̏<NP}Q Y[b/bdk:ruyGpcʗT	TUhTjXpx'guSt[PNNENOST8[_`%eQg=lBlrlpxtzvz{}|}fer[S\E]bbcn Z1ݒoyZNNNOOPQGzQqQSTS!SSUX\_7_J`/`P`mceYjKlrrwNWZNQ\-fim\@fiushP|PRWG]&ek#k=t4yy{K}ʂ̈_9ёTN]P6SS:rsw掯ƙșQwa^UzzPv[ӐGN2jۑ\Q\Hczltazq|h~phQlRT͐SfyAOPRQDUSW-sWYQ_b_`uavagacd:elfohBnufz=|}L}~KkJ͊cfΛRbdohAPk lzoTzt}P@#gNP9P&PeQ|R8RcUWXZ^aabcrij)r}rs.xxo}ywҐcuzUxQCSS^{_&nnss}C7 PNNPST|VY[d]^_'b8eEgnVr|ʈN7ǘgNNOSHTIT>Z/__`hjtZxwN^NO|OPPQIQlRRRSSTTUWQWY}[T[][]]]^x^^^_`RaLbbce;ffCfgmh!hil_m*min/nu2vxlz?|}}}^}T*RLaʑuqx?M؝;R[RSTXboj_QKR;TJVz@w`sDo	pu_`ښrۏkdNVWdXZZ`haffh9hmu}:nBNOPSU]o]]gltsxPWP^c+PPQg TX^Y[_ibMch=ksnp}rxx&yme}0܈	RdW(gPjQWB*X:iT]WxO\RJTd>f(ggz{V}"/h\{9SQR7[bddg-kvcLvfRN	PS\q`dech_qsu#{~ۑxefkNNO:OR:SSUVXYYY[P\M^^+_`ce/[\eeegkbk{lsEyIy|}}+󉖊^ifǌܖ̘koNO<OQP[W[aHcfBk!nlr>tuxy:3ꄔlP_X+z[NSWY1Z[`nou[ {Prg\aJ~Q\chfeqny>}ʐnǐPR\:gSp|r5Lȓ+[_1`N;S[bKg1krsz.kRQSTj[cj9} VSTh[\1]Oabm2yy}B~MҁFrt/1KlƑNOOQESA_bglAnsc~&͒SY[my]~.|X~qQSO\f%wzQ_eiokmnodv}]uQRb@ffn^}rfRSYs^_`UdPQRS SGSTUFU1VYhYZ<[\\\\^^^_pbbbccwfff-fvg~hjj5lmn	nXq<q&qguwx]yyeyz{|}9քI]<Tsaޑf~N
NNNWQRpWX4X["^8`dgagVmDruszcr V1Wbikq~Twr߇U\;O8OOUZ [[_aNc/efKhimxmu3uwy^y}3ク:2ݗNNRXuX\u\=N
Ŗcm{%ϘbVST9W^%cl4pwa|pBTt^]]iepgcngIiŘodz[Np,u]f/QR6RY_`'be?etffthhkcnrruv|VXːRYez^-`befgwzM|M~>
d_xRbcdBb-z{}vINQHSCS`[\\]b&bGdhh4lmEmgo\qNq}ez{}~Jz9n΍xwRMUo8q6Qhy~U|VLXQ\cffiZruuyyVy|} }D4;a PRuSSP	UXYOr=[\dS``c\cc?cdef]iioqNuvz|}}aIXlōpmPXaӅ5 OPtRGSs`ocIg_n,O\^e}SRQvc[X[k\
dgQ\NYY*lpQU>XY`bSg5iU@Ě(OSX[\^/_` aKb4flnހ΁Ԉ .ۛNSY'{,Lnp'SSUD[bXbblot"8o8QSSOFTYj1]zꏿhڌ7rHj=N9SXVWfbcekNmn[pwz{}=Ɔˊ[VX_>efjku7P$wW0_`efzl`uznE{u\z{Qyz6Zw@N-N[_bf<glkw;Njp&s*WNQFQU[^^3^__5_k_acfgonrRu:w:t9xv܍󒚕wRcWvgls͌Ósm%XiȉuېXZhciOCo,g؏&}Ti?opWjX[,},r*T
㝴NONP\PuRCTHX$[^^^^_`bc:chl@xyz}GD-؟ldXdeunv{inT_dMDQxXkY)\U^m~u[pOkou0QNTX5XWY\`_eg\n!v{ߌMx%x:R^WYt`PQZQQR UXTXXYW[\]`bd-gqhChhvmnompoq_Suyw{I{T{R|}qR0ciFv-0PRTX\admwzS\S?__mrywcy{kr슭hjaQzi4\J[őIpVx\o`eflZATQfǒYHQNMQꅙpXczKib~uwSWi`ߖl]N\<_Sрy^eNsQeY\?NY_͊oyyb[qs+q^t_c{dq|NC^NKWV`o}3]bdgwlm>t6x4ZFuO^bceWgovrL̀)MPWZhisqdrXjyw)O/ReSZbglv}{|6fo r~Q{xr{{Hj^auQu`QkbnvzOpb{OVzXY䖼O4R$SJSS^d,egl>lNrHrsuT~A,錩{đqic=fiujvxЅCS*SQT&Y^_|`bIbybekluvxy}w^j|8P\>_gkt5w	;gzS9u_f_<_ub{F<hgYZ}v~,O_jjl7otyhhUy^cuy҂ד(򄜆-T_lem\pӘ;eOtNNWY+Zf[Q^^`bvewefnmnr6{&P\tDOdkfaj\iSzWORo_^Egyym_bUlNriRT;VtXabnqYn||}e^NOuQuX@^c^s_
gN&=[|sPXvVxR%w{POY	rG{}菺ԐMORZ)_O݂WcUkiu+܏zBRXaUb
fk|?P#OSTFX1YI[\\])^bcge>egllpx2~+ނ*JҘlNONPRVWJY^=__b?fgghQ}! ~2T ,SPS\Xdg4rgwfzFRlkX ^LYTg,QvdixTWYf'gkTi^UggRh]NOSbg+lO~mNabno+Tsg*E]{\[ƇnJzY|lw RY"q!r_wۗ'aiZZQTT}fvߏYr]nQMh}}bdxj!Y[_ksv}Q2g(vgbR\$b;|~UO`}SN_QYr:6_%wS_y}3Vg󅮔Sa	alvR8U/OQQ*RS[^}`acg	gngms6s7u1yPՊJćYNOYN?P^|Y[^ccdfiJimnqu(z Iɉ!
e}
a~bk2lmtmge<m}a=jNqSu]Pko͆-R)T\egNhttuψ̖x_sz˄NcueRmAnt	uYxk|zܟOaneņ\NNPN!Q[ehmsvBwz|oҐ|ϖuR}P+Sgmqt3*Wt`XAm}/^NO6OQR]`sy<Ӓ4
bfktRRpȈ^`Kao#qI|>}o#,TBojp2RZA^_gi|imjorbr{~KQmy2P-Tqkjā`gNNkhi n~xU_NNN*N1N6N<N?NBNVNXNNkN_NNNNNNNNNNNNNNNNNNO	OZO0O[O]OWOGOvOOOO{OiOpOOoOOQOOOOOOOOOOPP(PP*P%POOP!P)P,OOPPPCPGgPUPPPHPZPVPlPxPPPPPPPPPPPPPPPPPQ	QQQQQQQ!Q:Q7Q<Q;Q?Q@QRQLQTQbzQiQjQnQQVQQQQQQQQQQQQQQQQQQQQQQQUQQQQQRRRRR'R*R.R3R9RORDRKRLR^RTRjRtRiRsRR}RRRRqRRRRRRRRRRRRRRRRRSSu8SSSSSS#S/S1S3S8S@SFSENSISMQS^SiSnYS{SwSSSSSSSSS|SfqSSSSTT=T@T,T-T<T.T6T)TTNTTuTT_TqTwTpTT{TTvTTTTTTTTTTTTTTTTTTTUUTTTTTU9U@UcULU.U\UEUVUWU8U3U]UUTUUU{U~UUUU|UUUUUUUUUUUVUVUUVUVNVPqV4V6V2V8VkVdV/VlVjVVVVVVVVVVVVVVVVVVVVVVW VWW	WWWWWWUWW&W7W8WNW;W@WOWiWWWaWWWWWWWWWWWWWX
WWXXXXrX!XbXKXpkXRX=XyXXXXXXXXXXXXXXXXXXXXXXXXXYY
YYhY%Y,Y-Y2Y8Y>zYUYPYNYZYXYbY`YgYlYiYxYYO^OYYYYYYYYZ%ZZZZ	ZZ@ZlZIZ5Z6ZbZjZZZZZZZZZZZZZ[[[[2Z[*[6[>[C[E[@[Q[U[Z[[[e[i[p[s[u[xe[z[[[[[[[[[[[[[[[[[[\\\\\\ \"\(\8\9\A\F\N\S\P\O[q\l\nNb\v\y\\\Y\\\\\\\\\\\\\]\]]]]\]]]]]"]]]]L]R]N]K]l]s]v]]]]]]]]]]]]]]]]]]]]^^^^^^6^7^D^C^@^N^W^T^_^b^d^G^u^v^z^^^^^^^^^^^^^^^^^^^^^^^__	_]_\____)_-_8_A_H_L_N_/_Q_V_W_Y_a_m_s_w____________________`_`!`````)``1```+`&``:`Z`A`j`w`_`J`F`M`c`C`d`B`l`k`Y`````````````````_````aMaa``a ``aa!``aaaGa>a(a'aJa?a<a,a4a=aBaDasawaXaYaZakataoaeaqa_a]aSauaaaaaaaaaaaaaaaaaaayaaaaaaaaaab bb	bbbbbb!b*b.b0b2b3bAbNb^bcb[b`bhb|bbb~bbbbbbbbbbbbdbbbbbbbbcbbc'ccbbcPc>cMdcOcccccvcccccckcicccccccccdd4ddd&d6edd(ddgdodvdNe*ddddddddddddddd	ddbdde,dddde deeee$e#e+e4e5e7e6e8uKeHeVeUeMeXe^e]erexeeeeeeeeeeeeeeeeegrf
fegsf5f6f4ffOfDfIfAf^f]fdfgfhf_fbfpffffffffffffffffff?fffffgggg&g'8g.g?g6gAg8g7gFg^g`gYgcgdggpgg|gjgggggggggggggggggggggjhhFh)h@hMh2hNhh+hYhchwhhhhhhhhjhhthhhihh~ihihi"i&hihhhhi6iihhi%hhhi(i*ii#i!hiyiwi\ixikiTi~ini9iti=iYi0iai^i]iijiiiiiiii[iiiiij.iiiiiiijjik
iiijijijij
jjj#jjDjjrj6jxjGjbjYjfjHj8j"jjjjjjjjjjjjjjjjjjjjkjkk1kk8k7vk9kGkCkIkPkYkTk[k_kakxkykkkkkkkkkkkkkkkkkkkkkkkkklllll$l#l^lUlbljllllll~lhlslllllllllllllllllmMm6m+m=m8mm5m3mmmcmmdmZmymYmmommnn
mmmmmmmmmmmmmmmmmn-nnn.nnrn_n>n#nkn+nvnMnnCn:nNn$nnn8nnnnnnnnnnnnnnnnoAopLnnno?no1no2no>onoozoxooooo[oomoo|oXoooofooooooooooooooop	popppoppotpppp0p>p2pQpcppppppppppppq	pqqqeqUqqfqbqLqVqlqqqqqqqqqqqqqqqqqqqqrrrr(r-r,r0r2r;r<r?r@rFrKrXrtr~rrrrrrrrrrrrrrrrrrrPss
ssss4s/s)s%s>sNsOsWsjshspsxsus{szsssssssstttot%st2t:tUt?t_tYtAt\titptctjtvt~ttttttsttttttttttuuuuuuuuuu&u,u<uDuMuJuIu[uFuZuiudugukumuxuvuuutuuuuuuuuuuuuuuuuuuuuuuuuuvuuuuvvv	vv'v v!v"v$v4v0v;vGvHvFv\vXvavbvhvivjvgvlvpvrvvvxv|vvvvvvvvvvvvvvvvvvvvvvv/vwwww)w$ww%w&ww7w8wGwZwhwkw[weww~wywwwwwwwwwwwwwwwwwwwwxxy&x y*xExxtxx|xxxxxxxxxxxxxxxxxxxyyyyy,y+y@y`yWy_yZyUySyzyyyyKyyyyyyyyyyyzzzzz zyz1z;z>z7zCzWzIzazbzizpzyz}zzzzzzzzzzzzzzzzzzzzzzzzzz{{{
{{3{{{{5{({6{P{z{{M{{L{E{u{e{t{g{p{q{l{n{{{{{{{{{{]{{{{{{{{{||{{|`| ||{{||{|#|'|*||7|+|=|L|C|T|O|@|P|X|_|d|V|e|l|u|||||||||||||||||||||;|||||}}}}}
}E}K}.}2}?}5}F}s}V}N}r}h}n}O}c}}}[}}}}}}}}}}}~=}}}}}}}}}}}}}~~
~#~!~~1~~	~~"~F~f~;~5~9~C~7~2~:~g~]~V~^~Y~Z~y~j~i~|~{~}~}~~~~~~~~~~~~8:ELMNPQUTX_`higxq܀!(?;JFRXZ_bhsrpvy}Qۀـ݀Āڀց	)#/KF>SQqneft_Ɂ́сف؁ȁځ߁
)+83@YX]Z_dbhjk.qwx~߂҂ރ܃	ك5421@9PE/+#|su΃؄" 8m*<ZwkniF,oy5ʄbل̈́ڄЄƄք!,@cXHAKUmꅇw~ɅυЅՅ݅܅
"0?MNUT_gqĆƆɈ#Ԇކ߆ۆ 	
4?7;%)`_xLNtWhnYScjˇЖևćǇƇ҈"!169';DBRY^bk~u}rÈĈԈ؈و݈
C%*+AD;68L`^fdmjotw~ډ܉݉%6A[RFH|mlbĊ͊ڊފۋ 3&+>(ALONIV[Zk_lot}:A?HLNPUblxz|bȌڌ
N͍gmqsύڍ֍̍ۍˍߍ	B504JGILPHYd`*cUvr|ƎŎȎˎێ
&3;9EB>LIFNW\bcdڏ!'659OPQRI>VX^hovr}bHۑ20JVXceisrɑˑБ֑ߑۑ,^WEIdH?KPZϒD."#:5;\`|nV֓דؓÓݓГȓ6+5!:ARD[`b^j)puw}Z|~oÕ͕̕Օԕ֕ܕ!(./BLOKw\^]_frlΖ˖ɖ͉MܗՖ$*09=>DFHBI\`dfhRҗkqy|z×Ɨȗ˗ܗOzߗ8$!7=FOKkopqtsĘØƘ	!$ ,.=>BIEPKQRLUߙۙݙؙљ+7EB@C>UM[W_bedikjϚњӚԚޚߚ"#%'()*./2DCOMNQXtʛƛϛћқԛ:	
.%$!0G2F>Z`gvx	*&#DA?>FH]^dQPYrozĝƝϝٝӝuy}a̞ΞϞОԞܞޞݞv!,>JRTc_`afgljwrvX/iǐYtdQqPK     N\(^R0  0    Parser/Encodings/iso-8859-4.encnu 6$        ISO-8859-4                                                                 	   
                                                                      !   "   #   $   %   &   '   (   )   *   +   ,   -   .   /   0   1   2   3   4   5   6   7   8   9   :   ;   <   =   >   ?   @   A   B   C   D   E   F   G   H   I   J   K   L   M   N   O   P   Q   R   S   T   U   V   W   X   Y   Z   [   \   ]   ^   _   `   a   b   c   d   e   f   g   h   i   j   k   l   m   n   o   p   q   r   s   t   u   v   w   x   y   z   {   |   }   ~          8  V     (  ;        `    "  f     }            W     )  <       a    #  g  J  ~  K                       .                    *    E  L  6                 r           h  j                         /                    +    F  M  7                 s           i  k  PK     N\/10  0    Parser/Encodings/iso-8859-2.encnu 6$        ISO-8859-2                                                                 	   
                                                                      !   "   #   $   %   &   '   (   )   *   +   ,   -   .   /   0   1   2   3   4   5   6   7   8   9   :   ;   <   =   >   ?   @   A   B   C   D   E   F   G   H   I   J   K   L   M   N   O   P   Q   R   S   T   U   V   W   X   Y   Z   [   \   ]   ^   _   `   a   b   c   d   e   f   g   h   i   j   k   l   m   n   o   p   q   r   s   t   u   v   w   x   y   z   {   |   }   ~            A     =  Z        `  ^  d  y     }  {         B     >  [       a  _  e  z    ~  |  T             9                             C  G        P        X  n     p        b     U             :                             D  H        Q        Y  o     q        c  PK     N\WYR  R    Parser/Expat.pmnu 6$        package XML::Parser::Expat;

use strict;

#use warnings; No warnings numeric??

use XSLoader;
use Carp;

our $VERSION = '2.47';

our ( %Encoding_Table, @Encoding_Path, $have_File_Spec );

use File::Spec ();

%Encoding_Table = ();
if ($have_File_Spec) {
    @Encoding_Path = (
        grep( -d $_,
            map( File::Spec->catdir( $_, qw(XML Parser Encodings) ),
                @INC ) ),
        File::Spec->curdir
    );
}
else {
    @Encoding_Path = ( grep( -d $_, map( $_ . '/XML/Parser/Encodings', @INC ) ), '.' );
}

XSLoader::load( 'XML::Parser::Expat', $VERSION );

our %Handler_Setters = (
    Start        => \&SetStartElementHandler,
    End          => \&SetEndElementHandler,
    Char         => \&SetCharacterDataHandler,
    Proc         => \&SetProcessingInstructionHandler,
    Comment      => \&SetCommentHandler,
    CdataStart   => \&SetStartCdataHandler,
    CdataEnd     => \&SetEndCdataHandler,
    Default      => \&SetDefaultHandler,
    Unparsed     => \&SetUnparsedEntityDeclHandler,
    Notation     => \&SetNotationDeclHandler,
    ExternEnt    => \&SetExternalEntityRefHandler,
    ExternEntFin => \&SetExtEntFinishHandler,
    Entity       => \&SetEntityDeclHandler,
    Element      => \&SetElementDeclHandler,
    Attlist      => \&SetAttListDeclHandler,
    Doctype      => \&SetDoctypeHandler,
    DoctypeFin   => \&SetEndDoctypeHandler,
    XMLDecl      => \&SetXMLDeclHandler
);

sub new {
    my ( $class, %args ) = @_;
    my $self = bless \%args, $_[0];
    $args{_State_} = 0;
    $args{Context} = [];
    $args{Namespaces}   ||= 0;
    $args{ErrorMessage} ||= '';
    if ( $args{Namespaces} ) {
        $args{Namespace_Table} = {};
        $args{Namespace_List}  = [undef];
        $args{Prefix_Table}    = {};
        $args{New_Prefixes}    = [];
    }
    $args{_Setters} = \%Handler_Setters;
    $args{Parser}   = ParserCreate(
        $self, $args{ProtocolEncoding},
        $args{Namespaces}
    );
    $self;
}

sub load_encoding {
    my ($file) = @_;

    $file =~ s!([^/]+)$!\L$1\E!;
    $file .= '.enc' unless $file =~ /\.enc$/;
    unless ( $file =~ m!^/! ) {
        foreach (@Encoding_Path) {
            my $tmp = (
                $have_File_Spec
                ? File::Spec->catfile( $_, $file )
                : "$_/$file"
            );
            if ( -e $tmp ) {
                $file = $tmp;
                last;
            }
        }
    }

    open( my $fh, '<', $file ) or croak("Couldn't open encmap $file:\n$!\n");
    binmode($fh);
    my $data;
    my $br = sysread( $fh, $data, -s $file );
    croak("Trouble reading $file:\n$!\n")
      unless defined($br);
    close($fh);

    my $name = LoadEncoding( $data, $br );
    croak("$file isn't an encmap file")
      unless defined($name);

    $name;
}    # End load_encoding

sub setHandlers {
    my ( $self, @handler_pairs ) = @_;

    croak("Uneven number of arguments to setHandlers method")
      if ( int(@handler_pairs) & 1 );

    my @ret;

    while (@handler_pairs) {
        my $type    = shift @handler_pairs;
        my $handler = shift @handler_pairs;
        croak 'Handler for $type not a Code ref'
          unless ( !defined($handler) or !$handler or ref($handler) eq 'CODE' );

        my $hndl = $self->{_Setters}->{$type};

        unless ( defined($hndl) ) {
            my @types = sort keys %{ $self->{_Setters} };
            croak("Unknown Expat handler type: $type\n Valid types: @types");
        }

        my $old = &$hndl( $self->{Parser}, $handler );
        push( @ret, $type, $old );
    }

    return @ret;
}

sub xpcroak {
    my ( $self, $message ) = @_;

    my $eclines = $self->{ErrorContext};
    my $line    = GetCurrentLineNumber( $_[0]->{Parser} );
    $message .= " at line $line";
    $message .= ":\n" . $self->position_in_context($eclines)
      if defined($eclines);
    croak $message;
}

sub xpcarp {
    my ( $self, $message ) = @_;

    my $eclines = $self->{ErrorContext};
    my $line    = GetCurrentLineNumber( $_[0]->{Parser} );
    $message .= ' at line $line';
    $message .= ":\n" . $self->position_in_context($eclines)
      if defined($eclines);
    carp $message;
}

sub default_current {
    my $self = shift;
    if ( $self->{_State_} == 1 ) {
        return DefaultCurrent( $self->{Parser} );
    }
}

sub recognized_string {
    my $self = shift;
    if ( $self->{_State_} == 1 ) {
        return RecognizedString( $self->{Parser} );
    }
}

sub original_string {
    my $self = shift;
    if ( $self->{_State_} == 1 ) {
        return OriginalString( $self->{Parser} );
    }
}

sub current_line {
    my $self = shift;
    if ( $self->{_State_} == 1 ) {
        return GetCurrentLineNumber( $self->{Parser} );
    }
}

sub current_column {
    my $self = shift;
    if ( $self->{_State_} == 1 ) {
        return GetCurrentColumnNumber( $self->{Parser} );
    }
}

sub current_byte {
    my $self = shift;
    if ( $self->{_State_} == 1 ) {
        return GetCurrentByteIndex( $self->{Parser} );
    }
}

sub base {
    my ( $self, $newbase ) = @_;
    my $p       = $self->{Parser};
    my $oldbase = GetBase($p);
    SetBase( $p, $newbase ) if @_ > 1;
    return $oldbase;
}

sub context {
    my $ctx = $_[0]->{Context};
    @$ctx;
}

sub current_element {
    my ($self) = @_;
    @{ $self->{Context} } ? $self->{Context}->[-1] : undef;
}

sub in_element {
    my ( $self, $element ) = @_;
    @{ $self->{Context} }
      ? $self->eq_name( $self->{Context}->[-1], $element )
      : undef;
}

sub within_element {
    my ( $self, $element ) = @_;
    my $cnt = 0;
    foreach ( @{ $self->{Context} } ) {
        $cnt++ if $self->eq_name( $_, $element );
    }
    return $cnt;
}

sub depth {
    my ($self) = @_;
    int( @{ $self->{Context} } );
}

sub element_index {
    my ($self) = @_;

    if ( $self->{_State_} == 1 ) {
        return ElementIndex( $self->{Parser} );
    }
}

################
# Namespace methods

sub namespace {
    my ( $self, $name ) = @_;
    local ($^W) = 0;
    $self->{Namespace_List}->[ int($name) ];
}

sub eq_name {
    my ( $self, $nm1, $nm2 ) = @_;
    local ($^W) = 0;

    int($nm1) == int($nm2) and $nm1 eq $nm2;
}

sub generate_ns_name {
    my ( $self, $name, $namespace ) = @_;

    $namespace
      ? GenerateNSName(
        $name, $namespace, $self->{Namespace_Table},
        $self->{Namespace_List}
      )
      : $name;
}

sub new_ns_prefixes {
    my ($self) = @_;
    if ( $self->{Namespaces} ) {
        return @{ $self->{New_Prefixes} };
    }
    return ();
}

sub expand_ns_prefix {
    my ( $self, $prefix ) = @_;

    if ( $self->{Namespaces} ) {
        my $stack = $self->{Prefix_Table}->{$prefix};
        return ( defined($stack) and @$stack ) ? $stack->[-1] : undef;
    }

    return undef;
}

sub current_ns_prefixes {
    my ($self) = @_;

    if ( $self->{Namespaces} ) {
        my %set = %{ $self->{Prefix_Table} };

        if ( exists $set{'#default'} and not defined( $set{'#default'}->[-1] ) ) {
            delete $set{'#default'};
        }

        return keys %set;
    }

    return ();
}

################################################################
# Namespace declaration handlers
#

sub NamespaceStart {
    my ( $self, $prefix, $uri ) = @_;

    $prefix = '#default' unless defined $prefix;
    my $stack = $self->{Prefix_Table}->{$prefix};

    if ( defined $stack ) {
        push( @$stack, $uri );
    }
    else {
        $self->{Prefix_Table}->{$prefix} = [$uri];
    }

    # The New_Prefixes list gets emptied at end of startElement function
    # in Expat.xs

    push( @{ $self->{New_Prefixes} }, $prefix );
}

sub NamespaceEnd {
    my ( $self, $prefix ) = @_;

    $prefix = '#default' unless defined $prefix;

    my $stack = $self->{Prefix_Table}->{$prefix};
    if ( @$stack > 1 ) {
        pop(@$stack);
    }
    else {
        delete $self->{Prefix_Table}->{$prefix};
    }
}

################

sub specified_attr {
    my $self = shift;

    if ( $self->{_State_} == 1 ) {
        return GetSpecifiedAttributeCount( $self->{Parser} );
    }
}

sub finish {
    my ($self) = @_;
    if ( $self->{_State_} == 1 ) {
        my $parser = $self->{Parser};
        UnsetAllHandlers($parser);
    }
}

sub position_in_context {
    my ( $self, $lines ) = @_;
    if ( $self->{_State_} == 1 ) {
        my $parser = $self->{Parser};
        my ( $string, $linepos ) = PositionContext( $parser, $lines );

        return '' unless defined($string);

        my $col = GetCurrentColumnNumber($parser);
        my $ptr = ( '=' x ( $col - 1 ) ) . '^' . "\n";
        my $ret;
        my $dosplit = $linepos < length($string);

        $string .= "\n" unless $string =~ /\n$/;

        if ($dosplit) {
            $ret = substr( $string, 0, $linepos ) . $ptr . substr( $string, $linepos );
        }
        else {
            $ret = $string . $ptr;
        }

        return $ret;
    }
}

sub xml_escape {
    my $self = shift;
    my $text = shift;

    study $text;
    $text =~ s/\&/\&amp;/g;
    $text =~ s/</\&lt;/g;
    foreach (@_) {
        croak "xml_escape: '$_' isn't a single character" if length($_) > 1;

        if ( $_ eq '>' ) {
            $text =~ s/>/\&gt;/g;
        }
        elsif ( $_ eq '"' ) {
            $text =~ s/\"/\&quot;/;
        }
        elsif ( $_ eq "'" ) {
            $text =~ s/\'/\&apos;/;
        }
        else {
            my $rep = '&#' . sprintf( 'x%X', ord($_) ) . ';';
            if (/\W/) {
                my $ptrn = "\\$_";
                $text =~ s/$ptrn/$rep/g;
            }
            else {
                $text =~ s/$_/$rep/g;
            }
        }
    }
    $text;
}

sub skip_until {
    my $self = shift;
    if ( $self->{_State_} <= 1 ) {
        SkipUntil( $self->{Parser}, $_[0] );
    }
}

sub release {
    my $self = shift;
    ParserRelease( $self->{Parser} );
}

sub DESTROY {
    my $self = shift;
    ParserFree( $self->{Parser} );
}

sub parse {
    my $self = shift;
    my $arg  = shift;
    croak 'Parse already in progress (Expat)' if $self->{_State_};
    $self->{_State_} = 1;
    my $parser = $self->{Parser};
    my $ioref;
    my $result = 0;

    if ( defined $arg ) {
        local *@;
        if ( ref($arg) and UNIVERSAL::isa( $arg, 'IO::Handle' ) ) {
            $ioref = $arg;
        }
        elsif ( $] < 5.008 and defined tied($arg) ) {
            require IO::Handle;
            $ioref = $arg;
        }
        else {
            require IO::Handle;
            eval {
                no strict 'refs';
                $ioref = *{$arg}{IO} if defined *{$arg};
            };
            if ( ref($ioref) eq 'FileHandle' ) {

                #for perl 5.10.x and possibly earlier, see t/file_open_scalar.t
                require FileHandle;
            }
        }
    }

    if ( defined($ioref) ) {
        my $delim = $self->{Stream_Delimiter};
        my $prev_rs;
        my $ioclass = ref $ioref;
        $ioclass = 'IO::Handle' if !length $ioclass;

        $prev_rs = $ioclass->input_record_separator("\n$delim\n")
          if defined($delim);

        $result = ParseStream( $parser, $ioref, $delim );

        $ioclass->input_record_separator($prev_rs)
          if defined($delim);
    }
    else {
        $result = ParseString( $parser, $arg );
    }

    $self->{_State_} = 2;
    $result or croak $self->{ErrorMessage};
}

sub parsestring {
    my $self = shift;
    $self->parse(@_);
}

sub parsefile {
    my $self = shift;
    croak 'Parser has already been used' if $self->{_State_};

    open( my $fh, '<', $_[0] ) or croak "Couldn't open $_[0]:\n$!";
    binmode($fh);
    my $ret = $self->parse($fh);
    close($fh);
    $ret;
}

################################################################
package    #hide from PAUSE
  XML::Parser::ContentModel;
use overload '""' => \&asString, 'eq' => \&thiseq;

sub EMPTY ()  { 1 }
sub ANY ()    { 2 }
sub MIXED ()  { 3 }
sub NAME ()   { 4 }
sub CHOICE () { 5 }
sub SEQ ()    { 6 }

sub isempty {
    return $_[0]->{Type} == EMPTY;
}

sub isany {
    return $_[0]->{Type} == ANY;
}

sub ismixed {
    return $_[0]->{Type} == MIXED;
}

sub isname {
    return $_[0]->{Type} == NAME;
}

sub name {
    return $_[0]->{Tag};
}

sub ischoice {
    return $_[0]->{Type} == CHOICE;
}

sub isseq {
    return $_[0]->{Type} == SEQ;
}

sub quant {
    return $_[0]->{Quant};
}

sub children {
    my $children = $_[0]->{Children};
    if ( defined $children ) {
        return @$children;
    }
    return undef;
}

sub asString {
    my ($self) = @_;
    my $ret;

    if ( $self->{Type} == NAME ) {
        $ret = $self->{Tag};
    }
    elsif ( $self->{Type} == EMPTY ) {
        return 'EMPTY';
    }
    elsif ( $self->{Type} == ANY ) {
        return 'ANY';
    }
    elsif ( $self->{Type} == MIXED ) {
        $ret = '(#PCDATA';
        foreach ( @{ $self->{Children} } ) {
            $ret .= '|' . $_;
        }
        $ret .= ')';
    }
    else {
        my $sep = $self->{Type} == CHOICE ? '|' : ',';
        $ret = '(' . join( $sep, map { $_->asString } @{ $self->{Children} } ) . ')';
    }

    $ret .= $self->{Quant} if $self->{Quant};
    return $ret;
}

sub thiseq {
    my $self = shift;

    return $self->asString eq $_[0];
}

################################################################
package    #hide from PAUSE
  XML::Parser::ExpatNB;

use Carp;

our @ISA = qw(XML::Parser::Expat);

sub parse {
    my $self  = shift;
    my $class = ref($self);
    croak "parse method not supported in $class";
}

sub parsestring {
    my $self  = shift;
    my $class = ref($self);
    croak "parsestring method not supported in $class";
}

sub parsefile {
    my $self  = shift;
    my $class = ref($self);
    croak "parsefile method not supported in $class";
}

sub parse_more {
    my ( $self, $data ) = @_;

    $self->{_State_} = 1;
    my $ret = XML::Parser::Expat::ParsePartial( $self->{Parser}, $data );

    croak $self->{ErrorMessage} unless $ret;
}

sub parse_done {
    my $self = shift;

    my $ret = XML::Parser::Expat::ParseDone( $self->{Parser} );
    unless ($ret) {
        my $msg = $self->{ErrorMessage};
        $self->release;
        croak $msg;
    }

    $self->{_State_} = 2;

    my $result = $ret;
    my @result = ();
    my $final  = $self->{FinalHandler};
    if ( defined $final ) {
        if (wantarray) {
            @result = &$final($self);
        }
        else {
            $result = &$final($self);
        }
    }

    $self->release;

    return unless defined wantarray;
    return wantarray ? @result : $result;
}

################################################################

package    #hide from PAUSE
  XML::Parser::Encinfo;

sub DESTROY {
    my $self = shift;
    XML::Parser::Expat::FreeEncoding($self);
}

1;

__END__

=head1 NAME

XML::Parser::Expat - Lowlevel access to James Clark's expat XML parser

=head1 SYNOPSIS

 use XML::Parser::Expat;

 $parser = XML::Parser::Expat->new;
 $parser->setHandlers('Start' => \&sh,
                      'End'   => \&eh,
                      'Char'  => \&ch);
 open(my $fh, '<', 'info.xml') or die "Couldn't open";
 $parser->parse($fh);
 close($fh);
 # $parser->parse('<foo id="me"> here <em>we</em> go </foo>');

 sub sh
 {
   my ($p, $el, %atts) = @_;
   $p->setHandlers('Char' => \&spec)
     if ($el eq 'special');
   ...
 }

 sub eh
 {
   my ($p, $el) = @_;
   $p->setHandlers('Char' => \&ch)  # Special elements won't contain
     if ($el eq 'special');         # other special elements
   ...
 } 

=head1 DESCRIPTION

This module provides an interface to James Clark's XML parser, expat. As in
expat, a single instance of the parser can only parse one document. Calls
to parsestring after the first for a given instance will die.

Expat (and XML::Parser::Expat) are event based. As the parser recognizes
parts of the document (say the start or end of an XML element), then any
handlers registered for that type of an event are called with suitable
parameters.

=head1 METHODS

=over 4

=item new

This is a class method, the constructor for XML::Parser::Expat. Options are
passed as keyword value pairs. The recognized options are:

=over 4

=item * ProtocolEncoding

The protocol encoding name. The default is none. The expat built-in
encodings are: C<UTF-8>, C<ISO-8859-1>, C<UTF-16>, and C<US-ASCII>.
Other encodings may be used if they have encoding maps in one of the
directories in the @Encoding_Path list. Setting the protocol encoding
overrides any encoding in the XML declaration.

=item * Namespaces

When this option is given with a true value, then the parser does namespace
processing. By default, namespace processing is turned off. When it is
turned on, the parser consumes I<xmlns> attributes and strips off prefixes
from element and attributes names where those prefixes have a defined
namespace. A name's namespace can be found using the L<"namespace"> method
and two names can be checked for absolute equality with the L<"eq_name">
method.

=item * NoExpand

Normally, the parser will try to expand references to entities defined in
the internal subset. If this option is set to a true value, and a default
handler is also set, then the default handler will be called when an
entity reference is seen in text. This has no effect if a default handler
has not been registered, and it has no effect on the expansion of entity
references inside attribute values.

=item * Stream_Delimiter

This option takes a string value. When this string is found alone on a line
while parsing from a stream, then the parse is ended as if it saw an end of
file. The intended use is with a stream of xml documents in a MIME multipart
format. The string should not contain a trailing newline.

=item * ErrorContext

When this option is defined, errors are reported in context. The value
of ErrorContext should be the number of lines to show on either side of
the line in which the error occurred.

=item * ParseParamEnt

Unless standalone is set to "yes" in the XML declaration, setting this to
a true value allows the external DTD to be read, and parameter entities
to be parsed and expanded.

=item * Base

The base to use for relative pathnames or URLs. This can also be done by
using the base method.

=back

=item setHandlers(TYPE, HANDLER [, TYPE, HANDLER [...]])

This method registers handlers for the various events. If no handlers are
registered, then a call to parsestring or parsefile will only determine if
the corresponding XML document is well formed (by returning without error.)
This may be called from within a handler, after the parse has started.

Setting a handler to something that evaluates to false unsets that
handler.

This method returns a list of type, handler pairs corresponding to the
input. The handlers returned are the ones that were in effect before the
call to setHandlers.

The recognized events and the parameters passed to the corresponding
handlers are:

=over 4

=item * Start             (Parser, Element [, Attr, Val [,...]])

This event is generated when an XML start tag is recognized. Parser is
an XML::Parser::Expat instance. Element is the name of the XML element that
is opened with the start tag. The Attr & Val pairs are generated for each
attribute in the start tag.

=item * End               (Parser, Element)

This event is generated when an XML end tag is recognized. Note that
an XML empty tag (<foo/>) generates both a start and an end event.

There is always a lower level start and end handler installed that wrap
the corresponding callbacks. This is to handle the context mechanism.
A consequence of this is that the default handler (see below) will not
see a start tag or end tag unless the default_current method is called.

=item * Char              (Parser, String)

This event is generated when non-markup is recognized. The non-markup
sequence of characters is in String. A single non-markup sequence of
characters may generate multiple calls to this handler. Whatever the
encoding of the string in the original document, this is given to the
handler in UTF-8.

=item * Proc              (Parser, Target, Data)

This event is generated when a processing instruction is recognized.

=item * Comment           (Parser, String)

This event is generated when a comment is recognized.

=item * CdataStart        (Parser)

This is called at the start of a CDATA section.

=item * CdataEnd          (Parser)

This is called at the end of a CDATA section.

=item * Default           (Parser, String)

This is called for any characters that don't have a registered handler.
This includes both characters that are part of markup for which no
events are generated (markup declarations) and characters that
could generate events, but for which no handler has been registered.

Whatever the encoding in the original document, the string is returned to
the handler in UTF-8.

=item * Unparsed          (Parser, Entity, Base, Sysid, Pubid, Notation)

This is called for a declaration of an unparsed entity. Entity is the name
of the entity. Base is the base to be used for resolving a relative URI.
Sysid is the system id. Pubid is the public id. Notation is the notation
name. Base and Pubid may be undefined.

=item * Notation          (Parser, Notation, Base, Sysid, Pubid)

This is called for a declaration of notation. Notation is the notation name.
Base is the base to be used for resolving a relative URI. Sysid is the system
id. Pubid is the public id. Base, Sysid, and Pubid may all be undefined.

=item * ExternEnt         (Parser, Base, Sysid, Pubid)

This is called when an external entity is referenced. Base is the base to be
used for resolving a relative URI. Sysid is the system id. Pubid is the public
id. Base, and Pubid may be undefined.

This handler should either return a string, which represents the contents of
the external entity, or return an open filehandle that can be read to obtain
the contents of the external entity, or return undef, which indicates the
external entity couldn't be found and will generate a parse error.

If an open filehandle is returned, it must be returned as either a glob
(*FOO) or as a reference to a glob (e.g. an instance of IO::Handle).

=item * ExternEntFin      (Parser)

This is called after an external entity has been parsed. It allows
applications to perform cleanup on actions performed in the above
ExternEnt handler.

=item * Entity            (Parser, Name, Val, Sysid, Pubid, Ndata, IsParam)

This is called when an entity is declared. For internal entities, the Val
parameter will contain the value and the remaining three parameters will
be undefined. For external entities, the Val parameter
will be undefined, the Sysid parameter will have the system id, the Pubid
parameter will have the public id if it was provided (it will be undefined
otherwise), the Ndata parameter will contain the notation for unparsed
entities. If this is a parameter entity declaration, then the IsParam
parameter is true.

Note that this handler and the Unparsed handler above overlap. If both are
set, then this handler will not be called for unparsed entities.

=item * Element           (Parser, Name, Model)

The element handler is called when an element declaration is found. Name is
the element name, and Model is the content model as an
XML::Parser::ContentModel object. See L<"XML::Parser::ContentModel Methods">
for methods available for this class.

=item * Attlist           (Parser, Elname, Attname, Type, Default, Fixed)

This handler is called for each attribute in an ATTLIST declaration.
So an ATTLIST declaration that has multiple attributes
will generate multiple calls to this handler. The Elname parameter is the
name of the element with which the attribute is being associated. The Attname
parameter is the name of the attribute. Type is the attribute type, given as
a string. Default is the default value, which will either be "#REQUIRED",
"#IMPLIED" or a quoted string (i.e. the returned string will begin and end
with a quote character). If Fixed is true, then this is a fixed attribute.

=item * Doctype           (Parser, Name, Sysid, Pubid, Internal)

This handler is called for DOCTYPE declarations. Name is the document type
name. Sysid is the system id of the document type, if it was provided,
otherwise it's undefined. Pubid is the public id of the document type,
which will be undefined if no public id was given. Internal will be
true or false, indicating whether or not the doctype declaration contains
an internal subset.

=item * DoctypeFin        (Parser)

This handler is called after parsing of the DOCTYPE declaration has finished,
including any internal or external DTD declarations.

=item * XMLDecl           (Parser, Version, Encoding, Standalone)

This handler is called for XML declarations. Version is a string containing
the version. Encoding is either undefined or contains an encoding string.
Standalone is either undefined, or true or false. Undefined indicates
that no standalone parameter was given in the XML declaration. True or
false indicates "yes" or "no" respectively.

=back

=item namespace(name)

Return the URI of the namespace that the name belongs to. If the name doesn't
belong to any namespace, an undef is returned. This is only valid on names
received through the Start or End handlers from a single document, or through
a call to the generate_ns_name method. In other words, don't use names
generated from one instance of XML::Parser::Expat with other instances.

=item eq_name(name1, name2)

Return true if name1 and name2 are identical (i.e. same name and from
the same namespace.) This is only meaningful if both names were obtained
through the Start or End handlers from a single document, or through
a call to the generate_ns_name method.

=item generate_ns_name(name, namespace)

Return a name, associated with a given namespace, good for using with the
above 2 methods. The namespace argument should be the namespace URI, not
a prefix.

=item new_ns_prefixes

When called from a start tag handler, returns namespace prefixes declared
with this start tag. If called elsewhere (or if there were no namespace
prefixes declared), it returns an empty list. Setting of the default
namespace is indicated with '#default' as a prefix.

=item expand_ns_prefix(prefix)

Return the uri to which the given prefix is currently bound. Returns
undef if the prefix isn't currently bound. Use '#default' to find the
current binding of the default namespace (if any).

=item current_ns_prefixes

Return a list of currently bound namespace prefixes. The order of the
the prefixes in the list has no meaning. If the default namespace is
currently bound, '#default' appears in the list.

=item recognized_string

Returns the string from the document that was recognized in order to call
the current handler. For instance, when called from a start handler, it
will give us the start-tag string. The string is encoded in UTF-8.
This method doesn't return a meaningful string inside declaration handlers.

=item original_string

Returns the verbatim string from the document that was recognized in
order to call the current handler. The string is in the original document
encoding. This method doesn't return a meaningful string inside declaration
handlers.

=item default_current

When called from a handler, causes the sequence of characters that generated
the corresponding event to be sent to the default handler (if one is
registered). Use of this method is deprecated in favor the recognized_string
method, which you can use without installing a default handler. This
method doesn't deliver a meaningful string to the default handler when
called from inside declaration handlers.

=item xpcroak(message)

Concatenate onto the given message the current line number within the
XML document plus the message implied by ErrorContext. Then croak with
the formed message.

=item xpcarp(message)

Concatenate onto the given message the current line number within the
XML document plus the message implied by ErrorContext. Then carp with
the formed message.

=item current_line

Returns the line number of the current position of the parse.

=item current_column

Returns the column number of the current position of the parse.

=item current_byte

Returns the current position of the parse.

=item base([NEWBASE]);

Returns the current value of the base for resolving relative URIs. If
NEWBASE is supplied, changes the base to that value.

=item context

Returns a list of element names that represent open elements, with the
last one being the innermost. Inside start and end tag handlers, this
will be the tag of the parent element.

=item current_element

Returns the name of the innermost currently opened element. Inside
start or end handlers, returns the parent of the element associated
with those tags.

=item in_element(NAME)

Returns true if NAME is equal to the name of the innermost currently opened
element. If namespace processing is being used and you want to check
against a name that may be in a namespace, then use the generate_ns_name
method to create the NAME argument.

=item within_element(NAME)

Returns the number of times the given name appears in the context list.
If namespace processing is being used and you want to check
against a name that may be in a namespace, then use the generate_ns_name
method to create the NAME argument.

=item depth

Returns the size of the context list.

=item element_index

Returns an integer that is the depth-first visit order of the current
element. This will be zero outside of the root element. For example,
this will return 1 when called from the start handler for the root element
start tag.

=item skip_until(INDEX)

INDEX is an integer that represents an element index. When this method
is called, all handlers are suspended until the start tag for an element
that has an index number equal to INDEX is seen. If a start handler has
been set, then this is the first tag that the start handler will see
after skip_until has been called.


=item position_in_context(LINES)

Returns a string that shows the current parse position. LINES should be
an integer >= 0 that represents the number of lines on either side of the
current parse line to place into the returned string.

=item xml_escape(TEXT [, CHAR [, CHAR ...]])

Returns TEXT with markup characters turned into character entities. Any
additional characters provided as arguments are also turned into character
references where found in TEXT.

=item parse (SOURCE)

The SOURCE parameter should either be a string containing the whole XML
document, or it should be an open IO::Handle. Only a single document
may be parsed for a given instance of XML::Parser::Expat, so this will croak
if it's been called previously for this instance.

=item parsestring(XML_DOC_STRING)

Parses the given string as an XML document. Only a single document may be
parsed for a given instance of XML::Parser::Expat, so this will die if either
parsestring or parsefile has been called for this instance previously.

This method is deprecated in favor of the parse method.

=item parsefile(FILENAME)

Parses the XML document in the given file. Will die if parsestring or
parsefile has been called previously for this instance.

=item is_defaulted(ATTNAME)

NO LONGER WORKS. To find out if an attribute is defaulted please use
the specified_attr method.

=item specified_attr

When the start handler receives lists of attributes and values, the
non-defaulted (i.e. explicitly specified) attributes occur in the list
first. This method returns the number of specified items in the list.
So if this number is equal to the length of the list, there were no
defaulted values. Otherwise the number points to the index of the
first defaulted attribute name.

=item finish

Unsets all handlers (including internal ones that set context), but expat
continues parsing to the end of the document or until it finds an error.
It should finish up a lot faster than with the handlers set.

=item release

There are data structures used by XML::Parser::Expat that have circular
references. This means that these structures will never be garbage
collected unless these references are explicitly broken. Calling this
method breaks those references (and makes the instance unusable.)

Normally, higher level calls handle this for you, but if you are using
XML::Parser::Expat directly, then it's your responsibility to call it.

=back

=head2 XML::Parser::ContentModel Methods

The element declaration handlers are passed objects of this class as the
content model of the element declaration. They also represent content
particles, components of a content model.

When referred to as a string, these objects are automagically converted to a
string representation of the model (or content particle).

=over 4

=item isempty

This method returns true if the object is "EMPTY", false otherwise.

=item isany

This method returns true if the object is "ANY", false otherwise.

=item ismixed

This method returns true if the object is "(#PCDATA)" or "(#PCDATA|...)*",
false otherwise.

=item isname

This method returns if the object is an element name.

=item ischoice

This method returns true if the object is a choice of content particles.


=item isseq

This method returns true if the object is a sequence of content particles.

=item quant

This method returns undef or a string representing the quantifier
('?', '*', '+') associated with the model or particle.

=item children

This method returns undef or (for mixed, choice, and sequence types)
an array of component content particles. There will always be at least
one component for choices and sequences, but for a mixed content model
of pure PCDATA, "(#PCDATA)", then an undef is returned.

=back

=head2 XML::Parser::ExpatNB Methods

The class XML::Parser::ExpatNB is a subclass of XML::Parser::Expat used
for non-blocking access to the expat library. It does not support the parse,
parsestring, or parsefile methods, but it does have these additional methods:

=over 4

=item parse_more(DATA)

Feed expat more text to munch on.

=item parse_done

Tell expat that it's gotten the whole document.

=back

=head1 FUNCTIONS

=over 4

=item XML::Parser::Expat::load_encoding(ENCODING)

Load an external encoding. ENCODING is either the name of an encoding or
the name of a file. The basename is converted to lowercase and a '.enc'
extension is appended unless there's one already there. Then, unless
it's an absolute pathname (i.e. begins with '/'), the first file by that
name discovered in the @Encoding_Path path list is used.

The encoding in the file is loaded and kept in the %Encoding_Table
table. Earlier encodings of the same name are replaced.

This function is automatically called by expat when it encounters an encoding
it doesn't know about. Expat shouldn't call this twice for the same
encoding name. The only reason users should use this function is to
explicitly load an encoding not contained in the @Encoding_Path list.

=back

=head1 AUTHORS

Larry Wall <F<larry@wall.org>> wrote version 1.0.

Clark Cooper <F<coopercc@netheaven.com>> picked up support, changed the API
for this version (2.x), provided documentation, and added some standard
package features.

=cut
PK     N\T.  .    Parser/LWPExternEnt.plnu 6$        # LWPExternEnt.pl
#
# Copyright (c) 2000 Clark Cooper
# All rights reserved.
#
# This program is free software; you can redistribute it and/or
# modify it under the same terms as Perl itself.

package XML::Parser;

use URI;
use URI::file;
use LWP::UserAgent;

##
## Note that this external entity handler reads the entire entity into
## memory, so it will choke on huge ones. It would be really nice if
## LWP::UserAgent optionally returned us an IO::Handle.
##

sub lwp_ext_ent_handler {
  my ($xp, $base, $sys) = @_;  # We don't use public id

  my $uri;

  if (defined $base) {
    # Base may have been set by parsefile, which is agnostic about
    # whether its a file or URI.
    my $base_uri = new URI($base);
    unless (defined $base_uri->scheme) {
      $base_uri = URI->new_abs($base_uri, URI::file->cwd);
    }

    $uri = URI->new_abs($sys, $base_uri);
  }
  else {
    $uri = new URI($sys);
    unless (defined $uri->scheme) {
      $uri = URI->new_abs($uri, URI::file->cwd);
    }
  }
  
  my $ua = $xp->{_lwpagent};
  unless (defined $ua) {
    $ua = $xp->{_lwpagent} = new LWP::UserAgent();
    $ua->env_proxy();
  }

  my $req = new HTTP::Request('GET', $uri);

  my $res = $ua->request($req);
  if ($res->is_error) {
    $xp->{ErrorMessage} .= "\n" . $res->status_line . " $uri";
    return undef;
  }
  
  $xp->{_BaseStack} ||= [];
  push(@{$xp->{_BaseStack}}, $base);

  $xp->base($uri);
  
  return $res->content;
}  # End lwp_ext_ent_handler

sub lwp_ext_ent_cleanup {
  my ($xp) = @_;

  $xp->base(pop(@{$xp->{_BaseStack}}));
}  # End lwp_ext_ent_cleanup

1;
PK     N\$J  J    Parser/Style/Objects.pmnu 6$        # $Id: Objects.pm,v 1.1 2003-08-18 20:20:51 matt Exp $

package XML::Parser::Style::Objects;
use strict;

sub Init {
    my $expat = shift;
    $expat->{Lists} = [];
    $expat->{Curlist} = $expat->{Tree} = [];
}

sub Start {
    my $expat   = shift;
    my $tag     = shift;
    my $newlist = [];
    my $class   = "${$expat}{Pkg}::$tag";
    my $newobj  = bless { @_, Kids => $newlist }, $class;
    push @{ $expat->{Lists} },   $expat->{Curlist};
    push @{ $expat->{Curlist} }, $newobj;
    $expat->{Curlist} = $newlist;
}

sub End {
    my $expat = shift;
    my $tag   = shift;
    $expat->{Curlist} = pop @{ $expat->{Lists} };
}

sub Char {
    my $expat = shift;
    my $text  = shift;
    my $class = "${$expat}{Pkg}::Characters";
    my $clist = $expat->{Curlist};
    my $pos   = $#$clist;

    if ( $pos >= 0 and ref( $clist->[$pos] ) eq $class ) {
        $clist->[$pos]->{Text} .= $text;
    }
    else {
        push @$clist, bless { Text => $text }, $class;
    }
}

sub Final {
    my $expat = shift;
    delete $expat->{Curlist};
    delete $expat->{Lists};
    $expat->{Tree};
}

1;
__END__

=head1 NAME

XML::Parser::Style::Objects - Objects styler parser

=head1 SYNOPSIS

  use XML::Parser;
  my $p = XML::Parser->new(Style => 'Objects', Pkg => 'MyNode');
  my $tree = $p->parsefile('foo.xml');

=head1 DESCRIPTION

This module implements XML::Parser's Objects style parser.

This is similar to the Tree style, except that a hash object is created for
each element. The corresponding object will be in the class whose name
is created by appending "::" and the element name to the package set with
the Pkg option. Non-markup text will be in the ::Characters class. The
contents of the corresponding object will be in an anonymous array that
is the value of the Kids property for that object.

=head1 SEE ALSO

L<XML::Parser::Style::Tree>

=cut
PK     N\/G-  -    Parser/Style/Stream.pmnu 6$        # $Id: Stream.pm,v 1.1 2003-07-27 16:07:49 matt Exp $

package XML::Parser::Style::Stream;
use strict;

# This style invented by Tim Bray <tbray@textuality.com>

sub Init {
    no strict 'refs';
    my $expat = shift;
    $expat->{Text} = '';
    my $sub = $expat->{Pkg} . "::StartDocument";
    &$sub($expat)
      if defined(&$sub);
}

sub Start {
    no strict 'refs';
    my $expat = shift;
    my $type  = shift;

    doText($expat);
    $_ = "<$type";

    %_ = @_;
    while (@_) {
        $_ .= ' ' . shift() . '="' . shift() . '"';
    }
    $_ .= '>';

    my $sub = $expat->{Pkg} . "::StartTag";
    if ( defined(&$sub) ) {
        &$sub( $expat, $type );
    }
    else {
        print;
    }
}

sub End {
    no strict 'refs';
    my $expat = shift;
    my $type  = shift;

    # Set right context for Text handler
    push( @{ $expat->{Context} }, $type );
    doText($expat);
    pop( @{ $expat->{Context} } );

    $_ = "</$type>";

    my $sub = $expat->{Pkg} . "::EndTag";
    if ( defined(&$sub) ) {
        &$sub( $expat, $type );
    }
    else {
        print;
    }
}

sub Char {
    my $expat = shift;
    $expat->{Text} .= shift;
}

sub Proc {
    no strict 'refs';
    my $expat  = shift;
    my $target = shift;
    my $text   = shift;

    doText($expat);

    $_ = "<?$target $text?>";

    my $sub = $expat->{Pkg} . "::PI";
    if ( defined(&$sub) ) {
        &$sub( $expat, $target, $text );
    }
    else {
        print;
    }
}

sub Final {
    no strict 'refs';
    my $expat = shift;
    my $sub   = $expat->{Pkg} . "::EndDocument";
    &$sub($expat)
      if defined(&$sub);
}

sub doText {
    no strict 'refs';
    my $expat = shift;
    $_ = $expat->{Text};

    if ( length($_) ) {
        my $sub = $expat->{Pkg} . "::Text";
        if ( defined(&$sub) ) {
            &$sub($expat);
        }
        else {
            print;
        }

        $expat->{Text} = '';
    }
}

1;
__END__

=head1 NAME

XML::Parser::Style::Stream - Stream style for XML::Parser

=head1 SYNOPSIS

  use XML::Parser;
  my $p = XML::Parser->new(Style => 'Stream', Pkg => 'MySubs');
  $p->parsefile('foo.xml');
  
  {
    package MySubs;
    
    sub StartTag {
      my ($e, $name) = @_;
      # do something with start tags
    }
    
    sub EndTag {
      my ($e, $name) = @_;
      # do something with end tags
    }
    
    sub Characters {
      my ($e, $data) = @_;
      # do something with text nodes
    }
  }

=head1 DESCRIPTION

This style uses the Pkg option to find subs in a given package to call for each event.
If none of the subs that this
style looks for is there, then the effect of parsing with this style is
to print a canonical copy of the document without comments or declarations.
All the subs receive as their 1st parameter the Expat instance for the
document they're parsing.

It looks for the following routines:

=over 4

=item * StartDocument

Called at the start of the parse .

=item * StartTag

Called for every start tag with a second parameter of the element type. The $_
variable will contain a copy of the tag and the %_ variable will contain
attribute values supplied for that element.

=item * EndTag

Called for every end tag with a second parameter of the element type. The $_
variable will contain a copy of the end tag.

=item * Text

Called just before start or end tags with accumulated non-markup text in
the $_ variable.

=item * PI

Called for processing instructions. The $_ variable will contain a copy of
the PI and the target and data are sent as 2nd and 3rd parameters
respectively.

=item * EndDocument

Called at conclusion of the parse.

=back

=cut
PK     N\_Q      Parser/Style/Subs.pmnu 6$        # $Id: Subs.pm,v 1.1 2003-07-27 16:07:49 matt Exp $

package XML::Parser::Style::Subs;

sub Start {
    no strict 'refs';
    my $expat = shift;
    my $tag   = shift;
    my $sub   = $expat->{Pkg} . "::$tag";
    eval { &$sub( $expat, $tag, @_ ) };
}

sub End {
    no strict 'refs';
    my $expat = shift;
    my $tag   = shift;
    my $sub   = $expat->{Pkg} . "::${tag}_";
    eval { &$sub( $expat, $tag ) };
}

1;
__END__

=head1 NAME

XML::Parser::Style::Subs - glue for handling element callbacks

=head1 SYNOPSIS

  use XML::Parser;
  my $p = XML::Parser->new(Style => 'Subs', Pkg => 'MySubs');
  $p->parsefile('foo.xml');
  
  {
    package MySubs;
    
    sub foo {
      # start of foo tag
    }
    
    sub foo_ {
      # end of foo tag
    }
  }

=head1 DESCRIPTION

Each time an element starts, a sub by that name in the package specified
by the Pkg option is called with the same parameters that the Start
handler gets called with.

Each time an element ends, a sub with that name appended with an underscore
("_"), is called with the same parameters that the End handler gets called
with.

Nothing special is returned by parse.

=cut
PK     N\'      Parser/Style/Tree.pmnu 6$        # $Id: Tree.pm,v 1.2 2003-07-31 07:54:51 matt Exp $

package XML::Parser::Style::Tree;
$XML::Parser::Built_In_Styles{Tree} = 1;

sub Init {
    my $expat = shift;
    $expat->{Lists} = [];
    $expat->{Curlist} = $expat->{Tree} = [];
}

sub Start {
    my $expat   = shift;
    my $tag     = shift;
    my $newlist = [ {@_} ];
    push @{ $expat->{Lists} }, $expat->{Curlist};
    push @{ $expat->{Curlist} }, $tag => $newlist;
    $expat->{Curlist} = $newlist;
}

sub End {
    my $expat = shift;
    my $tag   = shift;
    $expat->{Curlist} = pop @{ $expat->{Lists} };
}

sub Char {
    my $expat = shift;
    my $text  = shift;
    my $clist = $expat->{Curlist};
    my $pos   = $#$clist;

    if ( $pos > 0 and $clist->[ $pos - 1 ] eq '0' ) {
        $clist->[$pos] .= $text;
    }
    else {
        push @$clist, 0 => $text;
    }
}

sub Final {
    my $expat = shift;
    delete $expat->{Curlist};
    delete $expat->{Lists};
    $expat->{Tree};
}

1;
__END__

=head1 NAME

XML::Parser::Style::Tree - Tree style parser

=head1 SYNOPSIS

  use XML::Parser;
  my $p = XML::Parser->new(Style => 'Tree');
  my $tree = $p->parsefile('foo.xml');

=head1 DESCRIPTION

This module implements XML::Parser's Tree style parser.

When parsing a document, C<parse()> will return a parse tree for the
document. Each node in the tree
takes the form of a tag, content pair. Text nodes are represented with
a pseudo-tag of "0" and the string that is their content. For elements,
the content is an array reference. The first item in the array is a
(possibly empty) hash reference containing attributes. The remainder of
the array is a sequence of tag-content pairs representing the content
of the element.

So for example the result of parsing:

  <foo><head id="a">Hello <em>there</em></head><bar>Howdy<ref/></bar>do</foo>

would be:

             Tag   Content
  ==================================================================
  [foo, [{}, head, [{id => "a"}, 0, "Hello ",  em, [{}, 0, "there"]],
              bar, [         {}, 0, "Howdy",  ref, [{}]],
                0, "do"
        ]
  ]

The root document "foo", has 3 children: a "head" element, a "bar"
element and the text "do". After the empty attribute hash, these are
represented in it's contents by 3 tag-content pairs.

=cut
PK     N\y      Parser/Style/Debug.pmnu 6$        # $Id: Debug.pm,v 1.1 2003-07-27 16:07:49 matt Exp $

package XML::Parser::Style::Debug;
use strict;

sub Start {
    my $expat = shift;
    my $tag   = shift;
    print STDERR "@{$expat->{Context}} \\\\ (@_)\n";
}

sub End {
    my $expat = shift;
    my $tag   = shift;
    print STDERR "@{$expat->{Context}} //\n";
}

sub Char {
    my $expat = shift;
    my $text  = shift;
    $text =~ s/([\x80-\xff])/sprintf "#x%X;", ord $1/eg;
    $text =~ s/([\t\n])/sprintf "#%d;", ord $1/eg;
    print STDERR "@{$expat->{Context}} || $text\n";
}

sub Proc {
    my $expat  = shift;
    my $target = shift;
    my $text   = shift;
    my @foo    = @{ $expat->{Context} };
    print STDERR "@foo $target($text)\n";
}

1;
__END__

=head1 NAME

XML::Parser::Style::Debug - Debug style for XML::Parser

=head1 SYNOPSIS

  use XML::Parser;
  my $p = XML::Parser->new(Style => 'Debug');
  $p->parsefile('foo.xml');

=head1 DESCRIPTION

This just prints out the document in outline form to STDERR. Nothing special is
returned by parse.

=cut
PK     N\>7( ( 	  LibXML.pmnu 6$        # $Id$
#
#
# This is free software, you may use it and distribute it under the same terms as
# Perl itself.
#
# Copyright 2001-2003 AxKit.com Ltd., 2002-2006 Christian Glahn, 2006-2009 Petr Pajas
#
#

package XML::LibXML;

use strict;
use warnings;

use vars qw($VERSION $ABI_VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS
            $skipDTD $skipXMLDeclaration $setTagCompression
            $MatchCB $ReadCB $OpenCB $CloseCB %PARSER_FLAGS
	    $XML_LIBXML_PARSE_DEFAULTS
            );
use Carp;

use constant XML_XMLNS_NS => 'http://www.w3.org/2000/xmlns/';
use constant XML_XML_NS => 'http://www.w3.org/XML/1998/namespace';

use XML::LibXML::Error;
use XML::LibXML::NodeList;
use XML::LibXML::XPathContext;
use IO::Handle; # for FH reads called as methods

BEGIN {
$VERSION = "2.0210"; # VERSION TEMPLATE: DO NOT CHANGE
$ABI_VERSION = 2;
require Exporter;
use XSLoader ();
@ISA = qw(Exporter);

use vars qw($__PROXY_NODE_REGISTRY $__threads_shared $__PROXY_NODE_REGISTRY_MUTEX $__loaded);

sub VERSION {
  my $class = shift;
  my ($caller) = caller;
  my $req_abi = $ABI_VERSION;
  if (UNIVERSAL::can($caller,'REQUIRE_XML_LIBXML_ABI_VERSION')) {
    $req_abi = $caller->REQUIRE_XML_LIBXML_ABI_VERSION();
  } elsif ($caller eq 'XML::LibXSLT') {
    # XML::LibXSLT without REQUIRE_XML_LIBXML_ABI_VERSION is an old and incompatible version
    $req_abi = 1;
  }
  unless ($req_abi == $ABI_VERSION) {
    my $ver = @_ ? ' '.$_[0] : '';
    die ("This version of $caller requires XML::LibXML$ver (ABI $req_abi), which is incompatible with currently installed XML::LibXML $VERSION (ABI $ABI_VERSION). Please upgrade $caller, XML::LibXML, or both!");
  }
  return $class->UNIVERSAL::VERSION(@_)
}

#-------------------------------------------------------------------------#
# export information                                                      #
#-------------------------------------------------------------------------#
%EXPORT_TAGS = (
                all => [qw(
                           XML_ELEMENT_NODE
                           XML_ATTRIBUTE_NODE
                           XML_TEXT_NODE
                           XML_CDATA_SECTION_NODE
                           XML_ENTITY_REF_NODE
                           XML_ENTITY_NODE
                           XML_PI_NODE
                           XML_COMMENT_NODE
                           XML_DOCUMENT_NODE
                           XML_DOCUMENT_TYPE_NODE
                           XML_DOCUMENT_FRAG_NODE
                           XML_NOTATION_NODE
                           XML_HTML_DOCUMENT_NODE
                           XML_DTD_NODE
                           XML_ELEMENT_DECL
                           XML_ATTRIBUTE_DECL
                           XML_ENTITY_DECL
                           XML_NAMESPACE_DECL
                           XML_XINCLUDE_END
                           XML_XINCLUDE_START
                           encodeToUTF8
                           decodeFromUTF8
		           XML_XMLNS_NS
		           XML_XML_NS
                          )],
                libxml => [qw(
                           XML_ELEMENT_NODE
                           XML_ATTRIBUTE_NODE
                           XML_TEXT_NODE
                           XML_CDATA_SECTION_NODE
                           XML_ENTITY_REF_NODE
                           XML_ENTITY_NODE
                           XML_PI_NODE
                           XML_COMMENT_NODE
                           XML_DOCUMENT_NODE
                           XML_DOCUMENT_TYPE_NODE
                           XML_DOCUMENT_FRAG_NODE
                           XML_NOTATION_NODE
                           XML_HTML_DOCUMENT_NODE
                           XML_DTD_NODE
                           XML_ELEMENT_DECL
                           XML_ATTRIBUTE_DECL
                           XML_ENTITY_DECL
                           XML_NAMESPACE_DECL
                           XML_XINCLUDE_END
                           XML_XINCLUDE_START
                          )],
                encoding => [qw(
                                encodeToUTF8
                                decodeFromUTF8
                               )],
		ns => [qw(
		           XML_XMLNS_NS
		           XML_XML_NS
		 )],
               );

@EXPORT_OK = (
              @{$EXPORT_TAGS{all}},
             );

@EXPORT = (
           @{$EXPORT_TAGS{all}},
          );

#-------------------------------------------------------------------------#
# initialization of the global variables                                  #
#-------------------------------------------------------------------------#
$skipDTD            = 0;
$skipXMLDeclaration = 0;
$setTagCompression  = 0;

$MatchCB = undef;
$ReadCB  = undef;
$OpenCB  = undef;
$CloseCB = undef;

# if ($threads::threads) {
#   our $__THREADS_TID = 0;
#   eval q{
#     use threads::shared;
#     our $__PROXY_NODE_REGISTRY_MUTEX :shared = 0;
#   };
#   die $@ if $@;
# }
#-------------------------------------------------------------------------#
# bootstrapping                                                           #
#-------------------------------------------------------------------------#
XSLoader::load( 'XML::LibXML', $VERSION );
undef &AUTOLOAD;

*encodeToUTF8 = \&XML::LibXML::Common::encodeToUTF8;
*decodeFromUTF8 = \&XML::LibXML::Common::decodeFromUTF8;

} # BEGIN


#-------------------------------------------------------------------------#
# libxml2 node names (see also XML::LibXML::Common                        #
#-------------------------------------------------------------------------#
use constant XML_ELEMENT_NODE            => 1;
use constant XML_ATTRIBUTE_NODE          => 2;
use constant XML_TEXT_NODE               => 3;
use constant XML_CDATA_SECTION_NODE      => 4;
use constant XML_ENTITY_REF_NODE         => 5;
use constant XML_ENTITY_NODE             => 6;
use constant XML_PI_NODE                 => 7;
use constant XML_COMMENT_NODE            => 8;
use constant XML_DOCUMENT_NODE           => 9;
use constant XML_DOCUMENT_TYPE_NODE      => 10;
use constant XML_DOCUMENT_FRAG_NODE      => 11;
use constant XML_NOTATION_NODE           => 12;
use constant XML_HTML_DOCUMENT_NODE      => 13;
use constant XML_DTD_NODE                => 14;
use constant XML_ELEMENT_DECL            => 15;
use constant XML_ATTRIBUTE_DECL          => 16;
use constant XML_ENTITY_DECL             => 17;
use constant XML_NAMESPACE_DECL          => 18;
use constant XML_XINCLUDE_START          => 19;
use constant XML_XINCLUDE_END            => 20;


sub import {
  my $package=shift;
  if (grep /^:threads_shared$/, @_) {
    require threads;
    if (!defined($__threads_shared)) {
      if (INIT_THREAD_SUPPORT()) {
	eval q{
          use threads::shared;
          share($__PROXY_NODE_REGISTRY_MUTEX);
        };
	if ($@) { # something went wrong
	  DISABLE_THREAD_SUPPORT(); # leave the library in a usable state
	  die $@; # and die
	}
	$__PROXY_NODE_REGISTRY = XML::LibXML::HashTable->new();
	$__threads_shared=1;
      } else {
	croak("XML::LibXML or Perl compiled without ithread support!");
      }
    } elsif (!$__threads_shared) {
      croak("XML::LibXML already loaded without thread support. Too late to enable thread support!");
    }
  } elsif (defined $XML::LibXML::__loaded) {
    $__threads_shared=0 if not defined $__threads_shared;
  }
  __PACKAGE__->export_to_level(1,$package,grep !/^:threads(_shared)?$/,@_);
}

sub threads_shared_enabled {
  return $__threads_shared ? 1 : 0;
}

# if ($threads::threads) {
#   our $__PROXY_NODE_REGISTRY = XML::LibXML::HashTable->new();
# }

#-------------------------------------------------------------------------#
# test exact version (up to patch-level)                                  #
#-------------------------------------------------------------------------#
{
  my ($runtime_version) = LIBXML_RUNTIME_VERSION() =~ /^(\d+)/;
  if ( $runtime_version < LIBXML_VERSION ) {
    warn "Warning: XML::LibXML compiled against libxml2 ".LIBXML_VERSION.
      ", but runtime libxml2 is older $runtime_version\n";
  }
}


#-------------------------------------------------------------------------#
# parser flags                                                            #
#-------------------------------------------------------------------------#

# Copied directly from http://xmlsoft.org/html/libxml-parser.html#xmlParserOption
use constant {
  XML_PARSE_RECOVER	  => 1,	       # recover on errors
  XML_PARSE_NOENT	  => 2,	       # substitute entities
  XML_PARSE_DTDLOAD	  => 4,	       # load the external subset
  XML_PARSE_DTDATTR	  => 8,	       # default DTD attributes
  XML_PARSE_DTDVALID	  => 16,       # validate with the DTD
  XML_PARSE_NOERROR	  => 32,       # suppress error reports
  XML_PARSE_NOWARNING	  => 64,       # suppress warning reports
  XML_PARSE_PEDANTIC	  => 128,      # pedantic error reporting
  XML_PARSE_NOBLANKS	  => 256,      # remove blank nodes
  XML_PARSE_SAX1	  => 512,      # use the SAX1 interface internally
  XML_PARSE_XINCLUDE	  => 1024,     # Implement XInclude substitution
  XML_PARSE_NONET	  => 2048,     # Forbid network access
  XML_PARSE_NODICT	  => 4096,     # Do not reuse the context dictionary
  XML_PARSE_NSCLEAN	  => 8192,     # remove redundant namespaces declarations
  XML_PARSE_NOCDATA	  => 16384,    # merge CDATA as text nodes
  XML_PARSE_NOXINCNODE	  => 32768,    # do not generate XINCLUDE START/END nodes
  XML_PARSE_COMPACT	  => 65536,    # compact small text nodes; no modification of the tree allowed afterwards
                                       # (will possibly crash if you try to modify the tree)
  XML_PARSE_OLD10	  => 131072,   # parse using XML-1.0 before update 5
  XML_PARSE_NOBASEFIX	  => 262144,   # do not fixup XINCLUDE xml#base uris
  XML_PARSE_HUGE	  => 524288,   # relax any hardcoded limit from the parser
  XML_PARSE_OLDSAX	  => 1048576,  # parse using SAX2 interface from before 2.7.0
  HTML_PARSE_RECOVER => (1<<0),       # suppress error reports
  HTML_PARSE_NOERROR  => (1<<5),       # suppress error reports
};

$XML_LIBXML_PARSE_DEFAULTS = ( XML_PARSE_NODICT );

# this hash is made global so that applications can add names for new
# libxml2 parser flags as temporary workaround

%PARSER_FLAGS = (
  recover		 => XML_PARSE_RECOVER,
  expand_entities	 => XML_PARSE_NOENT,
  load_ext_dtd	         => XML_PARSE_DTDLOAD,
  complete_attributes	 => XML_PARSE_DTDATTR,
  validation		 => XML_PARSE_DTDVALID,
  suppress_errors	 => XML_PARSE_NOERROR,
  suppress_warnings	 => XML_PARSE_NOWARNING,
  pedantic_parser	 => XML_PARSE_PEDANTIC,
  no_blanks		 => XML_PARSE_NOBLANKS,
  expand_xinclude	 => XML_PARSE_XINCLUDE,
  xinclude		 => XML_PARSE_XINCLUDE,
  no_network		 => XML_PARSE_NONET,
  clean_namespaces	 => XML_PARSE_NSCLEAN,
  no_cdata		 => XML_PARSE_NOCDATA,
  no_xinclude_nodes	 => XML_PARSE_NOXINCNODE,
  old10		         => XML_PARSE_OLD10,
  no_base_fix		 => XML_PARSE_NOBASEFIX,
  huge		         => XML_PARSE_HUGE,
  oldsax		 => XML_PARSE_OLDSAX,
);

my %OUR_FLAGS = (
  recover => 'XML_LIBXML_RECOVER',
  line_numbers => 'XML_LIBXML_LINENUMBERS',
  URI => 'XML_LIBXML_BASE_URI',
  base_uri => 'XML_LIBXML_BASE_URI',
  gdome => 'XML_LIBXML_GDOME',
  ext_ent_handler => 'ext_ent_handler',
);

sub _parser_options {
  my ($self, $opts) = @_;

  # currently dictionaries break XML::LibXML memory management

  my $flags;

  if (ref($self)) {
    $flags = ($self->{XML_LIBXML_PARSER_OPTIONS}||0);
  } else {
    $flags = $XML_LIBXML_PARSE_DEFAULTS;		# safety precaution
  }

  my ($key, $value);
  while (($key,$value) = each %$opts) {
    my $f = $PARSER_FLAGS{ $key };
    if (defined $f) {
      if ($value) {
	$flags |= $f
      } else {
	$flags &= ~$f;
      }
    } elsif ($key eq 'set_parser_flags') { # this can be used to pass flags XML::LibXML does not yet know about
      $flags |= $value;
    } elsif ($key eq 'unset_parser_flags') {
      $flags &= ~$value;
    }

  }
  return $flags;
}

my %compatibility_flags = (
  XML_LIBXML_VALIDATION => 'validation',
  XML_LIBXML_EXPAND_ENTITIES => 'expand_entities',
  XML_LIBXML_PEDANTIC => 'pedantic_parser',
  XML_LIBXML_NONET => 'no_network',
  XML_LIBXML_EXT_DTD => 'load_ext_dtd',
  XML_LIBXML_COMPLETE_ATTR => 'complete_attributes',
  XML_LIBXML_EXPAND_XINCLUDE => 'expand_xinclude',
  XML_LIBXML_NSCLEAN => 'clean_namespaces',
  XML_LIBXML_KEEP_BLANKS => 'keep_blanks',
  XML_LIBXML_LINENUMBERS => 'line_numbers',
);

#-------------------------------------------------------------------------#
# parser constructor                                                      #
#-------------------------------------------------------------------------#


sub new {
    my $class = shift;
    my $self = bless {
    }, $class;
    if (@_) {
      my %opts = ();
      if (ref($_[0]) eq 'HASH') {
	%opts = %{$_[0]};
      } else {
	# old interface
	my %args = @_;
	%opts=(
	  map {
	    (($compatibility_flags{ $_ }||$_) => $args{ $_ })
	  } keys %args
	);
      }
      # parser flags
      $opts{no_blanks} = !$opts{keep_blanks} if exists($opts{keep_blanks}) and !exists($opts{no_blanks});
      $opts{load_ext_dtd} = $opts{expand_entities} if exists($opts{expand_entities}) and !exists($opts{load_ext_dtd});

      for (keys %OUR_FLAGS) {
	$self->{$OUR_FLAGS{$_}} = delete $opts{$_};
      }
      $class->load_catalog(delete($opts{catalog})) if $opts{catalog};

      $self->{XML_LIBXML_PARSER_OPTIONS} = XML::LibXML->_parser_options(\%opts);

      # store remaining unknown options directly in $self
      for (keys %opts) {
	$self->{$_}=$opts{$_} unless exists $PARSER_FLAGS{$_};
      }
    } else {
      $self->{XML_LIBXML_PARSER_OPTIONS} = $XML_LIBXML_PARSE_DEFAULTS;
    }
    if ( defined $self->{Handler} ) {
      $self->set_handler( $self->{Handler} );
    }

    $self->{_State_} = 0;
    return $self;
}

sub _clone {
  my ($self)=@_;
  my $new = ref($self)->new({
      recover => $self->{XML_LIBXML_RECOVER},
      line_numbers => $self->{XML_LIBXML_LINENUMBERS},
      base_uri => $self->{XML_LIBXML_BASE_URI},
      gdome => $self->{XML_LIBXML_GDOME},
    });
  # The parser options may contain some options that were zeroed from the
  # defaults so set_parser_flags won't work here. We need to assign them
  # explicitly.
  $new->{XML_LIBXML_PARSER_OPTIONS} = $self->{XML_LIBXML_PARSER_OPTIONS};
  $new->input_callbacks($self->input_callbacks());
  return $new;
}

#-------------------------------------------------------------------------#
# Threads support methods                                                 #
#-------------------------------------------------------------------------#

# threads doc says CLONE's API may change in future, which would break
# an XS method prototype
sub CLONE {
  if ($XML::LibXML::__threads_shared) {
    XML::LibXML::_CLONE( $_[0] );
  }
}

sub CLONE_SKIP {
  return $XML::LibXML::__threads_shared ? 0 : 1;
}

sub __proxy_registry {
  my ($class)=caller;
  die "This version of $class uses API of XML::LibXML 1.66 which is not compatible with XML::LibXML $VERSION. Please upgrade $class!\n";
}

#-------------------------------------------------------------------------#
# DOM Level 2 document constructor                                        #
#-------------------------------------------------------------------------#

sub createDocument {
   my $self = shift;
   if (!@_ or $_[0] =~ m/^\d\.\d$/) {
     # for backward compatibility
     return XML::LibXML::Document->new(@_);
   }
   else {
     # DOM API: createDocument(namespaceURI, qualifiedName, doctype?)
     my $doc = XML::LibXML::Document-> new;
     my $el = $doc->createElementNS(shift, shift);
     $doc->setDocumentElement($el);
     $doc->setExternalSubset(shift) if @_;
     return $doc;
   }
}

#-------------------------------------------------------------------------#
# callback functions                                                      #
#-------------------------------------------------------------------------#

sub externalEntityLoader(&)
{
    return _externalEntityLoader($_[0]);
}

sub input_callbacks {
    my $self     = shift;
    my $icbclass = shift;

    if ( defined $icbclass ) {
        $self->{XML_LIBXML_CALLBACK_STACK} = $icbclass;
    }
    return $self->{XML_LIBXML_CALLBACK_STACK};
}

sub match_callback {
    my $self = shift;
    if ( ref $self ) {
        if ( scalar @_ ) {
            $self->{XML_LIBXML_MATCH_CB} = shift;
            $self->{XML_LIBXML_CALLBACK_STACK} = undef;
        }
        return $self->{XML_LIBXML_MATCH_CB};
    }
    else {
        $MatchCB = shift if scalar @_;
        return $MatchCB;
    }
}

sub read_callback {
    my $self = shift;
    if ( ref $self ) {
        if ( scalar @_ ) {
            $self->{XML_LIBXML_READ_CB} = shift;
            $self->{XML_LIBXML_CALLBACK_STACK} = undef;
        }
        return $self->{XML_LIBXML_READ_CB};
    }
    else {
        $ReadCB = shift if scalar @_;
        return $ReadCB;
    }
}

sub close_callback {
    my $self = shift;
    if ( ref $self ) {
        if ( scalar @_ ) {
            $self->{XML_LIBXML_CLOSE_CB} = shift;
            $self->{XML_LIBXML_CALLBACK_STACK} = undef;
        }
        return $self->{XML_LIBXML_CLOSE_CB};
    }
    else {
        $CloseCB = shift if scalar @_;
        return $CloseCB;
    }
}

sub open_callback {
    my $self = shift;
    if ( ref $self ) {
        if ( scalar @_ ) {
            $self->{XML_LIBXML_OPEN_CB} = shift;
            $self->{XML_LIBXML_CALLBACK_STACK} = undef;
        }
        return $self->{XML_LIBXML_OPEN_CB};
    }
    else {
        $OpenCB = shift if scalar @_;
        return $OpenCB;
    }
}

sub callbacks {
    my $self = shift;
    if ( ref $self ) {
        if (@_) {
            my ($match, $open, $read, $close) = @_;
            @{$self}{qw(XML_LIBXML_MATCH_CB XML_LIBXML_OPEN_CB XML_LIBXML_READ_CB XML_LIBXML_CLOSE_CB)} = ($match, $open, $read, $close);
            $self->{XML_LIBXML_CALLBACK_STACK} = undef;
        }
        else {
            return @{$self}{qw(XML_LIBXML_MATCH_CB XML_LIBXML_OPEN_CB XML_LIBXML_READ_CB XML_LIBXML_CLOSE_CB)};
        }
    }
    else {
        if (@_) {
           ( $MatchCB, $OpenCB, $ReadCB, $CloseCB ) = @_;
        }
        else {
            return ( $MatchCB, $OpenCB, $ReadCB, $CloseCB );
        }
    }
}

#-------------------------------------------------------------------------#
# internal member variable manipulation                                   #
#-------------------------------------------------------------------------#
sub __parser_option {
  my ($self, $opt) = @_;
  if (@_>2) {
    if ($_[2]) {
      $self->{XML_LIBXML_PARSER_OPTIONS} |= $opt;
      return 1;
    } else {
      $self->{XML_LIBXML_PARSER_OPTIONS} &= ~$opt;
      return 0;
    }
  } else {
    return ($self->{XML_LIBXML_PARSER_OPTIONS} & $opt) ? 1 : 0;
  }
}

sub option_exists {
    my ($self,$name)=@_;
    return ($PARSER_FLAGS{$name} || $OUR_FLAGS{$name}) ? 1 : 0;
}
sub get_option {
    my ($self,$name)=@_;
    my $flag = $OUR_FLAGS{$name};
    return $self->{$flag} if $flag;
    $flag = $PARSER_FLAGS{$name};
    return $self->__parser_option($flag) if $flag;
    warn "XML::LibXML::get_option: unknown parser option $name\n";
    return undef;
}
sub set_option {
    my ($self,$name,$value)=@_;
    my $flag = $OUR_FLAGS{$name};
    return ($self->{$flag}=$value) if $flag;
    $flag = $PARSER_FLAGS{$name};
    return $self->__parser_option($flag,$value) if $flag;
    warn "XML::LibXML::get_option: unknown parser option $name\n";
    return undef;
}
sub set_options {
  my $self=shift;
  my $opts;
  if (@_==1 and ref($_[0]) eq 'HASH') {
    $opts = $_[0];
  } elsif (@_ % 2 == 0) {
    $opts={@_};
  } else {
    croak("Odd number of elements passed to set_options");
  }
  $self->set_option($_=>$opts->{$_}) foreach keys %$opts;
  return;
}

sub validation {
    my $self = shift;
    return $self->__parser_option(XML_PARSE_DTDVALID,@_);
}

sub recover {
    my $self = shift;
    if (scalar @_) {
      $self->{XML_LIBXML_RECOVER} = $_[0];
      $self->__parser_option(XML_PARSE_RECOVER,@_);
    }
    return $self->{XML_LIBXML_RECOVER};
}

sub recover_silently {
    my $self = shift;
    my $arg = shift;
    if ( defined($arg) )
    {
        $self->recover(($arg == 1) ? 2 : $arg);
    }
    return (($self->recover()||0) == 2) ? 1 : 0;
}

sub expand_entities {
    my $self = shift;
    if (scalar(@_) and $_[0]) {
      return $self->__parser_option(XML_PARSE_NOENT | XML_PARSE_DTDLOAD,1);
    }
    return $self->__parser_option(XML_PARSE_NOENT,@_);
}

sub keep_blanks {
    my $self = shift;
    my @args; # we have to negate the argument and return negated value, since
              # the actual flag is no_blanks
    if (scalar @_) {
      @args=($_[0] ? 0 : 1);
    }
    return $self->__parser_option(XML_PARSE_NOBLANKS,@args) ? 0 : 1;
}

sub pedantic_parser {
    my $self = shift;
    return $self->__parser_option(XML_PARSE_PEDANTIC,@_);
}

sub line_numbers {
    my $self = shift;
    $self->{XML_LIBXML_LINENUMBERS} = shift if scalar @_;
    return $self->{XML_LIBXML_LINENUMBERS};
}

sub no_network {
    my $self = shift;
    return $self->__parser_option(XML_PARSE_NONET,@_);
}

sub load_ext_dtd {
    my $self = shift;
    return $self->__parser_option(XML_PARSE_DTDLOAD,@_);
}

sub complete_attributes {
    my $self = shift;
    return $self->__parser_option(XML_PARSE_DTDATTR,@_);
}

sub expand_xinclude  {
    my $self = shift;
    return $self->__parser_option(XML_PARSE_XINCLUDE,@_);
}

sub base_uri {
    my $self = shift;
    $self->{XML_LIBXML_BASE_URI} = shift if scalar @_;
    return $self->{XML_LIBXML_BASE_URI};
}

sub gdome_dom {
    my $self = shift;
    $self->{XML_LIBXML_GDOME} = shift if scalar @_;
    return $self->{XML_LIBXML_GDOME};
}

sub clean_namespaces {
    my $self = shift;
    return $self->__parser_option(XML_PARSE_NSCLEAN,@_);
}

#-------------------------------------------------------------------------#
# set the optional SAX(2) handler                                         #
#-------------------------------------------------------------------------#
sub set_handler {
    my $self = shift;
    if ( defined $_[0] ) {
        $self->{HANDLER} = $_[0];

        $self->{SAX_ELSTACK} = [];
        $self->{SAX} = {State => 0};
    }
    else {
        # undef SAX handling
        $self->{SAX_ELSTACK} = [];
        delete $self->{HANDLER};
        delete $self->{SAX};
    }
}

#-------------------------------------------------------------------------#
# helper functions                                                        #
#-------------------------------------------------------------------------#
sub _auto_expand {
    my ( $self, $result, $uri ) = @_;

    $result->setBaseURI( $uri ) if defined $uri;

    if ( $self->expand_xinclude ) {
        $self->{_State_} = 1;
        eval { $self->processXIncludes($result); };
        my $err = $@;
        $self->{_State_} = 0;
        if ($err) {
            $self->_cleanup_callbacks();
            $result = undef;
            croak $err;
        }
    }
    return $result;
}

sub _init_callbacks {
    my $self = shift;
    my $icb = $self->{XML_LIBXML_CALLBACK_STACK};
    unless ( defined $icb ) {
        $self->{XML_LIBXML_CALLBACK_STACK} = XML::LibXML::InputCallback->new();
        $icb = $self->{XML_LIBXML_CALLBACK_STACK};
    }

    $icb->init_callbacks($self);
}

sub _cleanup_callbacks {
    my $self = shift;
    $self->{XML_LIBXML_CALLBACK_STACK}->cleanup_callbacks();
}

sub __read {
    read($_[0], $_[1], $_[2]);
}

sub __write {
    if ( ref( $_[0] ) ) {
        $_[0]->write( $_[1], $_[2] );
    }
    else {
        $_[0]->write( $_[1] );
    }
}

sub load_xml {
  my $class_or_self = shift;
  my %args = map { ref($_) eq 'HASH' ? (%$_) : $_ } @_;

  my $URI = delete($args{URI});
  $URI = "$URI"  if defined $URI; # stringify in case it is an URI object
  my $parser;
  if (ref($class_or_self)) {
    $parser = $class_or_self->_clone();
    $parser->{XML_LIBXML_PARSER_OPTIONS} = $parser->_parser_options(\%args);
  } else {
    $parser = $class_or_self->new(\%args);
  }
  my $dom;
  if ( defined $args{location} ) {
    $dom = $parser->parse_file( "$args{location}" );
  }
  elsif ( defined $args{string} ) {
    $dom = $parser->parse_string( $args{string}, $URI );
  }
  elsif ( defined $args{IO} ) {
    $dom = $parser->parse_fh( $args{IO}, $URI );
  }
  else {
    croak("XML::LibXML->load: specify location, string, or IO");
  }
  return $dom;
}

sub load_html {
  my ($class_or_self) = shift;
  my %args = map { ref($_) eq 'HASH' ? (%$_) : $_ } @_;
  my $URI = delete($args{URI});
  $URI = "$URI"  if defined $URI; # stringify in case it is an URI object
  my $parser;
  if (ref($class_or_self)) {
    $parser = $class_or_self->_clone();
  } else {
    $parser = $class_or_self->new();
  }
  my $dom;
  if ( defined $args{location} ) {
    $dom = $parser->parse_html_file( "$args{location}", \%args );
  }
  elsif ( defined $args{string} ) {
    $dom = $parser->parse_html_string( $args{string}, \%args );
  }
  elsif ( defined $args{IO} ) {
    $dom = $parser->parse_html_fh( $args{IO}, \%args );
  }
  else {
    croak("XML::LibXML->load: specify location, string, or IO");
  }
  return $dom;
}

#-------------------------------------------------------------------------#
# parsing functions                                                       #
#-------------------------------------------------------------------------#
# all parsing functions handle normal as SAX parsing at the same time.
# note that SAX parsing is handled incomplete! use XML::LibXML::SAX for
# complete parsing sequences
#-------------------------------------------------------------------------#
sub parse_string {
    my $self = shift;
    croak("parse_string is not a class method! Create a parser object with XML::LibXML->new first!") unless ref $self;
    croak("parse already in progress") if $self->{_State_};

    unless ( defined $_[0] and length $_[0] ) {
        croak("Empty String");
    }

    $self->{_State_} = 1;
    my $result;

    $self->_init_callbacks();

    if ( defined $self->{SAX} ) {
        my $string = shift;
        $self->{SAX_ELSTACK} = [];
        eval { $result = $self->_parse_sax_string($string); };
        my $err = $@;
        $self->{_State_} = 0;
        if ($err) {
            chomp $err unless ref $err;
            $self->_cleanup_callbacks();
            croak $err;
        }
    }
    else {
        eval { $result = $self->_parse_string( @_ ); };

        my $err = $@;
        $self->{_State_} = 0;
        if ($err) {
            chomp $err unless ref $err;
            $self->_cleanup_callbacks();
            croak $err;
        }

        $result = $self->_auto_expand( $result, $self->{XML_LIBXML_BASE_URI} );
    }
    $self->_cleanup_callbacks();

    return $result;
}

sub parse_fh {
    my $self = shift;
    croak("parse_fh is not a class method! Create a parser object with XML::LibXML->new first!") unless ref $self;
    croak("parse already in progress") if $self->{_State_};
    $self->{_State_} = 1;
    my $result;

    $self->_init_callbacks();

    if ( defined $self->{SAX} ) {
        $self->{SAX_ELSTACK} = [];
        eval { $self->_parse_sax_fh( @_ );  };
        my $err = $@;
        $self->{_State_} = 0;
        if ($err) {
	    chomp $err unless ref $err;
            $self->_cleanup_callbacks();
            croak $err;
        }
    }
    else {
        eval { $result = $self->_parse_fh( @_ ); };
        my $err = $@;
        $self->{_State_} = 0;
        if ($err) {
	    chomp $err unless ref $err;
            $self->_cleanup_callbacks();
            croak $err;
        }

        $result = $self->_auto_expand( $result, $self->{XML_LIBXML_BASE_URI} );
    }

    $self->_cleanup_callbacks();

    return $result;
}

sub parse_file {
    my $self = shift;
    croak("parse_file is not a class method! Create a parser object with XML::LibXML->new first!") unless ref $self;
    croak("parse already in progress") if $self->{_State_};

    $self->{_State_} = 1;
    my $result;

    $self->_init_callbacks();

    if ( defined $self->{SAX} ) {
        $self->{SAX_ELSTACK} = [];
        eval { $self->_parse_sax_file( @_ );  };
        my $err = $@;
        $self->{_State_} = 0;
        if ($err) {
	    chomp $err unless ref $err;
            $self->_cleanup_callbacks();
            croak $err;
        }
    }
    else {
        eval { $result = $self->_parse_file(@_); };
        my $err = $@;
        $self->{_State_} = 0;
        if ($err) {
	    chomp $err unless ref $err;
            $self->_cleanup_callbacks();
            croak $err;
        }

        $result = $self->_auto_expand( $result );
    }
    $self->_cleanup_callbacks();

    return $result;
}

sub parse_xml_chunk {
    my $self = shift;
    # max 2 parameter:
    # 1: the chunk
    # 2: the encoding of the string
    croak("parse_xml_chunk is not a class method! Create a parser object with XML::LibXML->new first!") unless ref $self;
    croak("parse already in progress") if $self->{_State_};    my $result;

    unless ( defined $_[0] and length $_[0] ) {
        croak("Empty String");
    }

    $self->{_State_} = 1;

    $self->_init_callbacks();

    if ( defined $self->{SAX} ) {
        eval {
            $self->_parse_sax_xml_chunk( @_ );

            # this is required for XML::GenericChunk.
            # in normal case is_filter is not defined, an thus the parsing
            # will be terminated. in case of a SAX filter the parsing is not
            # finished at that state. therefore we must not reset the parsing
            unless ( $self->{IS_FILTER} ) {
	      $result = $self->{HANDLER}->end_document();
	    }
        };
    }
    else {
        eval { $result = $self->_parse_xml_chunk( @_ ); };
    }

    $self->_cleanup_callbacks();

    my $err = $@;
    $self->{_State_} = 0;
    if ($err) {
        chomp $err unless ref $err;
        croak $err;
    }

    return $result;
}

sub parse_balanced_chunk {
    my $self = shift;
    $self->_init_callbacks();
    my $rv;
    eval {
        $rv = $self->parse_xml_chunk( @_ );
    };
    my $err = $@;
    $self->_cleanup_callbacks();
    if ( $err ) {
        chomp $err unless ref $err;
        croak $err;
    }
    return $rv
}

# java style
sub processXIncludes {
    my $self = shift;
    my $doc = shift;
    my $opts = shift;
    my $options = $self->_parser_options($opts);
    if ( $self->{_State_} != 1 ) {
        $self->_init_callbacks();
    }
    my $rv;
    eval {
        $rv = $self->_processXIncludes($doc || " ", $options);
    };
    my $err = $@;
    if ( $self->{_State_} != 1 ) {
        $self->_cleanup_callbacks();
    }

    if ( $err ) {
        chomp $err unless ref $err;
        croak $err;
    }
    return $rv;
}

# perl style
sub process_xincludes {
    my $self = shift;
    my $doc = shift;
    my $opts = shift;
    my $options = $self->_parser_options($opts);

    my $rv;
    $self->_init_callbacks();
    eval {
        $rv = $self->_processXIncludes($doc || " ", $options);
    };
    my $err = $@;
    $self->_cleanup_callbacks();
    if ( $err ) {
        chomp $err unless ref $err;
        croak $@;
    }
    return $rv;
}

#-------------------------------------------------------------------------#
# HTML parsing functions                                                  #
#-------------------------------------------------------------------------#

sub _html_options {
  my ($self,$opts)=@_;
  $opts = {} unless ref $opts;
  #  return (undef,undef) unless ref $opts;
  my $flags = 0;
  {
    my $recover = exists $opts->{recover} ? $opts->{recover} : $self->recover;

    if ($recover)
    {
      $flags |= HTML_PARSE_RECOVER;
      if ($recover == 2)
      {
        $flags |= HTML_PARSE_NOERROR;
      }
    }
  }

  $flags |=     4 if $opts->{no_defdtd}; # default is ON: injects DTD as needed
  $flags |=    32 if exists $opts->{suppress_errors} ? $opts->{suppress_errors} : $self->get_option('suppress_errors');
  # This is to fix https://rt.cpan.org/Ticket/Display.html?id=58024 :
  # <quote>
  # In XML::LibXML, warnings are not suppressed when specifying the recover
  # or recover_silently flags as per the following excerpt from the manpage:
  # </quote>
  if ($self->recover_silently)
  {
      $flags |= 32;
  }
  $flags |=    64 if $opts->{suppress_warnings};
  $flags |=   128 if exists $opts->{pedantic_parser} ? $opts->{pedantic_parser} : $self->pedantic_parser;
  $flags |=   256 if exists $opts->{no_blanks} ? $opts->{no_blanks} : !$self->keep_blanks;
  $flags |=  2048 if exists $opts->{no_network} ? $opts->{no_network} : !$self->no_network;
  $flags |= 16384 if $opts->{no_cdata};
  $flags |= 65536 if $opts->{compact}; # compact small text nodes; no modification
                                         # of the tree allowed afterwards
                                         # (WILL possibly CRASH IF YOU try to MODIFY THE TREE)
  $flags |= 524288 if $opts->{huge}; # relax any hardcoded limit from the parser
  $flags |= 1048576 if $opts->{oldsax}; # parse using SAX2 interface from before 2.7.0

  return ($opts->{URI},$opts->{encoding},$flags);
}

sub parse_html_string {
    my ($self,$str,$opts) = @_;
    croak("parse_html_string is not a class method! Create a parser object with XML::LibXML->new first!") unless ref $self;
    croak("parse already in progress") if $self->{_State_};

    unless ( defined $str and length $str ) {
        croak("Empty String");
    }
    $self->{_State_} = 1;
    my $result;

    $self->_init_callbacks();
    eval {
      $result = $self->_parse_html_string( $str,
					   $self->_html_options($opts)
					  );
    };
    my $err = $@;
    $self->{_State_} = 0;
    if ($err) {
      chomp $err unless ref $err;
      $self->_cleanup_callbacks();
      croak $err;
    }

    $self->_cleanup_callbacks();

    return $result;
}

sub parse_html_file {
    my ($self,$file,$opts) = @_;
    croak("parse_html_file is not a class method! Create a parser object with XML::LibXML->new first!") unless ref $self;
    croak("parse already in progress") if $self->{_State_};
    $self->{_State_} = 1;
    my $result;

    $self->_init_callbacks();
    eval { $result = $self->_parse_html_file($file,
					     $self->_html_options($opts)
					    ); };
    my $err = $@;
    $self->{_State_} = 0;
    if ($err) {
      chomp $err unless ref $err;
      $self->_cleanup_callbacks();
      croak $err;
    }

    $self->_cleanup_callbacks();

    return $result;
}

sub parse_html_fh {
    my ($self,$fh,$opts) = @_;
    croak("parse_html_fh is not a class method! Create a parser object with XML::LibXML->new first!") unless ref $self;
    croak("parse already in progress") if $self->{_State_};
    $self->{_State_} = 1;

    my $result;
    $self->_init_callbacks();
    eval { $result = $self->_parse_html_fh( $fh,
					    $self->_html_options($opts)
					   ); };
    my $err = $@;
    $self->{_State_} = 0;
    if ($err) {
      chomp $err unless ref $err;
      $self->_cleanup_callbacks();
      croak $err;
    }
    $self->_cleanup_callbacks();

    return $result;
}

#-------------------------------------------------------------------------#
# push parser interface                                                   #
#-------------------------------------------------------------------------#
sub init_push {
    my $self = shift;

    if ( defined $self->{CONTEXT} ) {
        delete $self->{CONTEXT};
    }

    if ( defined $self->{SAX} ) {
        $self->{CONTEXT} = $self->_start_push(1);
    }
    else {
        $self->{CONTEXT} = $self->_start_push(0);
    }
}

sub push {
    my $self = shift;

    $self->_init_callbacks();

    if ( not defined $self->{CONTEXT} ) {
        $self->init_push();
    }

    eval {
        foreach ( @_ ) {
            $self->_push( $self->{CONTEXT}, $_ );
        }
    };
    my $err = $@;
    $self->_cleanup_callbacks();
    if ( $err ) {
        chomp $err unless ref $err;
        croak $err;
    }
}

# this function should be promoted!
# the reason is because libxml2 uses xmlParseChunk() for this purpose!
sub parse_chunk {
    my $self = shift;
    my $chunk = shift;
    my $terminate = shift;

    if ( not defined $self->{CONTEXT} ) {
        $self->init_push();
    }

    if ( defined $chunk and length $chunk ) {
        $self->_push( $self->{CONTEXT}, $chunk );
    }

    if ( $terminate ) {
        return $self->finish_push();
    }
}


sub finish_push {
    my $self = shift;
    my $restore = shift || 0;
    return undef unless defined $self->{CONTEXT};

    my $retval;

    if ( defined $self->{SAX} ) {
        eval {
            $self->_end_sax_push( $self->{CONTEXT} );
            $retval = $self->{HANDLER}->end_document( {} );
        };
    }
    else {
        eval { $retval = $self->_end_push( $self->{CONTEXT}, $restore ); };
    }
    my $err = $@;
    delete $self->{CONTEXT};
    if ( $err ) {
        chomp $err unless ref $err;
        croak( $err );
    }
    return $retval;
}

1;

#-------------------------------------------------------------------------#
# XML::LibXML::Node Interface                                             #
#-------------------------------------------------------------------------#
package XML::LibXML::Node;

use Carp qw(croak);

use overload
    '""'   => sub { $_[0]->toString() },
    'bool' => sub { 1 },
    '0+'   => sub { Scalar::Util::refaddr($_[0]) },
    fallback => 1,
    ;


sub CLONE_SKIP {
  return $XML::LibXML::__threads_shared ? 0 : 1;
}

sub isSupported {
    my $self    = shift;
    my $feature = shift;
    return $self->can($feature) ? 1 : 0;
}

sub getChildNodes { my $self = shift; return $self->childNodes(); }

sub childNodes {
    my $self = shift;
    my @children = $self->_childNodes(0);
    return wantarray ? @children : XML::LibXML::NodeList->new_from_ref(\@children , 1);
}

sub nonBlankChildNodes {
    my $self = shift;
    my @children = $self->_childNodes(1);
    return wantarray ? @children : XML::LibXML::NodeList->new_from_ref(\@children , 1);
}

sub attributes {
    my $self = shift;
    my @attr = $self->_attributes();
    return wantarray ? @attr : XML::LibXML::NamedNodeMap->new( @attr );
}


sub findnodes {
    my ($node, $xpath) = @_;
    my @nodes = $node->_findnodes($xpath);
    if (wantarray) {
        return @nodes;
    }
    else {
        return XML::LibXML::NodeList->new_from_ref(\@nodes, 1);
    }
}

sub exists {
    my ($node, $xpath) = @_;
    my (undef, $value) = $node->_find($xpath,1);
    return $value;
}

sub findvalue {
    my ($node, $xpath) = @_;
    my $res;
    $res = $node->find($xpath);
    return $res->to_literal->value;
}

sub findbool {
    my ($node, $xpath) = @_;
    my ($type, @params) = $node->_find($xpath,1);
    if ($type) {
        return $type->new(@params);
    }
    return undef;
}

sub find {
    my ($node, $xpath) = @_;
    my ($type, @params) = $node->_find($xpath,0);
    if ($type) {
        return $type->new(@params);
    }
    return undef;
}

sub setOwnerDocument {
    my ( $self, $doc ) = @_;
    $doc->adoptNode( $self );
}

sub toStringC14N {
    my ($self, $comments, $xpath, $xpc) = @_;
    return $self->_toStringC14N( $comments || 0,
				 (defined $xpath ? $xpath : undef),
				 0,
				 undef,
				 (defined $xpc ? $xpc : undef)
				);
}

{
my $C14N_version_1_dot_1_val = 2;

sub toStringC14N_v1_1 {
    my ($self, $comments, $xpath, $xpc) = @_;

    return $self->_toStringC14N(
        $comments || 0,
        (defined $xpath ? $xpath : undef),
        $C14N_version_1_dot_1_val,
        undef,
        (defined $xpc ? $xpc : undef)
    );
}

}

sub toStringEC14N {
    my ($self, $comments, $xpath, $xpc, $inc_prefix_list) = @_;
    unless (UNIVERSAL::isa($xpc,'XML::LibXML::XPathContext')) {
        if ($inc_prefix_list) {
            croak("toStringEC14N: 3rd argument is not an XML::LibXML::XPathContext");
        } else {
            $inc_prefix_list=$xpc;
            $xpc=undef;
        }
    }
    if (defined($inc_prefix_list) and !UNIVERSAL::isa($inc_prefix_list,'ARRAY')) {
        croak("toStringEC14N: inclusive_prefix_list must be undefined or ARRAY");
    }
    return $self->_toStringC14N( $comments || 0,
        (defined $xpath ? $xpath : undef),
        1,
        (defined $inc_prefix_list ? $inc_prefix_list : undef),
        (defined $xpc ? $xpc : undef)
    );
}

*serialize_c14n = \&toStringC14N;
*serialize_exc_c14n = \&toStringEC14N;

1;

#-------------------------------------------------------------------------#
# XML::LibXML::Document Interface                                         #
#-------------------------------------------------------------------------#
package XML::LibXML::Document;

use vars qw(@ISA);
@ISA = ('XML::LibXML::Node');

sub actualEncoding {
  my $doc = shift;
  my $enc = $doc->encoding;
  return (defined $enc and length $enc) ? $enc : 'UTF-8';
}

sub setDocumentElement {
    my $doc = shift;
    my $element = shift;

    my $oldelem = $doc->documentElement;
    if ( defined $oldelem ) {
        $doc->removeChild($oldelem);
    }

    $doc->_setDocumentElement($element);
}

sub toString {
    my $self = shift;
    my $flag = shift;

    my $retval = "";

    if ( defined $XML::LibXML::skipXMLDeclaration
         and $XML::LibXML::skipXMLDeclaration == 1 ) {
        foreach ( $self->childNodes ){
            next if $_->nodeType == XML::LibXML::XML_DTD_NODE()
                    and $XML::LibXML::skipDTD;
            $retval .= $_->toString;
        }
    }
    else {
        $flag ||= 0 unless defined $flag;
        $retval =  $self->_toString($flag);
    }

    return $retval;
}

sub serialize {
    my $self = shift;
    return $self->toString( @_ );
}

#-------------------------------------------------------------------------#
# bad style xinclude processing                                           #
#-------------------------------------------------------------------------#
sub process_xinclude {
    my $self = shift;
    my $opts = shift;
    XML::LibXML->new->processXIncludes( $self, $opts );
}

sub insertProcessingInstruction {
    my $self   = shift;
    my $target = shift;
    my $data   = shift;

    my $pi     = $self->createPI( $target, $data );
    my $root   = $self->documentElement;

    if ( defined $root ) {
        # this is actually not correct, but i guess it's what the user
        # intends
        $self->insertBefore( $pi, $root );
    }
    else {
        # if no documentElement was found we just append the PI
        $self->appendChild( $pi );
    }
}

sub insertPI {
    my $self = shift;
    $self->insertProcessingInstruction( @_ );
}

#-------------------------------------------------------------------------#
# DOM L3 Document functions.
# added after robins implicit feature request
#-------------------------------------------------------------------------#
*getElementsByTagName = \&XML::LibXML::Element::getElementsByTagName;
*getElementsByTagNameNS = \&XML::LibXML::Element::getElementsByTagNameNS;
*getElementsByLocalName = \&XML::LibXML::Element::getElementsByLocalName;

1;

#-------------------------------------------------------------------------#
# XML::LibXML::DocumentFragment Interface                                 #
#-------------------------------------------------------------------------#
package XML::LibXML::DocumentFragment;

use vars qw(@ISA);
@ISA = ('XML::LibXML::Node');

sub toString {
    my $self = shift;
    my $retval = "";
    if ( $self->hasChildNodes() ) {
        foreach my $n ( $self->childNodes() ) {
            $retval .= $n->toString(@_);
        }
    }
    return $retval;
}

*serialize = \&toString;

1;

#-------------------------------------------------------------------------#
# XML::LibXML::Element Interface                                          #
#-------------------------------------------------------------------------#
package XML::LibXML::Element;

use vars qw(@ISA);
@ISA = ('XML::LibXML::Node');
use XML::LibXML qw(:ns :libxml);
use XML::LibXML::AttributeHash;
use Carp;

use Scalar::Util qw(blessed);

use overload
    '%{}'  => 'getAttributeHash',
    'eq' => '_isSameNodeLax', '==' => '_isSameNodeLax',
    'ne' => '_isNotSameNodeLax', '!=' => '_isNotSameNodeLax',
    fallback => 1,
    ;

sub _isNotSameNodeLax {
    my ($self, $other) = @_;

    return ((not $self->_isSameNodeLax($other)) ? 1 : '');
}

sub _isSameNodeLax {
    my ($self, $other) = @_;

    if (blessed($other) and $other->isa('XML::LibXML::Element'))
    {
        return ($self->isSameNode($other) ? 1 : '');
    }
    else
    {
        return '';
    }
}

{
    my %tiecache;

    sub __destroy_tiecache
    {
        delete $tiecache{ 0+$_[0] };
    }

    sub getAttributeHash
    {
        my $self = shift;
        if (!exists $tiecache{ 0+$self }) {
            tie my %attr, 'XML::LibXML::AttributeHash', $self, weaken => 1;
            $tiecache{ 0+$self } = \%attr;
        }
        return $tiecache{ 0+$self };
    }
    sub DESTROY
    {
        my ($self) = @_;
        $self->__destroy_tiecache;
        $self->SUPER::DESTROY;
    }
}

sub setNamespace {
    my $self = shift;
    my $n = $self->localname;
    if ( $self->_setNamespace(@_) ){
        if ( scalar @_ < 3 || $_[2] == 1 ){
            $self->setNodeName( $n );
        }
        return 1;
    }
    return 0;
}

sub getAttribute {
    my $self = shift;
    my $name = $_[0];
    if ( $name =~ /^xmlns(?::|$)/ ) {
        # user wants to get a namespace ...
        (my $prefix = $name )=~s/^xmlns:?//;
	$self->_getNamespaceDeclURI($prefix);
    }
    else {
        $self->_getAttribute(@_);
    }
}

sub setAttribute {
    my ( $self, $name, $value ) = @_;
    if ( $name =~ /^xmlns(?::|$)/ ) {
      # user wants to set the special attribute for declaring XML namespace ...

      # this is fine but not exactly DOM conformant behavior, btw (according to DOM we should
      # probably declare an attribute which looks like XML namespace declaration
      # but isn't)
      (my $nsprefix = $name )=~s/^xmlns:?//;
      my $nn = $self->nodeName;
      if ( $nn =~ /^\Q${nsprefix}\E:/ ) {
	# the element has the same prefix
	$self->setNamespaceDeclURI($nsprefix,$value) ||
	  $self->setNamespace($value,$nsprefix,1);
        ##
        ## We set the namespace here.
        ## This is helpful, as in:
        ##
        ## |  $e = XML::LibXML::Element->new('foo:bar');
        ## |  $e->setAttribute('xmlns:foo','http://yoyodine')
        ##
      }
      else {
	# just modify the namespace
	$self->setNamespaceDeclURI($nsprefix, $value) ||
	  $self->setNamespace($value,$nsprefix,0);
      }
    }
    else {
        $self->_setAttribute($name, $value);
    }
}

sub getAttributeNS {
    my $self = shift;
    my ($nsURI, $name) = @_;
    croak("invalid attribute name") if !defined($name) or $name eq q{};
    if ( defined($nsURI) and $nsURI eq XML_XMLNS_NS ) {
	$self->_getNamespaceDeclURI($name eq 'xmlns' ? undef : $name);
    }
    else {
        $self->_getAttributeNS(@_);
    }
}

sub setAttributeNS {
  my ($self, $nsURI, $qname, $value)=@_;
  unless (defined $qname and length $qname) {
    croak("bad name");
  }
  if (defined($nsURI) and $nsURI eq XML_XMLNS_NS) {
    if ($qname !~ /^xmlns(?::|$)/) {
      croak("NAMESPACE ERROR: Namespace declarations must have the prefix 'xmlns'");
    }
    $self->setAttribute($qname,$value); # see implementation above
    return;
  }
  if ($qname=~/:/ and not (defined($nsURI) and length($nsURI))) {
    croak("NAMESPACE ERROR: Attribute without a prefix cannot be in a namespace");
  }
  if ($qname=~/^xmlns(?:$|:)/) {
    croak("NAMESPACE ERROR: 'xmlns' prefix and qualified-name are reserved for the namespace ".XML_XMLNS_NS);
  }
  if ($qname=~/^xml:/ and not (defined $nsURI and $nsURI eq XML_XML_NS)) {
    croak("NAMESPACE ERROR: 'xml' prefix is reserved for the namespace ".XML_XML_NS);
  }
  $self->_setAttributeNS( defined $nsURI ? $nsURI : undef, $qname, $value );
}

sub getElementsByTagName {
    my ( $node , $name ) = @_;
    my $xpath = $name eq '*' ? "descendant::*" : "descendant::*[name()='$name']";
    my @nodes = $node->_findnodes($xpath);
    return wantarray ? @nodes : XML::LibXML::NodeList->new_from_ref(\@nodes, 1);
}

sub  getElementsByTagNameNS {
    my ( $node, $nsURI, $name ) = @_;
    my $xpath;
    if ( $name eq '*' ) {
      if ( $nsURI eq '*' ) {
	$xpath = "descendant::*";
      } else {
	$xpath = "descendant::*[namespace-uri()='$nsURI']";
      }
    } elsif ( $nsURI eq '*' ) {
      $xpath = "descendant::*[local-name()='$name']";
    } else {
      $xpath = "descendant::*[local-name()='$name' and namespace-uri()='$nsURI']";
    }
    my @nodes = $node->_findnodes($xpath);
    return wantarray ? @nodes : XML::LibXML::NodeList->new_from_ref(\@nodes, 1);
}

sub getElementsByLocalName {
    my ( $node,$name ) = @_;
    my $xpath;
    if ($name eq '*') {
      $xpath = "descendant::*";
    } else {
      $xpath = "descendant::*[local-name()='$name']";
    }
    my @nodes = $node->_findnodes($xpath);
    return wantarray ? @nodes : XML::LibXML::NodeList->new_from_ref(\@nodes, 1);
}

sub getChildrenByTagName {
    my ( $node, $name ) = @_;
    my @nodes;
    if ($name eq '*') {
      @nodes = grep { $_->nodeType == XML_ELEMENT_NODE() }
	$node->childNodes();
    } else {
      @nodes = grep { $_->nodeName eq $name } $node->childNodes();
    }
    return wantarray ? @nodes : XML::LibXML::NodeList->new_from_ref(\@nodes, 1);
}

sub getChildrenByLocalName {
    my ( $node, $name ) = @_;
    # my @nodes;
    # if ($name eq '*') {
    #   @nodes = grep { $_->nodeType == XML_ELEMENT_NODE() }
    # 	$node->childNodes();
    # } else {
    #   @nodes = grep { $_->nodeType == XML_ELEMENT_NODE() and
    # 		      $_->localName eq $name } $node->childNodes();
    # }
    # return wantarray ? @nodes : XML::LibXML::NodeList->new_from_ref(\@nodes, 1);
    my @nodes = $node->_getChildrenByTagNameNS('*',$name);
    return wantarray ? @nodes : XML::LibXML::NodeList->new_from_ref(\@nodes, 1);
}

sub getChildrenByTagNameNS {
    my ( $node, $nsURI, $name ) = @_;
    my @nodes = $node->_getChildrenByTagNameNS($nsURI,$name);
    return wantarray ? @nodes : XML::LibXML::NodeList->new_from_ref(\@nodes, 1);
}

sub appendWellBalancedChunk {
    my ( $self, $chunk ) = @_;

    my $local_parser = XML::LibXML->new();
    my $frag = $local_parser->parse_xml_chunk( $chunk );

    $self->appendChild( $frag );
}

1;

#-------------------------------------------------------------------------#
# XML::LibXML::Text Interface                                             #
#-------------------------------------------------------------------------#
package XML::LibXML::Text;

use vars qw(@ISA);
@ISA = ('XML::LibXML::Node');

sub attributes { return; }

sub deleteDataString {
    my ($node, $string, $all) = @_;

    return $node->replaceDataString($string, '', $all);
}

sub replaceDataString {
    my ( $node, $left_proto, $right,$all ) = @_;

    # Assure we exchange the strings and not expressions!
    my $left = quotemeta($left_proto);

    my $datastr = $node->nodeValue();
    if ( $all ) {
        $datastr =~ s/$left/$right/g;
    }
    else{
        $datastr =~ s/$left/$right/;
    }
    $node->setData( $datastr );
}

sub replaceDataRegEx {
    my ( $node, $leftre, $rightre, $flags ) = @_;
    return unless defined $leftre;
    $rightre ||= "";

    my $datastr = $node->nodeValue();
    my $restr   = "s/" . $leftre . "/" . $rightre . "/";
    $restr .= $flags if defined $flags;

    eval '$datastr =~ '. $restr;

    $node->setData( $datastr );
}

1;

package XML::LibXML::Comment;

use vars qw(@ISA);
@ISA = ('XML::LibXML::Text');

1;

package XML::LibXML::CDATASection;

use vars qw(@ISA);
@ISA     = ('XML::LibXML::Text');

1;

#-------------------------------------------------------------------------#
# XML::LibXML::Attribute Interface                                        #
#-------------------------------------------------------------------------#
package XML::LibXML::Attr;
use vars qw( @ISA ) ;
@ISA = ('XML::LibXML::Node') ;

sub setNamespace {
    my ($self,$href,$prefix) = @_;
    my $n = $self->localname;
    if ( $self->_setNamespace($href,$prefix) ) {
        $self->setNodeName($n);
        return 1;
    }

    return 0;
}

1;

#-------------------------------------------------------------------------#
# XML::LibXML::Dtd Interface                                              #
#-------------------------------------------------------------------------#
# this is still under construction
#
package XML::LibXML::Dtd;
use vars qw( @ISA );
@ISA = ('XML::LibXML::Node');

# at least DESTROY and CLONE_SKIP must be inherited

1;

#-------------------------------------------------------------------------#
# XML::LibXML::PI Interface                                               #
#-------------------------------------------------------------------------#
package XML::LibXML::PI;
use vars qw( @ISA );
@ISA = ('XML::LibXML::Node');

sub setData {
    my $pi = shift;

    my $string = "";
    if ( scalar @_ == 1 ) {
        $string = shift;
    }
    else {
        my %h = @_;
        $string = join " ", map {$_.'="'.$h{$_}.'"'} keys %h;
    }

    # the spec says any char but "?>" [17]
    $pi->_setData( $string ) unless  $string =~ /\?>/;
}

1;

#-------------------------------------------------------------------------#
# XML::LibXML::Namespace Interface                                        #
#-------------------------------------------------------------------------#
package XML::LibXML::Namespace;

sub CLONE_SKIP { 1 }

# In fact, this is not a node!
sub prefix { return "xmlns"; }
sub getPrefix { return "xmlns"; }
sub getNamespaceURI { return "http://www.w3.org/2000/xmlns/" };

sub getNamespaces { return (); }

sub nodeName {
  my $self = shift;
  my $nsP  = $self->localname;
  return ( defined($nsP) && length($nsP) ) ? "xmlns:$nsP" : "xmlns";
}
sub name    { goto &nodeName }
sub getName { goto &nodeName }

sub isEqualNode {
    my ( $self, $ref ) = @_;
    if ( ref($ref) eq "XML::LibXML::Namespace" ) {
        return $self->_isEqual($ref);
    }
    return 0;
}

sub isSameNode {
    my ( $self, $ref ) = @_;
    if ( $$self == $$ref ){
        return 1;
    }
    return 0;
}

1;

#-------------------------------------------------------------------------#
# XML::LibXML::NamedNodeMap Interface                                     #
#-------------------------------------------------------------------------#
package XML::LibXML::NamedNodeMap;

use XML::LibXML qw(:libxml);

sub CLONE_SKIP {
  return $XML::LibXML::__threads_shared ? 0 : 1;
}

sub new {
    my $class = shift;
    my $self = bless { Nodes => [@_] }, $class;
    $self->{NodeMap} = { map { $_->nodeName => $_ } @_ };
    return $self;
}

sub length     { return scalar( @{$_[0]->{Nodes}} ); }
sub nodes      { return $_[0]->{Nodes}; }
sub item       { $_[0]->{Nodes}->[$_[1]]; }

sub getNamedItem {
    my $self = shift;
    my $name = shift;

    return $self->{NodeMap}->{$name};
}

sub setNamedItem {
    my $self = shift;
    my $node = shift;

    my $retval;
    if ( defined $node ) {
        if ( scalar @{$self->{Nodes}} ) {
            my $name = $node->nodeName();
            if ( $node->nodeType() == XML_NAMESPACE_DECL ) {
                return;
            }
            if ( defined $self->{NodeMap}->{$name} ) {
                if ( $node->isSameNode( $self->{NodeMap}->{$name} ) ) {
                    return;
                }
                $retval = $self->{NodeMap}->{$name}->replaceNode( $node );
            }
            else {
                $self->{Nodes}->[0]->addSibling($node);
            }

            $self->{NodeMap}->{$name} = $node;
            push @{$self->{Nodes}}, $node;
        }
        else {
            # not done yet
            # can this be properly be done???
            warn "not done yet\n";
        }
    }
    return $retval;
}

sub removeNamedItem {
    my $self = shift;
    my $name = shift;
    my $retval;
    if ( $name =~ /^xmlns/ ) {
        warn "not done yet\n";
    }
    elsif ( exists $self->{NodeMap}->{$name} ) {
        $retval = $self->{NodeMap}->{$name};
        $retval->unbindNode;
        delete $self->{NodeMap}->{$name};
        $self->{Nodes} = [grep {not($retval->isSameNode($_))} @{$self->{Nodes}}];
    }

    return $retval;
}

sub getNamedItemNS {
    my $self = shift;
    my $nsURI = shift;
    my $name = shift;
    return undef;
}

sub setNamedItemNS {
    my $self = shift;
    my $nsURI = shift;
    my $node = shift;
    return undef;
}

sub removeNamedItemNS {
    my $self = shift;
    my $nsURI = shift;
    my $name = shift;
    return undef;
}

1;

package XML::LibXML::_SAXParser;

# this is pseudo class!!! and it will be removed as soon all functions
# moved to XS level

use XML::SAX::Exception;

sub CLONE_SKIP {
  return $XML::LibXML::__threads_shared ? 0 : 1;
}

# these functions will use SAX exceptions as soon i know how things really work
sub warning {
    my ( $parser, $message, $line, $col ) = @_;
    my $error = XML::SAX::Exception::Parse->new( LineNumber   => $line,
                                                 ColumnNumber => $col,
                                                 Message      => $message, );
    $parser->{HANDLER}->warning( $error );
}

sub error {
    my ( $parser, $message, $line, $col ) = @_;

    my $error = XML::SAX::Exception::Parse->new( LineNumber   => $line,
                                                 ColumnNumber => $col,
                                                 Message      => $message, );
    $parser->{HANDLER}->error( $error );
}

sub fatal_error {
    my ( $parser, $message, $line, $col ) = @_;
    my $error = XML::SAX::Exception::Parse->new( LineNumber   => $line,
                                                 ColumnNumber => $col,
                                                 Message      => $message, );
    $parser->{HANDLER}->fatal_error( $error );
}

1;

package XML::LibXML::RelaxNG;

sub CLONE_SKIP { 1 }

sub new {
    my $class = shift;
    my %args = @_;

    my $self = undef;
    if ( defined $args{location} ) {
        $self = $class->parse_location( $args{location}, XML::LibXML->_parser_options(\%args), $args{recover} );
    }
    elsif ( defined $args{string} ) {
        $self = $class->parse_buffer( $args{string}, XML::LibXML->_parser_options(\%args), $args{recover} );
    }
    elsif ( defined $args{DOM} ) {
        $self = $class->parse_document( $args{DOM}, XML::LibXML->_parser_options(\%args), $args{recover} );
    }

    return $self;
}

1;

package XML::LibXML::Schema;

sub CLONE_SKIP { 1 }

sub new {
    my $class = shift;
    my %args = @_;

    my $self = undef;
    if ( defined $args{location} ) {
        $self = $class->parse_location( $args{location}, XML::LibXML->_parser_options(\%args), $args{recover} );
    }
    elsif ( defined $args{string} ) {
        $self = $class->parse_buffer( $args{string}, XML::LibXML->_parser_options(\%args), $args{recover} );
    }

    return $self;
}

1;

#-------------------------------------------------------------------------#
# XML::LibXML::Pattern Interface                                          #
#-------------------------------------------------------------------------#

package XML::LibXML::Pattern;

sub CLONE_SKIP { 1 }

sub new {
  my $class = shift;
  my ($pattern,$ns_map)=@_;
  my $self = undef;

  unless (UNIVERSAL::can($class,'_compilePattern')) {
    croak("Cannot create XML::LibXML::Pattern - ".
	  "your libxml2 is compiled without pattern support!");
  }

  if (ref($ns_map) eq 'HASH') {
    # translate prefix=>URL hash to a (URL,prefix) list
    $self = $class->_compilePattern($pattern,0,[reverse %$ns_map]);
  } else {
    $self = $class->_compilePattern($pattern,0);
  }
  return $self;
}

1;

#-------------------------------------------------------------------------#
# XML::LibXML::RegExp Interface                                          #
#-------------------------------------------------------------------------#

package XML::LibXML::RegExp;

sub CLONE_SKIP { 1 }

sub new {
  my $class = shift;
  my ($regexp)=@_;
  unless (UNIVERSAL::can($class,'_compile')) {
    croak("Cannot create XML::LibXML::RegExp - ".
	  "your libxml2 is compiled without regexp support!");
  }
  return $class->_compile($regexp);
}

1;

#-------------------------------------------------------------------------#
# XML::LibXML::XPathExpression Interface                                  #
#-------------------------------------------------------------------------#

package XML::LibXML::XPathExpression;

sub CLONE_SKIP { 1 }

1;


#-------------------------------------------------------------------------#
# XML::LibXML::InputCallback Interface                                    #
#-------------------------------------------------------------------------#
package XML::LibXML::InputCallback;

use vars qw($_CUR_CB @_GLOBAL_CALLBACKS @_CB_STACK $_CB_NESTED_DEPTH @_CB_NESTED_STACK);

BEGIN {
  $_CUR_CB = undef;
  @_GLOBAL_CALLBACKS = ();
  @_CB_STACK = ();
  $_CB_NESTED_DEPTH = 0;
  @_CB_NESTED_STACK = ();
}

sub CLONE_SKIP {
  return $XML::LibXML::__threads_shared ? 0 : 1;
}

#-------------------------------------------------------------------------#
# global callbacks                                                        #
#-------------------------------------------------------------------------#
sub _callback_match {
    my $uri = shift;
    my $retval = 0;

    # loop through the callbacks, and find the first matching one.
    # The callbacks are stored in execution order (reverse stack order).
    # Any new global callbacks are shifted to the callback stack.
    foreach my $cb ( @_GLOBAL_CALLBACKS ) {

        # callbacks have to return 1, 0 or undef, while 0 and undef
        # are handled the same way.
        # in fact, if callbacks return other values, the global match
        # assumes silently that the callback failed.

        $retval = $cb->[0]->($uri);

        if ( defined $retval and $retval == 1 ) {
            # make the other callbacks use this callback
            $_CUR_CB = $cb;
            unshift @_CB_STACK, $cb;
            last;
        }
    }

    return $retval;
}

sub _callback_open {
    my $uri = shift;
    my $retval = undef;

    # the open callback has to return a defined value.
    # if one works on files this can be a file handle. But
    # depending on the needs of the callback it also can be a
    # database handle or a integer labeling a certain dataset.

    if ( defined $_CUR_CB ) {
        $retval = $_CUR_CB->[1]->( $uri );

        # reset the callbacks, if one callback cannot open an uri
        if ( not defined $retval or $retval == 0 ) {
            shift @_CB_STACK;
            $_CUR_CB = $_CB_STACK[0];
        }
    }

    return $retval;
}

sub _callback_read {
    my $fh = shift;
    my $buflen = shift;

    my $retval = undef;

    if ( defined $_CUR_CB ) {
        $retval = $_CUR_CB->[2]->( $fh, $buflen );
    }

    return $retval;
}

sub _callback_close {
    my $fh = shift;
    my $retval = 0;

    if ( defined $_CUR_CB ) {
        $retval = $_CUR_CB->[3]->( $fh );
        shift @_CB_STACK;
        $_CUR_CB = $_CB_STACK[0];
    }

    return $retval;
}

#-------------------------------------------------------------------------#
# member functions and methods                                            #
#-------------------------------------------------------------------------#

sub new {
    my $CLASS = shift;
    return bless {'_CALLBACKS' => []}, $CLASS;
}

# add a callback set to the callback stack
# synopsis: $icb->register_callbacks( [$match_cb, $open_cb, $read_cb, $close_cb] );
sub register_callbacks {
    my $self = shift;
    my $cbset = shift;

    # test if callback set is complete
    if ( ref $cbset eq "ARRAY" and scalar( @$cbset ) == 4 ) {
        unshift @{$self->{_CALLBACKS}}, $cbset;
    }
}

# remove a callback set to the callback stack
# if a callback set is passed, this function will check for the match function
sub unregister_callbacks {
    my $self = shift;
    my $cbset = shift;
    if ( ref $cbset eq "ARRAY" and scalar( @$cbset ) == 4 ) {
        $self->{_CALLBACKS} = [grep { $_->[0] != $cbset->[0] } @{$self->{_CALLBACKS}}];
    }
    else {
        shift @{$self->{_CALLBACKS}};
    }
}

# make libxml2 use the callbacks
sub init_callbacks {
    my $self = shift;
    my $parser = shift;

    #initialize the libxml2 callbacks unless this is a nested callback
    $self->lib_init_callbacks() unless($_CB_NESTED_DEPTH);

    #store the callbacks for any outer executing parser instance
    $_CB_NESTED_DEPTH++;
    push @_CB_NESTED_STACK, [
      $_CUR_CB,
      [@_CB_STACK],
      [@_GLOBAL_CALLBACKS],
    ];

    #initialize the callback variables for the current parser
    $_CUR_CB           = undef;
    @_CB_STACK         = ();
    @_GLOBAL_CALLBACKS = @{ $self->{_CALLBACKS} };

    #attach parser specific callbacks
    if($parser) {
        my $mcb = $parser->match_callback();
        my $ocb = $parser->open_callback();
        my $rcb = $parser->read_callback();
        my $ccb = $parser->close_callback();
        if ( defined $mcb and defined $ocb and defined $rcb and defined $ccb ) {
            unshift @_GLOBAL_CALLBACKS, [$mcb, $ocb, $rcb, $ccb];
        }
    }

    #attach global callbacks
    if ( defined $XML::LibXML::match_cb and
         defined $XML::LibXML::open_cb  and
         defined $XML::LibXML::read_cb  and
         defined $XML::LibXML::close_cb ) {
        push @_GLOBAL_CALLBACKS, [$XML::LibXML::match_cb,
                                  $XML::LibXML::open_cb,
                                  $XML::LibXML::read_cb,
                                  $XML::LibXML::close_cb];
    }
}

# reset libxml2's callbacks
sub cleanup_callbacks {
    my $self = shift;

    #restore the callbacks for the outer parser instance
    $_CB_NESTED_DEPTH--;
    my $saved          = pop @_CB_NESTED_STACK;
    $_CUR_CB           = $saved->[0];
    @_CB_STACK         = (@{$saved->[1]});
    @_GLOBAL_CALLBACKS = (@{$saved->[2]});

    #clean up the libxml2 callbacks unless there are still outer parsing instances
    $self->lib_cleanup_callbacks() unless($_CB_NESTED_DEPTH);
}

$XML::LibXML::__loaded=1;

1;

__END__
PK     N\(nf;  ;  
  LibXML.podnu 6$        =head1 NAME

XML::LibXML - Perl Binding for libxml2

=head1 SYNOPSIS



  use XML::LibXML;
  my $dom = XML::LibXML->load_xml(string => <<'EOT');
  <some-xml/>
  EOT

  $Version_String = XML::LibXML::LIBXML_DOTTED_VERSION;
  $Version_ID = XML::LibXML::LIBXML_VERSION;
  $DLL_Version = XML::LibXML::LIBXML_RUNTIME_VERSION;
  $libxmlnode = XML::LibXML->import_GDOME( $node, $deep );
  $gdomenode = XML::LibXML->export_GDOME( $node, $deep );

=head1 DESCRIPTION

This module is an interface to libxml2, providing XML and HTML parsers with
DOM, SAX and XMLReader interfaces, a large subset of DOM Layer 3 interface and
a XML::XPath-like interface to XPath API of libxml2. The module is split into
several packages which are not described in this section; unless stated
otherwise, you only need to C<<<<<< use XML::LibXML; >>>>>> in your programs.

Check out XML::LibXML by Example (L<<<<<< http://grantm.github.io/perl-libxml-by-example/ >>>>>>) for a tutorial.

For further information, please check the following documentation:

=over 4

=item L<<<<<< XML::LibXML::Parser >>>>>>

Parsing XML files with XML::LibXML


=item L<<<<<< XML::LibXML::DOM >>>>>>

XML::LibXML Document Object Model (DOM) Implementation


=item L<<<<<< XML::LibXML::SAX >>>>>>

XML::LibXML direct SAX parser


=item L<<<<<< XML::LibXML::Reader >>>>>>

Reading XML with a pull-parser


=item L<<<<<< XML::LibXML::Dtd >>>>>>

XML::LibXML frontend for DTD validation


=item L<<<<<< XML::LibXML::RelaxNG >>>>>>

XML::LibXML frontend for RelaxNG schema validation


=item L<<<<<< XML::LibXML::Schema >>>>>>

XML::LibXML frontend for W3C Schema schema validation


=item L<<<<<< XML::LibXML::XPathContext >>>>>>

API for evaluating XPath expressions with enhanced support for the evaluation
context


=item L<<<<<< XML::LibXML::InputCallback >>>>>>

Implementing custom URI Resolver and input callbacks


=item L<<<<<< XML::LibXML::Common >>>>>>

Common functions for XML::LibXML related Classes



=back

The nodes in the Document Object Model (DOM) are represented by the following
classes (most of which "inherit" from L<<<<<< XML::LibXML::Node >>>>>>):

=over 4

=item L<<<<<< XML::LibXML::Document >>>>>>

XML::LibXML class for DOM document nodes


=item L<<<<<< XML::LibXML::Node >>>>>>

Abstract base class for XML::LibXML DOM nodes


=item L<<<<<< XML::LibXML::Element >>>>>>

XML::LibXML class for DOM element nodes


=item L<<<<<< XML::LibXML::Text >>>>>>

XML::LibXML class for DOM text nodes


=item L<<<<<< XML::LibXML::Comment >>>>>>

XML::LibXML class for comment DOM nodes


=item L<<<<<< XML::LibXML::CDATASection >>>>>>

XML::LibXML class for DOM CDATA sections


=item L<<<<<< XML::LibXML::Attr >>>>>>

XML::LibXML DOM attribute class


=item L<<<<<< XML::LibXML::DocumentFragment >>>>>>

XML::LibXML's DOM L2 Document Fragment implementation


=item L<<<<<< XML::LibXML::Namespace >>>>>>

XML::LibXML DOM namespace nodes


=item L<<<<<< XML::LibXML::PI >>>>>>

XML::LibXML DOM processing instruction nodes



=back


=head1 ENCODINGS SUPPORT IN XML::LIBXML

Recall that since version 5.6.1, Perl distinguishes between character strings
(internally encoded in UTF-8) and so called binary data and, accordingly,
applies either character or byte semantics to them. A scalar representing a
character string is distinguished from a byte string by special flag (UTF8).
Please refer to I<<<<<< perlunicode >>>>>> for details.

XML::LibXML's API is designed to deal with many encodings of XML documents
completely transparently, so that the application using XML::LibXML can be
completely ignorant about the encoding of the XML documents it works with. On
the other hand, functions like C<<<<<< XML::LibXML::Document-E<gt>setEncoding >>>>>> give the user control over the document encoding.

To ensure the aforementioned transparency and uniformity, most functions of
XML::LibXML that work with in-memory trees accept and return data as character
strings (i.e. UTF-8 encoded with the UTF8 flag on) regardless of the original
document encoding; however, the functions related to I/O operations (i.e.
parsing and saving) operate with binary data (in the original document
encoding) obeying the encoding declaration of the XML documents.

Below we summarize basic rules and principles regarding encoding:


=over 4

=item 1.

Do NOT apply any encoding-related PerlIO layers (C<<<<<< :utf8 >>>>>> or C<<<<<< :encoding(...) >>>>>>) to file handles that are an input for the parses or an output for a
serializer of (full) XML documents. This is because the conversion of the data
to/from the internal character representation is provided by libxml2 itself
which must be able to enforce the encoding specified by the C<<<<<< E<lt>?xml version="1.0" encoding="..."?E<gt> >>>>>> declaration. Here is an example to follow:

  use XML::LibXML;
  # load
  open my $fh, '<', 'file.xml';
  binmode $fh; # drop all PerlIO layers possibly created by a use open pragma
  $doc = XML::LibXML->load_xml(IO => $fh);

  # save
  open my $out, '>', 'out.xml';
  binmode $out; # as above
  $doc->toFH($out);
  # or
  print {$out} $doc->toString();





=item 2.

All functions working with DOM accept and return character strings (UTF-8
encoded with UTF8 flag on). E.g.

  my $doc = XML::LibXML::Document->new('1.0',$some_encoding);
  my $element = $doc->createElement($name);
  $element->appendText($text);
  $xml_fragment = $element->toString(); # returns a character string
  $xml_document = $doc->toString(); # returns a byte string

where C<<<<<< $some_encoding >>>>>> is the document encoding that will be used when saving the document, and C<<<<<< $name >>>>>> and C<<<<<< $text >>>>>> contain character strings (UTF-8 encoded with UTF8 flag on). Note that the
method C<<<<<< toString >>>>>> returns XML as a character string if applied to other node than the Document
node and a byte string containing the appropriate

  <?xml version="1.0" encoding="..."?>

declaration if applied to a L<<<<<< XML::LibXML::Document >>>>>>.



=item 3.

DOM methods also accept binary strings in the original encoding of the document
to which the node belongs (UTF-8 is assumed if the node is not attached to any
document). Exploiting this feature is NOT RECOMMENDED since it is considered
bad practice.



  my $doc = XML::LibXML::Document->new('1.0','iso-8859-2');
  my $text = $doc->createTextNode($some_latin2_encoded_byte_string);
  # WORKS, BUT NOT RECOMMENDED!



=back

I<<<<<< NOTE: >>>>>> libxml2 support for many encodings is based on the iconv library. The actual
list of supported encodings may vary from platform to platform. To test if your
platform works correctly with your language encoding, build a simple document
in the particular encoding and try to parse it with XML::LibXML to see if the
parser produces any errors. Occasional crashes were reported on rare platforms
that ship with a broken version of iconv.


=head1 THREAD SUPPORT

XML::LibXML since 1.67 partially supports Perl threads in Perl >= 5.8.8.
XML::LibXML can be used with threads in two ways:

By default, all XML::LibXML classes use CLONE_SKIP class method to prevent Perl
from copying XML::LibXML::* objects when a new thread is spawn. In this mode,
all XML::LibXML::* objects are thread specific. This is the safest way to work
with XML::LibXML in threads.

Alternatively, one may use



  use threads;
  use XML::LibXML qw(:threads_shared);

to indicate, that all XML::LibXML node and parser objects should be shared
between the main thread and any thread spawn from there. For example, in



  my $doc = XML::LibXML->load_xml(location => $filename);
  my $thr = threads->new(sub{
    # code working with $doc
    1;
  });
  $thr->join;

the variable C<<<<<< $doc >>>>>> refers to the exact same XML::LibXML::Document in the spawned thread as in the
main thread.

Without using mutex locks, parallel threads may read the same document (i.e.
any node that belongs to the document), parse files, and modify different
documents.

However, if there is a chance that some of the threads will attempt to modify a
document (or even create new nodes based on that document, e.g. with C<<<<<< $doc-E<gt>createElement >>>>>>) that other threads may be reading at the same time, the user is responsible
for creating a mutex lock and using it in I<<<<<< both >>>>>> in the thread that modifies and the thread that reads:



  my $doc = XML::LibXML->load_xml(location => $filename);
  my $mutex : shared;
  my $thr = threads->new(sub{
     lock $mutex;
     my $el = $doc->createElement('foo');
     # ...
    1;
  });
  {
    lock $mutex;
    my $root = $doc->documentElement;
    say $root->name;
  }
  $thr->join;

Note that libxml2 uses dictionaries to store short strings and these
dictionaries are kept on a document node. Without mutex locks, it could happen
in the previous example that the thread modifies the dictionary while other
threads attempt to read from it, which could easily lead to a crash.


=head1 VERSION INFORMATION

Sometimes it is useful to figure out, for which version XML::LibXML was
compiled for. In most cases this is for debugging or to check if a given
installation meets all functionality for the package. The functions
XML::LibXML::LIBXML_DOTTED_VERSION and XML::LibXML::LIBXML_VERSION provide this
version information. Both functions simply pass through the values of the
similar named macros of libxml2. Similarly, XML::LibXML::LIBXML_RUNTIME_VERSION
returns the version of the (usually dynamically) linked libxml2.

=over 4

=item XML::LibXML::LIBXML_DOTTED_VERSION

  $Version_String = XML::LibXML::LIBXML_DOTTED_VERSION;

Returns the version string of the libxml2 version XML::LibXML was compiled for.
This will be "2.6.2" for "libxml2 2.6.2".


=item XML::LibXML::LIBXML_VERSION

  $Version_ID = XML::LibXML::LIBXML_VERSION;

Returns the version id of the libxml2 version XML::LibXML was compiled for.
This will be "20602" for "libxml2 2.6.2". Don't mix this version id with
$XML::LibXML::VERSION. The latter contains the version of XML::LibXML itself
while the first contains the version of libxml2 XML::LibXML was compiled for.


=item XML::LibXML::LIBXML_RUNTIME_VERSION

  $DLL_Version = XML::LibXML::LIBXML_RUNTIME_VERSION;

Returns a version string of the libxml2 which is (usually dynamically) linked
by XML::LibXML. This will be "20602" for libxml2 released as "2.6.2" and
something like "20602-CVS2032" for a CVS build of libxml2.

XML::LibXML issues a warning if the version of libxml2 dynamically linked to it
is less than the version of libxml2 which it was compiled against.



=back


=head1 EXPORTS

By default the module exports all constants and functions listed in the :all
tag, described below.


=head1 EXPORT TAGS

=over 4

=item C<<<<<< :all >>>>>>

Includes the tags C<<<<<< :libxml >>>>>>, C<<<<<< :encoding >>>>>>, and C<<<<<< :ns >>>>>> described below.


=item C<<<<<< :libxml >>>>>>

Exports integer constants for DOM node types.



  XML_ELEMENT_NODE            => 1
  XML_ATTRIBUTE_NODE          => 2
  XML_TEXT_NODE               => 3
  XML_CDATA_SECTION_NODE      => 4
  XML_ENTITY_REF_NODE         => 5
  XML_ENTITY_NODE             => 6
  XML_PI_NODE                 => 7
  XML_COMMENT_NODE            => 8
  XML_DOCUMENT_NODE           => 9
  XML_DOCUMENT_TYPE_NODE      => 10
  XML_DOCUMENT_FRAG_NODE      => 11
  XML_NOTATION_NODE           => 12
  XML_HTML_DOCUMENT_NODE      => 13
  XML_DTD_NODE                => 14
  XML_ELEMENT_DECL            => 15
  XML_ATTRIBUTE_DECL          => 16
  XML_ENTITY_DECL             => 17
  XML_NAMESPACE_DECL          => 18
  XML_XINCLUDE_START          => 19
  XML_XINCLUDE_END            => 20


=item C<<<<<< :encoding >>>>>>

Exports two encoding conversion functions from XML::LibXML::Common.



  encodeToUTF8()
  decodeFromUTF8()


=item C<<<<<< :ns >>>>>>

Exports two convenience constants: the implicit namespace of the reserved C<<<<<< xml: >>>>>> prefix, and the implicit namespace for the reserved C<<<<<< xmlns: >>>>>> prefix.



  XML_XML_NS    => 'http://www.w3.org/XML/1998/namespace'
  XML_XMLNS_NS  => 'http://www.w3.org/2000/xmlns/'



=back


=head1 RELATED MODULES

The modules described in this section are not part of the XML::LibXML package
itself. As they support some additional features, they are mentioned here.

=over 4

=item L<<<<<< XML::LibXSLT >>>>>>

XSLT 1.0 Processor using libxslt and XML::LibXML


=item L<<<<<< XML::LibXML::Iterator >>>>>>

XML::LibXML Implementation of the DOM Traversal Specification


=item L<<<<<< XML::CompactTree::XS >>>>>>

Uses XML::LibXML::Reader to very efficiently to parse XML document or element
into native Perl data structures, which are less flexible but significantly
faster to process then DOM.



=back


=head1 XML::LIBXML AND XML::GDOME

Note: I<<<<<< THE FUNCTIONS DESCRIBED HERE ARE STILL EXPERIMENTAL >>>>>>

Although both modules make use of libxml2's XML capabilities, the DOM
implementation of both modules are not compatible. But still it is possible to
exchange nodes from one DOM to the other. The concept of this exchange is
pretty similar to the function cloneNode(): The particular node is copied on
the low-level to the opposite DOM implementation.

Since the DOM implementations cannot coexist within one document, one is forced
to copy each node that should be used. Because you are always keeping two nodes
this may cause quite an impact on a machines memory usage.

XML::LibXML provides two functions to export or import GDOME nodes:
import_GDOME() and export_GDOME(). Both function have two parameters: the node
and a flag for recursive import. The flag works as in cloneNode().

The two functions allow one to export and import XML::GDOME nodes explicitly,
however, XML::LibXML also allows the transparent import of XML::GDOME nodes in
functions such as appendChild(), insertAfter() and so on. While native nodes
are automatically adopted in most functions XML::GDOME nodes are always cloned
in advance. Thus if the original node is modified after the operation, the node
in the XML::LibXML document will not have this information.

=over 4

=item import_GDOME

  $libxmlnode = XML::LibXML->import_GDOME( $node, $deep );

This clones an XML::GDOME node to an XML::LibXML node explicitly.


=item export_GDOME

  $gdomenode = XML::LibXML->export_GDOME( $node, $deep );

Allows one to clone an XML::LibXML node into an XML::GDOME node.



=back


=head1 CONTACTS

For bug reports, please use the CPAN request tracker on
http://rt.cpan.org/NoAuth/Bugs.html?Dist=XML-LibXML

For suggestions etc., and other issues related to XML::LibXML you may use the
perl XML mailing list (C<<<<<< perl-xml@listserv.ActiveState.com >>>>>>), where most XML-related Perl modules are discussed. In case of problems you
should check the archives of that list first. Many problems are already
discussed there. You can find the list's archives and subscription options at L<<<<<< http://aspn.activestate.com/ASPN/Mail/Browse/Threaded/perl-xml >>>>>>.

=head1 AUTHORS

Matt Sergeant,
Christian Glahn,
Petr Pajas


=head1 VERSION

2.0210

=head1 COPYRIGHT

2001-2007, AxKit.com Ltd.

2002-2006, Christian Glahn.

2006-2009, Petr Pajas.

=cut


=head1 LICENSE

This program is free software; you can redistribute it and/or modify it under
the same terms as Perl itself.

PK     j\YA  A    SAX/.packlistnu [        /usr/local/share/man/man3/XML::SAX.3pm
/usr/local/share/man/man3/XML::SAX::DocumentLocator.3pm
/usr/local/share/man/man3/XML::SAX::Intro.3pm
/usr/local/share/man/man3/XML::SAX::ParserFactory.3pm
/usr/local/share/man/man3/XML::SAX::PurePerl.3pm
/usr/local/share/man/man3/XML::SAX::PurePerl::Reader.3pm
/usr/local/share/perl5/XML/SAX.pm
/usr/local/share/perl5/XML/SAX/DocumentLocator.pm
/usr/local/share/perl5/XML/SAX/Intro.pod
/usr/local/share/perl5/XML/SAX/ParserFactory.pm
/usr/local/share/perl5/XML/SAX/PurePerl.pm
/usr/local/share/perl5/XML/SAX/PurePerl/DTDDecls.pm
/usr/local/share/perl5/XML/SAX/PurePerl/DebugHandler.pm
/usr/local/share/perl5/XML/SAX/PurePerl/DocType.pm
/usr/local/share/perl5/XML/SAX/PurePerl/EncodingDetect.pm
/usr/local/share/perl5/XML/SAX/PurePerl/Exception.pm
/usr/local/share/perl5/XML/SAX/PurePerl/NoUnicodeExt.pm
/usr/local/share/perl5/XML/SAX/PurePerl/Productions.pm
/usr/local/share/perl5/XML/SAX/PurePerl/Reader.pm
/usr/local/share/perl5/XML/SAX/PurePerl/Reader/NoUnicodeExt.pm
/usr/local/share/perl5/XML/SAX/PurePerl/Reader/Stream.pm
/usr/local/share/perl5/XML/SAX/PurePerl/Reader/String.pm
/usr/local/share/perl5/XML/SAX/PurePerl/Reader/URI.pm
/usr/local/share/perl5/XML/SAX/PurePerl/Reader/UnicodeExt.pm
/usr/local/share/perl5/XML/SAX/PurePerl/UnicodeExt.pm
/usr/local/share/perl5/XML/SAX/PurePerl/XMLDecl.pm
PK     j\O,V   V     SAX/Expat/.packlistnu [        /usr/local/share/man/man3/XML::SAX::Expat.3pm
/usr/local/share/perl5/XML/SAX/Expat.pm
PK     j\Jת      SAX/Base/.packlistnu [        /usr/local/share/man/man3/XML::SAX::Base.3pm
/usr/local/share/man/man3/XML::SAX::BuildSAXBase.3pm
/usr/local/share/man/man3/XML::SAX::Exception.3pm
/usr/local/share/perl5/XML/SAX/Base.pm
/usr/local/share/perl5/XML/SAX/BuildSAXBase.pl
/usr/local/share/perl5/XML/SAX/Exception.pm
PK     k\D        Simple/.packlistnu [        /usr/local/share/man/man3/XML::Simple.3pm
/usr/local/share/man/man3/XML::Simple::FAQ.3pm
/usr/local/share/perl5/XML/Simple.pm
/usr/local/share/perl5/XML/Simple/FAQ.pod
PK     k\2Ek k   LibXML/LibXML.sonu 7m        ELF          >          @       b         @ 8 	 @ $ #                               @     @                   ؽ     ؽ&     ؽ&     (      x                         &     &     P      P                   8      8      8      $       $                                                             Std                                            Ptd   *     *     *                        Qtd                                                  Rtd   ؽ     ؽ&     ؽ&     (      (                      GNU 8˅i@pVLwI       m     
   BV(`QaP	jp ! @4  @  (   6 D ^B $ H"T!&H     2P $ @  =f xP;mAT4 *m      n          q  s  w  x  y  {  }                                                                                                                                                                                                                                                                                                                               [@hA
QBgH3N*-{P<UF"EUl (liKLu!jW`8WfsZ}faq)Z5?^ 3E4:7P/t,ϊow*T++ft~݋+Ό	_ON!w׈.Ó6B5Wy~Ae7C#1y1e(LBl4vHRE܀֡~'f1ٮ ,mE]V'l}IohmT'c#ܱ: <+sl6qXt[;i9;\ZNvHu?Kz 	fKcq =R\3&L G{˙\Wf,1bV/5J0֧Ȏsʽ|.ȣ|D]dQn]wy@CEJ=ӓg<I<
9KND?hmNgCH$QJJ؃W@7P¬|#CIxx,D'[,8c[|r7fJL%7L )L^IV#                            e#                                                               E                                                               !                                                                &                                          M                     #                                          6                                          .                     	                                           <                                                                                    z                     ]                                                               z                      J                                                               J                                                               x                                          Z                     6!                     l
                     2                     A	                                                               
                     l                                                                                                                                                     u                     "                                          i                     C#                                          
                                                                                                         
                     M                     Q                     c                     w                     n                      g                                          
                                          !                                          |                     B                     /                                                                                                         ^	                                                                                                          ?                                          t                                                                                                                                                   	                                                               3                                          f                                          P
                                          U                     K                                                                                                                                                                                               s	                     z                     T                                                               a                     B                                                                                                         @                                          A                                                                                                          	                     W                     ,                       !                     B                     _                                                                                                                                                   F   "                   U                                          9                     m                     '                     #                     	                                          _                                                               #                                                                                    (                     T                                          M                                          0                                          s                     -                                                                                                         "                                                                                    [                                                                                                          =                                                                                    n                     :                                                               A                                                               -                     r                     
                                                                                     l                     )                     ;                                          	                     	                                          c                                          -                                                                                    A                     
                                          g                                          g                                          &                     `                     i                                          @                                                                                    2                                                               x#                      #                     P                                                                                                                              ^                                                                                                         -
                     )                     N                                          q                                          3                     6                     ^                     j                                          |                                                                                     b                                          7                     1                     $	                                                                                                         O                     V                                          !                                                               n                                                                                    c                                                                                                                                                   y                                          6                     P#                                          >                                                                                                                                                    U                                          e                                          7#                     w                     d                     (!                     #                                          H                     r                     #                     {!                     p                                                               W                                          /!                     
                                                               a                     u                                                                                    Q                                                                                                                                                                                             e                                                                                                         
                     !                                                                                                         R                                          {                                          b                     !                                          7                     n                                                               "                                          (                     $                                          H                                                                                     e     P                `                     .       >          
      !                          v                      J    0           \!               N    О            A    @     1       F    `u     f	      G    0     +                      !         g       q    `     t       5                T    @Z                @     8       d                     A     \      k         x                ,           `                `                                P                     )                                 `	      "         /           0                  `           "                         Y                      p    b     <                ,           P                       g       8    `            j!                "    =     )      !                "    @+                     o           `     =       S    Џ     P           p     c                  *            c     <           &            )         f      "    0%                0     '                n      "                          a       #     T     1      !                )"    	     L      ~    P     #      *          j      o          !               9                i           p            f         m       "    `7           L"                          X           `c           v"    P$     g           0                     u       $     &                                      g       #    `     {       A    &            :"               _"          %      U                 Q                    `           F    @           !         	           P     !       <!         #       0                !    @                           #    d     <       b     `           "    0     e                	      /         D       !         a           \     %/                4               "	               -       $$    P&             e                ;                   P     )       t    P                 `     q                b       D          C       K           ?       $     &                      )       L!                   d     Z                                 	                          0     |                          @[     o                      %    Ч     ;                           ]     .                      ]                7    `           T          J      0     @     u      "                         X                                           b     J           0            >    @     6                "                        !         (      R         K      P                        N      "    C     M          `     =                M                
           Ц     *                  `
      "    $     f        __gmon_start__ _ITM_deregisterTMCloneTable _ITM_registerTMCloneTable __cxa_finalize libpthread.so.0 XS_unpack_charPtrPtr PL_thr_key pthread_getspecific Perl_av_len Perl_safesysmalloc Perl_sv_2pv_flags strcpy Perl_av_fetch Perl_warn_nocontext XS_pack_charPtrPtr Perl_newSV_type Perl_newSVpv Perl_av_push Perl_newSVrv Perl_sv_free2 XS_release_charPtrPtr Perl_safesysfree Perl_sv_newmortal xmlMemUsed Perl_sv_setiv_mg Perl_croak_xs_usage __assert_fail Perl_sv_2iv_flags PmmFixOwner PmmREFCNT_dec PmmSvNodeExt PmmNodeToSv Perl_sv_2mortal xmlMallocAtomicLoc boot_XML__LibXML__Devel Perl_xs_handshake Perl_newXS_deffile getenv xmlMemStrdup xmlMemRealloc xmlMemMalloc xmlMemFree xmlGcMemSetup Perl_xs_boot_epilog LibXML_output_close_handler LibXML_input_match Perl_push_scope Perl_savetmps Perl_call_pv Perl_croak Perl_pop_scope Perl_gv_add_by_type Perl_free_tmps Perl_sv_2bool_flags Perl_markstack_grow Perl_stack_grow Perl_croak_nocontext LibXML_input_open LibXML_error_handler_ctx strlen Perl_sv_vcatpvfn Perl_newSV Perl_sv_vsetpvfn __stack_chk_fail LibXML_input_read Perl_newSViv strncpy LibXML_read_perl Perl_sv_isobject Perl_call_method Perl_hv_common_key_len LibXML_load_external_entity EXTERNAL_ENTITY_LOADER_FUNC Perl_call_sv xmlNewInputFromFile xmlAllocParserInputBuffer xmlParserInputBufferPush xmlNewIOInputStream xmlFreeParserInputBuffer PROXY_NODE_REGISTRY_MUTEX Perl_sv_isa xmlXPathFreeCompExpr xmlRegFreeRegexp xmlRegexpIsDeterminist xmlRegexpExec xmlFree xmlFreePattern xmlStrdup xmlParseCharEncoding xmlPatternMatch Perl_sv_setpv Perl_mg_set xmlTextReaderReadState xmlTextReaderClose Perl_get_hv __snprintf_chk xmlFreeTextReader xmlTextReaderCurrentDoc PmmNewNode xmlTextReaderSetSchema xmlTextReaderSchemaValidate xmlTextReaderRelaxNGSetSchema xmlTextReaderRelaxNGValidate xmlTextReaderPreservePattern PL_memory_wrap Perl_mg_get xmlTextReaderGetParserProp xmlTextReaderCurrentNode PmmCloneNode xmlSetTreeDoc PmmNewFragment xmlAddChild xmlGetNodePath xmlTextReaderStandalone xmlTextReaderSetParserProp xmlTextReaderQuoteChar Perl_newSVpvf_nocontext xmlTextReaderNodeType xmlTextReaderDepth xmlTextReaderConstName xmlTextReaderConstNamespaceUri xmlTextReaderConstLocalName xmlTextReaderMoveToNextAttribute xmlTextReaderMoveToFirstAttribute xmlTextReaderMoveToElement xmlTextReaderMoveToAttributeNs xmlTextReaderMoveToAttributeNo xmlTextReaderMoveToAttribute xmlTextReaderLookupNamespace xmlTextReaderIsValid xmlTextReaderIsNamespaceDecl xmlTextReaderIsEmptyElement xmlTextReaderIsDefault xmlTextReaderHasAttributes xmlTextReaderConstValue xmlTextReaderHasValue xmlTextReaderGetParserLineNumber xmlTextReaderGetParserColumnNumber xmlTextReaderGetAttributeNs xmlTextReaderGetAttributeNo xmlTextReaderGetAttribute xmlTextReaderConstXmlVersion xmlTextReaderConstXmlLang xmlTextReaderConstPrefix xmlTextReaderConstEncoding xmlTextReaderByteConsumed xmlTextReaderConstBaseUri xmlTextReaderAttributeCount xmlReaderWalker Perl_sv_setref_pv xmlReaderForFd xmlReaderForDoc LibXML_close_perl xmlReaderForIO xmlReaderForFile xmlRegisterDefaultInputCallbacks LibXML_input_close xmlRegisterInputCallbacks xmlCleanupInputCallbacks nodeSv2C xmlStrlen xmlStrcmp xmlCopyNamespace xmlDocGetRootElement Perl_newSVsv xmlGetExternalEntityLoader xmlSetExternalEntityLoader xmlMalloc xmlXPathNewContext perlDocumentFunction xmlXPathRegisterFunc xmlSchemaFree xmlRelaxNGFree xmlStrEqual xmlStrcat xmlFreeNs xmlNewNs xmlIsID xmlSearchNs xmlSetNs xmlSearchNsByHref xmlBufferCreate xmlBufferAdd domAttrSerializeContent xmlBufferLength xmlBufferContent xmlBufferFree nodeC2Sv xmlNewProp xmlNewDocFragment xmlNewCDataBlock xmlNewComment domGetNodeValue xmlUTF8Strsub xmlUTF8Strlen domSetNodeValue xmlTextConcat xmlNewText xmlNewDocNode xmlSplitQName2 xmlEncodeEntitiesReentrant xmlNewChild xmlNodeAddContent xmlUnlinkNode domImportNode xmlFreeDtd xmlHasNsProp xmlReconciliateNs xmlReplaceNode xmlFreeProp xmlGetProp xmlGetNsProp domGetAttrNode xmlGetNoNsProp domRemoveNsRefs xmlNewNode xmlGetLineNo xmlXPathCastNodeToNumber Perl_sv_setnv_mg xmlXPathCastNodeToString Perl_get_sv __xmlSaveNoEmptyTags __xmlIndentTreeOutput xmlNodeDump xmlNodeSetBase xmlNodeGetBase domAddNodeToList PmmFixOwnerNode xmlFreeNode domNodeNormalize Perl_block_gimme xmlIsBlankNode xmlNodeSetName domName PmmRegistryREFCNT_dec xmlXPathOrderDocElems xmlGetID xmlCopyDoc xmlSetDocCompressMode xmlGetDocCompressMode xmlGetIntSubset xmlAddPrevSibling xmlDocSetRootElement xmlNewPI xmlNewReference xmlNewDocComment xmlNewDocText xmlNewDtd xmlCreateIntSubset xmlNewDoc xmlDocDumpFormatMemory Perl_newSVpvn xmlDocDumpMemory PmmContextREFCNT_dec PmmFreeHashTable xmlHashCreate xmlLoadCatalog PmmNodeToGdomeSv xmlCleanupParser __xmlParserVersion PmmDumpRegistry PmmProxyNodeRegistrySize PmmCloneProxyNodes LibXML_flat_handler xmlSetGenericErrorFunc LibXML_struct_error_handler xmlSetStructuredErrorFunc xmlFindCharEncodingHandler xmlBufferCCat xmlCharEncOutFunc xmlCharEncCloseFunc xmlCharStrndup xmlGetCharEncodingHandler xmlStrndup xmlBufferCreateStatic xmlCharEncInFunc xmlXPathCompile xmlRegexpCompile xmlTextReaderRead xmlTextReaderPreserve xmlTextReaderExpand xmlTextReaderReadOuterXml xmlTextReaderReadInnerXml xmlTextReaderReadAttributeValue xmlTextReaderNext xmlTextReaderNextSibling Perl_newRV_noinc xmlSchemaNewValidCtxt xmlSchemaSetValidErrors xmlSchemaValidateOneElement xmlSchemaFreeValidCtxt xmlSchemaValidateDoc domClearPSVI xmlSchemaNewMemParserCtxt xmlSchemaSetParserErrors xmlSchemaParse xmlSchemaFreeParserCtxt xmlNoNetExternalEntityLoader xmlSchemaNewParserCtxt xmlRelaxNGNewValidCtxt xmlRelaxNGValidateDoc xmlRelaxNGFreeValidCtxt xmlRelaxNGNewDocParserCtxt xmlRelaxNGParse xmlRelaxNGFreeParserCtxt xmlRelaxNGNewMemParserCtxt xmlRelaxNGNewParserCtxt xmlIOParseDTD xmlParseDTD domXPathSelect PmmNodeTypeName xmlXPathFreeNodeSet domXPathCompSelect domXPathFind domXPathCompFind Perl_newSVnv xmlXPathFreeObject htmlDocDumpMemory xmlSaveFormatFile xmlSaveFile xmlRegisterDefaultOutputCallbacks LibXML_output_write_handler xmlOutputBufferCreateIO xmlSaveFormatFileTo xmlGetNsList xmlHashLookup domXPathFindCtxt domXPathCompFindCtxt xmlXPathNsLookup xmlXPathRegisterNs xmlC14NDocDumpMemory xmlXPathEval xmlXPathFreeContext domAppendChild domInsertAfter domInsertBefore xmlAddSibling xmlCopyNode domRemoveChild domIsParent domReplaceChild xmlValidateDtd xmlValidateDocument xmlPatterncompile xmlXPathNewFloat xmlXPathNewCString Perl_sv_derived_from Perl_sv_2nv_flags xmlXPathNewNodeSet xmlXPathNodeSetAdd xmlXPathNewBoolean Perl_sv_catpv Perl_sv_catsv_flags xmlXPathRegisterFuncNS xmlXPathRegisterVariableLookup valuePop xmlXPathCastToString valuePush LibXML_struct_error_callback Perl_sv_setsv_flags Perl_sv_vcatpvf LibXML_get_reader_error_data xmlTextReaderGetErrorHandler LibXML_init_parser xmlCtxtUseOptions xmlKeepBlanksDefault LibXML_cleanup_parser PmmSvContext xmlParseChunk PmmSAXCloseContext xmlFreeParserCtxt xmlFreeDoc xmlCreatePushParserCtxt PmmContextSv PmmSAXInitContext xmlXIncludeProcessFlags xmlCreateMemoryParserCtxt PSaxGetHandler xmlParseBalancedChunkMemory domReadWellBalancedString htmlReadIO htmlReadFile htmlReadDoc xmlCreateFileParserCtxt xmlParseDocument __errno_location strerror LibXML_test_node_name domParseChar xmlIsBaseCharGroup xmlCharInRange xmlIsDigitGroup xmlIsCombiningGroup xmlIsExtenderGroup xmlSetNsProp xmlSetProp xmlNewDocProp xmlStrchr boot_XML__LibXML xmlCheckVersion xmlInitParser PmmSAXInitialize xmlInitializeCatalog domClearPSVIInList domAddNsDef domRemoveNsDef _domAddNsChain _domReconcileNsAttr _domReconcileNs xmlFreeNsList xmlFreeNodeList xmlSetListDoc domTestHierarchy domTestDocument domUnlinkNode xmlDocCopyNode xmlCopyDtd __xmlGenericError __xmlGenericErrorContext domReplaceNode xmlNodeSetContent domGetElementsByTagName xmlXPathNodeSetCreate domGetElementsByTagNameNS domNewNs domSetAttributeNode xmlAttrSerializeTxtContent domNodeNormalizeList PmmRegistryHashCopier PmmRegistryDumpHashScanner xmlHashSize xmlHashFree xmlHashScan PmmProxyNodeRegistryPtr PmmRegistryName PmmNewLocalProxyNode PmmRegisterProxyNode xmlHashAddEntry PmmUnregisterProxyNode xmlHashRemoveEntry PmmRegistryLookup PmmRegistryREFCNT_inc xmlHashCopy PmmFreeNode xmlCopyProp PmmSvOwner PmmSetSvOwner PmmFixOwnerList PmmNewContext PmmFastEncodeString PmmFastDecodeString PmmEncodeString PmmSaxWarning PmmSaxError xmlCtxtGetLastError PmmSaxFatalError _C2Sv Perl_sv_setpvn _C2Sv_len PL_hash_seed CBufferChunkNew CBufferNew CBufferPurge CBufferFree CBufferLength CBufferAppend memcpy CBufferCharacters stderr fwrite abort PmmGetNsMapping PSaxStartPrefix PSaxEndPrefix PmmExtendNsStack xmlSplitQName PmmNarrowNsStack PmmAddNamespace PmmGenElementSV PmmGenNsName xmlStrncat PmmGenAttributeHashSV xmlStrncmp PmmGenCharDataSV PmmGenPISV PmmGenDTDSV PmmGenLocator PmmUpdateLocator PSaxStartDocument PSaxExternalSubset PSaxCharactersDispatch PSaxCharacters PSaxCharactersFlush PSaxSetDocumentLocator Perl_newRV PSaxEndDocument PSaxStartElement PSaxEndElement PSaxComment PSaxCDATABlock PSaxProcessingInstruction xmlXPathStringFunction xmlBuildURI xmlParseFile xmlXPathNodeSetMerge xmlXPathObjectCopy xmlXPathCompiledEvalToBoolean xmlXPathCompiledEval domXPathSelectCtxt libxml2.so.2 libz.so.1 liblzma.so.5 libm.so.6 libdl.so.2 libperl.so.5.26 libc.so.6 _edata __bss_start _end GLIBC_2.14 GLIBC_2.3.4 GLIBC_2.4 GLIBC_2.2.5 LIBXML2_2.5.9 LIBXML2_2.6.17 LIBXML2_2.6.27 LIBXML2_2.5.6 LIBXML2_2.6.6 LIBXML2_2.6.3 LIBXML2_2.6.14 LIBXML2_2.6.20 LIBXML2_2.5.2 LIBXML2_2.6.18 LIBXML2_2.6.15 LIBXML2_2.5.8 LIBXML2_2.5.0 LIBXML2_2.5.7 LIBXML2_2.6.0 LIBXML2_2.4.30                                               	             
      	                                                    	                                                                                                                                                                                                                                  	                                                                                                                                                                                    $     P      )$     ti	   4$     ii   @$     ui	   J$        U          ui	   J$        #            V$     ǫL   d$     ׫L   s$        $        $        $     īL   $     ЫL   $        $     ȫL  
 $     ūL  	 $        $        %        %         %     L   .%      ؽ&            @      &                   &            &     &                   &        s          &                  &                   &                  &        3           &                  &                  &                  &                  &        e           &        i           &        r           &                  &        x          &                    &                   &                  &                  &                    &                  (&                  0&                  8&                  @&                  H&                  P&                  X&                  `&                  h&                   p&                  x&                  &                   &                  &                  &                  &                  &        	          &                  &        0          &        5          &        8          &        p          &        C          &                  &                  &        [          &        k          X&                   `&                   h&                   p&                  x&                  &                   &                  &                   &                   &                   &        	           &        
           &                   &                   &                   &                   &                   &                   &                   &                  &                   &                   &                  &                   &                    &                   (&                   0&                   8&                  @&                   H&                   P&                   X&                   `&                   h&                   p&                   x&                    &        !           &        "           &        #           &        $           &        %           &        &           &        '           &        n          &        (           &                  &        )           &        *           &        +           &        ,           &        -           &        .            &        /           &        0           &                  &        1            &        2           (&        4           0&        q          8&        5           @&        6           H&        7           P&                  X&        8           `&        y          h&        9           p&        :           x&        ;           &                  &        <           &        =           &        >           &                  &        ?           &        @           &        A           &                  &                  &        B           &        }          &        C           &        D           &        E           &        F            &        G           &        H           &        I           &        w           &                  (&        J           0&        K           8&        L           @&        M           H&        N           P&        O           X&                  `&        P           h&        Q           p&        R           x&        S           &        T           &        U           &                  &                  &        V           &        W           &        X           &        Y           &        Z           &        [           &                  &        \           &        ]           &        ^           &        _           &        `            &        a           &        b           &        c           &        d            &                  (&        f           0&        g           8&        h           @&        j           H&        k           P&        l           X&        m           `&        n           h&        o           p&        p           x&        q           &        s           &                  &        t           &        u           &        v           &                  &        w           &        x           &        y           &                  &                  &                  &        z           &                  &        {           &                   &        |           &                  &        }           &        ~            &                   (&                   0&                   8&                   @&                   H&                   P&                   X&                  `&                   h&                   p&                   x&                  &                  &                  &                   &                   &                  &                   &                  &                   &                   &                   &                   &                   &                  &                   &                   &                    &        {          &                   &                   &                   &                   (&                   0&                   8&                   @&                  H&                   P&                   X&                   `&                   h&                   p&                   x&                   &                   &                   &                   &                  &                   &                   &                   &                   &        |          &                   &                   &                   &                   &                  &                   &                    &                   &                   &        t          &                    &        m          (&                   0&                   8&                   @&                  H&                   P&                   X&                  `&                   h&                  p&                  x&                   &                  &                   &                   &                   &                   &                  &                   &                   &                  &                  &                  &                   &                   &                  &        o          &                    &                  &                   &                  &                    &                   (&                   0&                   8&                   @&                   H&                   P&                   X&                   `&                   h&                   p&                   x&                   &                   &                   &                   &                   &                   &                  &                   &                  &                  &                   &                   &                  &                   &                   &        ~          &                    &                   &                   &                   &                    &                  (&                  0&                   8&                   @&                   H&                   P&                   X&                   `&                   h&                   p&                   x&                  &                   &                   &                  &                   &                   &                   &                   &                   &                   &                   &                  &                   &                   &                  &                   &                    &                   &                  &                  &                    &                   (&                   0&                   8&                   @&                   H&                   P&                   X&        r          `&                   h&                  p&                  x&                  &                  &                  &                  &                  &                  &                  &                  &        
          &                  &                  &                  &                  &                  &                  &                  &                   &                  &                  &                  &                   &                  (&                  0&                  8&                  @&                  H&                  P&                  X&                  `&                  h&                  p&                  x&                  &                  &                  &                   &        !          &                  &        "          &        #          &                  &                  &        $          &        %          &                  &        &          &        '          &                  &                   &        (          &        z          &        )          &                   &        *          (&        +          0&                  8&        ,          @&        -          H&        .          P&        /          X&        1          `&        2          h&                  p&        3          x&        4          &        6          &        7          &        9          &        :          &        ;          &        <          &        =          &        p          &                  &        >          &                  &        ?          &        @          &        A          &        B          &        D           &        E          &        F          &        G          &        H           &        I          (&                  0&        J          8&        K          @&        L          H&                  P&        M          X&        N          `&        O          h&        P          p&        Q          x&        u          &        R          &        S          &                  &        T          &        U          &        V          &        W          &                  &        X          &                  &        Y          &        Z          &        \          &        ]          &        ^          &        _           &        `          &        a          &        b          &        c           &        d          (&        e          0&                  8&        f          @&                  H&        g          P&        h          X&                  `&        i          h&        j          p&        v          x&        l          HH<& HtH             5r.& %s.&  h    h   h   h   h   h   h   h   qh   ah	   Qh
   Ah   1h   !h   h   h   h   h   h   h   h   h   h   h   qh   ah   Qh   Ah   1h   !h   h   h   h    h!   h"   h#   h$   h%   h&   h'   qh(   ah)   Qh*   Ah+   1h,   !h-   h.   h/   h0   h1   h2   h3   h4   h5   h6   h7   qh8   ah9   Qh:   Ah;   1h<   !h=   h>   h?   h@   hA   hB   hC   hD   hE   hF   hG   qhH   ahI   QhJ   AhK   1hL   !hM   hN   hO   hP   hQ   hR   hS   hT   hU   hV   hW   qhX   ahY   QhZ   Ah[   1h\   !h]   h^   h_   h`   ha   hb   hc   hd   he   hf   hg   qhh   ahi   Qhj   Ahk   1hl   !hm   hn   ho   hp   hq   hr   hs   ht   hu   hv   hw   qhx   ahy   Qhz   Ah{   1h|   !h}   h~   h   h   h   h   h   h   h   h   h   qh   ah   Qh   Ah   1h   !h   h   h   h   h   h   h   h   h   h   h   qh   ah   Qh   Ah   1h   !h   h   h   h   h   h   h   h   h   h   h   qh   ah   Qh   Ah   1h   !h   h   h   h   h   h   h   h   h   h   h   qh   ah   Qh   Ah   1h   !h   h   h   h   h   h   h   h   h   h   h   qh   ah   Qh   Ah   1h   !h   h   h   h   h   h   h   h   h   h   h   qh   ah   Qh   Ah   1h   !h   h   h   h   h   h   h   h   h   h   h   qh   ah   Qh   Ah   1h   !h   h   h   h   h   h   h   h   h   h   h   qh   ah   Qh   Ah   1h   !h   h   h   h   h  h  h  h  h  h  h  qh  ah	  Qh
  Ah  1h  !h  h  h  h  h  h  h  h  h  h  h  qh  ah  Qh  Ah  1h  !h  h  h  h   h!  h"  h#  h$  h%  h&  h'  qh(  ah)  Qh*  Ah+  1h,  !h-  h.  h/  h0  h1  h2  h3  h4  h5  h6  h7  qh8  ah9  Qh:  Ah;  1h<  !h=  h>  h?  h@  hA  hB  hC  hD  hE  hF  hG  qhH  ahI  QhJ  AhK  1hL  !hM  hN  hO  hP  hQ  hR  hS  hT  hU  hV  hW  qhX  ahY  QhZ  Ah[  1h\  !h]  h^  h_  h`  ha  hb  hc  hd  he  hf  hg  qhh  ahi  Qhj  Ahk  1hl  !hm  hn  ho  hp  hq  hr  hs  ht  hu  hv  hw  qhx  ahy  Qhz  Ah{  1h|  !h}  h~  h  h  h  h  h  h  h  h  h  qh  ah  Qh  Ah  1h  !h  h  h  h  h  h  h  h  h  h  h  qh  ah  Qh  Ah  1h  !h  h  h  h  h  h  h  h  h  h  h  qh  ah  Qh  Ah  1h  !h  h  h  h  h  h  h  h  h  h  h  qh  ah  Qh  Ah  1h  !h  h  h  h  h  h  h  h  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %}& D  %u& D  %m& D  %e& D  %]& D  %U& D  %M& D  %E& D  %=& D  %5& D  %-& D  %%& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %}& D  %u& D  %m& D  %e& D  %]& D  %U& D  %M& D  %E& D  %=& D  %5& D  %-& D  %%& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %}& D  %u& D  %m& D  %e& D  %]& D  %U& D  %M& D  %E& D  %=& D  %5& D  %-& D  %%& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %}& D  %u& D  %m& D  %e& D  %]& D  %U& D  %M& D  %E& D  %=& D  %5& D  %-& D  %%& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %}& D  %u& D  %m& D  %e& D  %]& D  %U& D  %M& D  %E& D  %=& D  %5& D  %-& D  %%& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %}& D  %u& D  %m& D  %e& D  %]& D  %U& D  %M& D  %E& D  %=& D  %5& D  %-& D  %%& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %}& D  %u& D  %m& D  %e& D  %]& D  %U& D  %M& D  %E& D  %=& D  %5& D  %-& D  %%& D  %& D  %& D  %& D  %& D  %
& D  %
& D  %
& D  %
& D  %
& D  %
& D  %
& D  %
& D  %
& D  %
& D  %
& D  %
& D  %
& D  %
& D  %
& D  %
& D  %}
& D  %u
& D  %m
& D  %e
& D  %]
& D  %U
& D  %M
& D  %E
& D  %=
& D  %5
& D  %-
& D  %%
& D  %
& D  %
& D  %
& D  %
& D  %	& D  %	& D  %	& D  %	& D  %	& D  %	& D  %	& D  %	& D  %	& D  %	& D  %	& D  %	& D  %	& D  %	& D  %	& D  %	& D  %}	& D  %u	& D  %m	& D  %e	& D  %]	& D  %U	& D  %M	& D  %E	& D  %=	& D  %5	& D  %-	& D  %%	& D  %	& D  %	& D  %	& D  %	& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %}& D  %u& D  %m& D  %e& D  %]& D  %U& D  %M& D  %E& D  %=& D  %5& D  %-& D  %%& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %}& D  %u& D  %m& D  %e& D  %]& D  %U& D  %M& D  %E& D  %=& D  %5& D  %-& D  %%& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %}& D  %u& D  %m& D  %e& D  %]& D  %U& D  %M& D  %E& D  %=& D  %5& D  %-& D  %%& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %}& D  %u& D  %m& D  %e& D  %]& D  %U& D  %M& D  %E& D  %=& D  %5& D  %-& D  %%& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %& D  %}& D  %u& D  %m& D  %e& D  %]& D  %U& D  %M& D  %E& D  %=& D  %5& D  %-& D  %%& D  %& D  %& D  %& D  %& D  %& D  H%    fD  H=i& Hb& H9tH6& Ht	        H=9& H52& H)HHH?HHtH& HtfD      =&  u+UH=&  HtH=% 	d& ]     w    AWAVAUATUSH(G<  LgA|$,  H-& } ELH
D$  x1HcHIH   M  @ H O| HxHcIH  I} A%   =      I6} HD$Ht$HT$Ht$   HH  HI?9\$|I} Lcw1LLHwIHtOH @JH= 19\$}HcID      E1H(L[]A\A]A^A_ KD     wfH	HL$HL$HIH  IHpD    H=i d4H=( 1Qff.     @ AVIAUATL%T& UHSA<$~   H1H] IHtBD  A<$HSH1HA<$H:HLHH] HuA<$1LHA<$HHtSvS[]MnA\A]A^HHF@ UHSHH?HtH     HH;HuHH[]AWAVAUIATUSHH< & ;m;H(c;HPxHJHHxLc2MH@JH)H   ;Ef+;H@@#   HHV;McLc;H@NtE%A   tyEttU  "   LmUIn;;HhJT HH[]A\A]A^A_fD  {;HhpH@H@Hl SfD  ;QLHHH5D LH[ j  H5% H=  AWAVAUIATUSHH% ;;H(;HPxHJHHxLc2H@JH)Ho  ;EfMcN,    ;H@J@%   =     };H@J,n   HHIċ;T;H@@#   ?HHI$;Lc`%;H@Nt(E%A      E   E  "   LeEIn;;HhIL(H[]A\A]A^A_D  ;HhH@H@Hl RfD  {H@JH L`     ;YLHHnH5@ LH >  H5* H=      AVAUIATUSH% ;;H(;HPxHJHHxLc2H@JH)H   ;EfIcL$    ;H@H@%   =   tT;H@H,x   HHH ;@Z;HhOJT%H[]A\A]A^fD  3H@HH H@ H5p? L AWAVIAUATUSHH% ;;L ;HPxHJHHx*HcH@HI)IA  ;DmMcN$    ;H@J@%   =   w  z;H@N,k   LHIŋ;HcK;H@H@%   =     );H@H,   HHzIƋ; ;H@@#   HHI6I} $;Lc;H@Nt E%A      E   U  "   LmUIn;q;HhfIL H[]A\A]A^A_ÐK;Hh@H@H@Hl NfD  #H@HH Lp     H@JH Lh     ;LHHRH5Ր LHȒ X  H5 H== @AWAVAUIATUSHHL% ;};H(s;HPxHJHHxLc2]H@JH)Hw  ;EfMc7N,    ;H@J@%   =   
  ;H@J,   HH^Iċ;;H@@#   HHI<${;Lc;H@Nt(E%A      E   U  "   LeUIn;X;HhMIL(H[]A\A]A^A_     +;Hh H@H@Hl JfD  H@JH L`     ;LHHkH5; LHh '  H5 H== @AWAVAUIATUSHHL% ;};H(s;HPxHJHHxLc2]H@JH)H  ;EfMc71N,    H@J<;I;H@@#   HHŋ;;H@Nd(E%A   twEtrE  "   LuEIl$;;HhIL(H[]A\A]A^A_fD  s;HhhH@H@Hl `fD  ;ILHHH5< LH    H5 H= ff.     AWAVAUIATUSHH% ;;H(;HPxHJHHxD2IcH@HH)HE9  ;EfMcN,    ;H@J@%   =      g;H@N<X   LHIǃ`1LV;H,HH;HH@J,;;HhIL(H[]A\A]A^A_     ;AnHc;H@H@%   =   tI;H@H,   HHPH@JH Lx 2    k&H5r L'    1H5b ff.      USHH% ;L5 H0 HH 1t;;;HH5 H;HH5 H;HH5ŋ Hm;HH5ȋ HP;iHRH5 H3;LH5H5 H;/HH5 HH= Ht+H% H% HH5% H=% L ;H[H]fD     fD  AUIATUSHH`% ;;;H(H;qH;b;HHxLaL`xOL;     ;;HH+HHHA$;"H@ H)H  ;H1LH;ILH;HE H(;
   H5 HL;AH(AG	  ;;H  H@H8   H  H@H8 ;}  f;H  H@H8   JH  H@H ;@    +;H  H@H8   H  H@H ;@   u;;H  H@H8   H  H@H ;x  ;H  H@H8   ;H  H@H @  {;H  H@H8   _H  H@H H8 t[;D;H  H@H8   (H  H@H ;H Hx  1H1f     ;LeHm H  UA	  u\tW% =
  tIL ;;HhPH;hX  ;HHD[]A\A]    t#HE HtH@H$  A   @ _    uHU E1f   f.B(ADES ;L  1HL;H@H @M;H  H@H8   H  H@H ;@     ;H  H@H8 S  nH  H@H ;@t?S;H  H@H8 ,  7H  H@H ;H Hx  ;H  H@H8   H  H@H ;@;H  H@H8   H  H@H f;Hf.B(   E>  ;H@ s;L  e1LHH@    C;L  51LHH@    ;L  1LHH@    ;H  H@H8   H  H@H ;@% =
      ;H  H@H8 ,  wH  H@;L b1LHE;]<fD  HE Hx  @ HoHEE180A\@ ;L  1LHH@    1HH;D ;L  1LHXH@    ;L  u1LH(H@    ;QH	I;9HH   HHfD  E1`;H  H@H8   H  H@;L    LH;p    ;L  1LHPH@    {;L  m1LH H@:    K;L  =1LHH@    ;L  1LHH@    ;H  H@H8    H  H@H H Hx ;;H  H@H8   H  H@H ;H@80k;L  ]1LHH@Z    ;;L  -1LHH@3    ;L  1LHH@    ;L  1LHH@    ;L  1LHPH@;L  t1LH'H@H=ׁ 1AUIATUSHH % ;1;*;H( H;HY;;HHxLaL`xL;   *  ;HH+HHHA$;H@ H)H  ;H1LHJ;ILH5;HE zH(;p
   H5 H;ARH(AG  ;>;H  H@H8   "H  H@H8 ;}  ;H  H@H8 w  H  H@H ;@ 0  ;H  H@H8 l  H  H@H ;@   u;;H  H@H8 
  uH  H@H ;xC  V;H  H@H8   :;H  H@H @  ;H  H@H8   H  H@H H8 t[;;H  H@H8   H  H@H ;H Hx  1H1f     ;LeHm HtExL ;n;L`PcL;`X  ;RHHH[]A\A]@ 3;L  %1HL;H@H @ ;H  H@H8   H  H@H ;@     ;H  H@H8   H  H@H ;@t?;H  H@H8   oH  H@H ;H Hx  L;H  H@H8 %  0H  H@H ;@;H  H@H8   H  H@H f;Hf.B(   EF  f     ;HS@ ;L  1LHHH@h    s;L  e1LHH@p    C;L  51LHH@{    ;H  H@H8   H  H@H ;@% =
  Ft    ;H  H@H8   H  H@;L 1LHu;fD  k;L  ]1LHH@    ;;L  -1LHH@#    ;L  1LHH@    ;HH   HHfD  ;HiI;H  H@H8   H  H@;L j   LHJ; K;L  =1LHH@;    ;L  1LHH@:    ;L  1LHH@,    ;L  1LH`H@    ;H  H@H8    oH  H@H H Hx ;L;H  H@H8   0H  H@H ;H@80;L  1LHH@    ۿ;L  Ϳ1LHH@C    諿;L  蝿1LHPH@#    {;L  m1LH H@    K;L  =1LHH@=";L  1LHH@H=x 1AUATUHSHH   HT$0HL$8LD$@LL$Ht7)D$P)L$`)T$p)$   )$   )$   )$   )$   dH%(   HD$1H   H$   H$   HD$HD$ D$0   HD$sIH% 82j E1Hj HLHLD$5XZHD$dH3%(      H   []A\A]L-% A} 1HA} H˽HHp$   HHIH$   D$0   HD$HD$ HD$1A} HHHhyj HLj HE1HLD$LAD$Y^%   =   uID$HH= 1^A} %   1LH͐AUATUHSHH   HT$@HL$HLD$PLL$Xt:)D$`)L$p)$   )$   )$   )$   )$   )$   dH%(   HD$(1H   H$  HD$   HD$HD$0D$0   HD$ L% % IA<$Lj LHj HE1HLD$ OCZY%   =   uFHHsH@HD$1H= HD$(dH3%(      H   []A\A]fD  A<$ϻHHT$   H:HL-v% A} 襻1H[A} H菻HH4D$   HHIH$  D$0   HD$HD$0HD$ 1A} HHHX<j LE1j HHHLD$ AD$^_%   =   uID$HH=u 1!A}    1LHV@ AUATUHSHH   HT$0HL$8LD$@LL$Ht7)D$P)L$`)T$p)$   )$   )$   )$   )$   dH%(   HD$1H   H$   H$   HD$HD$ D$0   HD$SIH% 8j E1Hj HLHLD$XZHD$dH3%(      H   []A\A]L-% A} 1HwA} H諹HHP$   HHIH$   D$0   HD$HD$ HD$1A} HHHhYj HLj HE1HLD$,AD$Y^%   =   uID$HH= 1>A}    1LHs͐AWIAVAAUIATUSHH% ;Ǹ;;H(趸HN;觸H;蘸;HHxLaL`x腸L;   x  ;qHH+HHHA$;XH@ H)Hg  L};H8IcH;I#LHȽ;HE H(;
   H5Or H;AH(A  ;ѷ;H  H@H8 2  起H  H@H8 	  ;虷;H  H@H8 *  }H  H@H ;@   ^;H  H@H8   BH  H@H ;@   u;$;H  H@H8 }  H  H@H ;x  ;H  H@H8   ͶH  H@H ;@   讶;H  H@H8 g  蒶H  H@H H8    ;s;H  H@H8 $  WH  H@H H Hx  ;41H1     ;H  H@H8   H  H@H ;@   :  ݵ;H  H@H8   H  H@;L 謵1LH菷\LeHm Eu_<t[ 
  tK1;jL ;`;L`PUL;`X   ;DHH[]A\A]A^A_ %   =   u,LuMtL;HHW  AE       ;   1HHWIf˴;L  轴1LHpH@    ;虴HA@ 胴;L  u1LH(H@    S;L  E1LHH@    #;L  1LHH@    ;H  H@H8 t  ׳H  H@H @% =
  ;    裳;H  H@H8   至H  H@H @t?;l;H  H@H8   PH  H@H H Hx  ;-H  H@H8   ;H  H@H @b;;H  H@H8 {  ֲH  H@H fHf.B(   E@ HLLZ$D  苲;L  }1LH0H@j    [;L  M1LH H@C    +;L  1LHH@    ;HIqf     ;ٱHH   H薿HwfD  賱;H  H@H8   藱H  H@;L 肱   LHbD  c;L  U1LHH@s    3;L  %1LHH@    ;L  1LHH@)    Ӱ;L  Ű1LHxH@3    ;衰;H  H@H8    腰H  H@H H Hx ;b;H  H@H8   FH  H@H H@80f     ;;L  1LHH@D  ;L  ݯ1LHH@;    軯;L  譯1LH`H@R    苯;L  }1LH0H@    [;L  M1LH H@l2;L  $1LHH@H=i 1AWAVIAUATLcUSH(H% Ht$;dH%(   HD$1Ů;辮;H(贮LHi;I蟮LH$;H$艮H!;zH;k;HHxLyLxxXL;   K  ;DHH+HHHA;,H@ H)H  Lu;HLH豳;HEH4$H蚳;HE ߭H(;խLH
;  軭
   H5  Hgŋ;螭L0g	  ;苭;H  H@H8   oH  H@H8   ;S;H  H@H8   7H  H@H ;@ =  ;H  H@H8   H  H@H ;@   u;ެ;H  H@H8   ¬H  H@H ;x  裬;H  H@H8 4  臬H  H@H ;@   h;H  H@H8   LH  H@H H8    ;-;H  H@H8   H  H@H H Hx%  ;1H1f۫;H  H@H8 l  迫H  H@H ;@     蝫;H  H@H8 V  聫H  H@;H(l1HHObInM6AF   %   =   c  ILp AE%   =     IE IuHPHT$I9  L9  H|$;H(;ڪ;HhPϪH;hX  ;辪HVD$HL$dH3%(   n  H([]A\A]A^A_    <= 
  )H=b 1fD  S;H  E1HHH@    #
   H5 Hc     ;HT$L   HdHT$H    ;ɩL   H)I;詩HѰ@ 蓩;H  腩1HH8H@    c;H  U1HHH@    3;H  %1HHؼH@    ;H  H@H8 \  H  H@H @% =
  o;    賨;H  H@H8   藨H  H@H @t?;|;H  H@H8 u  `H  H@H H Hx  O;=H  H@H8   ;!H  H@H @;;H  H@H8 [  H  H@H fHf.B(   E]@ 賧;H  襧1HHXH@    胧;H  u1HH(H@    S;H  E1HHH@{    ;!HH   H޴HfD  ;HIf     ۦ;H  H@H8   迦H  H@;H(誦   HH芨6D  苦;H  }1HH0H@    [;H  M1HH H@1    +;H  1HHйH@    ;H  1HH蠹H@K    ;ɥ;H  H@H8    譥H  H@H H Hx :;芥;H  H@H8   nH  H@H H@80;I;H  ;1HHH@D  ;H  1HHH@C    ;H  ݤ1HH萸H@r    軤;H  譤1HH`H@    苤;H  }1HH0H@b;H  T1HHH@H=^ 1[H=	 1ݸff.     fATL%% USHA<$HE1Hj    A    HH 賶ZYHtpHHHteC      t>tYHHtEHRH   %   =      H[]A\@      <t 
  t[1]A\D  t+t
HHz  utHff.B(ztD  A<$1HHtH] Cgf.     A<$H޺   HG[]A\fHkHS:0'YD  A<$觢   AWIAVAUIATUHSH(L%% H  dH%(   HD$1M4$H  H HHDMLDM  AF    u  4    IH?  H@H)  H% ;;;L0Hz;ӡH;ġ;HHxHQHPxHT$謡HT$H;     ;HT$莡LHT$H+HHH;rH@ L)H*  ;[1HInH;HD$>Ht$H;IF&H@ H)H  ;H1LH讷;ILH虦;HE ޠH(;I,$РH
   H ;A趠H(Ex
  ;裠;H  H@H8 T  臠H  H@H8 ;  ;k;H  H@H8 L  OH  H@H ;@ E  0;H  H@H8 y  H  H@H ;@   u;;H  H@H8   ڟH  H@H ;x  軟;H  H@H8 4  蟟H  H@H ;@  耟;H  H@H8   dH  H@H H8   ;E;H  H@H8   )H  H@H H Hx-  ;1H1f.     < 
  @ HLEHL$dH3%(   H  H([]A\A]A^A_fM=D  HQ% Lb;~HLE1j A       HHx 8IXZMzM4$Mm     t;tIHz  ?Iff.@('fH% ;1LHş     軝;H  H@H8   蟝H  H@H ;@   B  };H  H@H8 &  aH  H@;L L1LH/*Le LmAD$%   =      I$Mt$HhHl$H  HcH9  1舷IH  LH蟥~  ;远L(;赜;HhP誜H;hXT;蝜H51LL舝 ;yHT$   LHHl$IO    ;IHq    3;L  %1LHدH@    ;L  1LH訯H@    HIF80D  Hy% ;誛   蛛;L  荛1LH@H@n    k;L  ]1LHH@    ;;H  H@H8   H  H@H @t?;;H  H@H8   H  H@H H Hx  ;ŚH  H@H8 O  ;詚H  H@H @Z;芚;H  H@H8   nH  H@H fHf.B(   E@ ;;H  H@H8   H  H@H @% =
  ;7    ;L  ݙ1LH萭H@    軙;L  譙1LH`H@>    苙;L  }1LH0H@    ;YHH   HH(fD  ;1LL   HIfD  ;	HH_f     ;H  H@H8   ϘH  H@;L 躘   LH蚚fD  蛘;L  荘1LH@H@c    k;L  ]1LHH@)    ;;L  -1LHH@    ;L  1LH谫H@    ;ٗ;H  H@H8    轗H  H@H H Hx j;蚗;H  H@H8    ~H  H@H H@80";Z;L  L1LHH@1;L  #1LH֪H@I;L  1LH譪H@ߖ;L  і1LH脪H@	趖;L  訖1LH[H@/荖;L  1LH2H@蔨H= 1H= 1L`H=qQ 1H=3Q 1@ AVIAUATUSHҵ% ;;L ;HPxHJHHx*HcLH@HH)HH  ;DmIMcHc諕;H@N,蜕;H@H@%   =      z;H@H,k   HHˬMmAE%   =   uUIE H@ H      hht$ҍTPl;L []A\A]A^@ @l        ;   LHI    ˔H@HH h _H5 LyH= 1[H=O Off.     @ AVIAUATUSH2% ;c;L Y;HPxHJHHx*DHcLH@HH)HH   ;DmIMcHc;H@N,;H@H@%   =      ړ;H@H,˓   HH+MmAE%   =   u5IE H@ Htz|X9hh|Shl;脓L []A\A]A^     ;i   LHɪ    KH@HH h H=N 1H5 LH=N ҧfAVAUIATUSH²% ;;H(;HPxHJHHxLc2ӒH@JH)HuP;EfMc豒;N4    I蟒I8  H@N,;艒;Hh~LH([]A\A]A^H5 L0AUATIUSHH-% } @} H5} HPxHJHHxD*IcH@HH)HCvH5 Lũ} } H= 1蒦} AMcÑ} H@J@%   =   t'褑} H@J蔑   HH}ff.     AUATIUSHH- % } P} HE} HPxHJHHxD*.IcH@HH)HCvH5 Lը} } H= 1袥} AMcӐ} H@J@%   =   t'贐} H@J褐   HH荐ff.     AVAUIATUH-3% S} b} HW} HPxHJHHxLc2@H@JH)Hu:} Hs% EfMcH     } HXJTH[]A\A]A^H5C L货@ AVAUIATUSH% ;Ï;L 蹏;HPxHJHHxLc2裏H@JI)IAd  ;AnHc|;L,    H@L$eHL蚣t;OH@HH@xtUH=J 1ϔ;(;II8  H@L$;;HhLH([]A\A]A^fD  ;;H@L$ҎH LH{;豎;H@HH@@%   =   tT菎;H@HHh|   HHܥH;];HhRJT-H[]A\A]A^Ð;H@HH@H Hx H5 L    AVAUIATUSH­% ;;L ;HPxHJHHxLc2ӍH@JI)IAd  ;AnHc謍;L,    H@L$蕍HLʡt;H@HH@xtUH=nI 1;X;INI8  H@L$;8;Hh-LH([]A\A]A^fD  ;;H@L$H LH{;;H@HH@@%   =   tT迌;H@HHh謌   HHH褑;荌;Hh肌JT-H[]A\A]A^ÐkH@HH@H Hx H5 L    AWAVAUIATUSHH% ;;L ;HPxHJHHxLc2H@JI)IA  ;Anً;H@@#   ċH蜚Iċ;HcL,    觋;H@L4蘋HL͟t;肋H@HH@x   H=G 1;W;IMI8  H@L$;7;Hh,LH(H[]A\A]A^A_    ;L` H@H@M$6    ;;H@L4ҊH LHL;豊;H@HH@@%   =      苊;H@HHhx   HHءH谕;HcVAT$;H@Nt(A4   tCEt>AL$   Il$Mf    H@HH@H Hx fD  ;HLH裤H5_ L蒡fAWAVAUIATUSHHl% ;蝉;L 蓉;HPxHJHHxLc2}H@JI)IA  ;AnY;H@@#   DHIċ;HcL,    ';H@L4HLMt;H@HH@x   H=E 1~;׈;I͈I8  H@L$;跈;Hh謈LH(H[]A\A]A^A_    苈;L`耈H@H@M$6    ;a;H@HH@@%   =   t|?;H@HHh,   HH茟;Hch;H@Nt(AD$%A   t?Et:AL$   Il$Mf ÇH@HH@H H@ fD  ;衇HLHcH5 LRfAWAVAUIATUSHH,% ;];L S;HPxHJHHxLc2=H@JI)IA  ;An;H@@#   HܕIċ;HcL,    ;H@L4؆HLt;H@HH@x   H=C 1>;藆;I荆I8  H@L$;w;HhlLH(H[]A\A]A^A_    K;L`@H@H@M$6    ;!;H@HH@@%   =   t|;H@HHh   HHL;HchDх;H@Nt(AD$%A谅   t?Et:AL$   Il$Mf 胅H@HH@H H@ fD  ;aHLH#H5 LfAWAVAUIATUSHH% ;;L ;HPxHJHHxLc2H@JI)IA  ;Anل;H@@#   ĄH蜓Iċ;HcL,    规;H@L4蘄HL͘t;肄H@HH@x   H=A 1;W;IMI8  H@L$;7;Hh,LH(H[]A\A]A^A_    ;L` H@H@M$6    ;;H@HH@@%   =   t|迃;H@HHh謃   HH;Hch@葃;H@Nt(AD$%Ap   t?Et:AL$   Il$Mf CH@HH@H H@ fD  ;!HLHH5 LҚfAWAVAUIATUSHH% ;݂;L ӂ;HPxHJHHxLc2轂H@JI)IA  ;An虂;H@@#   脂H\Iċ;HcL,    g;H@L4XHL荖t;BH@HH@x   H=? 1辇;;II8  H@L$;;HhLH(H[]A\A]A^A_    ˁ;L`H@H@M$6    ;衁;H@HH@@%   =   t|;H@HHhl   HH̘;Hch Q;H@Nt(AD$%A0   t?Et:AL$   Il$Mf H@HH@H H@ fD  ;HLH裛H5_ L蒘fAWAVAUIATUSHHl% ;蝀;L 蓀;HPxHJHHxLc2}H@JI)IA  ;AnY;H@@#   DHIċ;HcL,    ';H@L4HLMt;H@HH@x   H== 1~;;II8  H@L$;;HhLH(H[]A\A]A^A_    ;L`H@H@M$6    ;a;H@HH@@%   =   t|?;H@HHh,   HH茖;Hch;H@Nt(AD$%A~   t?Et:AL$   Il$Mf ~H@HH@H H@ fD  ;~HLHcH5 LRfAWAVAUIATUSHH,% ;]~;L S~;HPxHJHHxLc2=~H@JI)IA  ;An~;H@@#   ~H܌Iċ;HcL,    };H@L4}HLt;}H@HH@x   H=; 1>;};I}I8  H@L$;w};Hhl}LH(H[]A\A]A^A_    K};L`@}H@H@M$6    ;!};H@HH@@%   =   t||;H@HHh|   HHL;Hc(|;H@Nt(AD$%A|   t@Et;AL$   Il$Mf@ |H@HH@H H@ fD  ;a|HLH#H5 LfAWAVAUIATUSHH% ;|;H(|;HPxHJHHxLc2{H@JH)H[  ;EfMc{;N,    H@N${;H@@#   {H胊HMd$AD$%   =      I$H@ H   ;Lc`hj{;H@Nt(E%AK{      E   M   LeIn;{;Hh{LH(H[]A\A]A^A_    z;HhzH@H@Hl 6fD  ;z   LH)6@ ;zLHHklH=5 JH5 LKff.     AWAVAUIATUSHH% ;Mz;H(Cz;HPxHJHHxLc2-zH@JH)H[  ;EfMcz;N,    H@N$y;H@@#   yH賈HMd$AD$%   =      I$H@ H   ;Lc`ly;H@Nt(E%A{y      E   M   LeIn;Oy;HhDyLH(H[]A\A]A^A_    #y;HhyH@H@Hl 6fD  ;x   LHY6@ ;xLHH蛓lH='4 zH5H L{ff.     AWAVAUIATUSHHL% ;}x;H(sx;HPxHJHHxLc2]xH@JH)HO  ;EfMc7xN,    H@JHhE%   =      HE L` ;x;H@@#   wHĆHŋ;Mcd$w;H@Nt(E%Aw      E   M   LeIn;w;HhwLH(H[]A\A]A^A_f.     [w;HhPwH@H@Hl ]fD  ;1w   HH葎If     ;	wLHHˑaH5 L跎    AVIAUATUSH% ;v;L v;HPxHJHHx*vHcH@HI)IA_  ;DmHcwvH@HHhE%   =      HE L` ;Iv;H@@#   4vHHM   1H=g4 Mc{;v;H@NdE%Au      E   M   HE    Il$;u;HhuJT H[]A\A]A^@ u;HhuH@H@Hl MfD  ;iu   HHɌI;Iu1HHsH=s 1H5W Lf.     AWAVAUIATUSHH% ;t;H(t;HPxHJHHxLc2tH@JH)H   ;Eft;H@@#   tHnHHԔ% ;McH8 Art;EH@NtE%AOt   tnEtiM   LmIn;+t;Hh tJT HH[]A\A]A^A_f     s;HhsH@H@Hl SfD  ;sLHH蓎H5 L肋fAVAUIATUSHb% ;s;H(s;HPxHJHHxLc2ssH@JH)H   ;EfQs;H@@#   <sHHŋ;Mc's;H@NlE%As   tgEtbM   HE   Im;r;HhrJT H[]A\A]A^@ r;HhrH@H@Hl mfD  ;r   HHQH5 L@        AVAUIATUSH% ;3r;H()r;HPxHJHHxLc2rH@JH)H   ;Efq;H@@#   qH贀Hŋ;Mcq;H@NlE%Aq   tgEtbM   HEQ  Im;q;HhuqJT H[]A\A]A^@ [q;HhPqH@H@Hl mfD  ;1qQ  HHH5o LAWAVIAUATUSHH% ;p;L(p;HPxHJHHx*pHcH@HI)IAf  ;DeHcp1H@H<2p;Ip;H@@#   spHKHŋ;McN4    Vp;H@N<GpHL|t;1pH@JH@x   H=. 1u;p;IoI8  H@N,;o;HhoLH(H[]A\A]A^A_fD  o;HhoH@H@Hl 6fD  ;o;H@N<oH LHp|M;ao;H@JH@@%   =      ;o;H@JLx(o   HL舆HM   LTLLcH% ;nU;H@Nl0An   tbEt]M   LeIm@ nH@JH@H Hx v ;n;HwnH8  H@J,v;\nLHHH5 Lff.     fAVAUIATUSH% ;n;L 	n;HPxHJHHxLc2mH@JI)IAd  ;AnHcm;L,    H@L$mHLt;mH@HH@xtUH=>, 1s;xm;InmI8  H@L$;Xm;HhMmLH([]A\A]A^fD  ;1m;H@L$"mHz LHz{;m;H@HH@@%   =   tTl;H@HHhl   HH,H贆;l;HhlJT-H[]A\A]A^ÐlH@HH@H Hx H5 L7    AWAVAUIATUSHH% ;=l;L 3l;HPxHJHHxLc2lH@JI)IAa  ;Ank;H@@#   kHzIċ;HcL,    k;H@L4kHL   ;kH@HH@x   ;k   H@H<zHH   ;\k;H@Nt(AD$%A;k   tjEteAL$   Il$Mf;k;Hh	kLH(H[]A\A]A^A_@ j;L`jH@H@M$    ;jHLH胅H=) 1cH51 LdH=) 1FfD  AWAVAUATIUSHH,% ;]j;L0Sj;HPxHJHHx*>jHcH@HI)LH  ;Dmj;H@@#u   jHxIċ;McN,    i;H@N<iHL	~~  ;iH@JH@xa  ;i   H@J<;xIHY  ;Hcri;H@L<ciHL}   ;IiH@HH@x   ;,i   H@H<wH   ;I9@i;@H@Nt(AD$%Ah   tmEthAL$   Il$Mf;h;HhhIL(H[]A\A]A^A_    h;L`hH@H@M$z    ;ahHLH#H=( 1}H=( 1|H5 LH=' 1|H=!( |ff.     AWAVAUIATUSHH% ;g;L g;HPxHJHHxLc2gH@JI)IA  ;Ang;H@@#  gH\vIċ;HcL,    gg;H@L4XgHL{  ;>gH@HH@x   ;!g   H@H<uH   P      E1HxX AƋ;f;H@Jl(AD$%Af   ttEtoAL$   Mt$Le;f;HhfLH(H[]A\A]A^A_fD  kf;L``fH@H@M$    E1[;9fLLHH=& 1zH5 L}H=& zAWAVAUIATUSHH% ;e;L e;HPxHJHHxLc2eH@JI)IAq  ;Ane;H@@#	  eH\tIċ;HcL,    ge;H@L4XeHLy  ;>eH@HH@x   ;!e   H@H<sH   1xt1Hx @ŋ;d;H@Nt(AD$%Ad   tjEteAL$   Il$Mf;d;HhdLH(H[]A\A]A^A_@ {d;L`pdH@H@M$    ;QdHLHH=% 1xH5 L{H=E% x     AWAVAUIATUSHH% ;c;L c;HPxHJHHxLc2cH@JI)IAa  ;Anc;H@@#   cHlrIċ;HcL,    wc;H@L4hcHLw   ;NcH@HH@x   ;1c   H@H<qH   ;Hchc;H@Nt(AD$%Ab   tiEtdAL$   Il$Mf;b;HhbLH(H[]A\A]A^A_ b;L`bH@H@M$    ;qbHLH3}H=J$ 1wH5 LzH=# v     AVIAUATUSH% ;b;L(	b;HPxHJHHx*aHcH@HI)IA,  ;DeHca;H@H@%   =      a;H@H,a   1HH}Iŋ;McN4    oa;H@J,`aHHu   ;FaH@JH@xuz;-a   H@J<oHHtvHxhHt	H% Lyw;HEh`;Hh`JT5H[]A\A]A^f`H@HLh9H=+# 1luH5% LmxH=" 1Ouff.     @ AWAVAUIATUSHH,% ;]`;H(S`;HPxHJHHxD2=`IcH@HH)HE`  ;EfMc`;N,    H@N<_HL/t  ;_H@JH@x   ;_   H@J<anIH   ;6AD$L    _;Hh_JT-HH[]A\A]A^A_fD  c_An;H@HcH@%   =   tS>_;H@H,/_   HHv;~AD$L   v dAD$L_@ ^H@HH @ H=! 1sH=! 1sH5F LvAWAVAUIATUSHH\~% ;^;L ^;HPxHJHHxLc2m^H@JI)IAa  ;AnI^;H@@#   4^HmIċ;HcL,    ^;H@L4^HL=r   ;]H@HH@x   ;]   H@H<olH   ;HchL];H@Nt(AD$%A]   tiEtdAL$   Il$Mf;c];HhX]LH(H[]A\A]A^A_ ;];L`0]H@H@M$    ;]HLHwH=  1qH5 LtH=5  q     AWAVAUIATUSHH||% ;\;H(\;HPxHJHHxD2\IcH@HH)HE  ;EfMca\;N,    H@N<J\HLpJ  ;0\H@JH@x-  ;\   H@J<jIH  PHxpHt	H|% ID$p       I$;B[;Hh[JT-HH[]A\A]A^A_Ë;AnHc[;H@H@%   =   tyt[;H@H,e[   1HHvHI|$pHt	HG|% HV}  LHqID$pH5bN6fD  ZH@HHhH= 1oH= 1oH5h LrfAVIAUATUSHrz% ;Z;L(Z;HPxHJHHx*ZHcH@HI)IA<  ;DeHcWZ;H@H@%   =      5Z;H@H,&Z   1HHuIŋ;McN4    Y;H@J,YHH%n   ;YH@JH@x   ;Y   H@J<WhHH~   MtH   Hz% LoH   ;pY;HheYJT5H[]A\A]A^@ KYH@HLh)H= 1mH5ٵ LpH= 1mff.     @ AWAVIAUATUSHHx% ;X;L X;HPxHJHHxD*XIcH@HI)IA  ;AmX;H@@#   XHYgIċ;HcL4    dX;H@L<UXHLlt;?XH@HH@x   H=" 1];X;I
XI8  H@L$;W;HhWIL0H[]A\A]A^A_@ W;L`WH@H@M$9    ;W;H@L<WH LHdO;qW;H@HH@@%   =      KW;H@HHh8W   HHnHŋ;AMcW;H@N<WHL=k   ;VH@JH@x   ;V   H@J<oeH   HH_;HcVAT$;H@Nl0AV   tFEtAAL$   Il$Me_f.     KVH@HH@H Hh  ;)VHLHpH5Բ LmH= 1jH=E jAVIAUATUSH`Hu% dH%(   HD$X1;U;H(U;HPxHJHHxLc"UHH@JH)HH  ;El$McrU;N4    H@N,[UHLit;EUH@JH@xtkH= 1Z;U;IUI8  H@N,;T;HhTLH(HD$XdH3%(   T  H`[]A\A]A^@ ;T;H@JH@@%   =   tTT;H@JL`T   LHkvE;nT;HhcTJT5HifD  KTH@JH@H H@ fD  " H  HPHHtHB8HtHx   L` L@A$
	M9=  Lt,f     HI9R  
ttI9<  HPHx 
ttHBH9Y  H
I9rހ
@	  HBJHHI)Ԁw$  Hr  I   A$  LHN   wLHH҃PAHAu ;HRH@ H)H  1LHW;IRLHmX;HERDH7e;IRLHBX;HE RH(    K    J@PHBHHcHH9     JI9   H
uD  <tHI9s<
u<
@<	@HByD  IL;QHH   H{_HL,
	HcH5 LAiI
	LHAVAUIATUSHq% ;3Q;H()Q;HPxHJHHxLc2QH@JH)H  ;EfIcP;L$    H@L,PHLe   ;PH@HH@x   ;P   H@H<=_H   HxhHtS1T;IjPLHV;IUPH@L,;FP;Hh;PLH([]A\A]A^@ ;!P;IPI8  H@H=s 1dH=- dH5~ LgAVAUIATUSHo% ;O;H(O;HPxHJHHxLc2OH@JH)H  ;EfIc}O;L$    H@L,fOHLc   ;LOH@HH@x   ;/O   H@H<]H   HxpHtS1DS;INLHT;INH@L,;N;HhNLH([]A\A]A^@ ;N;INI8  H@H= 1LcH== @cH5 LAfAVAUIATUSH"n% ;SN;H(IN;HPxHJHHxLc23NH@JH)H   ;EfMcNN4    H@JHhE%   =   uzHE H@ HxYd1HIRLHHn% ;MHH[S;HMH@J,;M;HhMLH([]A\A]A^     ;iM   HHdrH5 LeD  AVAUIATUSHl% ;#M;H(M;HPxHJHHxLc2MH@JH)H   ;EfMcLN4    H@JHhE%   =   uzHE H@ Hx)c1HIPLHHm% ;LHH+R;HqLH@J,;bL;HhWLLH([]A\A]A^     ;9L   HHcrH5 LcD  AVAUIATUSHk% ;K;H(K;HPxHJHHxLc2KH@JH)H>  ;EfIcK;L$    H@L,KHL_   ;|KH@HH@x   ;_K   H@H<YH   PJvu\H@HHtSHxHtJa1HIPOLIHl% ;JLHP;IJH@#    ;J;IJI8  H@L,;J;HhJIL []A\A]A^H= 1I_H= =_H5 L>bff.      AVAUIATUSHj% ;CJ;H(9J;HPxHJHHxLc2#JH@JH)H&  ;EfIcI;L$    H@L,IHL^   ;IH@HH@x   ;I   H@H<MXH   PJvuDH@HHt;HxHt21M;IaILHO;ILIH@"fD  ;9I;I/II8  H@L,;I;HhIIL []A\A]A^H= 1]H= ]H5s L`fD  AVAUIATUSHh% ;H;H(H;HPxHJHHxLc2HH@JH)H  ;EfIcmH;L$    H@L,VHHL\   ;<HH@HH@x   ;H   H@H<VH   PJvwYHx1&L;IGLHM;IGH@L,;G;HhGIL []A\A]A^fD  ;G;IGI8  H@H= 1,\H=  \H5 L!_AVAUIATUSHg% ;3G;L )G;HPxHJHHxLc2GH@JI)IA  ;AnF;H@@#   FHUIċ;HcL,    F;H@L4FHLZt;FH@HH@xt~H=? 1L;qF;IgFI8  H@L$;QF;HhFFLH([]A\A]A^    +F;L` FH@H@M$@    ;F;H@HH@@%   =   tdE;H@HHhE   HH,];Hh8EHLHL;EH@Jl(AD$@u+Le*f{EH@HH@H H@ fD  ;YELHNWH5ڠ L]ff.     fAVAUIATUSHd% ;E;L 	E;HPxHJHHxLc2DH@JI)IA  ;AnD;H@@#   DHSIċ;HcL,    D;H@L4DHLXt;xDH@HH@xt~H=g 1I;QD;IGDI8  H@L$;1D;Hh&DLH([]A\A]A^    D;L` DH@H@M$@    ;C;H@HH@@%   =   tdC;H@HHhC   HH[;Hh0CHLHI;|CH@Jl(AD$@u+Le*f[CH@HH@H H@ fD  ;9CLH.UH5 LZff.     fAVAUIATUSHb% ;B;L B;HPxHJHHxLc2BH@JI)IA  ;AnB;H@@#   BHrQIċ;HcL,    }B;H@L4nBHLVt;XBH@HH@xt~H= 1G;1B;I'BI8  H@L$;B;HhBLH([]A\A]A^    A;L`AH@H@M$@    ;A;H@HH@@%   =   tdA;H@HHhA   HHX;Hh(qAHLHG;\AH@Jl(AD$@u+Le*f;AH@HH@H H@ fD  ;ALHSH5 LXff.     fAVAUIATUSH`% ;@;L @;HPxHJHHxLc2@H@JI)IA  ;An@;H@@#   z@HROIċ;HcL,    ]@;H@L4N@HLTt;8@H@HH@xt~H=	 1E;@;I@I8  H@L$;?;Hh?LH([]A\A]A^    ?;L`?H@H@M$@    ;?;H@HH@@%   =   td?;H@HHhl?   HHV;HhQ?HLHE;<?H@Jl(AD$@u+Le*f?H@HH@H H@ fD  ;>LHPH5z LVff.     fAVAUIATUSH^% ;>;L >;HPxHJHHxLc2>H@JI)IA  ;Ano>;H@@#   Z>H2MIċ;HcL,    =>;H@L4.>HLcRt;>H@HH@xt~H= 1C;=;I=I8  H@L$;=;Hh=LH([]A\A]A^    =;L`=H@H@M$@    ;=;H@HH@@%   =   td_=;H@HHhL=   HHT;Hh1=HLHC;=H@Jl(AD$@u+Le*f<H@HH@H H@ fD  ;<LHNH5Z LTff.     fAVAUIATUSHb\% ;<;L <;HPxHJHHxLc2s<H@JI)IAD  ;AnO<;H@@#   :<HKIċ;HcL,    <;H@L4<HLCP   ;;H@HH@x   ;;   H@H<uJH   ;Hhh;HLHB;;H@Jl(AD$@uSLe;;;Hhu;LH([]A\A]A^fD  [;;L`P;H@H@M$    ;1;LH&MH= 1OH5 LRH=( Off.     AVAUIATUSHZ% ;:;L :;HPxHJHHxLc2:H@JI)IAD  ;An:;H@@#   z:HRIIċ;HcL,    ]:;H@L4N:HLN   ;4:H@HH@x   ;:   H@H<HH   ;Hhp9HLHS@;9H@Jl(AD$@uSLe;9;Hh9LH([]A\A]A^fD  9;L`9H@H@M$    ;q9LHfKH=M 1NH5 LQH= Mff.     AVAUIATUSHX% ;9;L 	9;HPxHJHHxLc28H@JI)IAL  ;An8;H@@#   8HGIċ;HcL,    8;H@L48HLL   ;t8H@HH@x   ;W8   H@H<FH   H   N;H&8HLH>;8H@Jl(AD$@uPLe;7;Hh7LH([]A\A]A^ 7;L`7H@H@M$    ;7LHIH= 1NLH5 LOOH= 3L AVAUIATUSH"W% ;S7;H(I7;HPxHJHHxLc237H@JH)H   ;Ef7;H@@#um 7HEHŋ;Mc6H HHI=;6H@NlE@uSIm;6;Hh6JT H[]A\A]A^@ 6;Hh6H@H@Hl f     ;i6HH^HH5 LNff.     fAWAVAUIATUSHHU% ;6;L 6;HPxHJHHxLc25H@JI)IA  ;An5;H@@#   5HDIċ;HcL,    5;H@L45HLIt;5H@HH@x   H= 1:;W5;IM5I8  H@L$;75;Hh,5LH(H[]A\A]A^A_    5;L` 5H@H@M$6    ;4;H@HH@@%   =      4;H@HHh4   HHLHp7;Hc4AT$;H@Nt(Ad4   tCEt>AL$   Il$Mf    34H@HH@H Hx fD  ;4HLHNH5͐ LKfAWAVAUIATUSHHS% ;3;L 3;HPxHJHHxLc23H@JI)IA  ;An3;H@@#   t3HLBIċ;HcL,    W3;H@L4H3HL}Gt;23H@HH@x   H= 18;3;I2I8  H@L$;2;Hh2LH(H[]A\A]A^A_    2;L`2H@H@M$6    ;2;H@HH@@%   =      k2;H@HHhX2   HHIHpA;Hc62AT$;H@Nt(A2   tCEt>AL$   Il$Mf    1H@HH@H Hx fD  ;1HLHLH5} LrIfAWAVAUIATUSH8HLQ% dH%(   HD$(1;m1;L c1;HPxHJHHxLc2M1H@JI)IA  ;AnHc&1;L$    H@L,1HLDEt;0H@HH@xtoH=X 1y6;0;I0I8  H@L,;0;Hh0IL HD$(dH3%(   %  H8[]A\A]A^A_fD  ;q0;H@HH@@%   =      K0;H@HHh80   HHGIŋ;01H5e H0IH   HML 1       HI    hGAI!%t;  DIWLD I/HI)E1j A   HDHLYB_AXHuaLI2tL>L4G;M/;HhB/JT%HD  +/H@HH@H Lh  IAI!%t;  DIWLD@ I.HI)E1j DLHAD   HAYL^1H)H?Pu@   H<7H5C L8F@ AVAUATUSHH0L%N% dH%(   HD$(1A<$1.1H5x H /H   HILɓ IŹ       H1    H{EA<$-1H?IƋH!%tA<$  DHSHDډ H-HH)Hj MA$   LHV@XZHD$(dH3%(   uH0[]A\A]A^?fAWAVIAUATUSHHL% ;--;L #-;HPxHJHHxD*-IcH@HI)IA  ;Am,;H@@#   ,H;IƋ;HcL$    ,;H@L<,HL@t;,H@HH@x   H=2 12;d,;IZ,I8  H@L,;D,;Hh9,IL H[]A\A]A^A_@ ,;L`,H@H@M49    ;+;H@HH@@%   =      +;H@HLx+   LHCHD$;AMc+;H@N<+HL?t;p+H@JH@xt.H=_ fK+H@HH@H H@ HD$뎐;)+;H@JH@@%   =      +;H@JHh*   HHPBHH|$0;Hc*AV;H@Nl A*   t9Et4AN   InMu:D  {*H@JH@H Hp 뉋;_*HLH!EH5" LBAWAVIAUATUSHHI% ;*;L(*;HPxHJHHx*)HcH@HI)IAI  ;DeHc);H@H@%   =     );H@H,)   1HHEIŋ;);H@@#   o)HG8Hŋ;McN4    R);H@N<C)HLx=t;-)H@JH@x   H=` 1.;);I(I8  H@N,;(;Hh(LH(H[]A\A]A^A_f(;Hh(H@H@Hl :fD  (H@HLhf;y(;H@JH@@%   =      S(;H@JL`@(   HL?HL%-;Lc(U;H@Nl0A'   tBEt=M   LeImf     'H@JH@H Hx fD  ;'LHHkBH5| LZ?f.     AWAVIAUATUSHH,G% ;]';L S';HPxHJHHxD*='IcH@HI)IA  ;Am';H@@#   'H5IƋ;HcL$    &;H@L<&HL
;t;&H@HH@x   H=B 1;,;&;I&I8  H@L,;t&;Hhi&IL H[]A\A]A^A_@ K&;L`@&H@H@M49    ;!&;H@HH@@%   =      %;H@HLx%   LHH=HD$;AMc%;H@N<%HL9t;%H@JH@xt.H=w f{%H@HH@H H@ HD$뎐;Y%;H@JH@@%   =      3%;H@JHh %   HH<HH|$8;Hc$AV;H@Nl A$   t9Et4AN   InMu:D  $H@JH@H Hp 뉋;$HLHQ?H5n L@<AWAVIAUATUSHHD% ;M$;L(C$;HPxHJHHx*.$HcH@HI)IAI  ;DeHc$;H@H@%   =     #;H@H,#   1HH>?Iŋ;#;H@@#   #Hw2Hŋ;McN4    #;H@N<s#HL7t;]#H@JH@x   H= 1(;2#;I(#I8  H@N,;#;Hh#LH(H[]A\A]A^A_f";Hh"H@H@Hl :fD  "H@HLhf;";H@JH@@%   =      ";H@JL`p"   HL9HL);LcK"U;H@Nl0A+"   tBEt=M   LeImf     !H@JH@H Hx fD  ;!LHH<H5~ L9f.     AVAUIATUSHbA% ;!;H(!;HPxHJHHxLc2s!H@JH)H   ;EfIcM!;L$    H@L,6!HLk5   ;!H@HH@x   ;    H@H</H   H H<HPHtHH81:;I LH]&;I H@L,; ;Hh LH([]A\A]A^H=; 1,5H5{ L-8H= 5AVAUIATUSH@% ;3 ;H() ;HPxHJHHxLc2 H@JH)H  ;EfIc;L$    H@L,HL4   ;H@HH@x   ;   H@H<=.H   Hx@HtS19;IjLH%;IUH@L,;F;Hh;LH([]A\A]A^@ ;!;II8  H@H=S 13H= 3H5~z L6AVAUIATUSH>% ;;H(;HPxHJHHxLc2H@JH)H   ;EfIc};L$    H@L,fHL2   ;LH@HH@x   ;/   H@H<,HtsH0HtHVHtH2Hx 8;ILH#;IH@L,;;HhLH([]A\A]A^H= 1e2H=> Y2H5'y LZ5f.     AVAUIATUSH2=% ;c;H(Y;HPxHJHHxLc2CH@JH)H   ;EfIc;L$    H@L,HL;1   ;H@HH@x   ;   H@H<m+HtsH0HtHVHtH2Hx6;ILH6";I|H@L,;m;HhbLH([]A\A]A^H= 11H=^ 0H5w L3f.     AVAUIATUSH;% ;;H(;HPxHJHHxLc2H@JH)H   ;EfIc;L$    H@L,HL/   ;H@HH@x   ;o   H@H<*HtsH0HtHVHtH2Hx8[5;I1LH ;IH@L,;;HhLH([]A\A]A^H= 1/H= /H5gv L2f.     AVAUIATUSHr:% ;;H(;HPxHJHHxLc2H@JH)H   ;EfIc];L$    H@L,FHL{.   ;,H@HH@x   ;   H@H<(HtsH0HtHVHtH2Hx03;ILHv;IH@L,;;HhLH([]A\A]A^H= 1E.H= 9.H5u L:1f.     AVAUIATUSH9% ;C;H(9;HPxHJHHxLc2#H@JH)H   ;EfIc;L$    H@L,HL-   ;H@HH@x   ;   H@H<M'HtsH0HtHVHtH2Hx(2;IqLH;I\H@L,;M;HhBLH([]A\A]A^H=, 1,H= ,H5s L/f.     AVAUIATUSH7% ;;H(;HPxHJHHxLc2H@JH)H  ;EfIc;L$    H@L,HL+   ;lH@HH@x   ;O   H@H<%H   HxXHt[H@X    H0;1;ILH;IH@L,;;HhLH([]A\A]A^ ;;II8  H@H=; 1d+H= X+H5&r LY.f     AVAUIATUSH26% ;c;H(Y;HPxHJHHxLc2CH@JH)H  ;EfIc;L$    H@L,HL;*   ;H@HH@x   ;   H@H<m$H   HxPHtSH0/;ILH>;IH@L,;u;HhjLH([]A\A]A^ ;Q;IGI8  H@H=c 1)H= )H5p L,AVAUIATUSH4% ;;H(;HPxHJHHxLc2H@JH)H  ;EfIc;L$    H@L,HL(   ;|H@HH@x   ;_   H@H<"H   HxXHtSH0S.;I)LH;IH@L,;;HhLH([]A\A]A^ ;;II8  H@H= 1|(H=5 p(H5>o Lq+AWAVIAUATUSH8HL3% ;};L s;HPxHJHHxD*]IcH@HI)IAD$  ;EuAmMc+;H@J@%   =   &  	;H@N4   1LHh.HD$;;H@@#   H!Iǋ;HcL4    ;H@H4Ht$Ht$H&t;~H@HH@x   H=y 1;S;III8  H@L$;3;Hh(IL0H8[]A\A]A^A_ ;Lp H@H@M<3    H@JH@HD$D  ;;H@HH@@%   =      ;H@HHh   HH(HD$ A   E1Ht$H|$ L+LHc);B;H@Nd0AG%A"   m  Ed  AO   IoM|$fD  H@HH@H H@ HD$ [fD  ;AMcH@J,E    4  _  LmA}P  ;LHJxHD$(HHcH9   H&IHD$(   1HD$     HFIHEH9l$tUHŋ;L1HHH0F%   =   t;Ht$Ht$   1HQ+    D$(HIH     I    ;HLHc*fD  H5y0% H=Hj 13$ ;iHHnEfD  LH5Vl L'Hdl H5 1H= #AWAVAUIATUSHH.% ;;H(;HPxHJHHxLc2H@JH)H  ;EfIc;L,    H@L$HL"t;H@HH@xtXH=) 1
;c;IYI8  H@L$;C;Hh8LH(H[]A\A]A^A_ ;;H@HH@@%   =      ;H@HL`   LH@%ILIHO1H'HpIǋF%   =      HH@ P      LtIHt@   L;SLH;I>H@D  +H@HH@H L` F ;Ht$Ht$   Hb$xfIwF%   =   t;;Ht$Ht$   H'$PP'H5ui Lj$HH@ Pff.      AWAVIAUATUSHH,,% ;];L(S;HPxHJHHx*>HcH@HI)IAI  ;DeHc;H@H@%   =     ;H@H,   HH@#ŋ;;H@@#   HIŋ;McN4    ;H@N<HLt;pH@JH@x   H=S 1;E;I;I8  H@N,;%;HhLH(H[]A\A]A^A_D  
;Lh
H@H@Ml 7fD  
H@HH h ;
;H@JH@@%   =      
;H@JL`
   HL!Hǉ;Hc\
AU;H@Nd0A;
   tBEt=AM   ImMl$    
H@JH@H Hx fD  ;	HLH$H5g L!f.     AWAVIAUATUSHHl)% ;	;L 	;HPxHJHHxD*}	IcH@HI)IA'  ;AmV	;H@@#   A	HIƋ;HcL$    $	;H@L<	HLJt;H@HH@x   H=2 1{;;II8  H@L,;;HhIL H[]A\A]A^A_@ ;L`H@H@M49    ;a;H@HH@@%   =      ;;H@HLx(   LHH$;AMc;H@N<HL,t;H@JH@xt/H=h  H@HH@H H@ H$f;;H@J4Ht$Ht$Hc Hqt;f;H@JH@@%   =      @;H@JLh-   LHIM   H<$HtsHL;Hc;H@Nl AF%A   ttEtoAN   InMu;;HhLH( ;;II8  H@L,iH@JH@H Lh 7;JHLH!H5vc Lff.     AWAVIAUATUSHH%% ;;L ;HPxHJHHxD*IcH@HI)IAD$  ;AmHc;L<    H@L4HL  ;~H@HH@x  ;a   H@H<IHr  1A   L_ IH#  x   Mn@MtLH%LLH8ILLIċ;LH
;IH@L$;;HhIL8H[]A\A]A^A_fD  ;AMc;H@J@%   =   tId;H@N$U   LHfD  1HNIEfD  H@JH p      ;;II8  H@H=  1H= 1H5a L@ AVAUIATUSHb#% ;;H(;HPxHJHHxLc2sH@JH)Hx  ;EfIcM;L,    H@L$6HLkt; H@HH@xtVH=w 1;;II8  H@L$;;HhLH([]A\A]A^    ;;H@HH@@%   =      ;H@HL`x   HLH0HWHIHC1HyLIH4#% ;#LH;IH@!D  H@HH@H Hx ~H5^ L@ AVAUIATUSH!% ;;H(;HPxHJHHxLc2H@JH)H   ;EfIcm;L,    H@L$VHL   ;<H@HH@x   ;   H@H<H   HIHt{1H*LIH!% ; LHy;I H@L$; ;Hh LH([]A\A]A^H= 1HH5\ LIH= 1+H=$ ff.     @ AWAVAUIATUSHH% ;- ;L # ;HPxHJHHxLc2 H@JI)IA  ;An;H@@#   HIċ;HcL,    ;H@L4HLt;H@HH@x   H= 1;g;I]I8  H@L$;G;Hh<LH(H[]A\A]A^A_    ;L`H@H@M$6    ;;H@HH@@%   =      ;H@HHh   HHH;HcAT$;H@Nt(At   tCEt>AL$   Il$Mf    CH@HH@H Hx fD  ;!HLHH5Z LfAWAVIAUATUSHH% ;;L(;HPxHJHHx*HcH@HI)IA  ;DmDeMc;H@J@%   =     n;H@N,_   LHAŋ;Hc?;H@H@%   =     ;H@H,   HHnD$;;H@@#   HIƋ;McN<    ;H@J,HHt;H@JH@x   H=? 1;q;HgH8  H@J,;Q;HhFIL8H[]A\A]A^A_Ð+;Lp H@H@M4<    H@HH @ D$@ H@JH Dh     ;;H@JH@@%   =      ;H@JL`   HLHǋT$D);Hc_AV;H@Nd8A>   tEEt@AN   InMt$f.     H@JH@H Hx fD  ;HLHH53X Lf.     AVAUIATUSHr% ;;H(;HPxHJHHxLc2H@JH)HU  ;EfIc];L,    H@L$FHL{t;0H@HH@xtVH=' 1;	;II8  H@L$;;HhLH([]A\A]A^    ;;H@HH@@%   =   tt;H@HL`   HLHD[H=V 1;IQLH;I<H@? +H@HH@H Hx H5U L    AWAVAUIATUSHH% ;;L ;HPxHJHHxLc2H@JI)IA  ;An;H@@#   H\Iċ;HcL,    g;H@L4XHLt;BH@HH@x   H= 1;;II8  H@L$;;HhLH(H[]A\A]A^A_    ;L`H@H@M$6    ;;H@HH@@%   =      {;H@HHhh   HHHP;HcFAT$;H@Nt(A$   tCEt>AL$   Il$Mf    H@HH@H Hx fD  ;HLHH5S LfAWAVAUIATUSHH\% ;;L ;HPxHJHHxLc2mH@JI)IA  ;AnI;H@@#   4HIċ;HcL,    ;H@L4HL=
t;H@HH@x   H=} 1n;;II8  H@L$;;HhLH(H[]A\A]A^A_    {;L`pH@H@M$6    ;Q;H@HH@@%   =      +;H@HHh   HHxH@;HcAT$;H@Nt(A   tCEt>AL$   Il$Mf    H@HH@H Hx fD  ;HLHCH5=Q L2fAVAUIATUSH% ;C;H(9;HPxHJHHxLc2#H@JH)HE  ;EfIc;L,    H@L$HLt;H@HH@xtVH= 1P;;II8  H@L$;;Hh~LH([]A\A]A^    ;a;H@HH@@%   =   td?;H@HL`,   HL
H$1HJ;I LH;IH@NfH@HH@H Hx H5O L
    AVAUIATUSHb% ;;H(;HPxHJHHxLc2sH@JH)HE  ;EfIcM;L,    H@L$6HLkt; H@HH@xtVH=? 1;;II8  H@L$;;HhLH([]A\A]A^    ;;H@HH@@%   =   td;H@HL`|   HLHt1H;IPLH;I;H@Nf+H@HH@H Hx H5M L    AVAUIATUSH% ;;H(;HPxHJHHxLc2H@JH)HE  ;EfIc;L,    H@L$HLt;pH@HH@xtVH= 1;I;I?I8  H@L$;);HhLH([]A\A]A^    ;;H@HH@@%   =   td;H@HL`   HL,HD1H;ILHE;IH@Nf{H@HH@H Hx H52L L'    AWAVAUIATUSHH% ;-;L #;HPxHJHHxLc2H@JI)IA  ;An;H@@#   HIċ;HcL,    ;H@L4HLt;H@HH@x   H=M 1;g;I]I8  H@L$;G;Hh<LH(H[]A\A]A^A_    ;L`H@H@M$6    ;;H@HH@@%   =      ;H@HHh   HHH;HcAT$;H@Nt(At   tCEt>AL$   Il$Mf    CH@HH@H Hx fD  ;!HLHH5I LfAWAVAUIATUSHH% ;;L ;HPxHJHHxLc2H@JI)IA  ;An;H@@#   H\Iċ;HcL,    g;H@L4XHL t;BH@HH@x   H=U 1;;II8  H@L$;;HhLH(H[]A\A]A^A_    ;L`H@H@M$6    ;;H@HH@@%   =      {;H@HHhh   HHH0;HcFAT$;H@Nt(A$   tCEt>AL$   Il$Mf    H@HH@H Hx fD  ;HLHH5G LfAWAVAUIATUSHH\
% ;;L ;HPxHJHHxLc2mH@JI)IA  ;AnI;H@@#   4HIċ;HcL,    ;H@L4HL=t;H@HH@x   H=] 1n;;II8  H@L$;;HhLH(H[]A\A]A^A_    {;L`pH@H@M$6    ;Q;H@HH@@%   =      +;H@HHh   HHx H;HcAT$;H@Nt(A   tCEt>AL$   Il$Mf    H@HH@H Hx fD  ;HLHCH5=E L2 fAWAVIAUATUSHH% ;=;L(3;HPxHJHHx*HcH@HI)IA)  ;DmDeMc;H@J@%   =     ;H@N,   1LH-HD$;HcH@H@   >  ;H@H@%   =     ;];H@H,N   1HHIƋ;2;H@@#   HHŋ;McN<     ;H@N,HL&t;H@JH@x  H= 1W;;HH8  H@J,;;HhIL8H[]A\A]A^A_k;Hh`H@H@Hl <fD  ;AH@Hx;E1%H@H@% =
  D  H@JH@HD$=D  ;H@HLp     ;;H@JH@@%   =      ;H@JL`   HLHHt$L;LcVU;H@Nl8A6   t=Et8M   LeIm}@ H@JH@H Hx fD  ;LHHH5 Lf.     AWAVIAUATUSHHl% ;;L(;HPxHJHHx*~HcH@HI)IAI  ;DeHcQ;H@H@%   =     /;H@H,    HHŋ;;H@@#   HIŋ;McN4    ;H@N<HLt;H@JH@x   H= 1,;;I{I8  H@N,;e;HhZLH(H[]A\A]A^A_D  ;;Lh0H@H@Ml 7fD  H@HH h ;;H@JH@@%   =      ;H@JL`   HL HǉV;HcAU;H@Nd0A{   tBEt=AM   ImMl$    KH@JH@H Hx fD  ;)HLHH5? Lf.     AWAVIAUATUSHH% ;;L(;HPxHJHHx*HcH@HI)IAI  ;DeHc;H@H@%   =     o;H@H,`   1HHIŋ;D;H@@#   /HHŋ;McN4    ;H@N<HL8t;H@JH@x   H=x 1i;;II8  H@N,;;HhLH(H[]A\A]A^A_f{;HhpH@H@Hl :fD  SH@HLhf;9;H@JH@@%   =      ;H@JL`    HL`HL;LcU;H@Nl0A   tBEt=M   LeImf     H@JH@H Hx fD  ;iLHH+H5< Lf.     AVAUIATUSH$ ;#;L0;HPxHJHHx*HcH@HI)LHC  ;DeHcH@H@      ;H@H@%   =     ;;H@H,   1HHHŋ;McN4    a;H@N,RHLt;<H@JH@x   H= 1;;II8  H@N,;;HhLH([]A\A]A^    ;H@Hx;H@H@% =
  1fD  ;;H@JH@@%   =      [;H@JLhH   HLHH}1HH`HIH$ ;
LH;HH@J,     ;H@HHhU     H@JH@H Hx nH5,: Ld@ AWAVAUIATUSHH<$ ;m;L c;HPxHJHHxLc2MH@JI)IA  ;An);H@@#   HIċ;HcL,    ;H@L4HLt;H@HH@x   H= 1N;;II8  H@L$;;Hh|LH(H[]A\A]A^A_    [;L`PH@H@M$6    ;1;H@HH@@%   =      ;H@HHh   HHXHp;HcAT$;H@Nt(A   tCEt>AL$   Il$Mf    H@HH@H Hx fD  ;aHLH#H57 LfAWAVAUIATUSHH$ ;;L ;HPxHJHHxLc2H@JI)IA  ;An;H@@#   HIċ;HcL,    ;H@L4HLt;H@HH@x   H= 1;W;IMI8  H@L$;7;Hh,LH(H[]A\A]A^A_    ;L` H@H@M$6    ;;H@HH@@%   =      ;H@HHh   HHH@;HcAT$;H@Nt(Ad   tCEt>AL$   Il$Mf    3H@HH@H Hx fD  ;HLHH54 LfAWAVAUIATUSHH$ ;;L ;HPxHJHHxLc2H@JI)IA  ;An;H@@#   tHLIċ;HcL,    W;H@L4HHL}t;2H@HH@x   H= 1;;II8  H@L$;;HhLH(H[]A\A]A^A_    ;L`H@H@M$6    ;;H@HH@@%   =      k;H@HHhX   HHH@;Hc6AT$;H@Nt(A   tCEt>AL$   Il$Mf    H@HH@H Hx fD  ;HLHH5}2 LrfAWAVAUIATUSHHL$ ;};L s;HPxHJHHxLc2]H@JI)IA  ;An9;H@@#   $HIċ;HcL,    ;H@L4HL-t;H@HH@x   H= 1^;;II8  H@L$;;HhLH(H[]A\A]A^A_    k;L``H@H@M$6    ;A;H@HH@@%   =      ;H@HHh   HHhHP;HcAT$;H@Nt(A   tCEt>AL$   Il$Mf    H@HH@H Hx fD  ;qHLH3H5-0 L"fAWAVAUIATUSHH$ ;-;L #;HPxHJHHxLc2H@JI)IA  ;An;H@@#   HIċ;HcL,    ;H@L4HLt;H@HH@x   H= 1;g;I]I8  H@L$;G;Hh<LH(H[]A\A]A^A_    ;L`H@H@M$6    ;;H@HH@@%   =      ;H@HHh   HHH;HcAT$;H@Nt(At   tCEt>AL$   Il$Mf    CH@HH@H Hx fD  ;!HLHH5- LfAVAUIATUSH$ ;;H(;HPxHJHHxLc2H@JH)HE  ;EfIc;L,    H@L$HLt;pH@HH@xtVH=' 1;I;I?I8  H@L$;);HhLH([]A\A]A^    ;;H@HH@@%   =   td;H@HL`   HL,H$1H;ILHE;IH@Nf{H@HH@H Hx H52, L'    AWAVAUIATUSHH$ ;-;L #;HPxHJHHxLc2H@JI)IA  ;An;H@@#   HIċ;HcL,    ;H@L4HLt;H@HH@x   H= 1;g;I]I8  H@L$;G;Hh<LH(H[]A\A]A^A_    ;L`H@H@M$6    ;;H@HH@@%   =      ;H@HHh   HHH@;HcAT$;H@Nt(At   tCEt>AL$   Il$Mf    CH@HH@H Hx fD  ;!HLHH5) LfAWAVAUIATUSHH$ ;;L ;HPxHJHHxLc2H@JI)IA  ;An;H@@#   H\Iċ;HcL,    g;H@L4XHLt;BH@HH@x   H= 1;;II8  H@L$;;HhLH(H[]A\A]A^A_    ;L`H@H@M$6    ;;H@HH@@%   =      {;H@HHhh   HHH`;HcFAT$;H@Nt(A$   tCEt>AL$   Il$Mf    H@HH@H Hx fD  ;HLHH5' LfAWAVAUIATUSHH\$ ;;L ;HPxHJHHxLc2mH@JI)IA  ;AnI;H@@#   4HIċ;HcL,    ;H@L4HL=t;H@HH@x   H= 1n;;II8  H@L$;;HhLH(H[]A\A]A^A_    {;L`pH@H@M$6    ;Q;H@HH@@%   =      +;H@HHh   HHxHp;HcAT$;H@Nt(A   tCEt>AL$   Il$Mf    H@HH@H Hx fD  ;HLHCH5=% L2fAWAVIAUATUSHH$ ;=;L(3;HPxHJHHx*HcH@HI)IA  ;DmDeMc;H@J@%   =   3  ;H@N,   1LH-Iŋ;HcH@H@      ;H@H@%   =     ;_;H@H,P   1HHHŋ;McN4    );H@N<HLOt;H@JH@x   H= 1;;II8  H@N,;;HhLH(H[]A\A]A^A_f     ;H@Hx;pH@H@% =
  1fD  ;A;H@JH@@%   =      ;H@JLx   HLhHHL1HHHIH$ ;LHl;HH@J,D  H@JLhf.     ;yH@HHh-     [H@JH@H Hx NH5 L@ AVIAUATUSH$ ;;L(	;HPxHJHHx*HcH@HI)IA  ;DeHc;H@H@%   =   j  ;H@H,   HHŋ;McN4    r;H@N,cHLt;MH@JH@xtSH= 1;&;II8  H@N,;;HhLH([]A\A]A^@ ;;H@JH@@%   =      ;H@JLh   HLHǉ1HHHIH|$ ;kLH;HVH@J,<f     ;H@HH h      H@JH@H Hx nH5t  L@ AVIAUATUSH$ ;;L(;HPxHJHHx*HcH@HI)IA  ;DeHc;H@H@%   =   j  e;H@H,V   1HHHŋ;McN4    /;H@N, HLUt;
H@JH@xtXH= 1;;II8  H@N,;;HhLH([]A\A]A^f     ;;H@JH@@%   =      s;H@JLh`   HLHH51HHxHIH3$ ;"LH;HH@J,6H@HHhf.     H@JH@H Hx vH5? L@ AVAUIATUSHb$ ;;H(;HPxHJHHxLc2sH@JH)HE  ;EfIcM;L,    H@L$6HLkt; H@HH@xtVH= 1;;II8  H@L$;ٿ;HhοLH([]A\A]A^    ;豿;H@HH@@%   =   td菿;H@HL`|   HLH1H;IPLH;I;H@Nf+H@HH@H Hx H5 L    AVAUIATUSH$ ;;H(پ;HPxHJHHxLc2þH@JH)HE  ;EfIc蝾;L,    H@L$膾HLt;pH@HH@xtVH= 1;I;I?I8  H@L$;);HhLH([]A\A]A^    ;;H@HH@@%   =   td߽;H@HL`̽   HL,Hd1H;I蠽LHE;I苽H@Nf{H@HH@H Hx H52 L'    AVAUIATUSH$ ;3;H();HPxHJHHxLc2H@JH)HE  ;EfIc;L,    H@L$ּHLt;H@HH@xtVH=/ 1@;虼;I菼I8  H@L$;y;HhnLH([]A\A]A^    ;Q;H@HH@@%   =   td/;H@HL`   HL|H1H:;ILH;IۻH@Nf˻H@HH@H Hx H5 Lw    AVAUIATUSHR$ ;胻;H(y;HPxHJHHxLc2cH@JH)HE  ;EfIc=;L,    H@L$&HL[t;H@HH@xtVH=Ǜ 1;;IߺI8  H@L$;ɺ;Hh辺LH([]A\A]A^    ;衺;H@HH@@%   =   td;H@HL`l   HLHT1H芾;I@LH;I+H@NfH@HH@H Hx H5 L    AWAVAUIATUSHH$ ;͹;L ù;HPxHJHHxLc2譹H@JI)IA  ;An艹;H@@#   tHLIċ;HcL,    W;H@L4HHL}t;2H@HH@x   H=- 1设;;II8  H@L$;;HhܸLH(H[]A\A]A^A_    軸;L`谸H@H@M$6    ;葸;H@HH@@%   =      k;H@HHhX   HHH;I6;H@Jl(AD$%A   t<Et7AL$   Mt$LeH@HH@H Hx fD  ;ɷLLHH5 Lzf.     AVAUIATUSHR$ ;胷;H(y;HPxHJHHxLc2cH@JH)HE  ;EfIc=;L,    H@L$&HL[t;H@HH@xtVH=_ 1萼;;I߶I8  H@L$;ɶ;Hh辶LH([]A\A]A^    ;衶;H@HH@@%   =   td;H@HL`l   HLH$1H芺;I@LH;I+H@NfH@HH@H Hx H5 L    AWAVAUIATUSHH$ ;͵;L õ;HPxHJHHxLc2譵H@JI)IA  ;An艵;H@@#   tHLIċ;HcL,    W;H@L4HHL}t;2H@HH@x   H=Ŗ 1论;;II8  H@L$;;HhܴLH(H[]A\A]A^A_    軴;L`谴H@H@M$6    ;葴;H@HH@@%   =      k;H@HHhX   HHH@;Hc6AT$;H@Nt(A   tCEt>AL$   Il$Mf    H@HH@H Hx fD  ;HLHH5} LrfAWAVIAUATUSHHL$ ;};L(s;HPxHJHHx*^HcH@HI)IAH  ;DeMc4N,    ;H@J@%   =      
;H@N4   1LHiIƋ;HcٲH@H,L}AG%   =      IH@ @   HQHٳ;I菲Hg;H}LLHH,;eH@J,;V;HhKIL(H[]A\A]A^A_fD  ;)   LHb@ H@JLpH5 Lff.     AWAVIAUATUSHH$ ;轱;L(賱;HPxHJHHx*螱HcH@HI)IA  ;DeMctN,    ;H@J@%   =   7  J;H@N4;   1LHH$;DuMc;H@J@%   =     ;H@N4   LHFD$;DuMcİH@J@   /  ;訰H@J@%   =     ;膰;H@N4w   1LHIƋ;D}McTH@J@   w  ;8H@J@%   =   %  ;;H@N<   1LHuIǋ;HcH@H@      ;ɯH@H@%   =     ;觯;H@H,蘯   HH|$LL;ImHE;H[H$LHH	;BH@J,;3;Hh(IL(H[]A\A]A^A_ ;	H@Hx';1H@H@% =
  MfD  ;H@Jxp;訮H@J@% =
  NE1D  ;yH@Jx;`H@J@% =
  E1D  3H@JH @ D$J@ H@JH@H$fD  ;H@JLx;٭H@JLpf     ;蹭H@HH H  H5 Lg    AWAVIAUATUSHH<$ ;m;L(c;HPxHJHHx*NHcH@HI)IA  ;DeMc$J4    ;H@H4$J@%   =   S  ;H@N,   1LHUHD$;DmMc¬U;H@HcL4譬H@J@     ;葬H@J@%   =   &  ;o;H@N,`   1LHIǋ;DmMc=H@J@     ;!H@J@%   =     ;;H@N,   1LH^Iŋ;HcΫH@H@      ;貫H@H@%   =     ;萫;H@H,聫   HHAVM            I~LL;I5H;H#HT$LHHе;	H@J,;;HhH,$H(H[]A\A]A^A_f     ;ɪH@Hx;谪H@H@% =
  1AVM$fD      H" LE      ;V   1LHH@ ;1H@Jx;H@J@% =
  E1D  ;H@Jx?;E1ͩH@J@% =
  gD  裩H@JH@HD$D  ;聩H@HH h fD  ;aH@JLhu;IH@JLxH5Y Lf     AWAVIAUATUSHH$ ;;L(;HPxHJHHx*ިHcH@HI)IA  ;DeMc质J4    ;H@H4$J@%   =     膨;H@N,w   1LHHD$;DuMcRU;H@HcL,=H@J@   H  ;!H@J@%   =     ;;H@N4   1LH^IƋ;D}McͧH@J@     ;豧H@J@%   =     ;菧;H@N<耧   1LHIǋ;Hc^H@H@      ;BH@H@%   =     ; ;H@H,   HHqAMtAEH5$ MLLH=$ x;IΦH覵;H輦HT$LHHi;袦H@J,;蓦;Hh舦H,$H(H[]A\A]A^A_f;iH@Hx;PE1H@H@% =
  4D  ;!H@JxW;H@J@% =
  5E1zD  ;٥H@Jx;H@J@% =
  }E1D  蓥H@JH@HD$D  ;qH@JLx;YH@JLpm     ;9H@HH DH 'H5n LfD  AWAVIAUATUSHH$ ;;L(;HPxHJHHx*ΤHcH@HI)IA  ;DeMc褤N,    ;H@J@%   =     z;H@N4k   1LHٿHD$;DuMcF;H@J@%   =   	  $;H@N4   1LH胿Iǋ;DuMcH@J@   u  ;֣H@J@%   =     ;责;H@N4襣   1LHIƋ;Hc胣H@H@      ;gH@H@%   =     ;E;H@H,6   HH薺LL艳;IH;HHT$LHH読;H@J,;Ԣ;HhɢIL(H[]A\A]A^A_@ ;詢H@Hx);萢1H@H@% =
  O fD  ;aH@Jxr;HH@J@% =
  PE1D  H@JLx
f.     H@JH@HD$D  ;١H@JLp8     ;蹡H@HH P H5 Lg    AVAUIATUH-C$ S} r} Hg} HPxHJHHxLc2PH@JH)HuRǵH$ EfH$ H5^$ H=$ Mcϣ} } HXJTH[]A\A]A^H5x L諸ff.     AVAUIATUH-$ S} 負} H觠} HPxHJHHxLc2萠H@JH)Hu6解Ef} Mcc} HXWJTH[]A\A]A^H5 L    AWAVIAUATUSHH-ܿ$ } } L } HPxHJHHxHcH@HI)IA  } DkHcMc躟} N<    H@L$袟} H@J蒟HHǳ`  } wH@JH@xB  } Y   H@J<HH9  LHPIHtH    H$ L} E1H[`L8  HuV    LPt$HHt*H{HuH{ tL,uH{1IMtH$ L} 葞LH6} H{H@J} k} HX_IL8H[]A\A]A^A_f.     } 8H[`L8  HPzH=  1ѲH5 LҵH= 1贲@ AVAUIATUSH$ ;ӝ;H(ɝ;HPxHJHHxLc2賝H@JH)HO  ;EfIc荝;L$    H@L,vHL諱	  ;\H@HH@x   ;?   H@H<ݫH   PJv	   HxHH   讨;IHt~1H襮;IۜLH LH膧;I輜LHa;I觜H@L,;蘜;Hh荜IL []A\A]A^fD  ;q;IgI8  H@H= 1H5 LH=v AWAVIAUATUSHH-ܻ$ } } L } HPxHJHHxHcLH@HH)HH4  } DkIMc蹛} H@J詛   HLH
  xt} 腛L H[]A\A]A^A_ HX`HtL5%     H IHte} @1H} I+LLLHڥ} IH@ L)H~K} M|$LH蛠ID$MHHJH{ tH{ i    } 谚LL   HmIH51 LYH=^ =ff.     fAVAUIATUSH"$ ;S;H(I;HPxHJHHxLc23H@JH)H  ;EfIc;L,    H@L$HL+   ;ܙH@HH@x   ;这   H@H<]IH   H虰HtTI4$H訳;I~LH#;IiH@L$;Z;HhOLH([]A\A]A^Ë;9;I/I8  H@H=+} 1ԭH=| 1ƭH5 Lǰ    AVAUIATUSH$ ;Ә;H(ɘ;HPxHJHHxLc2賘H@JH)H   ;EfMc荘N,    H@JHhE%   =   uzHE H@ H   H@`;Hx t|HhCHHHŋ;.HHӝ;HH@J,;
;HhLH([]A\A]A^Ë;   HHIr@ ˗H8  H5P L胯H=S g    AVAUIATUSHR$ ;胗;H(y;HPxHJHHxLc2cH@JH)H   ;EfMc=N,    H@JHhE%   =   uzHE H@ H   H@`;HhHtzHH躞Hŋ;HH腜;H˖H@J,;輖;Hh豖LH([]A\A]A^f;虖   HHr@ {H8  H5  L3H=Q     AVAUIATUSH$ ;3;H();HPxHJHHxLc2H@JH)H   ;EfMcN,    H@JHhE%   =   uzHE H@ H   H@`;H(Ht{覕HHkHŋ;葕HH6;H|H@J,;m;HhbLH([]A\A]A^ ;I   HH詬r@ +H8  H5 LH=tP ǩ    AWAVAUIATUSHH$ ;ݔ;H(Ӕ;HPxHJHHxLc2轔H@JH)H   ;EfMc藔L5 $ N<    M.MtXH=$  tv;oLH;HZH@J,;K;Hh@LH(H[]A\A]A^A_ H@;J,HHޛH=N$  Iu[H=$ H5$ mH5 L褫@ ATI`  UH-V$ SU HHtrI$H{HLHHH)I$X  H)΁`  HX  H    ID$P    U HC`Ht"IT$`o oJHID$`H@    H[]A\     AWAVAUIATUSHHܲ$ ;;H(;HPxHJHHxD:IcH@HH)H  ;EgMcŒN,    ;H@J@%   =     蛒;H@N4茒   1LHIƋ;p?  L8  1詞   H@P    H质HE`HE  AG;u,<t(% =
  tHU`H8  H)     HU`LHHT$跙HT$HHE`H$ H5 HH@    HE`H@    HE`H@    %;螑1HT;I芑HLLH9;HoHH;HZH@J,;K;Hh@IL(H[]A\A]A^A_ ;AMcH@N<D  H@JLp{H=Ku 覥H5 L觨    AVAUIATUSH$ ;賐;L 詐;HPxHJHHxLc2蓐H@JI)IA4  ;AnHcl;L,    H@L$UHL芤t;?H@HH@xtUH=t 1迕;;II8  H@L$;;HhLH([]A\A]A^fD  ;я;H@HH@@%   =   tT诏;H@HHh蜏   HHHԥ;};HhrJT-H[]A\A]A^Ð[H@HH@H Hx H5 L    AVAUIATUSH$ ;;L 	;HPxHJHHxLc2H@JI)IA4  ;AnHc̎;L,    H@L$赎HLt;蟎H@HH@xtUH=^s 1;x;InI8  H@L$;X;HhMLH([]A\A]A^fD  ;1;H@HH@@%   =   tT;H@HHh   HH\Hԕ;ݍ;HhҍJT-H[]A\A]A^Ð軍H@HH@H Hx H54 Lg    AWAVIAUATUSHH<$ ;m;L c;HPxHJHHx*NHcH@HI)IA  ;DmMcHc;N$    H@N,H@L4ImE%   =   8  HE Lh In;E%   =      HE Lp 躌;H@@#   襌H}HA   M9tIvI}E1_   ;p;H@Nl E%AQ      E   M   L}Im;%;HhIL H[]A\A]A^A_D  ;HhH@H@Hl DfD  Ӌ   HH3;If     ;詋   HH	IIvI}E1`AD  ;iLHH+&H5G L    AVAUIATUSH$ ;#;H(;HPxHJHHxLc2H@JH)H   ;EfMc݊N4    H@JHhE%   =      HE Lh I}%H5 HFIuH:1H;HvHH;HaH@J,;R;HhGLH([]A\A]A^     ;)   HH艡IcH5 LҡfAVAUIATUSH$ ;;H(ى;HPxHJHHxLc2ÉH@JH)H   ;EfMc蝉N,    H@JHhE%   =   u:HE H@ HuI;f;Hh[JT-H[]A\A]A^f.     ;9   HH虠HtḤH5 L۠ff.     AWAVIAUATUSHH$ ;݈;L ӈ;HPxHJHHxD*轈IcH@HI)IAD$  ;AmHc菈L<    ;H@H@%   =   z  e;H@L4V   1LHģH$;9AU;H@HcL4A   AH@McN,;1LHD$蔇IH  L1~L1HI.IH   ;軇1Hq;HD$襇H$Ht$LHQIH$ LMtH~$ L;jLH;IUH@L$;F;Hh;IL8H[]A\A]A^A_fD  L8      Lt$I8  i    H@HH@H$fD  ;Ɇ;I迆I8  H@^H5k LpAWAVAUIATUSHHL$ ;};H(s;HPxHJHHxLc2]H@JH)H_  ;EfMc7   N4    H@J<͔;I;H@@#   H֔HM   Iu(H   H~@H   Lh;Lc辅;H@Nl0E%A蟅      E   M   LeIm;s;HhhIL0H[]A\A]A^A_ K;Hh@H@H@Hl ;fD  ;!;HH8  H@J,fD  ;LHH軟hH5t L觜    AWAVAUIATUSHH|$ ;譄;L 裄;HPxHJHHx*莄HcH@HI)IA  ;D}gU;H@HcHcL$L;H@L4=;H@@#  (H Iŋ;IcL<    ;H@H4Ht$Ht$H*c  ;ۃH@HH@xF  ;较   H@H<\HH/  LH资LHI规IMtLWuHt$ LE1M   L3  HL$ L1L襄      MtH$$ L;;H@Nd8AE%A   C  E:  AM   ImMl$;;Hh跂IL8H[]A\A]A^A_f蛂;Hh萂H@H@Ll afD  1Lރ9H}@1H訜IH  Hm`Hu    fD  L蠃t%Hm HtKH}HuH} tL{uH} u	M   H}Ht	H$ Lu@ MtMHԢ$ LfLL%      fD  ;虁HLH[1WH=g 11H=f 1#H5e L$HU$ HD$LHD$IMtH7$ LIvH=g 1ؕMtH$ LH=(g 1蹕H}@LH:HuHm`H1AWAVIAUATUSH(H|$ ;譀;H(裀;HPxHJHHxD"荀IcH@HH)HE  ;El$cIcՋ;H@H    HL$L,DAT$   H@HcLL4׎HLI9;I;H@@#   HҎ;Iǃ   D$   H8  M[  HL܀HH葈uH$ H1Lw/  HL	H;  T$  I}@HL赙H\  HxLHD$A   %HT$  HL=U       ;Lx;H@H@M<ǃ~AT$D$   H@HcHЃ;HL$AMc~HL$;H@HL$J@%   =     ~;H@J,~   HHHL$D$    Ha$ LE1HHI}@1L臘HH   HxH   HD$HT$   E1D$tKH@HLLA   <H   HtHϞ$ HMtH$ L;}Ht$;H@Hl0AG%A}      E   AO   MgL};X};HhM}Hl$H(H([]A\A]A^A_fD  L$E1_1LHT$A   HT$fHLLA   LHHE1     |HL$H@JH @ D$    ;|LLHc+fD  HLLڊHH6H=A 1H5b Lff.     @ AWAVIAUATUSHH$ ;|;L |;HPxHJHHxD*{IcH@HI)IAD$  ;AmHc{;L<    H@L4{HL~  ;{H@HH@xa  ;{   H@H<IHY  ;A  R{AH@McJ<L[|IH   H   I~@LL`LIH$ M   I}o1HI"LIHݛ$ ;zLHq;IzH@L$;z;HhzIL8H[]A\A]A^A_     H$ LI~@1L趔IMb;Sz;IIzI8  H@@ 3zH8  H=a 1َH55 LڑH=` 1輎ff.     AWAVIAUATUSHH$ ;y;H(y;HPxHJHHxD"yIcH@HH)HHl$  ;El$Mcyy;J    H@H$J,^yAT$   H@HcHL4HLHSz;I)y;H@@#I  yH|$;IU  xL8  H  MtL躁u
1H܊H}( a  LHyHu(H}@HIIH  HxLkx   1I} tLH   H-k$ HT$LU LU ;KxH$;H@HlAF%A'xHT$      E   AN   IVLu;w;HhwH,$H(H[]A\A]A^A_@ w;Lpw|$;H@H@M4wAH@McN$fD  Hu(H}@LȇIH    ;Yw;HOwH8  H@J,? ;HT$,wHT$LHH= 1ɋH5J^ Lʎf.     AWAVIAUATUSHH$ ;v;L(v;HPxHJHHx*vHcH@HI)IA  ;DeHcMc~v;N4    H@L,gv;H@J,XvHH荊E  ;>vH@JH@x(  ;!v   H@J<迄HH  LHwIH|   H~~pH}@HL!L=Җ$ LHAHtLH}H   *1HHyHIA;uLH2{;HxuH@f;iu;H_uH8  H@J,;Iu;Hh>uLH(H[]A\A]A^A_f     ;u1H5g H踋IlH=\ 1貉H=k\ 1褉H5 L襌D  AWAVIAUATUSHH|$ ;t;H(t;HPxHJHHxD*tIcH@HH)HE5  ;EeMcatJ       H@HL$J<;Iƃ  /tL8    躉   H5Y HHIFHHt4HxHt+|IVHHHr躎   H5_ H覎I~|IvH菎   H5 H{LHЈH   H5 \H~d  H蔈IHP  ;QsH8  I9t9Mt4AG         <    
     L1CwIH~;rLHx;HrH@J,;r;HhrHl$H(H[]A\A]A^A_ rAUH@HcL<Ћ;AMcr;H@J@%   =      dr;H@J,Ur   HH赉!tcIH"H@H   ILH03tI H};q;HqH8  H@    tCt
IHz  uIff.@(zD  qwfD  ;q1LHlsgN    HRIG801@D  ;Aq   H5SY Lff.     AWAVIAUATUSHH̐$ ;p;H(p;HPxHJHHxD*pIcH@HH)HEM  ;EeMcp   N<    H@J<G;Iƃa  pAH@McN,LHH袅H{   HzHHD$   ;5pHL$H8  I9t-Mt(AE      u|<tx 
  th1H.tIHz;oLHu;HoH@J,;o;HhoIL8H[]A\A]A^A_     t{IE HtH@H   IHH0qIsfD  H`z;Io;H?oH8  H@l    #oL8      t;tIU Hz  uIE ff.@(k`@ ;HL$n1LHpHL$1D  HIE80D  ;yn   H5V L3 AVIAUATUSH$ ;Cn;L 9n;HPxHJHHx*$nHcH@HI)IA   ;DmMcmU;H@HcHcN4    L$m1H@LH,em1IHXmMtkHL1v1H@@    H贇;HmHH/s;HumH@J,;fm;Hh[mLH([]A\A]A^@ ;Am;H7mH8  H@H5s Lff.     AVAUIATUSH$ ;l;H(l;HPxHJHHxLc2lH@JH)Huh1Ef1McHN,    迆;HlHH:r;HlH@J,;ql;HhflLH([]A\A]A^H5 L     AVAUIATUSH$ ;#l;H(l;HPxHJHHxLc2lH@JH)H   ;EfIck;L$    H@L,kHL   ;kH@HH@xu|;k   H@H<1zHt{L(HHL膅;I\kLHq;IGkH@L,;8k;Hh-kLH([]A\A]A^H=S 1H5 LтH=rS D  AWAVIAUATUSHH$ ;j;L j;HPxHJHHx*jHcH@HI)IA   ;DmHcMc~j1N<    H@H<jHH<sH1pHIHK$ Mtt1rLH8ILL<;HjHHo;HiH@J,;i;HhiLH(H[]A\A]A^A_fD  ;i;HiH8  H@H5 Lkff.     AWAVIAUATUSHH<$ ;mi;L(ci;HPxHJHHx*NiHcH@HI)IA  ;DeHcMci;N<    H@L,i;H@J,hHH-}*  ;hH@JH@x  ;h   H@J<_wHH  LHiIH   LdqHLLIHr$ M   HpIn@LH8I5}LLZ;H0hHHm;HhH@J,;h;HhhIL8H[]A\A]A^A_@ 1pM;g;HgH8  H@H=Q 1m|H5  LnH=P 1P|AVIAUATUSHB$ ;sg;L ig;HPxHJHHx*TgHcH@HI)IA   ;DmHcMc$g1N4    H@H<fHIwLHH$ Htn1oHH8I{LH;HfHHil;HfH@J,;f;HhfLH([]A\A]A^fD  ;yf;HofH8  H@H5 L#~ AWAVIAUATUSHH$ ;-f;L #f;HPxHJHHxD*fIcH@HI)IAD$g  ;AmHce;L<    H@L4eHLy  ;eH@HH@x  ;e   H@H</tIH  ;A/  beAH@McN$L諀IHG  Mt)AD$    z  u}<ty 
  ti1LGiIH$ L;dLHj;IdH@L$;d;HhdIL8H[]A\A]A^A_D  t3I$HtH@H   LLfIuf     tKtI$Hz  uAI$ff.@(z, 3dL8      ;d1LHes    ;c;IcI8  H@    HID$80-@ ;c   H=M 1TxH=MM 1FxH5K LG{    AWAVIAUATUSHH$ ;Mc;L(Cc;HPxHJHHx*.cHcH@HI)IA  ;DmDeMc c;H@J@%   =     b;H@N,b   LH/zAŋ;Hcb;H@H@%   =   R  b;H@H,~b   HHyŋ;McN4    Zb;H@N<KbHLv1  ;1bH@JH@x  ;b   H@J<pH  E      H@}Ht{DHc1HHfHIH$ ;aLHPg;HaH@J,;a;Hh|aIL0H[]A\A]A^A_    ;Ya;HOaH8  H@f;aH@HH h      aH@JH Dh KH=K 1uH5z LxH=#K uff.      AWAVIAUATUSHH|$ ;`;L(`;HPxHJHHx*`HcH@HI)IAL  ;DmDeMc``;H@J@%   =     >`;H@N,/`   LHwAŋ;DuMc`;H@J@%   =     _;H@N4_   LH=w$;McHcN<    _;H@H,_;H@N4_HLsM  ;z_H@JH@x0  ;]_   H@J<mIH(  Ex)Hp@HtHvpH^HHtHgq;
_;Hh^JT=HH[]A\A]A^A_     ^H@JH @ $D  ^H@JH Dh     LyHHD$koHL$H@ƅ@tA9|L%q$ HA$LD  D4$ED9\E   HD1H$b`HHmH$ILLH$yL%$ LA$H$HA$fD  HHL$nHL$D)E$   HD1_HHgmHL$Iŋ$HDH$_LHI?mLHIyL%~$ LA$LA$H$dHH$sH$I+HHL$sHL$IH==H 1qH5 LtH=G 1qf     AWAVIAUATUSHH|$ ;\;L(\;HPxHJHHx*\HcH@HI)IA  ;DmDeMc\;H@J@%   =     n\;H@N,_\   LHsAŋ;Hc?\;H@H@%   =   2  \;H@H,\   HHnsŋ;McN4    [;H@N<[HLp  ;[H@JH@x  ;[   H@J<BjIHq  ~Ey-;v[;Hhk[JT5HH[]A\A]A^A_@ HvIHlMtA9}DEuo9   H-|$ E1LLvLU z    ZH@HH h      ZH@JH Dh k    D1LL$\L$I9H-{$ {     )L\IMtrLHjH-`{$ LIU =f.     )Lb\H-3{$ IH=E 1nH=fE 1nH5 LqI\AWAVIAUATUSHHy$ ;Y;L(Y;HPxHJHHx*YHcH@HI)IA  ;DmDeMcY;H@J@%   =     ^Y;H@N,OY   LHpAŋ;McHcN<    $Y;H@L4Y;H@J,YHH;m  ;XH@JH@x  ;X   H@J<mgHH  Ex)Hp@HtHvpL7XIHtHgaS;|X;HhqXJT=HH[]A\A]A^A_f.     KXH@JH Dh     HsIHtH`$HLsH-
y$ LU t    LhA9~+LLgHHIZsH-x$ LU  LhD)EPDLYILnMtLH0gHHH$sH$H-nx$ HU LU D1LD$wYL$DLH$bYL$IMtLLfH=2C 1kH=B 1kH5 Lnff.      AVIAUATUSHv$ ;V;L(V;HPxHJHHx*VHcH@HI)IA   ;DeHcMctV;N,    H@L4]V;H@J,NVHHj   ;4VH@JH@xui;V   H@J<dHHteLHWHHIxqHv$ L;U;HhUJT-H[]A\A]A^H=RB 1kjH5q LlmH=A 1Njff.      AVIAUATUSH2u$ ;cU;L(YU;HPxHJHHx*DUHcH@HI)IA   ;DeHcMcU;N,    H@H,T;H@N4THL#i   ;TH@JH@x   ;T   H@J<UcIHt~Hp@HtHvpH(THHt!HX]LHgHlu$ H;XT;HhMTJT-H[]A\A]A^H=]A 1hH5 LkH= A 1hAVIAUATUSHs$ ;S;L S;HPxHJHHx*SHcH@HI)IA   ;DmHcMcS1N4    H@H<-SHIbLHH}t$ Htn1\HH8IIhLHnm;HDSHHX;H/SH@J,; S;HhSLH([]A\A]A^fD  ;R;HRH8  H@H5F Lj AWAVIAUATUSH8H|r$ dH%(   HD$(1;R;L(R;HPxHJHHxD"}RIcH@HI)IA  ;Al$HcRRAT$;AH@HcMcL,4R;H@N$HD$     R;H    H@HL$L4 RHL5fL  ;QH@HH@x/  ;Q   H@H<g`IH  LHRIHtHpZ  LLRHD$H   L|$LBZ  L-[r$ LAU I~@1L1UILAU AG   Mw(IF@IG@I~ C  IF Lx0IG8M~ I6HtHFHtH0Lk;IPLHV;IPH@L$;P;LxPL|$L8HD$(dH3%(     H8[]A\A]A^A_ L-q$ (@ Hqq$ L;]P;ISPI8  H@ Ht$ LRI~@HT$LIHD$j`MLI~@IDH1IoTIMt7L-p$ H|$AU H|$ AU H|$AU M~M~  Ht$HT$ L^LHaH=J= 1SdH=< 1EdaH5R LAgAWAVIAUATUSHHo$ ;MO;L(CO;HPxHJHHx*.OHcH@HI)IA  ;DeHcMcN;N<    H@H,N;H@N,NHLc#  ;NH@JH@x  ;N   H@J<?]IH	  HHOHH   HDW   11LHRHIHHo$ MtyLVLH8HcHL8h;HNHHS;HMH@J,;M;HhMIL8H[]A\A]A^A_f.     ;M;HMH8  H@H=; 1TbHn$ HH= 1:bH=s; 1,bH5[ L-eff.     fAWAVIAUATUSHHl$ ;-M;L #M;HPxHJHHxD*MIcH@HI)IAD$1  ;AmHcLAU;L<    H@HcHHD$L;H@L4LHL`  ;LH@HH@x  ;vL   H@H<[IH  ;A   GLAH@McN,;1LH|$LDMHITumHm$ L;L;IKI8  H@L$;K;HhKIL8H[]A\A]A^A_fKL8  w    LLLHH   HiTtuI~@H\L-zl$ HHD$AU LD$L1LLQLD$MtLAU LAU ;2K;Hh'KJT=HH[]A\A]A^A_L-l$ HAU 1L1LSQ뱐1L1LAQL-k$ H=9 1_H=9 1|_H5M9 L}bff.     fAVIAUATUSHRj$ ;J;L(yJ;HPxHJHHx*dJHcH@HI)IAH  ;DeHcMc4J;N4    H@H,J;H@N,JHLC^   ;IH@JH@x   ;I   H@J<uXIH   HHJHHtH~RuRHj$ H;I;H}IH8  H@J,;gI;Hh\IIL0[]A\A]A^D  HL}SH>j$ H;*I;HhIJT5H[]A\A]A^H=8 1]H5 L`H=Z8 1] AVIAUATUSHh$ ;H;L(H;HPxHJHHx*HHcH@HI)IA  ;DeHcMctH   N,    H@H<
W;HPH;H@N4AHHLv\  ;'HH@JH@x   ;
H   H@J<VH  H   }uH;E(tJ;G;HGH8  H@J,;G;HhGIL([]A\A]A^f     HxHH1aLpHAF%   =   u7IHx 1M;RGHHL;H=GH@v@ ;)G   LH^HH=U7 1[H5 L^H= 1[H=6 [ff.     fAWAVAUIATUSHH|f$ ;F;L0F;HPxHJHHx*FHcH@HI)LHR  ;DeMcbF;N4    H@N,KFHLZ  ;1FH@JH@x  ;F   H@J<TIH  ;HcE;H@L<EHLZq  ;EH@HH@xT  ;E   H@H<ATHHK  Hw'   H  [   "  l  U  H>FHE HLHD$*ZIH  H9tHD$H     Iu HtHFHtH0L _HM9t(M} LhAE%   =   u`IE Hx L K;DHHnJ;HDH@J,;D;HhDIL0H[]A\A]A^A_D  ;yD   LH[HH=55 1YH=5 1YH=4 1XH=S5 1XH=M6 1XH5R L[H=6 1XH=5 1XH=5 1XD  AWAVAUIATUSHHc$ ;C;L0C;HPxHJHHx*CHcH@HI)LH6  ;DeMcrC;N4    H@N,[CHLW  ;ACH@JH@x  ;$C   H@J<QIH  ;HcB;H@L<BHLWU  ;BH@HH@x8  ;B   H@H<QQHH=  @	  N        HLYIH   LJHIHd\I} LH%WL}AG%   =   uaIHx LbH;BHHG;HAH@J,;A;HhAIL0H[]A\A]A^A_    ;A   LHYH@ ;A;HAH8  H@H=4 14VH=4 1&VH= 1VH=94 1
VH5 LYH=3 1UH= 1Uff.     @ AWAVAUIATUSHH`$ ;@;L @;HPxHJHHxD2@IcH@HI)IAD$  ;AnHc@;H    H@HL$L,@HLT  ;i@H@HH@x  ;L@   H@H<NIH  ;EnMc @;H@J4H4$@H4$HAT  ;?H@JH@xl  ;?   H@J<sNIHU  A   AE	c  L     1LL VIH   LHLH8INTLLsY;II?LHD;I4?H@L$;%?;Hh?Hl$H(H[]A\A]A^A_ ;AMc>;H@J@%   =   tQ>;H@N$>   LH%V;>;I>I8  H@_    >H=/2 10SH=2 1"SH=c2 1SH=1 1SH=ߝ 1RH= 1RH5 LUff.     AVIAUATUSH]$ ;=;L(=;HPxHJHHx*=HcH@HI)IAl  ;DeHcMc=;N,    H@L4=;H@J,~=HHQ   ;d=H@JH@x   ;G=   H@J<KHH      LKIH   H;EXt<H@@HtaH9t      LHSL;ePtYH}XHtH? t*LeX;<;Hh<JT-H[]A\A]A^ RϐHLHL;ePu    Lp=HEP    H=O1 1(QH=% 1QH=0 1QH5 LTff.     fAWAVIAUATUSHH[$ ;<;L(<;HPxHJHHx*;HcH@HI)IA  ;DeMc;U;H@HcHcL,;;H@L4;;J    H@H$J,;HHO  ;e;H@JH@xg  ;H;   H@J<IHHP  LH?<LHI1<IH   M   LC1҅   LHOFH[$ LIHT$HT$LMtXAuQHu HtHVHtH2LT;H:HH3@;Hy:H@+ Hq[$ L;]:;HS:H8  H@J,;=:;Lx2:L<$L8H[]A\A]A^A_@ 1HH{EH[$ LI6    LH=a/ 1NH=/ 1NH5 LQff.     fAWAVIAUATUSHH\Y$ ;9;L(9;HPxHJHHxD"m9IcH@HI)IA  ;Al$E9AT$;AH@HcMcHHD$"9;H@N49;H@@#  8HGIċ;HcL<    8;H@L,8HLMI  ;8H@HH@x,  ;8   H@H<9GIH  LH9H|$LI9M  H   HHD$#AHL$   H-7Y$ HU 1LLCHs  xLAU E퐋;7;H@Jl8AD$%A7   ;  E2  AL$   Ml$Le;7;Hh7IL8H[]A\A]A^A_f     {7;L`p7H@H@M$l    H-YX$ #@ HLLHL$BHL$Ht3H-,X$ xHL$LAU HL$EHU D  H-W$ HL$LE1U HL$@ HtHHW$ ;6;I6I8  H@L$fLE1U f;6LLHKQH=, 1(KH=9, 1KH5% LNff.     AWAVIAUATUSHHU$ ;6;L(6;HPxHJHHx*5HcH@HI)IA  ;DeHcMc5   H@L4LiD;H5;J    H@HL$N,5HLIL  ;y5H@JH@x/  ;\5   H@J<CIH5  H  }   Hx@H9}@t      HKHEHHUH   HpLb@IM   Ac  HLII}@LMH}  t0InMm E%   =      HE Hx L:MtA   ;{4;Hq4H8  H@J,;[4;LxP4L|$L8H[]A\A]A^A_f     1L?IM4HLHI}@LLH}  ;q ;3   HHIKH71LMLhHAE%   =   u_IE Hx 19;3HH>9;H3H@ I9HLLH}  @ ;I3   LHJHH=) 1GH56 LJH=7 1GH=j) 1Gff.     AWAVIAUATUSHHR$ ;2;L(2;HPxHJHHx*2HcH@HI)IA  ;DeMc2U;H@HcHcN<    L,a2;H@L4R2;H@J,C2HHxFm  ;)2H@JH@xP  ;2   H@J<@HHH  LH3LHI2IH   MtL:uX1LH=HtxtPH-R$ LU LU ;1;Hh{1JT=HH[]A\A]A^A_@ LLH<HHD$32HD$H8Htf17D  H)R$ L;1;H1H8  H@J,;0;Hh0IL8H[]A\A]A^A_D  H3#H=( 1uEH5 LvHH=' 1XE     AWAVAUATIUSH(H<P$ ;m0;L(c0;HPxHJHHxD2M0IcH@HI)IAE  ;AnHc 0AV;H@HcHHD$0;AVH@HcL</;H4    H@Ht$L$/HLD4  ;/H@HH@x  ;/   H@H<:>IH   D$    A   LL0H|$LIq0M8  H_  HHD$8HL$e  LLHL$/L=P$ LIAHL$HAM   D$tiLL0ILA;.LHs4;I.H@L$;.;Hh.Hl$H(H([]A\A]A^A_     1L2I떐;AMcb.;H@J@%   =      @.;H@N,1.   LHED$     HHO$ ;-;I-I8  H@. LLU.L=N$ LIAHLLR8D  -H@JH @ D$ H=% 1>BH=O% 10BH5	% L1EAWAVIAUATUSHHM$ ;=-;L(3-;HPxHJHHx*-HcH@HI)IAo  ;DeHcMc,   H@L4L;;H,;J    H@HL$N,,HL@  ;,H@JH@x  ;|,   H@J<;IH  H  }!  Hx@H9}@t      HBHuL3IH   H9   HHEH}  t4InMm E%   =   !  HE Hx L!2M   1LELhHAE%   =      IE Hx 11;+HH21;Hx+H@J,;i+;Hh^+L|$IL8H[]A\A]A^A_@ HL%@H}  .;#+;H+H8  H@J,;+;Lx*L|$L8H[]A\A]A^A_Ð;*   LH9BH&;*   HHBHH=R# 1S?H5 LTBH=m 16?H=" 1(?     AWAVIAUATUSHHJ$ ;=*;L(3*;HPxHJHHx**HcH@HI)IAl  ;DeHcMc);N4    H@L,);H@J,)HH=  ;)H@JH@x   ;)   H@J</8HH   LH*IH   HH1LIHLJ$ MtmHu HtHFHtH0L@C;H)HH.;H)H@J,;(;Hh(IL0H[]A\A]A^A_f;(;H(H8  H@H=! 1d=H=! 1V=H5 LW@    AVIAUATUSH2H$ ;c(;L(Y(;HPxHJHHx*D(HcH@HI)IA&  ;DeHcMc(;N,    H@L4';H@J,'HH#<   ;'H@JH@x   ;'   H@J<U6HH   HL(IHt7HH;/HHtH[(H} Ht:1-H\H$ L;H';Hh='JT-H[]A\A]A^@ H@*H=  1;H=  1;H5 L> AWAVIAUATUSHHF$ ;&;L(&;HPxHJHHx*&HcH@HI)IA  ;DeHc&;H@L4r&;H@@#:  ]&H55Hŋ;McN<    @&;H@N,1&HLf:`  ;&H@JH@xC  ;%   H@J<4IH,  LH&IH   HLz-LIHF$ ;%M;H@AENd8E%Az%      E   M   LmIl$;M%;HhB%IL8H[]A\A]A^A_D  #%;Hh%H@H@Hl fD  ;$;H$H8  H@J,fD  ;$LHH?eH=/ 1p9H= 1b9H5 Lc< AWAVIAUATUSH8H<D$ dH%(   HD$(1;]$;L S$;HPxHJHHxD*=$IcH@HI)IAD$  ;AmHc$;AUH@HcL<HD$     #;H    H@HL$L4#HL	8  ;#H@HH@xx  ;#   H@H<;2IHu  D$    A   LL$IH~  HL:IH   L%@D$ LA$D$uy1L_'ILA$;#LH(;I"H@L$;";Hh"Hl$H(HD$(dH3%(     H8[]A\A]A^A_@ LL$I넋;AMc";H@J@%   =      p";H@N$a"   LH9D$     Ht$ L$H   I~@HT$ LHD$d<HL$HI   L%C$ H|$ I$H   HLA$fD  ;!;I!I8  H@    !H@JH @ D$'@ HB$ LfHPHL,H|$ HL$IL%eB$ HtI$HL$HL$HA$LA$M TH=U 15H5 L8:3H= 15ff.     AWAVAUIATUSHH@$ ; ;H( ;HPxHJHHxD" IcH@HH)HB  ;Et$ AT$;AH@HcMcH,h ;H@N,Y ;H@@#y  D H/Iċ;Mc/ ;J    H@H$N< HLI4  ;H@JH@xx  ;   H@J<{.IHa  HH LLH IHtHv(  H@$ H1Mw  LO(  Hh@$ LE1HD$M~`HD$Mu  H t(M?M   IHuI tH uIHt	H@$ MoMg  A   Ht_H?$ HQ@ ;L`H@H@M$v    HtH?$ HMtH?$ LE1;|H$;H@HlAD$%AW      E   AL$   Ml$Le;(;HhL<$IL8H[]A\A]A^A_@ M~`LMe MhM~`MH>$ H;M~`MHD  ;LLH[8SLL)HuH=- 12H= 12H5X} L5AVIAUATUSH<$ ;#;L ;HPxHJHHx*HcH@HI)IA   ;DmHc;H@H@%   =      ;H@H,   1HH8H1Mc'%H1I"H@@    I<$HHS1LHN$    p6;HFHH!;H1H@J,;";HhLH([]A\A]A^     H@HHhYH5	| L3ff.     AWAVAUIATUSHH|;$ ;;L ;HPxHJHHxLc2H@JI)IAq  ;Ani;H@@#	  TH,*Iċ;HcL,    7;H@L4(HL]/  ;H@HH@x   ;   H@H<)H   H>);HAT$;HcH@Nt(A   tnEtiAL$   Il$Mf;x;HhmLH(H[]A\A]A^A_     K;L`@H@H@M$    ;!HLH4H=j 1.H5u L1H= .     AVAUIATUSHH9$ ;;L ;HPxHJHHxLc2H@JI)IA|  ;An{;H@@#  fH>(Iċ;HcL,    I;H@L4:HLo-  ; H@HH@x   ;   H@H<'H   H(;D$;H@Jl(AD$%AD$   tkEtfAL$ "  I$@(Le;;HhvLH(H[]A\A]A^ [;L`PH@H@M$    ;D$+D$LHH= 1,H5s L/H= ,ff.     @ AWAVIAUATUSHH7$ ;;L ;HPxHJHHxD*IcH@HI)IAD$7  ;AmHco;L<    H@L4XHL+  ;>H@HH@x  ;!   H@H<%IH  ;A  AH@McN$L(IMt)AT$    R  u}tx% =
  tj1LIH7$ L;LH/;IuH@L$;f;Hh[IL8H[]A\A]A^A_fD  t+I$HtH@HvpLL=IxD  tsu>SI$ff.@(z>fD  L8      I$Hx  u HID$80y@ ;1LHtO    ;i   H= 1*H=u 1*H5 L-    AVAUIATUSH4$ ;;H(	;HPxHJHHxLc2H@JH)H  ;Ef;H@@#!  H#Hŋ;1H5t HIHM  @u<t 
  -           IE H  H@H  ;Mc41H5 HsHl4$ ;H;H@NlE%A      E   M   HE   Im;;HhJT H[]A\A]A^    ;HhH@H@Hl fD  t[tIU Hz  !tIE ff.@(	H= 1'fHtIE80@ ;1LHf.     ;   HH-@ ;   H5x L* AWAVIAUATUSH(H\2$ ;;L ;HPxHJHHxD*mIcH@HI)IAD$  ;Am HcD$4;H    H@HL$L4HLM&  ;H@HH@x  ;   H@H< IH  ;A  AUH@HcL4Ћ;AMc;H@J@%   =   x  s;H@N$d   LH(Aŋ;JH5 1HHHtJVA]      HHtH@H  A   jD &IEK  DDL$E1L    Iw@LZDL$DL%IL$MN  ;wMt?H8  I9t4AF         <    
     L1iIL.;LH;IH@L$;;HhHl$H(H([]A\A]A^A_ÐL8  A;E1H5Q 1HHHb.%IIw@E1LL'fS% =
  f<   IHH@H  ILH0?IŁ`   tHHx  H1fA   f.B(DD tktIHz  tIff.@(h\]f.     ;Ht$tHt$1HUDm@ ;Q1LH4	
    L8;!;II8  H@	    H@JH Dh     HHFE180A@ ;Ht$Ht$   HDf     HTIF80MBD  ;i   H= 1"H5j L%H=c 1!@ AVIAUATUSH,$ ;;L(	;HPxHJHHx*HcH@HI)IA   ;DeHcMc;N,    H@L4;H@J,HH tx;H@JH@xu_;o   H@J<HHt[HLjHtHH;3;Hh(JT-H[]A\A]A^H= 1 H5El L#H=
 1 ff.     AVAUIATUSH+$ ;;H(;HPxHJHHxLc2H@JH)H   ;EfIc};L,    H@L$fHL   ;LH@HH@x   ;/   H@H<H   Hx@Hx1HI;LIH+$ ;
LH;I
H@L$;
;Hh
LH([]A\A]A^H=(
 1YH5'f LZ"H=	 >ff.      AWAVAUIATUSHL%*$ A<$K
A<$H?
A<$HPxHJHHxLc2'
H@JH)H  A<$AnHc	A<$H    H@HL$H,	HH?  A<$	H@HH@x   A<$	   H@H<DIH  Hx@M~IH(Mu4ffD  H}    Hu 1LLL$IHt4LI_0 
AGtuI? uLI!Hu@ IF     IF    AE~PA<$A<$HXHL$HTHH[]A\A]A^A_fD  L}L} Io(X    LAEQH= 1AH=J 13H5d L4 @ AVAUIATUSH($ ;C;L 9;HPxHJHHxLc2#H@JI)IA   ;AnHc;L$    H@L,HLtb;H@HH@xuI;   H@H<THtHH;;HhJT%H[]A\A]A^H= 1&H5b L'H= ff.     AWAVAUIATUSHH-&$ } } H} HPxHJHHxLc"HH@JH)HH  } HEt$} H@@"J  HD} Mc} H@N4HL  } sH@JH@x  } U   H@J<IH  @      M~XE1Mt{fD  At^I6HtHFHtH0L } H$H@ H)H   } H4$HKHHL$eHCH\$M0AMuAF   } AtEHH[]A\A]A^A_fkH@Dh"Af     E1} Au?H@ H)H  } 'IcLcH} ILH
} HCLj } HH޹   HHD  Mv`M   $fD  LXIHt\} Hp} H$H@ H)H   } lHSH4$LHT$HHb HCH\$M6AMAtI~ sI~ hҋ} HH޹   HH} HH޹   HH\H= 1H5P_ LH= 1eD  AWAVAUIATUSH8HL#$ ;};H(s;HPxHJHHxD"]IcHH@HH)HH  ;Et$H,AT$;AH@HcMcL,;H@N$;H@@"/  HD$;Mc;H@N<HL  ;H@JH@x  ;   H@J<)IH  LHLLItIH$H  HD$   H1#$ LHD$(H$    E1MtH5sb LE1mAA~D$       MnMu<   fD  IEHHtHpH<$*t;IEHH$t1Mm0M   EtA}tIuLu׋D$t|$t^I6HtHFHtH0Lx;HD$LH@ H)H<  ;5Ht$HMHHL$ HEHl$ Mm0D$Me|$t}Lt$(LAH$HtHA; H(H8[]A\A]A^A_f.      H@@"D$    H!$ D$    HD$(p    ;y H@ H)H   ;Lu^ Hct$H;IG LHHEL3H<$H5` D$H!$ HD$( ;HH   HH;HH   HHSH5` L}H=V 1_H=  1QAVAUIATUH-C$ S} r} Hg} HPxHJHHxLc2PH@JH)H0  } EfMc)} N,    H@JHHF   } H@JH@x   }    H@J<vIH   HXHu   @ H[0HtwHuI6HtHFHtH0H} HlHH} HVH@J} F} HX:IL([]A\A]A^ 1H=m  1H=  1H5Y Lf     AWIAVAUATUSH(H$ ;;H(;HPxIHJHHxD*IcH@HI)IAD$  ;IcEuHH)u;H@@"m  `H8D$;McG;H@N<8HLmd  ;H@JH@xG  ;   H@J<IH0  E1A   E1A   MoM}      fD  |$t^I7HtHFHtH0L;HD$H@ H)H   ;jHt$HMHHL$HEHl$Mm0AMtEtLyMm0Mu|$;   H(H([]A\A]A^A_@ H@@"D$    ;EeMc;H@J@%   =      ;H@N$   LHA;yHH   H6	HfD  SH@ H)H~X;@IcLeH;I'LH ;HELfD  H@JH Dp ;HH   HHH56[ LH= 1sH=L 1eD  AVAUIATUH-S$ S} } Hw} HPxHJHHxLc2`H@JH)H0  } EfMc9} N,    H@J!HHV   } H@JH@x   }    H@J<IH   HX8Hu   @ H[8HtwHuI6HtHFHtH0H} H|HH!} HfH@J} V} HXJIL([]A\A]A^ 1H= 1H=G 1H5T Lf     AVAUIATUH-$ S} } H} HPxHJHHxLc2H@JH)H0  } EfMc} N,    H@JHH   } fH@JH@x   } H   H@J<IH   HX0Hu   @ H[0HtwHguI6HtHFHtH0H} HHH} HH@J} } HXIL([]A\A]A^ 1H= 1FH=G 18H5S L9f     AVIAUATUSHH$ dH%(   HD$1;/;L(%;HPxHJHHx*HcH@HI)IA  ;DeHcMc;N4    H@L,;H@J,HH
M  ;H@JH@x0  ;   H@J<!HH  LHzIH   H&   EPvu>H}H t7HLHHI.H-$ LU H<$U      HLH-$ LU ;;HhJT5HHD$dH3%(   uH[]A\A]A^ÐH$ L;;HH8  H@J,;m;HhbIL0H= 1
H= 1	H5T LZf.     AVAUIATUSH$ ;;H(;HPxHJHHxLc2H@JH)H#  ;EfIc;L,    H@L$HL   ;H@HH@x   ;o   H@H<H   H<
IHtd1HzLIH5$ ;$LH;IH@L$; ;HhLH([]A\A]A^fD  ;;II8  H@H= 1tH= hH56O Lif     AWAVAUIATUSHH<$ ;m;H(c;HPxHJHHxLc2MH@JH)H<  ;EfMc';N4    H@N,1H5S HOHHS  U            % =
     H-	$ H}  tH;;L} L  LHAMeAD$%   =   g  I$Hx *MeAD$%   =     I$Hx H}  t";6;Hm L  $HHAԋ;;Hh	JT5HH[]A\A]A^A_fw  HE HH@H  ;;H(HS
;H
;;HHxLyLxxL;   m  ;vHH+HHHA;^H@ H)H  Lm;H?H(;5   H5Q H	;AH(A   ;L} HH(;;HhPH;hX$  ;Hm;H8  I9;;HH8  H@J,;;HhIL0yf.        urHE ff.@(zo ;1   LHHf     ;	   LHiHHE Hx  z@ HHE80D  ;H@ ;H8  HD  ;y1HH\    ;Q   HH1    ;1HH   HHfD  ;	H	I|H5K LH=K 1ff.     AWAVAUIATUSHH|$ ;;L ;HPxHJHHxLc2H@JI)IAq  ;Ani;H@@#	  TH,Iċ;HcL,    7;H@L4(HL]  ;H@HH@x   ;   H@H<H   H;HAT$;HcH@Nt(A   tnEtiAL$   Il$Mf;x;HhmLH(H[]A\A]A^A_     K;L`@H@H@M$    ;!HLHH= 1H5H LH=      AVIAUATUSH$ ;;L(;HPxHJHHx*HcH@HI)IA  ;DeHcw;H@H@%   =   J  U;H@H,F   1HHIŋ;McN4    ;H@J,HHE   ;H@JH@x   ;   H@J<wHH   Mt_LHHtOPt>uBHu H;HHH(;HnH@-     H@(Hu;P;HFH8  H@J,;0;Hh%IL0[]A\A]A^fD  H@HLhH=k 1H5K LH= 1ff.     @ AWAVAUIATUSHHl
$ ;;L ;HPxHJHHxD2}IcH@HI)IAD$  ;AnHcO;L,    H@L<8HLmM  ;H@HH@x0  ;   H@H<IH(  1AkLsH   1H;ILH[;IH@L$;;HhIL(H[]A\A]A^A_f;EfMcb;H@J@%   =   tYD;H@N$5   LH LHH;;II8  H@TH@JH p H= 1H5F L H=| 1mff.     fAVIAUATUSHR$ ;;L(y;HPxHJHHx*dHcH@HI)IA  ;DeHc7;H@H@%   =      ;H@H,   HHfŋ;McN,    ;H@N4HLt|;H@JH@xuc;   H@J<BHtbH;|;HhqJT-H[]A\A]A^[H@HH h TH= 1H5G LH=| ff.     @ AWAVAUIATUSHH$ ;;L ;HPxHJHHxLc2H@JI)IAi  ;An;H@@#  HlIċ;HcL,    w;H@L4hHL   ;NH@HH@x   ;1   H@H<H   H;HcAT$;H@Nt(A   tiEtdAL$   Il$Mf;;HhLH(H[]A\A]A^A_ ;L`H@H@M$    ;iHLH+ H= 1H5@ LH=% AVAUIATUSH$ ;;H(	;HPxHJHHxLc2H@JH)H-  ;EfIc;L4    H@L$HL   ;H@HH@x   ;   H@H<IH   HIHtiH9I4$LID$P    T;I*LH;IH@L$;;HhLH([]A\A]A^@ ;;II8  H@H= 1|H=5 1nH5<? Loff.     @ AVIAUATUSHB$ ;s;L(i;HPxHJHHx*THcH@HI)IAt  ;DeHcMc$;N4    H@L,;H@J,HH3   ;H@JH@x   ;   H@J<eHH      LLIH   H;EPt6H;h@   H;EXtbHIHt:LHI}  t`LeP;M;HhBJT5H[]A\A]A^ÐH}LHtD  HEX    fD  HfD  L0H=O 1H= 1H=A 1H5tA LH=B 1g    AWAVIAUATUSHHL$ ;};L(s;HPxHJHHx*^HcH@HI)IA  ;DeHcMc.;N<    H@L4;H@J,HH=  ;H@JH@x  ;   H@J<oIH     LVHH
  xZ  L;h@t      HLLmIHtuH8 toLHLHD$HD$LH8'Ht$I<$yH}  uDf;;HhJT=HH[]A\A]A^A_    HLH}  tInMe E%   =   uHE Hx LD  ;   HH	H@ ;;HH8  H@J,;i;Hh^IL8MH=T 1H5$@ LH= 1H= 1f.     AWAVIAUATUSHH# ;;L ;HPxHJHHxD*IcH@HI)IAD$  ;AmHc;AUH@HcL<;H    H@HL$L4mHLh  ;SH@HH@xK  ;6   H@H<IH4  ;A   AH@McN$LLIH   LLLHI8LIH# H# LM   L<Mt$@LH8IyLL;ItLH;I_H@L$;P;HhEHl$H(H[]A\A]A^A_fD  #L8      ;	;II8  H@H= 1H= 1H5_ L    AWAVIAUATUSHHl# ;;L(;HPxHJHHx*~HcH@HI)IAl  ;DeHcMcN1N<    H@H<;H-;H@N,HLS   ;H@JH@x   ;   H@J<IH   H   HHHIH# MtqL9LH8H{HL;HvHH;HaH@J,;R;HhGIL8H[]A\A]A^A_f;);HH8  H@H= 1H=] 1H5; L    AWAVIAUATUSHH# ;;L(;HPxHJHHx*HcH@HI)IA}  ;DeHcMcn;N<    H@L,W;H@J,HHH}"  ;.H@JH@x  ;   H@J<HH   HLIH   HLLIH# M   HQIm@LH8ILL;HHH/;HuH@J,;f;Hh[IL8H[]A\A]A^A_fD  1U;*;H H8  H@H=L 1H5x7 LH= 1     AWAVIAUATUSHH# ;;L(;HPxHJHHx*HcH@HI)IA}  ;DeHcMcn;N<    H@L,W;H@J,HHH}"  ;.H@JH@x  ;   H@J<HH   HLIH   HLqLIH# M   HQIm@LH8ILL;HHH/;HuH@J,;f;Hh[IL8H[]A\A]A^A_fD  1U;*;H H8  H@H= 1H5x5 LH= 1     AWAVIAUATUSH(H# ;;L(;HPxHJHHxD"IcH@HI)IA  ;Al$HcrAT$;H@HcL,[AT$;AH@HcMcL<=;H@JHD$);H    H@HL$L$HLBc  ;H@HH@xF  ;   H@H<tIH/  1LNIH   L18H|$1I)LL1HHD$L=u# LL`@HD$ALL$LALAHD$I4$H\;I2LH;IH@L$;;HhLt$IL0H([]A\A]A^A_f     ;;II8  H@L$;;LpLt$L0H([]A\A]A^A_H= 1IH= 1;H5r5 L<ff.     AWAVIAUATUSH(H# ;=;L(3;HPxHJHHxD"IcH@HI)IA   ;Al$HcAT$;H@HcL,AT$;AH@HcMcL<;H@JHD$;H    H@HL$L$HL  ;sH@HH@xn  ;V   H@H<IHf  1LIH   L1H|$1ILLLHHD$3L=# LHD$ALL$LALAHD$H   I4$H;ILHQ;IH@L$;;Hh}Lt$IL0H([]A\A]A^A_ ;Y;IOI8  H@L$;9;Lp.Lt$L0H([]A\A]A^A_    ;	;II8  H@\H= 1H52 LH= 1@ AWAVIAUATUSH(Hl# ;;L(;HPxHJHHxD"}IcH@HI)IA   ;Al$HcRAT$;H@HcL,;AT$;AH@HcMcL<;H@JHD$	;H    H@HL$L$HL"  ;H@HH@xn  ;   H@H<TIHf  1L.IH   L1H|$1I	LLLHHD$SL=T# LHD$ALL$LALAHD$H   I4$H6;ILH;IH@L$;;HhLt$IL0H([]A\A]A^A_ ;;II8  H@L$;;LpLt$L0H([]A\A]A^A_    ;i;I_I8  H@\H= 1H580 LH= 1@ AVIAUATUSH# ;;H(;HPxHJHHxD"IcH@HH)HE  El$L5/ lLH1HMc;N$    HHH/;HuH@J,;f;Hh[LH([]A\A]A^@ ;Et$Mc9;H@J@%   =      ;H@N4   1LHvIƃ6;AMc;H@J@%   =      ;H@J,   1HHILHMA<$ LHEpfD  [H@JLpWf.     ;H@JL`H5 Lff.      AWAVIAUATUSH8H# dH%(   HD$(1;;L ;HPxHJHHxD*IcH@HI)IAD$'  HD$     AmD$    Hc ; D$s;H    H@HL$L4WHL  ;=H@HH@x  ;    H@H<IH  ;E1A  ;1H5 H&IHtKPA      IE HtH@H  A   D ;|1H5, HIHt{@      d  t7I$HtVH@HH  LxIHt;H1fD  W  ; 1LHu    E1E  D(HT$DL    Ht$ D(MtI~LHW  bL$Ld$ M)  ;Lcl$mLLHoH|$ IHX# ;GLH;I2H@L$;#;HhHl$H(HD$(dH3%(     H8[]A\A]A^A_D  < 
  {    % =
   D        tIE Hx  IU 1fA   f.B(DDf     L( +A;H@McJ@%   =      ;H@N$   HLS;Af     HT$Ht$ LNf     tI$Hz  lI$ff.@(PED  ;i1LHLD ;I;I?I8  H@    #;H@JH Dx D  HtIEE180Aa@ HID$80@ ;   LHD     ;   LHyH= 16H5( L7H= 1@ AVAUIATUSH# ;3;H();HPxHJHHxLc2H@JH)H   ;EfMcN,    H@JHhE%   =   u:HE Hx };;HhJT-H[]A\A]A^f.     ;   HHHH5" L5D  AVAUIATUSH# ;C;L 9;HPxHJHHxLc2#H@JI)IA4  ;AnHc;L,    H@L$HLt;H@HH@xtUH=f 1O;;II8  H@L$;;Hh}LH([]A\A]A^fD  ;a;H@HH@@%   =   tT?;H@HHh,   HHH;;HhJT-H[]A\A]A^ÐH@HH@H Hx H5& L    AWAVAUIATUSHHl# ;;L ;HPxHJHHxLc2}H@JI)IA   ;AnHcVL$    ;H@H@%   =      ,;H@L,   1LHIǿ   ;IH;ILLLH;H@L,;;HhLH(H[]A\A]A^A_ H@HLxzH5! LC AWAVIAUATUSHH# ;M;L C;HPxHJHHx*.HcH@HI)IA/  ;DmHc1H@H<;I;H@@#   HHM   L   LMc;LcU;H@NtAz   tiEtdM   LeIn;V;HhKJT HH[]A\A]A^A_@ +;Hh H@H@Hl FfD  ;LHHH=?# 1H5"# L@ ATIUH-# SH} HE1Hj    A    HH" qZYHtyHHtqC       u<t 
  uJ t#HHt:H@HvQ[L]A\%D  tKu&tHff.@(zu[L]1A\# HHz  u@ HtHC80uϋ} 1HHtD  }    ېAVAUIATUH-c# S} } H} HPxHJHHxLc2pH@JH)Hu1(} EfMcI} HX=JTH[]A\A]A^H5|% Lff.     fAVAUIATUSH# ;;H(;HPxHJHHxLc2ӿH@JH)H   ;Ef豿;H@@#uu蠿HxH;McL(胿HLH;nH@NlE@uWIm;T;HhIJT H[]A\A]A^     +;Hh H@H@Hl yfD  ;HHH5D$ LD  AUIATUSHH# ;;L 跾;HPxHJHHxHc*衾LH@HH)HH   H# ;H8 tfp1H5g H诿;H@@%   =   tRE1H5< H脿;Hh)   HHHQ;
L H[]A\A]@ 1H5 H2H@H Hx H5%# LfD  AWAVAUIATUSHHl# ;蝽;H(蓽;HPxHJHHxLc2}H@JH)H   ;Ef[;H@@#   FHHH# E1H8 t
14Lc;McM;H@NtA   tfEtaM   LmIn;Ӽ;HhȼJT HH[]A\A]A^A_Ð諼;Hh蠼H@H@Hl SfD  ;聼LHHCH5! L2fAVAUIATUH-# S} B} H7} HPxHJHHxLc2 H@JH)Hu@HU# EfH8 t1$} Mc} HXݻJTH[]A\A]A^H5? Lff.     fHtGu<t% =
  tfwAVAUATAUH-B# SH} n} f} L([H} KH} ;} HPxLrLpx'L;     } LH+HHHA} H@ L)H   I]} IٺL(} AteȺ   H5 HD} 謺} H衺H} 薺} HXP芺H;XX<} |[]HA\A]A^@ c   H5 HD  } @HhfD  } (LL   HI$D  }  HIAWAVIAUATUSH(H# dH%(   HD$1;轹;L 賹;HPxHJHHxD*蝹IcH@HI)IA  ;AmHcsL$    ;H@H@%   =     I;H@L4:   1LHIǋ;AMc;H@N,HD$    1H;ILH萾IAE   IU HRH      8  %   =     HT$MmM   L調1  LHIN;LcLl$_LLHaLIHL# AN    ;3LHؽ;IH@L,;;HhIL HD$dH3%(   Z  H([]A\A]A^A_ <  
  ;起;I諷I8  H@fD  ;葷LHT$   HI@ kH@HLx5f.     H5# L$螸H5# LO$    LҽH$H<$   HD$LLl$ILqH<$LLLl$yIH|$LH<$n11111LH=X 1D@ LLAHHD$DHKH|$I^LVH<$11蔷11K1LqMt;Lt$LLHLIH# fD  ;1H5/ H;IƵ;I輵LLHh]LHE )H$H5 LLH= 1.H= 1 H= 1fAWAVIAUATUSH(H# dH%(   HD$1;;L ;HPxHJHHxD*IcH@HI)IA  ;AmHcӴL$    ;H@H@%   =     詴;H@L4蚴   1LHIƋ;AMcw;H@N<HD$    _1H;IKLHH$AGu<t 
  k  IHRHK  %   =      HT$MoM9  AG   MtLAǃ=  t$LIMa  L腼;LcLl$薳LLHLIŁH    H|# ;kLH;IVH@L,;G;Hh<IL HD$dH3%(     H([]A\A]A^A_ ;	HT$   LHtI@ H@HLpMf;ɲH   @8 ;該;I蟲I8  H@=    H59# H<$سH5Q# H<$A   A$  LIM  Ht$L3IHD$LLE1HIxI} IH|$L L11?11H<$1fD  ;蹱1H5 HX;I螱;I蔱LLHh5LHE +f     DIH5 L!|H= 1H= 1H= 1fAWAVIAUATUSHH# ;;L ;HPxHJHHx*ްHcH@HI)IAK  ;DmHc豰1H@L$L?;I蕰1HK;H聰HH&HM   H5# H軱H54# HlLLIH?# 11茱11C1HiM   ;McN4    H־;ILH LH藺;ЯH@N$;;Hh趯LH(H[]A\A]A^A_Ð;McN4    莯;I脯I8  H@H5S L8H=ٿ 1f.     AVIAUATUSH# ;3;L );HPxHJHHx*HcH@HI)IAA  ;DmHc1H@H<x;Hή1H;I躮LH_IH   H5T# HH5m# LHmHIHx# 11ů11|1LM   ;Mc?H;I-LHD
 LHN4    и;	H@N$;;HhLH([]A\A]A^Ë;McN4    έ;IĭI8  H@H5 LxH= 1Zf.     AWAVAUIATUSHH<# ;m;L c;HPxHJHHxLc2MH@JI)IAK  ;An)1H߾;ILH躲;I ;H@@#   HûIŋ;HcL$    ά;H@L<迬HLt;詬H@HH@xtH=0 1);肬;IxI8  H@L,;b;HhWIL H[]A\A]A^A_f;;L`0H@H@M,?    ;;H@HH@@%   =      ;H@HHhث   HH8IH5v# LH5# Lǿ    L8Ńt1111Hc虿1L;h;H@Nt AE%AH   t?Et:AM   ImMnD  H@HH@H Lx > ;HLHH5 Lf.     AWAVAUIATUSHH|# ;譪;L 裪;HPxHJHHxLc2荪H@JI)IAC  ;Ani1H;IULH;I@;H@@#   +HIċ;HcL,    ;H@L<HL4t;H@HH@xtH= 1i;©;I踩I8  H@L$;袩;Hh藩LH(H[]A\A]A^A_f{;L`pH@H@M$?    ;Q;H@HH@@%   =      +;H@HHh   HHxHH5# LVH5# LH11Hc3111L;蹨AT$;H@Nt(A藨   B   Et=AL$   Il$MffD  cH@HH@H Hh F ;AHLHH5 LfAWAVAUIATUSHH# ;;H(;HPxHJHHxLc2ݧH@JH)H&  ;Ef躧1Hp;H覧HIcHL,    @;I膧;H@L$wHL謻t;aH@HH@xt_H=x 1;:;I0I8  H@L$;;HhLH(H[]A\A]A^A_f.     ;;H@HH@@%   =      æ;H@HL`谦   LHIH5N# LH5g# L蟺L跩H   HfIǋ@uAG   LwL11I蘧11O1LuMLL1;ILH謫;IH@f     ۥH@HH@H L` & 1111ι1L^H5k L`AWAVIAUATUSHH<# ;m;L(c;HPxHJHHxD"MIcH@HI)IAY  ;Al$%1H۶;ILH趪;H$;H@@#   H辳IƋ;HcL,    ɤ;H@L<躤HLt;褤H@HH@x   H= 1 ;y;IoI8  H@L$;Y;HhNIL(H[]A\A]A^A_f     +;Lh H@H@Mt 3fD  ;;H@HH@@%   =      ۣ;H@HHpHt$ãHt$   H!Iǋ;AMc蠣;H@J4Ht$茣Ht$H迷t;tH@JH@xt2H=+ fD  KH@HH@H H@ I ;);H@J4Ht$Ht$Hh Ht;;H@JH@@%   =      Т;H@JHh轢   HHIM   L8LHc]HtHLmut11ˣ11肶H<$1;P;H@Nd(AF%A0   t8Et3AN   InMt$H@JH@H L` E;HLH誼H5 L虹H= 1{ff.     AWAVIAUATUSHH\# ;荡;L 胡;HPxHJHHxD*mIcH@HI)IAD$  ;AmHc?1H;I+LL4    HȦ;I;H@H4H4$H4$H/t;H@HH@xtZH=; 1d;轠;I賠I8  H@L$;蝠;Hh蒠IL0H[]A\A]A^A_D  ;q;H@HH@@%   =   `  K;H@HHpH4$4H4$   H蓷H$Au  H5ƿ# LfH5߿# LH<$辫D$    IM  H<$IH   H<$   tI$Ht@   t$LǺIH  x  HL薫LnPS  H<$pLLH8I4LLYI11荠11D1Lj;LH踤;IH@MD  H@HH@H H@ H$    1111ֲ1L    ;AMc蒞;H@J@%   =      p;H@N$a   LHD$H5# L螟H5# LOL$,H<$I/f@   @ 1HIfD  H@JH @ D$@ 1111ֱ1L;襝;I蛝I8  H@L$;腝;HhzLH(H5 L0AVAUIATUSH# ;C;H(9;HPxHJHHxLc2#H@JH)H  ;Ef 1H趮;HHIcHL,    膢;I̜;H@L$轜HLt;觜H@HH@xtUH=N 1';耜;IvI8  H@L$;`;HhULH([]A\A]A^fD  ;9;H@HH@@%   =      ;H@HL`    LH`IH5# L>H5# LLw11I11ү1LM1L՟LIH# ;LH$;IjH@[H@HH@H L` VH5 L@ AVAUIATUSH# ;;H(	;HPxHJHHxLc2H@JH)H  ;EfК1H膬;H輚HIcHL,    V;I蜚;H@L$荚HL®t;wH@HH@xtUH=n 1;P;IFI8  H@L$;0;Hh%LH([]A\A]A^fD  ;	;H@HH@@%   =      ;H@HL`Й   LH0IH5n# LH5# L迭L11I11袭1LM1L襝LIH`# ;OLH;I:H@+H@HH@H L` VH5 L԰@ AWAVAUIATUSHH# ;ݘ;L Ә;HPxHJHHxLc2轘H@JI)IAC  ;An虘1HO;I腘LH*;Ip;H@@#   [H3Iċ;HcL,    >;H@L</HLdt;H@HH@xtH=` 1虝;;II8  H@L$;җ;HhǗLH(H[]A\A]A^A_f諗;L`蠗H@H@M$?    ;聗;H@HH@@%   =      [;H@HHhH   HH訮HH5# L膘H5# L7HO11Hcc111L@;AT$;H@Nt(Aǖ   B   Et=AL$   Il$MffD  蓖H@HH@H Hh F ;qHLH3H5- L"fAWAVAUIATUSHH# ;-;L #;HPxHJHHxLc2H@JI)IA{  ;An1H蟧;IՕLHz;I;H@@#   諕H胤IƋ;HcL,    莕;H@L$HL贩t;iH@HH@xtH= 1;B;I8I8  H@L$;";HhIL(H[]A\A]A^A_f;L`H@H@M4?    ;є;H@HH@@%   =      諔;H@HHh蘔   HHHH56# L֕H5O# L臨H蟔D$1D  H舔9D$HjLcAtH)tI11t11+1LQ;;H@Jl(AF%Aړ   tAEt<AN   MfLu    諓H@HH@H Hh  ;艓LLHKH5E L:f.     AWAVAUIATUSHH# ;=;L 3;HPxHJHHxLc2H@JI)IAC  ;An1H诤;ILH芘;IВ;H@@#   軒H蓡Iċ;HcL,    螒;H@L<菒HLĦt;yH@HH@xtH=h 1;R;IHI8  H@L$;2;Hh'LH(H[]A\A]A^A_f;L` H@H@M$?    ;;H@HH@@%   =      軑;H@HHh訑   HHHH5F# LH5_# L藥H蟑11HcÒ11z1L;IAT$;H@Nt(A'   B   Et=AL$   Il$MffD  H@HH@H Hh F ;ѐHLH蓫H5 L肨fAWAVAUIATUSH(H\# ;荐;L 胐;HPxHJHHxD:mIcH@HI)IAD$  ;AoB1H;I.LHӕ;HD$;H@@#   HڞIƋ;Hc;H    H@HL$L,яHLt;軏H@HH@x   H= 17;萏;I膏I8  H@L$;p;HheHl$H(H([]A\A]A^A_fD  C;Lh8H@H@Mt /fD  ;;H@HH@@%   =     ;H@HHh   HH@HA  ;EoMc赎;H@J@%   =     蓎;H@N,脎   1LHHD$E1AtT;EgMcV;H@J@%   =   z  4;H@N$%   1LH蓩IL|$H5# L\H5խ# LL|$M		 AubHrHLcǜuMtEHM   輑LHuH|$ tHH|$Hu@ 11ώ11膡H|$1;SHT$;H@HlAF%A.      E   AN   MfLu H@HH@H Hh  IfD  HD$    E1躌H@JLh褌H@JH@HD$!;臌LLHIhH5 L5D  AWAVAUIATUSH(H-# } <} L 1} HPxHJHHxD:IcH@HI)IAD$  } A_1H褝} IًLH~} HD$} H@@#   請H胚HD$} Hc蓋} H    H@H$L,wHL謟t} `H@HH@x   H= 1ܐ} 4} I)I8  H@L$؋} } HXH$HH([]A\A]A^A_} LhߊH@H@ID HD$*     } 踊} H@HH@@%   =     葊} H@HHX}   HHݡHA  } EoMcQ} H@J@%   =     .} H@N,   1LH茥HD$E1AtW} EgMc} H@J@%   =   R  ̉} H@N$載   1LH*IL|$H5S# LH5l# L褝L|$M	f.     AujH肔LcA   HMuMtCHM  BLH藊uLd$MtH衋LHvuf11W11H|$12} ڈH$L|$H@} H\AGD$%A謈   Q  EH  AO   MwHD$HCb@ sH@HH@H HX  H萈HALcAtjf.     HXLcAuOHWA9|HJA9u+HH߃   LcAuE1    HȖwf.     軚H|$H&HD$    E1zH@JLhdH@JH@HD$G} FHt$LH̎LcH5m LD  AWAVAUIATUSHH# ;;L ;HPxHJHHxLc2͆H@JI)IA  ;An詆1H_;I蕆LH:;I耆;H@@#   kHCIċ;LcJ,    N;H@N<?HLtt;)H@JH@xtH=0 1詋;;II8  H@N$;;L`ׅLH(H[]A\A]A^A_f軅;L`谅H@H@M$?    ;葅;H@JH@@%   =      k;H@JLhX   LH踜IH5# L薆H5# LGL?   Lc11j11!1LG;;H@Lt(AD$%Aτ      E   AL$   Ml$Mff蛄H@JH@H Lx > L踄LD$tLfL舄9L臄9D$|LE1v9D$LA   L譋     ;LLH軞;H5 L觛    AWAVAUIATUSH(H|# ;譃;L 裃;HPxHJHHxLc2荃H@JI)IA  ;AnHcf1H;IRLL$    H;I5;H@L4&HL[t;H@HH@xt^H=g 1萈;;I߂I8  H@L,;ɂ;Hh辂IL H([]A\A]A^A_f     ;虂;H@HH@@%   =      s;H@HLp`   LHIH5# L螃H5# LO;(   HۚLHD$Nuz;Ht$Hƃ11IJ111L';ЁLHu;I軁H@f諁H@HH@H Lp F Lhu    L耔LHD$Ӑ1H虅IHtAH|$';D$<HMA$   j L$,HHT$ Ht$ZYHt LtL{fD  ;AWv	AWLH<H5 L苘ff.     AWAVIAUATUSHH\# ;荀;L(胀;HPxHJHHxD"mIcH@HI)IA  ;Al$E1H;I1LHօ;I;H@@#   HߎIǋ;HcL,    ;H@H4H4$H4$Ht;H@HH@x   H=c 1<;;II8  H@L$;u;HhjIL(H[]A\A]A^A_D  K;Lh@H@H@M| 2fD  ;!;H@HH@@%   =     ~;H@HHpH4$~H4$   HCH$;AMc~;H@J4Ht$~Ht$H  ;~H@JH@x  ;t~   H@J<IH  H5# LH5 # LXA|$	  H<$cH  H5# HLH$HqL$A|$	LL   L$BL$LcLÀ11*111LEA  ;};H@Jl(AG%A}}      E   AO   MgL}fK}H@HH@H H@ H$`    }L$Lc<    ID$@HtH HtxuLpI$H@       ;|LLH苗[H5q LwH= 1YH= 1K11}11虐L1H= 1!H=b 1 AWAVAUIATUSH(H# dH%(   HD$1;|;L |;HPxHJHHx*{HcՍMH@L$HI)IAD$8  ;{;UH@HcL<HD$    {1Hh;I{LE1H@D$    IA  AG%   =   g  IIoH@HD$H  H5# L|H5# LPt$HĈIH<  H5# LHH賋L%l# I<$ Q  LI<$ H   Ls11*|11H    LDDA;zHz;IzHLH H;;tzHcT$H@L,    L$Ћ;Xz;HhMzLH(HD$dH3%(     H([]A\A]A^A_@ D$   71H(( ;yHT$   LHdH@ ;DmMcy;H@J@%   =     y;H@N,y   LHD$At|;HcryH@H< td;`y;H@H@ D  GyH@H@   u>;/yH@Hxt);yH@H@% =
  tE1 ;xH@H@tc;xH@HH8 tˋ;xH@HH Hxi  A   +fD  D$      L~Hf;yx;H@H@      ]xH@H@   ;DxH@H@/;+xfH@HH f.@(   ADED  wH@JH @ D$_@ ;H=ԗ# HD$L}I<$ HT$Hf.     w;H@H,w1HHoyA    ;iwH@HH Hx  fD  ;AwH@HH Hx (;$wH@HH@80A@ w;H@H,v   HHxAa113x11L1H= 1r݈H= 1_H5X L`AWAVAUIATUSHH<# ;mv;L cv;HPxHJHHx*NvHcH@HI)IAD$  ;DmDuMcv;H@J@%   =     u;H@N,u   1LHYH$;u1H脇;IuLE1H\{D$    IAW  H5H# LvH5a# L虉H<$zIH(  H5-# HLHH# H8 6  L6{HH# H8    LMc跇11nv11%H    LDDAN,    5;tH趃;ItHLH Hw;tH@N$;t;HhtLH(H[]A\A]A^A_ÐD$   P1H舁A [tH@JH@H$qfD  ;DmMc2t;H@J@%   =     t;H@N,t   LHaD$At|;HcsH@H< td;s;H@H@ L  sH@H@   u>;sH@Hxt);sH@H@% =
  tE1 ;YsH@H@tk;DsH@HH8 tˋ;/sH@HH Hxq  A   wfD  D$      LxHf.     ;r;H@H@      rH@H@   ;rH@H@';rfH@HH f.@(   ADED  [rH@JH @ D$W@ 蛇H=4# H$KL#xH$HH# H8 fD  q;H@H,q1HHsA@    ;qH@HH Hx  fD  ;qH@HH Hx  ;qH@HH@80A@ cq;H@H,Tq   HH4sA11r11JL1pH= 1҅H5+ Lӈ AWAVIAUATUSHH# ;p;L(p;HPxHJHHxD"pIcH@HI)IA@  ;Al$p1HK;IpLH&v;Ilp;H@@#   WpH/IƋ;HcL,    :p;H@H4H4$'pH4$H[t;pH@HH@x   H=C 1u;o;IoI8  H@L$;o;HhoIL(H[]A\A]A^A_D  o;LhoH@H@Mt 2fD  ;qo;H@HH@@%   =     Ko;H@HHpH4$4oH4$   H蓆H$;AMco;H@J4Ht$nHt$H0  ;nH@JH@xy  ;n   H@J<b}IHb  H5W# LoH5p# L訂ID$@HtH Ht
x   I$Ht@   H<$CzH"  LHH$yH$LcH}11o11:1L`AA   ;m;H@Jl(AF%Am   tTEtOAN   MfLufmH@HH@H H@ H$p    L  ;qmLLH3H5 L"H=# 1H=Մ 1H=_ 111n116L1\H= 1辁ff.      AWAVAUIATUSHH# ;l;L l;HPxHJHHx*lHcՍMH@L$HI)IAD$  ;l1H6~;IllLDmHMc
r;IPl;H@N<AlHLv  ;'lH@JH@xe  ;
l   H@J<zIHk  D$    E1A'  H5# L(mH5# LLQpIH  L%# I<$   H;I<$ H   Lo11l11H    LDDA蛯;DkHz;I2kHLH Hu;kHcT$H@L,    L$Ћ;j;HhjLH(H[]A\A]A^A_f.     D$   E1Hw6 ;DmMcj;H@J@%   =     j;H@N,qj   LHсD$At|;HcJjH@H< td;8j;H@H@ L  jH@H@   u>;jH@Hxt);iH@H@% =
  tE1 ;iH@H@tk;iH@HH8 tˋ;iH@HH Hxq  A   fD  D$      H}Hf.     ;Ii;H@H@      -iH@H@   ;iH@H@';hfH@HH f.@(   ADED  hH@JH @ D$W@ ~H=# HD$uLB|I<$ HT$Hf.     kh;H@H,\h1HH?jAp    ;9hH@HH Hx  fD  ;hH@HH Hx  ;gH@HH@80A@ g;H@H,g   HHiAH=5 1^|H=w 1P|H5 LQH= 13| AWAVAUIATUSH(H# dH%(   HD$1;=g;L 3g;HPxHJHHx*gHcՍMH@L$HI)IAD$  ;f;UH@HcL<HD$    f1Hx;IfLE1H`lD$    IA  AG%   =   W  IIoH@HD$Hu  H5# LgH58# Lpzt$H4qIH,  L%# I<$ V  HyI<$ H   Li11_g11zH    LDDA.;eHt;IeHLH* Hpp;eHcT$H@L,    L$Ћ;e;HheLH(HD$dH3%(   j  H([]A\A]A^A_f     D$   21HXr# ;)eHT$   LH蔀H@ ;DmMcd;H@J@%   =     d;H@N,d   LH)|D$At|;HcdH@H< td;d;H@H@ D  wdH@H@   u>;_dH@Hxt);JdH@H@% =
  tE1 ;!dH@H@tc;dH@HH8 tˋ;cH@HH Hxi  A   ;fD  D$      HjwHf;c;H@H@      cH@H@   ;tcH@H@/;[cfH@HH f.@(   ADED  +cH@JH @ D$_@ kxH=# HD$pLvI<$ HT$Hf.     b;H@H,b1HHdA    ;bH@HH Hx  fD  ;qbH@HH Hx (;TbH@HH@80A@ 3b;H@H,$b   HHdAqH=z 1v)tH=, 1vH5x Lyff.     AWAVAUIATUSHH|# ;a;L a;HPxHJHHx*aHcH@HI)IAD$  ;DmDuMc\a;H@J@%   =     :a;H@N,+a   1LH|H$;a1Hr;I`LE1HfD$    IAG  H5# L(bH5# LtH<$vIH  H# H8 ;  L;tHH# H8    LMcc11a11ztH    LDDAN,    芤;3`Ho;I!`HLH Hj;`H@N$;_;Hh_LH(H[]A\A]A^A_fD  D$   K1Hl< _H@JH@H$fD  ;DmMc_;H@J@%   =     `_;H@N,Q_   LHvD$At|;Hc*_H@H< td;_;H@H@ L  ^H@H@   u>;^H@Hxt);^H@H@% =
  tE1 ;^H@H@tk;^H@HH8 tˋ;^H@HH Hxq  A   fD  D$      LqHf.     ;)^;H@H@      ^H@H@   ;]H@H@';]fH@HH f.@(   ADED  ]H@JH @ D$W@ rH=}# H$jL#qH$HH}# H8 fD  K];H@H,<]1HH_AP    ;]H@HH Hx  fD  ;\H@HH Hx  ;\H@HH@80A@ \;H@H,\   HH^AH=eu 1>qH5s L?tff.     @ AWAVAUIATUSHH|# ;=\;H(3\;HPxHJHHxD"\IcH@HH)H  ;El$Et$Mc[;H@J@%   =     [;H@N,[   1LH+wIǋ;[1HWm;I[LH2aH53{# HI\H5I{# Lo  1uIH  LqHIdLLc1LwoLHH|# H  Mt"AEu<t% =
  u	Hq11Mc,\11N$    nL11Ht;HZHHB`;HZH@J,;yZ;HhnZLH(H[]A\A]A^A_f     ;AMcBZH@N$  AD$%   =   |   I|$2aŃ11^[11n   L8AD$%   =      ID$HH=[ 1}nD  YH@JLxf;Y   1LHuHhH5 L@q11Z11~mL1褝H= 1n11Z11TmL   wH=ӻ 1m11pZ11'mH=r 1m;X   1LH`tff.     AVIAUATUSHx# ;X;L X;HPxHJHHx*XHcH@HI)IA  ;DeDmMcfX;H@J@%   =   a  DX;H@N$5X   1LHsIċ;HcX;H@H@%   =   &  W;H@H,W   1HHPsIƋ;McW1Hyi;HWHHT]H5Uw# HHXH5kw# HkLLN4    n1IH   HzcL1pq11IX11[k1H聛;*WLH\;HWH@J,;W;HhVLH([]A\A]A^@ VH@JL`fVH@HLpf.     1	X11j1H;V;HVH8  H@dH5G L6nfD  AWAVIAUATUSH(Hv# ;=V;H(3V;HPxHJHHxD*VIcHH@HH)HH  ;EeAHMcMcU;J    H@HL$N4Lt$U   LH@N<]d;IU1HYg;IULH4[IM  ;qULHi  LLsVIH  H^  H5t# LVH5u# L9iLLULIH	v# 11VV11iM  L   'Eu E  HD$L`AD$%   =     I$H@ H  HD$AFE1H   HD$OHt$LnIǋ;iTH@ H)HI  ;LuNTLHYHELIL;d$tiIEN4 A~uL_IHt֋;T1HeLHD$k;ISHt$LLH^I_    Lj;SH(H([]A\A]A^A_    ;SH LH`!MAG%   =      ILx M  H5s# LTH5!s# LYgLLn[I'fD  1LfQ;	SHH   H`HfD  ;RL   HAjIiI$H@ Hx $  I$H@ H@H HD$@ ;RL   HiHHD$L`tsAD$%   =   t;[RL   HiHx HD$L`t;AD$%   =   q;R   LHi]f.     AD$%   =   t^;Q   LHHi8 ;Q;HQH8  H@J,;Q;HhQHl$H(I$H@ Hr# LH=t 1*fH=? 1fH5F Liff.     fAWAVIAUATUSH(Hp# ;Q;H(Q;HPxHJHHxD*PIcHH@HH)HH  ;EeHMcP;J    H@HL$JHD$PAU;AH@HcMcL<P;H@J@%   =     jP;H@N,[P   LHg$H|$   ^;I/P1Ha;IPLHUIM  ;OLH2d  LLPIH^  HXB  H5to# LQH5o# Lc$LLdLIHp# 11P11cM     L谓A         ;5OH@ H)HM  ;LeO1H5| He;INLHT;HENH@ L)H)  I~ 1S  f     m  ;NH@ H)H  ;LeN1H5 H4e;IzNLHTHEMnLM  E} ER  HD$HhE%   =     HE H@ H  Hx   HE H@ H@H HD$AGLE1H   HD$^f     Ht$LgH$;MH@ H)H  ;L}MH4$HQSHELIL;d$  IEN< AuL$YHH$tы;dM1H_LHD$]d;ICMH$Ht$LHWH$WfD  ;MH LHZMAG%   =     ILx M  H5l# L(NH5l# L`$LL{_I LH@JH @ $=D  1LƐ;oLH(H([]A\A]A^A_D  ;QLH@ H)HA  ;Le6L1H5 Hb;ILLHQ;HELH@ L)H  AF;$K$H^;IIl$KLHlQID$LX4f.     ;KH@ H)H9  ;Le~K1H5 Hb;IcKLHQ;HEMKH@ L)He  ;Icn2KHH]Lf;KL   HybI!MnLaIF    0    ;J;HJH8  H@J,;J;HhJHl$H(5;JH   HaHHD$Hh   E%   =   (  ;]JH   HaHx HD$Hh   E%   =   ;J   HHaf.     ;IHH   HWH>fD  ;IHH   HWHfD  ;IHH   HfWHfD  E%   =      ;nI   HH`HD$R@ ;IIHH   HWHfD  ;!ILL   HVIfD  ;HHH   HVHfD  ;HLL   HVIyfD  ;HLL   HfVIHE H@ #Hi# LH=q 1']H=< 1]H5g L`H=ë 1\HE H@ ff.     @ AVAUIATUSH Hg# dH%(   HD$1;G;H(G;HPxHJHHxLc2GH@JH)H  ;D$    EfHD$    G1HQY;HGHIcHL4    !M;IgG;H@L$XGHL[C  ;>GH@HH@x&  ;!G   H@H<UIH#  H5f# LTHH5f# L[HT$LHt$T11*H11Z1LLd$M   ;Lcl$FLLH`H|$IHg# ;wFLHL;IbFH@L$;SF;HhHFLH(HD$dH3%(   uMH []A\A]A^D  ;F;IFI8  H@H=k_ 1ZH5 L]XH=	_ 1ZfAWAVIAUATUSH(H|e# ;E;L(E;HPxHJHHxD"EIcH@HI)IDLl$!  ;El$Al$McSE;H@J@%   =     1E;H@N,"E   1LH`HD$K; D$D1HV;IDLHJ;ID;H@@#  DHSIŋ;HcD;H    H@H$L<DHLX  ;qDH@HH@x  ;TD   H@H<RIH  |$;)  $DH5B 1E1H`EHH  Ni  `  W  % =
  E  D  T$?JT$H5jc# L
EH5c# LWEX  DL$DH|$DL    RAtDL$IL$11D11aWL1臇;E  'CH$;H@HlAE%AC   .  E%  AM   IE   Lm;B;HhBH,$H(H([]A\A]A^A_ÐB;LhBH@H@Ml fD  '  HHH@H      H5	b# LCH5"b# LZVH|$LBAD  BH@JH@HD$D  AA;H@McJ@%   =      A;H@N$A   LH#YAċ;AH5J@ 1HBHH    {A;IqAI8  H@L$D  tCtHHx  oH1ff.B(   DQf     ;Ht$AHt$1HB%D  @H@JH D`     ;@   LH[@ HHF1Ҁ80fD  ;Ht$|@Ht$   HZBH=[Z 1UH=Z 1UH5٣ LX    AWAVAUIATUSH(H_# ;@;H(@;HPxHJHHxD:?IcH@HH)HHl$;  ;Eg?AWH@HcHHD$$F D$@; D$?1HBQ;Hx?HHE;Ic?;H@@#  N?H&NHŋ;Mc9?;J    H@H$N,?HLSSb  ;?H@JH@xE  ;>   H@J<MIH.  E1|$;  >H5U= 1H?HHtCPA      % =
     DD8;Q>1H5s H?IHt8@    :    <   
    D  HD$    2YM|$pM  LD  LDHHT$H5]# H=]# PQHD$E  >    H5H]# L>H5a]# LQH|$DLL>H|$ LctI|$Ht$Hx  BN>L$CL$11>11;Q1La;
=H$;H@LdE%A<     E  M   LmIl$;<;Hh<H,$H(H([]A\A]A^A_f     <;Hh<H@H@Hl +fD     HHH@H5  A   f.       IHH@H  LUAHD$H H<f.     1f     <E1     &D  ;A;H@McJ@%   =     ;;H@N,{;   LHR;A   tHHx  H1fA   f.B(DD tStIHz  Iff.@(f.     LO ;:1LH<    ;Ht$:Ht$1Hm<D@ k:;H@JH Dh D  ;I:LHHUpfD  H'IG80D  HHFE180A@ ;9   LH;(@ ;Ht$9Ht$   H;DIH="T 1[NH=S 1MNH59 LNQff.      AWAVAUATAUSHHHt$tHD[]A\A]A^A_ HX# IMc;$9;9;H(9Ht$LHO;I8LH~K;HD$8HzQ;8HR;8;HHxLqLpx8L;     ;8HH+HHHA;8H@ H)H\  Lm;He8LH
>;HEO8Ht$H=;HE 78H(;-8   H5 HP;8;H  H@H8   7H  H@H8 ;   7;H  H@H8   7H  H@H ;@   7;H  H@H8    7H  H@H ;@      a7;H  H@H8   E7H  H@H ;x   &7;H  H@H8   
7H  H@H ;@% =
  tk 6;HhP6H;hX^  ;6H_Bmf.     6;H  61HHPJH@    {6;H  H@H8 l  _6H  H@H ;@   @6;H  H@H8   $6H  H@H H8 D  ;6;H  H@H8   5H  H@H ;H HxK  51H1Mf.     5;H  H@H8 L  5H  H@H ;@     m5;H  H@H8 N  Q5H  H@H ;@t?65;H  H@H8 q  5H  H@H ;H Hx  14;H  H@H8   4H  H@H ;@4;H  H@H8 I  4H  H@H f;Hf.B(   E   @ ;i4H;@ S4;H  E41HHGH@D    #4;H  41HHGH@L    3;H  31HHGH@{    ;3;H  H@H8    3H  H@;H(31HHm5;fD  c3;H  U31HHGH@@    33;H  %31HHFH@1    3;H  21HHFH@    2;H  21HHxFH@    2;H  21HHHFH@E    s2;H  e21HHFH@6    C2;H  521HHEH@    ;2HH   H?HfD  ;1HLI5f     1;H  H@H8    1H  H@;H(1   HHz3; {1;H  H@H8    _1H  H@H H Hx {;<1;H  H@H8     1H  H@H ;H@800;H  01HHDH@0;H  01HHwDH@
0;H  01HHNDH@v0;H  r01HH%DH@W0;H  I01HHCH@.0;H   01HHCH@f.     AUATUSHHHoHPHtHP# HCP    H   }	H}@   HF:HCPCX    H   L Mtz1E1* HCPJ(    HSPHcL$L,    MtIIt$HtH   EHuHcKXHSP9tL$HCPJ(    CXHSPCX롐H[]A\A]D  FH}@H9HCPDfD  SHG`H   H8=1HtHP@HHHC[AWAVAUATUHSH(HlN# ;.;L0.;HPxHJHHxD*}.IcLH@HH)HHF  ;IFEeHD$McE.;J    H@HL$J,).AU;AH@HcMcL4.;H@J@%   =     -;H@N,-   LH;EAǋ;-1Hw?;I-LHR3HmIŋE%   =     HE Hh Hp  HH} @  ;]-LHA  HuL^.IH   H
6  H5L# Ls.H5L# L$A;,HL$HDLHG6LIHM# ;,11H(%.11@M     LpA         ;{,H@ H)H  ;Le`,1H5 HB;IE,LH1;HE/,H@ L)H  I~ 1T0        ;+H@ H)H  ;Le+1H5  H|B;I+LHg1HEM~LM  A  E1H   HD$   I}@H{  n<H5  I}@\<Hx !  I}@H<H@H0LYEIŋ;/+H@ H)H_  ;+HMLHHL$0HEHl$IL9d$  IGN, A}YL6HHD$t̋;*1Hv<LHD$A;I*HL$Ht$LHJ5ILf;y*Hv LHg7MvAF%   =     ILp M  H5I# L+H5J# L9>;*HL$LDHH,I@ ;)H   HIAHQ)H@JH Dx     1Lm;)H(H([]A\A]A^A_D  ;)H@ H)H  ;Lef)1H5 H@;IK)LH.;HE5)H@ L)H  AF;D$)D$H;;IIl$(LH.ID$L-62     ;(H@ H)H	  ;Le(1H5 HM?;I(LH8.;HE}(H@ L)H  ;Icnb(HH:Nf;I(L   H?II}@'9H    AF'AF        L Hv(HHHtHPHHH2 ;'HH   Hv5HfD  ;';H'H8  H@J,;q';Hhf'Hl$H(f     ;I'HH   H5HfD  ;!'HH   H4HfD  ;&LL   H4IfD  ;&LL   H4IIfD  ;&HH   Hf4HfD  ;&LL   H>4IAfD  ;Y&HH   H4HH?G# LH=;A 1:H=A 1:H5@ H=H=h 1:H=r 1:ff.     AWAVAUATIUSH(HE# ;%;L0%;HPxHJHHx*%HcLH@HH)HH  ;IFDmHD$McHc`%;J    H@HL$N4D%;H@L<5%1H6;H!%HH*InIċE%   =   4  HE Hh H  HH}   ;$LH9  HuL%IH  H~-  H5GD# L%H5`D# L8;q$HT$HLH1-LHD$HUE# ;D$H|$ H(  HD$11Lx%11:8M     LThA	  E1H   HD$   I}@H  4H  I}@4Hx   I}@4H@H0L=IƋ;#H@ H)H  ;Lmt#LH)HELIL9d$tgIGN, A}dL.IHtҋ;-#1H4LHD$&:;I#Ht$LLH-I[HD$P   H|$&0;"H(H([]A\A]A^A_D  ;"H~ LH/MAG%   =   7  ILx MF  H5 B# L#H59B# Lq6;J"HL$1LHH%HD$ @    <@ I}@3Hf    L Hv(HJHHtHPHH2H2* ;!H   H!9Hf     ;!HH   HV/HfD  11"115H|$.1LewD  ;A!L   H8I;"!;H!H8  H@J,;!;Hh Hl$H(H5Ǆ L8H=; 15H=. 15HA# LH=; 1e5D  AWAVIAUATUSHHL@# ;} ;L s ;HPxHJHHx*^ HcH@HI)IA#  ;DmMcHc. ;N$    H@N< H@L4IoE%   =      HE Hh H   HAF%   =      IvH/31H#;HHHP%;HH@J,;;Hh|LH(H[]A\A]A^A_    ;YH   H6HQ;9L   1H:HXH5 L6H=q 13fAWAVIAUATUSHH># ;;L ;HPxHJHHx*HcLH@HH)HH  ;DmIMc;H@N<|U;H@HcHcL,aH@L4IoE%   =     HE Hh Ha  H9AFuP<tL 
  t<AE%   =      Iu1H*+uMH=f9 12    %   =   uLAEMv%   =   udIuLH*   ;L H[]A\A]A^A_    ;qL   1H8IAE%   =   t;EL   1H8HfD  ;!H   H4Hf     ;L   1Hg8HH58 L4H=1 11H=8 1t1@ AWAVAUIATUSHHH\<# dH%(   HD$81;};H(s;HPxHJHHxD2]IcH@HH)HE6  ;EfMc1AV;H@HcHHD$0    HD$1H-;ILH!;I;J    H@HL$N,HL/  ;H@JH@xn  ;   H@J</*IH  ;D$(      [D$,    HD$     H8  HD$I}@ :  Lt$MF  ;H8  I90  L1IHD$H  H#G  H;# LAE	   @ H5y:# LH5:# L.I}@DD$(1HL$ T$,LL$0 1111.L1^H|$0HF  1H|$0HHT;# ;CHH;H.H@J,;;HhHl$H(HD$8dH3%(     HH[]A\A]A^A_f     AE	D$({  H=6 /0HD$H|$ AE	    HD$@  <  % =
    I}@%HH  LhH9H|$H+H}PIH&:# HtHD$HEP    HD$HHD$8)HD$ H|$M&  InH  H58# L$H58# L,I}@T$,HDD$(HL$ LL$0L%f     {AV;H@HcHT$HЋ@%   =     MHT$;H@H4Ht$4Ht$   H/D$(;AVH@HcHHD$A  ;AV;H@HcHT$ HЋ@%   =   Y  HT$ ;H@H4Ht$ Ht$    H/D$,  ;AMcvH@J<Y$HD$      HD$LpAF%   =   uoIHh HQ  LmH#H|$H(H}PIH8# HHD$HEP    HD$fD  I}@-Of;   LH).HyD$,    HD$     [f.     HT$H@HH @ D$(Q    cHT$ H@HH @ D$,    H=A3 ,HD$H=s2 1*H=3 1*9(H51 L-H=2 1*H=1 1*H=? 1*L#H=Q3 1z*H=3 1l*H6# H|$H=2 1P*HD$     CfATUSL'I9tHHMtLQI<$ t
H+[]A\fL+fD  AWAVAUIATUSHH4# ;;L0;HPxHJHHx*HcH@HI)LH  ;DeMc;N4    H@N,HL(+  ;H@JH@x  ;   H@J<"#IH  ;HcY;H@L<JHL(  ;0H@HH@x  ;   H@H<"HH  A}	uf@wF%  uPH=2 1j;;HH8  H@   f     uH=2 1- HL)HtIu HtHFHtH0H{-}I   IoMm E%   =   u_HE Hx Lw; LH;HH@J,;;HhIL0H[]A\A]A^A_@ ;   HH1*H@ H=92 1JD  IE@HHxP=H=41 1='H=0 1/'H=P0 1!'H5q L"*H=0 1'@ AWAVIAUATUSHH1# ;;L(;HPxHJHHx*HcH@HI)IA  ;DeMc;UN<    H@HcL4;H@N,HL%  ;H@JH@x  ;q   H@J< IH  ;HcF;H@H4Ht$2Ht$He%3  ;H@HH@x  ;   H@H<HH     L~HLHHH   Iu HtHFHtH0H*}ItnIu HtHFHtH0H} ;iLH;HTH@J,;E;Hh:IL8H[]A\A]A^A_D  IE@HHxP} ;;HH8  H@H=s0 1$H=/ 1$H5s L'H=0 1q$H=r/ 1c$ AWAVIAUATUSHHL/# ;};L(s;HPxHJHHx*^HcH@HI)IA  ;DeMc4;UN<    H@HcL4;H@N,HL=#  ;H@JH@x  ;   H@J<oIH  ;Hc;H@H4Ht$Ht$H"3  ;vH@HH@x  ;Y   H@H<HH     LHLHHH   Iu HtHFHtH0H(}ItnIu HtHFHtH0H}  ;LHn;HH@J,;;HhIL8H[]A\A]A^A_D  IE@HHxP} ;a;HWH8  H@H=. 1!H=M. 1!H5=q L$H=x. 1!H=- 1! USHHH@HH8H!H;HH[]ff.     @ AVAUIATUSHr,# ;;L ;HPxHJHHxLc2H@JI)IA   ;AnHc\;L$    H@L,EHLz    ;+H@HH@xux;   H@H<HHteP	u-;;HhJT%H[]A\A]A^f.     HEtÃtHH=- 1S H=|- 1E H5g LF#fD  AWAVAUIATUSHH+# ;M;L0C;HPxHJHHx*.HcH@HI)LH  ;DeMc;J    H@HL$N,
HL  ;
H@JH@x  ;
   H@J<MIH  ;Hc
;H@L<u
HL&  ;[
H@HH@x	  ;>
   H@H<IH   @  Im HtHMHtH)A}u	   LL4H  HH#A~I*  MoAE%   =   ufIE Hx H;	LH<;H	H@J,;s	;Hhh	Lt$IL0H[]A\A]A^A_fD  ;A	   LH H@ IFI9E+1Lp"LHIRHtzHH#LI	AF<3L&@ ;;HH8  H@!    I}@LHPL+!;t;HjH8  H@J,;T;HhIHl$H(H=u+ 1H=* 1H=+ 1H=* 1H58g LH=v+ 1    AWAVAUIATUSHH'# ;;L0;HPxHJHHx*HcH@HI)LH  ;DeMcr;N4    H@N,[HLV  ;AH@JH@x9  ;$   H@J<IH0  ;Hc;H@L<HL   ;H@HH@x   ;   H@H<QH   HLHHtu@tuX1H ;HdHH	;HOH@J,;@;Hh5IL0H[]A\A]A^A_HfD  ;	;HH8  H@H=) 1H=m* 1H=) 1H5b LH=* mff.     fAWAVAUIATUSHHL%# ;};L0s;HPxHJHHx*^HcH@HI)LHU  ;DeMc2;N4    H@N,HLP  ;H@JH@x  ;   H@J<IH  ;Hc;H@L<HL  ;H@HH@xs  ;s   H@H<HHy  HL  M} MtIGHtL8A}   I}(LH	IM8  AEt	   Iu HtHFHtH0L}I   H} HtL	
;LHW	;HH@J,;;HhIL0H[]A\A]A^A_fD  L`g LHI6D  HE@HHxPa ;!;HH8  H@nH=( 1H=
( 1H5b LH=5( 1H=f 1H=' 1rfAWAVIAUATUSHH\"# ;;L(;HPxHJHHx*nHcH@HI)IAZ  ;DeMcD;N<    H@N,-HLb  ;H@JH@x  ;   H@J<IH  ;DmMc;H@J4Ht$Ht$H  ;H@JH@xb  ;}   H@J<IHY  ;HcR;H@H4Ht$>Ht$Hq  ;"H@HH@x  ;   H@H<H  I9teM9t`A~	   AU   W     H=?( 1H; ;H H8  H@Jf.     Iu HtHFHtH0LHŋ;Y HH;HD H@J,;5 ;Hh* IL8H[]A\A]A^A_D  uH=' 1P     HLLHH.@ttHHu HtHFHtH0HA}HtJI} H-I6HtHFHtH0    H=' 1D  IE@LHxPH=_% 1H=i& 1H=% 1H=$ 1H=o% 1H5/c LH=% ff.     fAWAVIAUATUSH   Hy# dH%(   H$   1;;L(;HPxHJHHxD"wIcH@HI)IL,$E0  ;Al$L1H;I8LH;I#;H@@#3  HIŋ;HcL<    ;H@H4Ht$Ht$H_  ;H@HH@xB  ;   H@H<BHHK  H57# LH5P# LLD$1   IPLt$HHHvBHD$H*@HD$ HE@HtH Ht
x  HE Ht@   <$H  ;L$AMc;H@N$HLq  ID$xb     L`L$HHLHc11111L@@;rAU;H@Nd8AQ      E   AM   ImMl$;#;HhIL8H$   dH3%(      HĘ   []A\A]A^A_f     ;LhH@H@Ml fD  HLHc
D  ;HLH[WfD  HLD$LD$OH=$ 11111iH=:$ 1H=# 1XH5r_ Lf     AWAVIAUATUSH   H# dH%(   H$   1;;L(;HPxHJHHxD"IcH@HI)IL,$E  ;Al$1HB;IxLH ;Ic;H@@#  NH&	Iŋ;HcL<    1;H@H4Ht$Ht$HPQ  ;H@HH@x4  ;   H@H<HH1  H5w# LH5# LLD$1   IPLt$HHH>HD$Hj<HD$ HE@HtH Ht
xr  HE Ht@   <$   ;L$AMc.;H@N$HLT1L$tID$x+  HLHc11D11;AU;H@Nd8A      E   AM   ImMl$;;HhzIL8H$   dH3%(      HĘ   []A\A]A^A_ C;Lh8H@H@Ml fD  HLu
Hc D  ;HLH]fD  HLD$[LD$w   LsL$HH=! 1i	H5[ LeH=  1G    AWAVAUIATUSH(H-,# } \} HQ} HPxHJHHxD":IcAL$H@L$HH)HC[  } Et$Mc} AT$H@HcL,} H@J@%   =   e  } H@N4   LHD$1L:} I1HE} IzLHHD$  E1M-  Lt$H5# LH5# LR
T$L1LaLHH# L11a11
1L>:HX  } H} IH"R HLHu } HcT$H@L,    L$Ћ} } HXLHH([]A\A]A^A_    cH@JH @ D$@ } AMc9H@JC    P  q  LkA}b  } M   LHxHD$HHcH9   H8IHD$   A1HFIHCI9tYHË} L1HHH0F%   =   t} H4$fH4$   1HIHCI9uD$HIH     D  }  } IHcT$I8  H@L,    \     H5# H=N 1 L뚋} HHCH5Y LyHP H5s 1H=" MH=W 1?ff.     @ H-# SH8ZHtSvS1[ HH  AWAVIAUATIUHSH(H# dH%(   HD$1;I$Hx D  ;HHjHŋ@%   =      HE L}LhLl$I$D;HpMtEH4$HE1Dj Ht$A   HLV_AXH  I$L$;HpL$H4$OHLE1j L$A    HHt$IXZ; U   UM   I$HL$dH3%(      H([]A\A]A^A_fD  ;HT$   HH<Ll$I    ;Mt#   HO
I$HBf;yH8  mfD  AF;I$Ll$L`OHDMj LA$   LHY^ID  HH;ff.     AWAVAUATIUHSH(H# ;Eu<tH= V  
  utHEx  ;HHt
HExthEt0%   =   0  HE @(H([]A\A]A^A_@ %   =      H}H([]A\A]A^A_Y	f     ;HT HH	  ;H3S HH6  ;H;S HHtIHmE%   =   jf.     ;   1HHHC    ;qHR HH_  HmE%   =   ;9   HH9@ 1;LmHD$	LHD$0  1!fD  H= 1z9l$  ;Hc1LHIHtƋ;L0LHtI7;Ht$Ht$HR HtI?   HL$HHyMmI   HHT$IL$HT$HHy`=    1   HHHD$H{HMt!   HI|$HHH`HD$H([]A\A]A^A_fD  HmE%   =   uHE x H([]A\A]A^A_ ;q   HHHD$    fAVAUIATUSH# ;3;L0);HPxHJHHxHc*LH@HH)HH   ;DeIMcH@JL`AD$%   =   uVI$L` M   ID$`;LhMt$AUvGAUID$`;H@    |L0[]A\A]A^Ë;iL   HI@ LHH5P LH= 1 fD  AUATUHSHHL-# A}  HC`Ht7L`Mt.AD$   <   % =
          H{PHtL%# A$H   HE`Htzo HS`L%# oHJH}`A$HC`HE`HE H{HHHHX  HX  H)H)ށ`  HHI$H[]A\A]     L%!#     A} AT$vAT$0H[]A\A]D  LHEAWIAVAUATIUSHHy
# HT$;;H(MP
  Ml$`M4
  IEH
  @
  H@x
  ;XH;IH;:;HHxLqLpx'L;   z  ;HH+HHHA;H@ H)Hk  IE;H  HELuH@ L)H  1LIn;ILHL;IFH@ H)H)  H|$1H;IgLHLHE U;IFH(;Im8
   HH;ALLH(;	;H  H@H8   H  H@H8   ;;H  H@H8   H  H@H ;@   ;H  H@H8   zH  H@H ;@   u;\;H  H@H8   @H  H@H ;x  !;H  H@H8   H  H@H ;@   ;H  H@H8   H  H@H H8    ;;H  H@H8   H  H@H H Hx{  ;l1H1P[;H  H@H8 t  ?H  H@H ;@     ;H  H@H8   H  H@;L 1LHdA  Hu 1H;IH(;;HhPH;hXY;H*HL[]A\A]A^A_     k;L  ]1LHH@M    ;9Ha    #;L  1LHH@    ;L  1LHH@%    ;L  1LHhH@0    ;H  H@H8   wH  H@H @% =
  ;)    C;H  H@H8   'H  H@H @t?;;H  H@H8   H  H@H H Hx  a;H  H@H8 H  ;H  H@H @;;H  H@H8   vH  H@H fHf.B(   Em@ C;H8  ZfD  +;L  1LHH@    ;L  1LHH@    ;L  1LHpH@s    ;HQIof     ;yHH   H6HsfD  ;QHH   HHfD  ;)LL   HIOfD  ;H  H@H8   H  H@;L    LHD  ;L  1LHXH@#    ;L  u1LH(H@    S;L  E1LHH@    #;L  1LHH@	    ;;H  H@H8    H  H@H H Hx ;;H  H@H8   H  H@H H@80f     ;i;L  [1LHH@D  ;;L  -1LHH@;    ;L  1LHH@    ;L  1LHH@    ;L  1LHPH@;L  t1LH'H@H=
 1H=
 1H=s
 1H=
 1fD  AVIAUATUSH" ;;L ;HPxHJHHx*HcLH@HH)HH!  ;DmIMcHc;H@N4H@L,InE%   =      HE Hh H   HE`L0Mt;YAV   AVAEu$<t % =
  tHE`H     !    ;Hm`LHHE ;L []A\A]A^ ;H   HAHTf     LH%kH= 1bH55C Lc AWAVAUIATUSHHH<" dH%(   HD$81;];L0S;HPxHJHHxD"=IcLH@HH)HH  ;IFAl$HD$HcEl$;McH@H,;H@J@%   =   h  ;H@N,   1LH*HD$;AT$;AH@HcMcL4HmH@N,E%   =     HE L` MO  LXAE   u:<t6 
  t&M$   Mu<H=J 1  fD  w    M$   M}  IGx  ;1H5B HHAFu<t% =
  uL;H3A HH;{LH   H;aHA HH;HHT$HHE%   =     HE HU;H@HD$0AE#  <  % =
    HL$0MHT$ HL$HE1Lj HL$(AD   HHT$0XZ;U|  UAMAF΁   u  <m   
  Y  H  
  Ht$L;>HL$HHD$8dH3%(   =  HH[]A\A]A^A_ ;	HT$0   HHt;HAEHT$(LHHL$0;HD$ MHL$HLA$   j LL$0HHL$(HT$8mY^fD  IMy{M$   Mu<t% =
  /;A   H;H*HHII$   @    H-q  ut     
  HE%   =   uGIIVH@HD$0Ht$HLmf;   HH	I8;HT$0   LHH    cH@JH@HD$D       
  HED  HHzH5! LH=b 1H= 1H=9 1fAWAVIAUATUSHH|" ;;L ;HPxHJHHx*HcLH@HH)HHv  ;DmIMc[;H@N4LU;H@HcHcL,1H@L<InE%   =     HE Hh H'  Lu`M  HIvHt$F_  <W  % =
  G  IvHt$F
  <  % =
     IF    IF    AE   Y  IExK  ;WLHIFAGu<t% =
  u;(LHIFHH5?HH   H9   H   ;L H[]A\A]A^A_D  <S 
  ?11HXfD  ;Ht$Ht$VvgV@ ;Ht$lHt$Vv/V@ ;IH   HH'Hd HH= 1H=V 1H5 LH= 1H=; 1ff.     AUIATUSHHp" ;;;H(H(;H;r;HHxLaL`x_L;     ;KHH+HHHA$;2H@ H)H  Lm;HH(;	   H5 H;MtAU  AU;;H  H@H8 _  H  H@H8 ;}  ;H  H@H8 W  zH  H@H ;@    [;H  H@H8 L  ?H  H@H ;@   u;!;H  H@H8   H  H@H ;x#  ;H  H@H8    ;H  H@H @   ;H  H@H8   H  H@H H8 t[;t;H  H@H8   XH  H@H ;H Hx
  51H1f     ;;HhPH;hX  ;H[H]A\A] ;H  1HH;H@H @;H  H@H8   H  H@H ;@     r;H  H@H8   VH  H@H ;@t?;;H  H@H8   H  H@H ;H Hx  ;H  H@H8 5  H  H@H ;@;H  H@H8   H  H@H f;Hf.B(   EF  f     ;iHX@ S;H  E1HHH@    #;H  1HHH@    ;H  1HHH@    ;H  H@H8   H  H@H ;@% =
  f    s;H  H@H8   WH  H@;H(B1HH%;fD  ;H  1HHH@    ;H  1HHH@C    ;H  1HH`H@    ;HH   HFHLfD  ;aHILHk;;H  H@H8   H  H@;H(
   HH; ;H  1HHH@+    ;H  1HH`H@J    ;H  }1HH0H@    [;H  M1HH H@    +;H  H@H8    H  H@H H Hx ;;H  H@H8   H  H@H ;H@80~;H  1HHPH@    {;H  m1HH H@C    K;H  =1HHH@    ;H  1HHH@    ;H  1HHH@-;H  1HHgH@ff.      AWAVIAUATUSHXL-<" H<$t$0A} dH%(   HD$H1SA} JHIFH   H  E  HUz  H   L   A} HT$Lt$1H5H1 HA} IMtHD$8 o  HT$LH:AD$%   =     I$M|$LpLt$@A} HmHHDj E1A    LHFY^HH  HB  u  HBx  A} $AT$  AT$A} HA} H<A} A} HPxLbL`xL;     A} HH+PHHA$A} H@ H)H5  HE T$0L{HC   1 H<$w0HÃ	  H> HcH>fD  A} 7H@ L)H  A} Mg1H5|- HA} ILHA} IGH@ L)H  H{ 1
A} IM|$LH^ID$H߃9l$0$L4$I~5A} I{L8A} o1H5 HA} HRHHA} H;
   HHA}  I~LHA} A} H  H@H8   H  H@H8   A} A} H  H@H8 {  H  H@H A} @   A} H  H@H8 l  oH  H@H A} @   u?OA} H  H@H8 
  1H  H@H A} x=  A} H  H@H8   H  H@H A} @.  A} H  H@H8 0  H  H@H H8   A} A} H  H@H8   tH  H@H H Hx  A} O1H13 A} 7H@ L)H  A} Mg1H5h* HA} ILHA} IGH@ L)H  CA} D$D$HcfD  A} H@ L)H  A} Mg1H5) H!A} IeLH
A} IGMH@ L)H  A} Lcs0LHVLcA} Mg  
H@ L)H	  A} Mw1H5) HA} HD$Ht$HqA} IGH@ L)H  A} Mc<$LM~HA} HD$zHt$HIFA$]  CC    fD  HL$HT$H= 1A} H@ L)H  A} Mg1H5d( HA} ILHA} IGH@ L)H]  H1H A} H  H@H8   H  H@H A} @     aA} H  H@H8 	  CH  H@A} L ,1LH
  L<$H3HLLHA} HA} A} HXPH;XX  A} HSHD$HdH3%(   
  HX[]A\A]A^A_<? 
  +H= 1&fD  [H' LHA} @HT$LHA} 'H' LHA} =@ A} L  1LHH@D  A} HT$@   LH:Lt$@ID  H@ L)H  A} Mg1H5% H%A} IiLHA} IGQH@ L)HY  A} M|$31HA} ILHID$     H\$8E1LH   l$4HD$Y    HHA} H@ L)H$  A} L{IHHHHCL;t$   LID$1J,0Ht>Hu@Ht5HeH   H}@SHx t|H}@CH@H0@ }VA} %1HHHD$(HHD$ A} HHT$ Ht$(HHH     H}@Hfl$4H\$8UfA} Hf.     A}    LLHDH@ cA} L  S1LHH@^D  3A} L  #1LHH@jD  A} L  1LHH@yD  ӿA} H  H@H8   赿H  H@H @% =
  }A} v 胿A} H  H@H8   eH  H@H @tCA} HA} H  H@H8 L  *H  H@H H Hx  A} H  H@H8   A} H  H@H @A} ƾA} H  H@H8    訾H  H@H fHf.B(   E_fD  A} oLL   H,I-@ A} GLL   HIW@ A} LL   HI@ A} LL   HI@ A} ϽLL   HI%@ A} 觽LL   HdIO@ A} LL   H<IU@ A} WLL   HI@ 3A} L  #1LHH@D  A} LL   HI@@ A} ׼LL   HI@ 購A} L  裼1LHVH@D  胼A} L  s1LH&H@D  A} OHH޹   HH@ A} 'HIVLH|A} H  H@H8   H  H@A} L ͻ   LH譽賻A} L  裻1LHVH@舻A} L  x1LH+H@]A} L  M1LH H@2A} L  "1LHH@A} LL   HIUA} ߺLL   HIA} 軺A} H  H@H8    蝺H  H@H H Hx jA} xA} H  H@H8    ZH  H@H H@80A} 4A} L  $1LHH@2	A} L  1LHH@
޹A} L  ι1LHH@賹A} L  裹1LHVH@船A} L  x1LH+H@]A} L  M1LH H@H= 1H= 1FfD  AVAUIATUSH" ;;H(;HPxHJHHxLc2ӸH@JH)H  ;EfMc譸N,    H@JHhE%   =   F  HE Hh H
  H}`H   L'Mt&AD$b  <Z  % =
  J  LgMt&AD$  <   % =
     LgMt&AD$d  <\  % =
  L  LgMt&AD$  <   % =
     H}PHt	H" L   MtAD$tID$x  H;d;HhYJT-H[]A\A]A^     ;9H   HH;AT$   AT$H}`f.     ;AT$   AT$H}`f.     ;蹶AT$   AT$H}`
D  ;艶AT$v?AT$H}`fD  ;aAT$vsAT$f.     HLH}`P@ HLH}`@ HLuH}`@ HL]H}`7LHIaH5b LD  AVIAUIATUSHo" ;蠵;虵L M  ;膵H;wH;h;HPxHjHhxUH;   p  ;ALH+HHHE ;)H@ L)HY  ;Il$LH貺ID$Md  AE  <  % I=
    ;ŴL ;軴
   H5 H7;蠴;H(薴;H  H@H8   zH  H@H8 ;.  ^;H  H@H8   BH  H@H ;@   #;H  H@H8   H  H@H ;@   u;;H  H@H8 j  ͳH  H@H ;x  讳;H  H@H8   蒳H  H@H ;@   s;H  H@H8 $  WH  H@H ;H8   8;H  H@H8   H  H@H ;H Hx  1H1D  ;H@ H)HA  LeLm@ 軲;H  H@H8   蟲H  H@H ;@     };H  H@H8 v  aH  H@;L L1HL/;7Le H(   LLH襾;H(;;HhPH;hX;[]HA\A]A^|@ ;ѱH    軱;L  譱1LH`H@(    ;艱H(;   H5 HfD  [;L  M1LH H@     +;L  1LHH@    ;L  1LHH@P    ˰;H  H@H8   诰H  H@H ;@t?蔰;H  H@H8   xH  H@H ;H Hx  \U;H  H@H8 ^  9H  H@H ;@;H  H@H8   H  H@H f;H f.@(˯;H  H@H8 d  误H  H@H ;@% =
  W    H=# 1D  c;L  U1LHH@}    3;L  %1LHH@    ;L  1LHH@K    ;ѮHHy;蹮LL   HvIfD  蓮;H  H@H8   wH  H@;L b        K;L  =1LHH@    ;L  1LHH@    ;L  ݭ1LHH@q    軭;L  譭1LH`H@    ;艭HH   HFHfD  c;H  H@H8    GH  H@H ;H Hx $;H  H@H8   H  H@H ;H@80fD  ۬;L  ͬ1LHH@    諬;L  蝬1LHPH@    {;L  m1LH H@    K;L  =1LHH@    ;L  1LHH@;L  1LH藿H@ff.      AUIATIUSHH-m" } 蝫1HS} H舫HLH9 H3HHL[]A\A]鮿ff.      AUIATIUSH   HT$0HL$8LD$@LL$Ht7)D$P)L$`)T$p)$   )$   )$   )$   )$   dH%(   HD$1H-" } ˪1H5 Hj} $   HH$   D$0   HD$HD$ HD$艪HLHH踼HL轾HD$dH3%(   uH   []A\A]zf.     H(dH%(   HD$1HT$Ht$HD$    HD$    HD$HL$dH3%(   uH(     AWAVAUATU1SHH?  L%" HoHA<$謩HE1Hj A       HH_ fAXAYH	  L8AGu<t% E1A   =
  u.A<$K   LHAAA   1  HtDHfE  1A<$HHE1j HA       H 跻^_Ht0L0Mt(AF      uD<t@ 
  t0Ht
ǃ      H" H8 tTHH[]A\A]A^A_f  IHtH@H  HtH" ǃ     H8 uD  A<$'HE1Hj    A    HH! ZYHtBHHt:C         <    
         A   'H=" H" 賴
fD     sf     E1A   <f   tIHz  Iff.@(fD        t
HHz  u'6Hff.@(z"f.     +H=l" H" س/ A<$触1LH芨<D  HHH@HwHHC80u HIF80D  A<$/   A<$1HHR5A<$   Aff.     HE" H8 tfD  H=	" Htײ    AWAVIAUATUSHH\" ;荥;L 胥;HPxHJHHx*nHcH@HI)IAi  ;DmMcHc>;N$    H@N,';H@L<1Hζ;HHH詪LI>HH   H5" L3H5" L1Lj   1HH5 
 褸H" H} HE     H׬HIoE%   =   u\HE H@ H     111譥11d1L;3;Hh(JT%HH[]A\A]A^A_Ð;	   HHiH=	 1詸H5 L誻f.     AWAVIAUATUSH(H|" ;譣;L(裣;HPxHJHHxD"荣IcH@HI)IA  ;Al$Hcb;H    H@HL$L<FAT$;AH@HcMcL4(;H@J@%   =     ;H@N$   LHWD$;ܢ1H蒴;IȢLHmLIIH  ;蟢H5P" LH5i" L衶L1'   1LH5 HD$\M|$AD$LID$    D$譻MvAF%   =      IH@ H     MtD$Dd$D	uDLܨ1蕢11L11t$L'H= 1艶f     H|$LI1I11 11践DL;腡LH*;IpH@L$;a;HhVHl$H(H([]A\A]A^A_    ;1   LH葸@ H@JH @ D$H= 1讵H5 L诸ff.     @ AWAVIAUATUSH(H|" dH%(   HD$1;蝠;L(蓠;HPxHJHHxD"}IcH@HI)IA  ;Al$HcR;H    H@H$HHD$2AT$;AH@HcMcL4;H@N$HD$    1H貱;ILH荥;Iӟ;H@@#s  辟H薮ILIH  ;蘟H8  I9  AD$%   =   L  I$Md$H@HD$H^  H5
" L誠H5#" L[H|$1ߢHT$1LL1譟11d11LAAFS  ;ޞH$;H@HlAE%A躞      E   AM   IE   Lm;艞;Hh~H,$H(HD$dH3%(      H([]A\A]A^A_@ K;Lh@H@H@Ml {fD  ;!LHT$   H茹IHD$H;;II8  H@L$FfD  ;ɝ   LH艸 H= 1fѯH5 LbH= 1D@ AWAVAUIATUSHH," ;];L S;HPxHJHHxD2=IcH@HLH)HB   ;H$AnHc
;L<    H@L,1H詮;IߜLH脢H$;Iă   轜H5n" LH5" L述E11111诪LHI1Hi$LΡI111軝11r4$L;@LH;I+H@L$;;HhIL8H[]A\A]A^A_@ A;H@McJ@%   =      ʛ;H@N4軛   LHD$;蠛H5Q" LH5j" L袯E11111蒩LHIHL|$$LLLК 3H@JH @ D$uH5  Lݲff.     fAWAVIAUATUSH(H" ;ݚ;H(Ӛ;HPxHJHHxD"轚IcH@HH)HE  ;El$蓚IcՋ;H@L<    HHD$tAT$;H@HcHHD$X1H;IDLH;I/;H@@#/  HD$    IŃ<  H|$   蟨IH  H5" L4H5" LH|$1iHt$LCLc191111觭LEF  ;   LDd;H@Jl8AE%AD      E   AM   MeLm;;HhIL8H([]A\A]A^A_    ;LhD$    H@H@Ml ;AMc贘;H@J@%   =   t3薘;H@J,臘   HHD$pfD  cH@JH @ D$N@ ;ALLHH= 1H5 LH= 1ì AWAVIAUATUSH8H" dH%(   HD$(1;͗;H(×;HPxHJHHxD*譗IcH@HHH)HB  ;H$Ee};IcH@L<    L4c;AMH@HcH,HD$     D1H;I0LH՜H$;Iă  AH@McN,AEt&%   =     IE MmH@HD$HuL-x E%   =   f  HE HuH@H4$HD$H  H5I" LH5b" L蚪LHIHx  t$H<$FHH  HLH'LLH$趕1详LL$ MHH11IH" LD$H=HUH" L1r11)114$L|$   ;裕;Hh蘕JT=HHD$(dH3%(      H8[]A\A]A^A_D  cL8  X    ;IHT$   HH贰H$HD$fD  ;LHT$   H脰IHD$"H= 諩1脕11;111LH= 1zH5~ Lv1111质L   H=x 19f     AWAVIAUATUSH8H" dH%(   HD$(1;=;L(3;HPxHJHHx*HcH@HLH)HBj  ;HT$DeMc;J    H@HL$N<Γ;MH@HcL4蹓1Ho;I襓LHJHT$;IŃ  肓H@HcH,Et&%   =     HE HmH@HD$ HuH- ;8H5" L艔H5" L:L1LHI袒IHr  LLL1D$軧IH|  1HHHD$HL$HLyIG0Hu   fD  HIO(HP0IHuHH(LHA H{" 1
1111xt$L;EHH;H0H@J,;!;HhHl$H(HD$(dH3%(   ufH8[]A\A]A^A_    H8  c    ;ɑHHT$    H4HHD$ \    LãH5\ LT111Ԓ11若1LH= 1HT" L111藒11Nt$LrAWAVIAUATUSH8H̰" ;;L(;HPxHJHHx*ސHcH@HLH)HB  ;HT$(DeMc誐;J4    H@Ht$JHD$艐M;H@HcHHD$ o;MH@HcL<ZM;H@HcHHD$@1H;I,LE1HΕHT$(D$    Iƃ  AG;v  <n  1 
  X  HD$@h  <`  E1 
  I  裏H5T" LHD$(H5h" L蠣H|$1$HD$EtD$    DEDL$HT$ MHH=E" 1IH  H   Ht	H'" H  H茥I   H|$L(H1莏11E11DL!;ʎHHo;H赎H@J,;覎;Hh蛎Hl$H(H8[]A\A]A^A_@ %   =   u4HD$Io@%   =   u;HD$LxD  ;   1LH詩;HG    Ht$   1H;IMD  ;Hc;H@H@%   =      ;H@H,貍   HHAŉD$AfHl$(H8      LH=% 1Ǐ;H]HHHŋ@%   =   uH}跣I   & ;!   1HH菨Hf.     H@HH Lh Dl$AH5W L蟤ff.     @ AWAVIAUATUSHHHl" dH%(   HD$81;荌;L(背;HPxHJHHx*nHcH@HLH)HB  ;HT$DeMc:;J4    H@Ht$JHD$ ;MH@HcL<M;H@HcHH$M;H@HcHHD$ы1H臝;I轋LE1H_HT$Iƃ  AG%   =   "  IIOH@HL$HD$0H  H$;@  <z  1 
  d  HD$@x  <p  H$     
  T  H5" LEHD$(KH5Ī" LH|$ 1耎HD$AtA    DEH4$H|$D跛IH  Ht$H   Ht	H" HI   H|$LH11蹋11p1DL;7HH܏;H"H@J,;;HhHl$H(HD$8dH3%(   e  HH[]A\A]A^A_D  %   =   u<H$HhHD$@%   =   uoHD$H@H$D  苉H4$   1H;H2fD  ;aHT$0   LH̤HD$HD$0D  3Ht$   1H蟤;H$@ ;Hc;H@H@%   =   tJ;H@H,ֈ   HH6A fD  Hl$(H8  E    蛈H@HH Dh 貚H5+ LCH=. '    AWAVIAUATUSHHH" dH%(   HD$81;-;L(#;HPxHJHHx*HcH@HLH)HB  ;HT$DeMcڇ;J4    H@Ht$JHD$ 蹇;MH@HcL,複M;H@HcHH$苇M;H@HcHHD$q1H';I]LE1HHT$Iǃ  AEQ  %   =   g  IE IMH@HL$HD$0H  H$;@p  <h  1 
  R  HD$@j  <b   
  N  蠆H5Q" LH8  H$H5`" L蘚H|$ 1HD$AE H
     HDEAtA    DEH|$DHIHtH;  H|$L>H$1裆11Z11DL6;߅H4$H胋;HɅH@J,;躅;Hh诅Hl$H(HD$8dH3%(   A  HH[]A\A]A^A_@ %   =      H$HhHD$@%   =      HD$HPHT$(4H5" LH8  H${H5" L,H|$ 1谈HT$(HD$H     IMQց   DLD%   =   ;賄HT$0   LHHD$HD$0    胄H4$   1H;HfD  [Ht$1ҹ   Hǟ;HD  ;Hc+;H@H@%   =   ~   	;H@H,   HHZAfHH= 1/;HŃHHjHŋ@%   =   u8H}I   x 苃H@HH Dp 9    ;i   1HHמH}H= H5" LfAWAVIAUATUSHHܢ" dH%(   HD$1;;L ;HPxHJHHx*ނHcH@HI)IA  ;DmHc豂;IcH@L,    L$藂;H@H,舂1H>;ItLHIƋE%   =      HE L}H@H$HS  H5" L苃H5" L<L褗HH   HL譅HA1{LLHHE iH!HH11Z1111ȕDL;薁;Hh苁JT-HHD$dH3%(   D   H[]A\A]A^A_Ë;YH   HHƜIH$H5 LV11}114   LW"8kLH=	 H1觕H= 蛕ff.     AWAVIAUATUSHHH|" dH%(   HD$81;蝀;L(蓀;HPxHJHHxD"}IcH@HI)IA  ;Al$AHcMcK;H    H@HL$L4/;H@N, 1H֑;ILH豅IAE%   =     IE M}H@HD$0HP  ;H5z" LH8  HD$H5" LL(IH  HL1HHD$dM  LA貚AEMuLIE    D$$A   D$,A   D$(蠘MtsMHT$t&AD$   <   % =
     E   t$$t*L$(   D$,   I~P        L蘅1Q1111迒DL;~Ht$H0;Iv~H@L$;g~;Hh\~Hl$H(HD$8dH3%(   uqHH[]A\A]A^A_D  EgLHLHD$Zf;	~HT$0   LHtIHD$0    I~X H5 L菕1111͑   L軎8LH= H1@H=; 4@ AWAVIAUATUSHH  L-" dH%(   H$8  1A} 5}A} H()}A} HPxHJHHx}HcH@HH)HE  A} Dc|IcA} H@H    HL$HH$|A} SH@HcL$|1HaA} I|LH:A} Iƃ  u|H@HcH؋Ct%%   =     HL{H@HD$(HuE1H5" LH\$0}H5" L4   HL$Ņ  1背E1H1HHD$HH  H<$HtHD$MtL  H4$LH-{ 1ɉHH艏u   HL蕓u1ҹ   HH_H`" H} Hǅ      H|$HE     H考H蘔11|1161{t$LSA} zA} HXzHL$HTHH$8  dH3%(      HH  []A\A]A^A_    zH8  8    A} zHT$(   HHIHD$(.11{11{H=U 111{11[L   ~H=w 1KH5 Lܑff.     AWAVAUIATUSHX  L%" dH%(   H$H  1A<$yA<$L8yA<$HPxHJHHxyHcH@HI)IAG  A<$kwyHcA<$H@H    HL$HT$HH$MyA<$SH@HcL,6y1HA<$H yHH~A<$IA  xH@HcH؋Ct%%   =     HL{H@HD$8HuE1A<$Hl$@xH5d" LH8  HD$yH5r" L誌   HL蚐  E1H11聆HH  H<$H{HHD$ ,ǃ8      D$(MtL  H$H  D  1ɉHHu   HLu1HH߹   ׋HkHDk   HC    Hǃ      D$,   $H   LMd  H   MtAFub<t^% =
  tRL$(uREt$tFD$,u>H}P ~   H~8fD  #wH8  &    t$(tH|$ H+HD$1w11Fx11t$(L!A<$vHt$Hk|A<$HvHL$H@HA<$vA<$HXvH\$HH$H  dH3%(     HX  []A\A]A^A_ A<$OvHT$8   HH躑IHD$8dD  HH= 1wxA<$HvHH{HË@%   =   uH{YD  A<$u   1HHEH1H}X zH5 Ln11v11謉H= 1>11v11茉L   诹H= 1|ff.     AWAVIAUATUSH(H" dH%(   HD$1;u;L u;HPxHJHHx*tHcH@HI)IA~  ;DmMcHct;N4    H@N<t;H@H,t1HN;ItLH)z;Iot;H@@#g  ZtH2IċE%   =   s  HE HmHPHT$H  H5ӓ" LsuH5" L$t$HHHf  HLwHLLHD$WsHHLc|H1Et11t11資t$L׷;s;H@Jl0AD$%A_s      E   AL$   M|$Le;0s;Hh%sIL0HD$dH3%(      H([]A\A]A^A_@ r;L`rH@H@M$ċE%   =   ;rHT$H   H-HT$Hu;rLLH[K11s11蔆L   跶H=X 1脄H5W LH= 1    AWAVAUATIUSHHHܑ" dH%(   HD$81;q;L8q;HPxHJHHxD2qIcH@HI)IAGN  ;AnHcq;H    H@HL$HHD$q;AVH@HcL,yq1H/;IeqLH
w;IA  FqAH@McN4AFt%%   =     IMvH@HD$0HuE1AEtIMQց   DLD%   =   W  IE M}H@HD$0H\  ;pH5g" LH8  HD$qH5u" L譄t$0Lq~IH   Ll$HLtHHD$ HD$M  M  Mo8M  MtL謆IELpAGMoLIǇ      D$A   IG    D$,A   D$(SM   I   HtHϐ" Iǅ       LM  )I   MtAD$uk<tg% =
  t[t$u[L$t#T$(tKD$,uCI}P        L(v8fD  ;oL8      |$tH|$ LCHD$1o11^p11t$L9;nHt$Ht;InH@L$;n;HhnHl$H(HD$8dH3%(   m  HH[]A\A]A^A_fD  ;ynHT$0"   LHIHD$0    HD$Mo8I  MH= 諄IEf;nLHT$0   H脉IHD$0    LH= 1?p;ImLHzsIƋ@%   =   uI~    ;m   1LHH    I}X %PH5 L1H= 11n11cL   膱H=' 1S ATUSHdH%(   HD$1D$    Ht? Hu1HL$dH3%(     H[]A\Ld$LC{=     @J  f.     HcD$Hŀ}     LH{=      @v΍Cvƍ@v(v   CЃ	v_t-t.t:   z#HcD$Hŀ}  r   	fD  H5ٌ" Bl: =Q  )0  H5W"  lH5" kH5+" kPf.     C@(   _:x$ H5" bkZ =Q  I0  =!0  )|@ AWAVAUIATUSH8Hl" dH%(   HD$(1;j;L j;HPxHJHHx*njHcH@HI)IAl  ;DuMcDjU;H@HcL$/jU;H@HcHcL,j;H@HHD$     H$i;J    H@HL$J,iHH~  ;iH@JH@x  ;i   H@J<CxHH  LHjHIv  HL~jHt$ LI.kIH   L%C" LA$H<$HHjIMtXLq   Lq   H|$ HtA$LA$LA$LA$H= 1}    HHL1|H|$ HtA$LA$LA$;h;HhhHL$HTHHD$(dH3%(     H8[]A\A]A^A_f.     ML%N" E1HLLL|{H|$ HtA$LhfD  H}@LHQxIH   Hx tLL$pL$@ H}@HH$XrL$HHtL MtE1HcIx t+IxLT$HL$L$mgL$HL$HcT$usLэBMuHA$     H|$ HB-p5HT$ LHuLH$	pL$M    L$HA$L$H= 1{H5 L~H= 1{Hʇ" LH= 1o{xf.     AWAVIAUATUSHHL" ;}f;L(sf;HPxHJHHx*^fHcH@HI)IA$  ;DeMc4fU;H@HcHcN<    L,f;H@L4f;H@J,eHH(z   ;eH@JH@x   ;e   H@J<ZtHH   LHfHIrtuHLfLHHI(rH-i" LU LU ;Ne;HhCeJT=HH[]A\A]A^A_H=Ֆ 1yH58 L|H" LH= 1yH=^ 1y    AVIAUATUSHH" dH%(   HD$1;d;L(d;HPxHJHHx*dHcH@HI)IA  ;DeHcMc`d;N,    H@L4Id;H@J,:dHHox  ; dH@JH@x   ;d   H@J<rHH   LHdHI/q   EPvu?H}H t8HLeIHt}LHxH-" LU H<$U @ HLxH-n" LU ;Yc;HhNcJT-HHD$dH3%(   ukH[]A\A]A^f     LyIsH=I 1wH= 1wH5 LzH" LH= 1wtfD  AWAVIAUATUSH8Hl" dH%(   HD$(1;b;L(b;HPxHJHHxD"mbIcH@HI)IAE|  ;Al$Hc?bAT$;H@HcHHD$#b;AT$H@HcL<HD$     b;H    H@HL$L4aHLv  ;aH@HH@x  ;a   H@H<NpIH  ;A   aAH@McN,LLbHIn   HU" L;Aa;I7aI8  H@L$;!a;HhaHl$H(HD$(dH3%(   7  H8[]A\A]A^A_ `L8  e    H|$1d`LLIaIMtLirLLqLLHI6mI6HzL5|" LHD$ALAMtLA;Q`Ht$He;I:`H@L(wHD$H\  :   LkH  Ht$ LaHD$Ht$LL2pHHtzHt$LLHL$ulHL$HHD$HqHD$I6HyL5" LHD$ALAH|$ HtAH|$AMD  HT$ H|$LmHHhL5C" LAH|$AH|$ HtALAMLAfD  LxuHD$H=ߑ 1sH= 1sH5S LvpH= 1psAWAVIAUATUSHH\~" ;^;L ^;HPxHJHHxD*m^IcH@HI)IAD$  ;AmHc?^;AUH@HcL<)^;H    H@HL$L4^HLBrx  ;]H@HH@x[  ;]   H@H<tlIHD  ;A   ]AH@McN$LL^HIjuvH~" L;k];Ia]I8  H@L$;K];Hh@]Hl$H(H[]A\A]A^A_f     ]L8  w    LL^LHInLLHIiI6HvLIH}" H}" LMtH}" L;\LHEb;I\H@,H=k 14qH= 1&qH5ߏ L't    AWAVIAUATUSH8H{" dH%(   HD$(1;\;L(\;HPxHJHHxD"[IcH@HI)IA  ;Al$Hc[AT$;AH@HcMcL4[;H@N,HD$     [;H    H@HL$L$[HLo  ;f[H@HH@x  ;I[   H@H<iIH  LH@\HIuh  L1ZIH  Hc   1LL1H_1HIlLccLH8IoLLtH|$ L={" IHtALALA;ZLH%`;IkZH@L$;\Z;LxQZL|$L8HD$(dH3%(     H8[]A\A]A^A_fD  Ht$ L[IHw  L11LLD$c^LLHHD$0jLD$H   L=z" LHD$AHD$H|$HkLFbHt$H8InH|$LsH|$ IH 1LL1]1HIdkLaLH8I.nLLSsH|$ L=/z" IHfD  L|$HT$ LL[gLD$HLLD$qL=y" LALD$LAH|$ HtALA;X;IXI8  H@-@ LoIyH= 12mHsy" LH=` 1mH= 1
mH5 LpfjfD  AWAVIAUATUSH8Hw" dH%(   HD$(1;W;L(W;HPxHJHHxD"WIcH@HI)IA  ;Al$HcWAT$;AH@HcMcL4W;H@N,HD$     |W;H    H@HL$L$`WHLk?  ;FWH@HH@x"  ;)W   H@H<eIH*  LH XHIUd  L1VIH_  H_   1L1L([LIM_LH8IkLLpH|$ L=w" IHtALALA;jVLH\;IUVH@L$;FV;Lx;VL|$L8HD$(dH3%(   9  H8[]A\A]A^A_Ht$ LWHD$H   HT$ L1FdHT$1LHIAZH|$Lx`L=v" HD$ALQ^Ht$H8IjH|$LoH|$ IHfD  1L1LYLI]LH8I@jLLeoH|$ L=Av" IH     LkHD$H=/ 1iHv" LH= 1igH= 1iH5	 Ll@ AWAVIAUATUSHHlt" ;T;L(T;HPxHJHHx*~THcH@HI)IA  ;DeHcMcNT;N<    H@L,7T;H@J,(THH]h  ;TH@JH@x   ;S   H@J<bHH   LHTHIa   1LYLIHt" MtwH/\Im@LH8ImhLLm;HhSHHY;HSSH@J,;DS;Hh9SIL8H[]A\A]A^A_@ ;S;HSH8  H@H= 1gHs" LH= 1gH=K 1gH5 Ljff.     fATUSHir" ;RL	 H	 HH̸ 1[;AlR;eR;^RHH5 H(Z;ARHzH5 HZ;$RH=H5 HY;RHH5 HY;QHH5 HY;QHH5 HY;QH9H5a HzY;QH,H5^ H]Y;vQH_H5 H@Y;YQHBH5Ç H#Y;<QHH5  HY;QH;H5 HX;QH{H5 HX;PHH5ڷ HX;PHH5 HX;PHH5 HuX;PHH5 HXX;qPHH5 H;X;TPHH5 HX;7PHH59 HX;PHSH5 HW;OH־H5 HW;OHiH5 HW;OHH5 HW;OHH5 HpW;OHH5Y HSW;lOHH5U H6W;OOHxH5K HW;2OH{H5E HV;OHH5C HV;NHH5@ HV;NHdH5= HV;NHH5: HV;NHH5 HkV;NHH5 HNV;gNH H5 H1V;JNHH5 HV;-NHH5 HU;NHH5ƶ HU;MHH5Ŷ HU;MHH5؅ HU;H @(   MHH5م HyU;H @(    MHQH5x HRU;H @(    aMH*H5 H+U;H @(   :MHsH5E HU;MH}H5 HT;H @(    LH}H5 HT;H @(   LH{H5q HT;LHKxH5 H|T;LHuH5 H_T;xLH1H5 HBT;[LHH5 H%T;>LHH5 HT;!LHH5˅ HS;LHH5օ HS;KH sH5 HS;KHpH5 HS;KHH5 HwS;KHnH5 HZS;sKHH5% H=S;VKHH50 H S;9KH"lH5C HS;H @(   KHkH5< HR;H @(    JHDiH5M HR;JHWH5` HR;H @(    JH0H5a HqR;H @(   JHi5H5j HJR;cJH3H5u H-R;FJH/H5 HR;)JHfH5 HQ;JHdH5 HQ;IH1H5 HQ;IHH5̆ HQ;IHH5׆ HQ;IHH5 HbQ;H @(    qIHzH5ۆ H;Q;H @(   JIHSH5܆ HQ;H @(   #IHLH5݆ HP;IHOH5 HP;H @(    HH(H5 HP;H @(   HH1H5 HP;HHH5 HeP;H @(   tHHH5 H>P;H @(    MHHH5 HP;H @(   &HHH5 HO;	HH`H5 HO;GHE_H5 HO;GHLH5 HO;GHHH5 H|O;GH\H5 H_O;xGHZH5" HBO;H @(    QGHjZH5# HO;H @(   *GHSXH5$ HN;GHvSH5Q HN;FHQH5O HN;H @(   FHQH5F HN;H @(   FH{QH5: HlN;H @(    {FHH5/ HEN;H @(   TFH}H5v HN;H @(   -FHVH5 HM;H @(   FH/H5 HM;H @(    EHxH5 HM;H @(   EHQH5ۯ HM;H @(    EHzH5Ӆ H[M;H @(   jEHSH5ԅ H4M;H @(    CEHH5ͅ HM;&EH/H5؅ HL;	EH"H5F HL;H @(   DHH5ą HL;H @(    DHTMH5 HL;DHGH5 HhL;H @(   wDH H5	 HAL;H @(   PDHH5 HL;H @(   )DHH5 HK;H @(   DHH5 HK;H @(    CHH5ڮ HK;H @(   CHH5ˮ H~K;H @(   CHvH5 HWK;H @(    fCH)H5h H0K;H @(   ?CH)H5i H	K;H @(   CH)H5b HJ;H @(   BH)H5? HJ;H @(    BH(H5< HJ;H @(   BH'H5= HmJ;H @(    |BHuIH56 HFJ;_BH8&H5A H)J;H @(   8BH&H5B HJ;H @(    BHjGH5C HI;AHCH5V HI;H @(    AHCH5O HI;H @(   AH=H5P HpI;AH$H5 HSI;H @(    bAH#H5< H,I;H @(   ;AHAH5= HI;AH7"H5H HH;H @(   @H"H5 HH;H @(    @H9H5 HH;H @(    @Hb9H5 HsH;H @(   @H{H5 HLH;e@H^H5 H/H;H@HH5* HH;H @(   !@HH5+ HG;H @(    ?HCH5 HG;H @(   ?HH5 HG;H @(   ?HH5o HvG;H @(    ?H7H5e HOG;h?H/H5 H2G;K?H-H5Ń HG;.?Hw<H5ȃ HF;?Hj9H5˃ HF;>H7H5΃ HF;>H`4H5у HF;>H1H5 HF;H @(    >H1H5 H]F;H @(   l>H1H5 H6F;H @(   E>H(H5g HF;(>HQH5{ HE;>H2H5z HE;=H7H5{ HE;=HJH5{ HE;H @(   =H#H5o HtE;H @(    =HH5f HME;f=H1H5g H0E;I=H0H5e HE;,=Hu*H5f HD;H @(   =HN*H5\ HD;H @(    <H' H5  HD;<H$H5+ HD;H @(    <H$H5$ HdD;H @(   s<H$H5 H=D;H @(   L<He"H5ݩ HD;/<HH5ݩ HC;<HH5٩ HC;;HH5 HC;H @(    ;HH5 HC;H @(   ;HH5y HqC;H @(    ;HH5 HJC;H @(   Y;HbH5K H#C;H @(   2;H[9H5P HB;;H>H5/ HB;:HH52 HB;:HH5 HB;:HH5  HB;:HʵH53 HkB;:HMH5F HNB;g:HpH5Y H1B;J:H H5d HB;-:HH5o HA;:HiH5z HA;9HlH5 HA;9HoH5 HA;9HRH5 HA;9H	H5 HfA;9HH5 HIA;b9HkH5 H,A;E9HH5ǁ HA;(9HH5ځ H@;9H$H5 H@;8HGH5  H@;H @(   8H H5	 H@;H @(   8HH5 Hj@;H @(    y8HH5 HC@;H @(   R8HH5 H@;58H^H5 H?;H @(   8H7H5( H?;H @(    7HH5; H?;7HSH5 H?;7HH5 Hw?;H @(   7HH5 HP?;H @(   _7HxH5  H)?;H @(    87HH5 H?;7H$H5 H>;6HH5 H>;6H
H5K H>;6H-H5ڥ H>;6HH51 Hq>HRV" ;6HlH5- HM>;f6HH5 H0>;I6H2H5 H>;H @(   "6HH5 H=;H @(   5HH5 H=;H @(   5HH5 H=;H @(   5HH5 Hw=;H @(    5HoH5 HP=;H @(   _5H8H5 H)=;B5HkH5 H=;H @(   5HDH5 H<;H @(    4HH5ր H<;4H0H5W H<;4HH5R H<;4HH5 Hg<;4HٻH5 HJ<;H @(   Y4HH5 H#<;H @(    24HH5 H;;H @(    4HH5 H;;H @(   3HH5 H;;H @(   3HvH5q H;;H @(   3HOH5x H`;;H @(   o3H(H5@ H9;;H @(   H3HH5R H;;H @(   !3HH5K H:;H @(    2HH5L H:;H @(   2H\H5M H:;H @(   2HeH5N Hv:;2HH5Y HY:;r2HH5a H<:;H @(    K2HtH5P H:;H @(   $2H=H5E H9;H @(   1HH5< H9;H @(    1HH50 H9;H @(   1HXH5' Hy9;H @(    1H!H5z HR9;k1H4H5 H59;N1HwH5` H9;11HH5k H8;1HH5v H8;0HH5 H8;0HH5 H8;0H&H5g H8;0HIH5r Hj8;0H̯H5Q HM8;f0H/H5` H08;I0H2wH5c H8;,0HՙH5n H7;0HH5 H7;/HH5 H7;/HOH5 H7;/H1H5 H7;/HtH5 He7;~/HwH5 HH7;a/HH5 H+7;D/HH5 H7;'/H0H5	 H6;
/H3VH5 H6;.HVPH57 H6;.HyAH5J H6;.HH5] H}6;.HH5h H`6;y.HH5s HC6;\.HŌH5 H&6;?.H(H5 H	6;".HH5 H5;.HnH5 H5;-H|H5 H5;-H$zH5 H5;-HwH5 Hx5;-HuH5} H[5;t-H}sH5 H>5;W-H`H5` H!5;:-HqH5_ H5;-H<H5 H4; -H8H5C H4;,H,:H5e H4;,HooH5# H4;,H[H5" Hs4;,HmH5  HV4;o,HkH5 H94;R,H5H5 H4;5,H>iH5 H3;,HfH5
 H3;+HcH5 H3;+H'aH5  H3;+H^H5+ H3;+HH5. Hn3;+H0XH59 HQ3;j+H\H56 H43;M+HvH5' H3;0+HUH52 H2;+HSH55 H2;*HPH5@ H2;*HBNH5Ü H2;*HuKH5. H2;*HHH59 Hi2;*HEH5D HL2;e*HAH5O H/2;H*H?H5Z H2;+*H$=H5e H1;*H:H5x H1;)HH5 H1;)HH5n H1;)HPH5y H1;)HH5 Hd1;})HH5 HG1;`)H	H5 H*1;C)H<0H5d H1;&)H_.H5 H0;	)H2~H5H H0;(HH5n H0;(HH5y H0;(HKH5 H|0;(HNH5 H_0;x(Hq*H5 HB0H#H" ;T(H'H5 H0;7(H$H5 H0;(HSH5 H/;'HFH5 H/;'HH59 H/;'HH5  H/;'HH5x Hp/;'HyH5  HS/;l'HH5f H6/;O'HH5q H/;2'HH5| H.;'HH5 H.;&HQH5 H.;&HTH5 H.;&HH5 H.;&HH5 Hk.;&H=H5 HN.;H @(   ]&HH5 H'.;H @(    6&HH5 H .;H @(   &HH5 H-;HH @(    %HH5y H-;%HH5: H-;%HH5\ Hu-;%HwH5[ HX-;q%H:H5Z H;-;T%HH5Y H-;7%H@H5~ H-;%H-H5N H,;$HH5~ H,;$HH5 H,;$HluH5 H,;$HH5 Hp,;$HBH5s~ HS,;l$HUH5 H6,;O$H(sH5a~ H,;2$HKH5l~ H+;$HnH5w~ H+;#HjH5~ H+;#;H@x#HH$:Q  j*e&;#Hv8A8;#[D]HA\2f.     HtSH H8H[0Hu[D      H   UHSHGt2	tmH}HtH[]9f     H[]f     H_XHGh    Ht    H{9H[0Ht}uHCX    fD  HǇ       H}Huf.     ff.     @ HW`HH9tHt H HtH9uHtD  HHw`     HW`H9tCHtRHH9u@ HH9tHHuHHH   H    f     HHG`   H    1f     HHt4H9tH@ HHtH9uHtD  HHf     Hff.     AUATUSHH_(H   HGHHt}HPIHHtH5& H.!   HEHHPHs(H{@;IHtIHxHuHHtDHFHt;H{"HuHu+H%   LmHH[]A\A]@ HuH@ H%tHuHHH[]A\A]v*fD  H}HW,HEHHtHf     H{@H H0HEH    HuHI<$6I$gf.     ATIUHSHWHGH   v*I\$HtHHH[0Hu[]A\    Hw(HRH@?:HH|   HxIt$HHtuHFHtlH4!It$Hu[L$   I\$HAD$mI\$XH_f     HH/H[0Hu=It$HfLH$tIt$HL)AD$I|$H*LID$HH(AD$|It$HH} .5HE ZD  HdH%(   HD$1HH$    7H<$HtJ9HD$dH3%(   uH0H   t|yj      %  G?	=   vY   v1    v#   t1Ð   f         1    !ʍH!D  <t1   G%  	G?	NfD     G%     	W?	G%  	ff.     ATUS1HdH%(   HD$1H$    Ht)AI111IH>2t*Eu%H<$4HL$dH3%(   HuH[]A\H<$Hd%H$/f     1HtbHt`HN(t6HO(HH9tBH   H~0Hw8H   HB8HP0   fHGHu'HG            fHtHJ(D  HH(H@0HuLGHG HG    HG     MtHtLjf     HtHyHnHA    @ HWzfHunfD  HtZHtUH9t]HO@1H;N@tH~ tHW(H9t3Ht.~	   tH9uf     H9tH9tHR(Hu1f.        f.     HtWHtRVt)1t:	t5H.H       t1D      1ff.     f	   tËNw   H~  @ HtWHG8HtVt_HW0HP0HW0HtHG8HB8HG(HtH9x thH9xtRHG8    HG0    HG(    Ð    HW0Htu4@ HG(Ht7u    HW0HPfD  HW8HP HG(f.     ff.     @ AUAATIUSHH   ~t{H   HHHC@ML9t4Ht$H HtxutI$Ht	@   fLH%EtHt}u@HH[]A\A]fHx3H H0Hu3H1[H]A\A] H8)HH[]A\A]f.     H@     H   S   GHʎ HcH>@ H H[0/H_f.     H     Hp     HM     HG`H_HtH.H5 H'H[H'HGhH_fD  HGHH_HfH@f     H K@ 1@f     1ff.     fATUSHH   H(4  HHa!!  H}@H9{@tG1H޺   0.H} HËCt=Hu    1H!{Iu7L[]A\ H.H} CuÃt9H]IH] {Hk(tHD'L[]A\@ I[]LA\D  LcLeLMt     Hh(H@0HuHC HE HC    HC     MVL    H&H[0HuL[]A\    1HLc H=ы 1:+f.     HtGHtBF    t:H9~(u$SHHH-{Ht#H[D      1D      HH\$#&HD$ff.     ATUSH   HHH9   IH   H   &   HLS   I|$@H9{@tpH޹      ,HI9l$tc{uH{    HU0Hu8HHE8    HE0    HE(    {tHM%H[]A\D  H,I9l$uI9l$ uHL/!HL$+f1[H]A\fD  [H]A\!@ *f     HL uH=! 1b)fAUATUHSHH9&  IH  HH  HtH9z(   ~   I|$ HL   .%  HL  I|$@H;{@L  H1ɺ   *HÃ{   H7  Hu8HHP{IugHL[]A\A]f     H~ `P$E1H5H5 H81HL[]A\A]f     H[]A\A])H#fD  HI[L]A\A]    LkH   Hu8HHMCL9CL    H(#H[0H$H9uHL[]A\A]     HE1[L]A\A]    H@* It$ 1H@ It$ 1HMnH= 15'D  HtHR0ff.      H;  H2  AWAVAUIATUHSH  F  	  HL\%   H}  L}(HLu8Le0t~Y)A}t2LL	uzLL'A}}   HH[]A\A]A^A_fLI]L	ttLLLHu    H!H[0HtI9uK}fD  LLLA}LO!vf.     LLE'HuL 1H=ֆ 1%    AUATUSHHtMOwE   H੼ t6u!LoPMt@HL[]A\A]&'fD  H[]A\A]"E1HL[]A\A]    HoHHu(f.     L IL]Hm0Ht%Hs@E11IHHI4$HtMuH&Iff.     fHtwSHFu HHHHDuKHHtHC     Ht$'Ht$HHCHX(HCHS@HP@HCHC H[ÐH[fD  ff.     @ ATUSHtcHt^H_HtUHE1D  HLmH[0Ht)HsHuMuHWH[0IHuL[]A\ E1[]LA\D  H   AUATUSHH   H   H_H   HIE1HsHu0HCHHt'HpLuMt2HL    H[0HuHL[]A\A]f     HH[0IHuf.     HE1[L]A\A]    H'AUIATIUSHHHtDH@HH5(HHt-HpL    HDH[H]A\A]     HLLH[]A\A]     ATUSH dH%(   HD$1HD$    Ht>HHt61HHt/xu!HL$dH3%(      H []A\@ 1@ HHt$HHtH}@HT$HJ'IHtBHPHHSH--" IHD$Ht	HU HHU MtLd H--" HD$HU HuHD$HHD$>fHtwHtr~utH9~(tfSHHH@H9~@td      "Ht0HKXHu
HCX#HHQ0HuHA0HH8H[fD  1H[     H@ 1D  HHt$Ht$HKXHHuAUATUSHH^H   IHL-ƀ OfD  u;   LHk&H{bHsHT&   H5 H@&H[0Ht%CuHKPIt$@LHH[0HuH[]A\A]    H   UHSHGthvXt;	t\H   []f.     {uHsPHHH; t@H]0HuH   [] uHXH}H[] 1D  H(#fD  Ht.SH
H[0HtHOu[f        [ø    1H   u]HH9rHtJfHBXHu%D  H@0HtH9pHuH@H    H@0HuHBHtztHH9rHuHBH    D  H9t1HB0HuHJ(H HHEH9tHP0HuHH(Hu   H9[f.     D  !    UHSHH   oE  CH[] Hln Ht'   GHx HcH>fHO      H      Hf      HD      HE      HS      H      H~      HK      H~      Hl      UHSHHH;8KDEHHH[1H=% ]    SH3~H=~ 1H1[fD  H   AVAUATUH-}'" SH} L%'" } L  M4$HLAHH=~ 1H5'" 1H} U} M$$H  BLHH[]A\A]A^        HH=Q 1f.     SH
   ^HHp	    HHɀJH9u@	 [D  SH   H@    [fAWAVAUATUSHHFHI
H<&" Hŋ;jL-&" ;L  M} QHLA֋;A1H58 H;H@@%   =      1H5	 HQ;Lp   HLVHHLh;ue;Mm L  LHALHH[]A\A]A^A_     1H5 HH@H Hx h1H5_ H;H@@%   =   tI=1H54 H|;Hh!   HHHI
H=b} 11H5 H3H@H H@ fD  AVAUATUSH$" Iċ;H-$" ;L  Lu HLAՋ;1H5| H;H@@%   =   tZ1H5Q H;Lh>   HLHHLu[L;	;Hm L  [H]HLA\A]A^@ 1H5 HH@H Hx H=^| 1off.     @ ATUSSHT#" Hŋ;1H5y H;H@@%   =   tTW1H5N H;L`;   HLHHHHH[]A\D  1H5 HBH@H Hx D  SHHt@[     H@[fSHHtht[fD  H[    AVAUATUSH5"" ;f1H5] H;IKH-"" ;L  Lu 2HLAՋ;"1H5 Ha;H@@%   =   t|1H5 H6;Lh   HL;HH5Q"" IT$;HHB ;Hm L  [H]HLA\A]A^@ {1H5r HH@H Hx ff.     fUSHH!" ;81H5/ Hw;H@@%   =   tB1H5 HL;Hh    HHQH[H]  1H5 H
H@H Hx H[]@ HtwHHtfD  SH!" HOH wB   H "  t2    Ht2H@    HH@    @    H[       Hu1[1ff.     fSH3HHtHHtBHX[@ G	tLv2tEu8HG@Ht?H;xXt%H;xPtHG@    fD  uH( t ; c  HGH    ff.     ATU1SHtoHEG   ~	[]A\fH;HtH9tCHCH    HtL MtHC    LH" H[]A\     H    HCH    Ht!L MtHC    H( u	 	릐H1H=tw /CJ    AWAVAUATIUHSHH)" ;Z;SH  L5" I> t!;6;M>L  %LHAH$H}  HI   Iŋ;1H;ILLLHI> tLQAEMw   H "  u}I> t ;;M.H  LHHL[]A\A]A^A_D  cIHtNMWI$IEAD$D    L8      H}pHv6AEhH=v 1ff.     @ HtwGHt HcH>D  1D  k @@fD  H1fD  +  USHHH-4" } dHtg} WH8  H9tT} DH` HHt6H[C%   =   u3HHP HtHHtH9tH     1H[]    }    HH@Hff.     ATUH-z" SH} HtA} H8  H9t.LcAD$%   =   u)I$H@ Ht[H@]A\ [1]A\f     } H   LHHtH[C%   =   t}    HHxHH@ ff.     fAVAUATIUH-" SH} Hty} H8  H9tfMl$AE%   =   ubIE Lp LkAE%   =      IE H@ IHPMd$AD$%   =   u=I$H@ @H[]A\A]A^D  } 8   LHI }    LHxfD  }    LHXi Ht_UHSHHCPvH;HtH  H[0HuH[]ÃtH{XHtHZH{HN@     1H   UHSHHHJw   H  u~H{HtH?   H9thHtwH9trHE HCEHt
H9tHPttHxXHtHHHt>Hx( HDHxH   H[]D      HC    fD  H HtHtHHtHf    H/ff.     @ UH   SHH" HHtH(H@    @    HH[]Ð1H=Eo HH[]     AUATU1SHHtoHEG~L%" HA$H[]A\A]L/MtI  Ht4H9t?LL%" Iǅ      H    L@ L%i"     L%Y" A$ff.     ATUHSH" ;'; HtKH;I	1H;HLHH4n HAD$H[]A\fH8  [H]A\ÐATUH-z" SH} } H   H8  H9tJ} Hm HHpt,LcAD$%   =      I$H@ H   f} 8H}m HH&tH[C%   =   u1[]A\     }    HHXfD  H=u}    LH(HoH[C%   =   t }    HHH oHH@  AUIATAUHSHHH  }  ~/1
 |=  ~!HcH9rHH[]A\A]@ A   AtAD$   Hv$E <  <u})  f.     DXIMteHHE1HJ
HLHHyxH;IHHL2HL[]A\A]@ EuHE1[L]A\A]f.     HHcH    H5k LA   {	H5lk LduA   LI}   HHII   HH/I    AVAUATUSHH   HHH             IM   HH1Hc*ILLHIx$LELHH&HHLLLHH[]A\A]A^ÐH=l 1RH1[H]A\A]A^HH5i HT$   HT$*H5i Hu7   D  HHH%HHHH[]A\A]A^HT$HIff.     Ht7Ht*ATIUHSHLHH[]A\@ HP1ff.     fAUATIUSHHH-m" } H8  Ht<MtLAŅu6HV} AkIcHHmH    H[]A\A] H } A5IcHH7AtH[]A\A]fD  AVAUIATUHSHL%" dH%(   HD$1A<$U    #  utE1% =
        H$          HE H}H@H$HHR~>E    Mt/H$HLHH   HE" HHD  HIHtH!" HHL$dH3%(   L}   H[]A\A]A^A<$H   HHTHJ@ A<$H   @8tID  A<$HHU@ HPff.     AUATIUHSH(H" dH%(   HD$1;>;7HD$    H   Hm@Ht|HUpHtsHE xu@   HE HUpxHL$Ly;Ll$ILLHH" LHD$HU HD$zuH     1LHL$dH3%(   uH([]A\A] fD  AUATUSHHdH%(   HD$1H   Hn@H   H}p    L%" A<$H   A<$H8  H9   CH$    %   =      HLkHpH4$MtFHtAC    HE xu@   HE xHUpHLwHu$H4$fD  L fD  1HHL$dH3%(   uiH[]A\A] A<$GHH   HH4$IU     1@ A<$H4$H   @8r6 SH" ;;[H8  f.     @ AWIAVAUIATUSH   HT$0HL$8LD$@LL$Ht7)D$P)L$`)T$p)$   )$   )$   )$   )$   dH%(   HD$1H" M  81   HHH(L$   IH$  D$0   HD$HD$ HD$j E1Lj HcLHLD$XHZfHHCxHHCxH;   U  HH+SHHC H)HH  I$L}HEHC L)H  LHMgIGHC L)H)  IE8HIl$Hcp4HHID$HC H)H  IE8HHHcp8HH   H5id HHE H+jH  HVHH   @   HuiHtaHρ 
  tNfD  HCXH9CP   H   HL$dH3%(     H   []A\A]A^A_ËH@ t+H8 tHFH H Hx   1H1@ @   {  H@  HFH H Hx  uHFH   HQ 1HH@H8 (H  HVHH1HWH  H@H @   HVHH1H%H@H @   u2H  HVHH1HH@H x  H  HVHH1HH  H@H @
  HVHH1HH  H@H @   HF	  H Hu1H_H@H      1HHsNfD  LL   H-ID  H HH   HHD  LL   HID  HH   HHD  HFH Hu1HH@H     HH( H8   1HTH@H @t4H  HFH8 x1H(H@H H Hx  +H  HFH Hl  @HFH fHf.B(   E    HFH H Hx cHF   f.     HFH H1HH@H H8 %H  HFH8 g1HVH@H H HxYH  HFH8 h1H"H@H H Hx H  HFH8 u1HH@fD  H H@80fD  H  HVHHP1HH@H @% =
  E1HH@H @%H  HFH8 r1HVH@_H @}:fD  AWAVAUATUSHH   Ht$HT$@HL$HLD$PLL$Xt:)D$`)L$p)$   )$   )$   )$   )$   )$   dH%(   HD$(1HL  bIH" 8IHL cLIFxHIFxI;   Z  LI+VHIF L)HM  IE    LIl$ID$*H|$D$   IH$   D$0   HD$HD$0HD$ j LE1j HT$HcLLD$ Iu(ZYFuI<tE% =
  t9   LLyIF H)H9HH   LH!D     LL@IF H)H~LLLmEHEIF L)H  HC8LImHcp4LHIEIF H)H  HC8LHHcp8LH   HE I.MtAs  H5\ LI  HVHH   @   HucHt[Hρ 
  tHIFXI9FP   LJ   H\$(dH3%(     H   []A\A]A^A_ËH@ t+H8 tHFH H Hx  1L1<@ @   {  H@  HFH H Hx  uHFH   L8Q 1LH@H8 (I  HVHH1LI  H@H @   HVHH1LUH@H @   u2I  HVHH1L$H@H x  I  HVHH1LI  H@H @  HVHH1LI  H@H @   HF  H Hu1LH@H      1HLNfD  H5AZ L!@ LL   LEID  HH   L%HD  L  LL   LID  HFH Hu1LH@H     HL0 H8   1LH@H @t4I  HFH8 1L`H@H H Hx  3I  HFH Hd  @HFH fHf.B(   E    HFH H Hx kHF   fHFH H1LH@H H8 5I  HFH8 w1LH@H H HxiI  HFH8 p1LbH@H H Hx I  HFH8 u1L2H@fD  H H@80fD  I  HVHHf1LH@H @% =
  U1LH@H @5I  HFH8 z1LH@gH @BfD  AWIAVAUIATUSH   HT$0HL$8LD$@LL$Ht7)D$P)L$`)T$p)$   )$   )$   )$   )$   dH%(   HD$1H! M  8!   HHH(L$   IH$  D$0   HD$HD$ HD$j E1Lj HcLHLD$XHZVHHCxHHCxH;     HH+SHHC H)H  I$L}HEIt$(FuG<tC% =
  t7   LHHC L)H7LL   HI    LHHC L)H~LHMgIGHC L)H	  IE8HIl$Hcp4THHiID$HC H)H  IE8HHHcp8 HH5   H5!U HHE H+H  HVHH   @   HuiHtaHρ 
  tNfD  HCXH9CP   H   HL$dH3%(     H   []A\A]A^A_ËH@ t+H8 tHFH H Hx   1H1@ @   {  H@  HFH H Hx  uHFH   HQ 1HH@H8 (H  HVHH1HH  H@H @   HVHH1HH@H @   u2H  HVHH1HH@H x  H  HVHH1HRH  H@H @  HVHH1H H  H@H @   HF   H Hu1HH@H      1HHNfD  H^ HH   HH]D  LL   HID  HH   HmHD  HFH Hu1H:H@H     HHPH H8   1HH@H @t4H  HFH8 1HH@H H Hx  KH  HFH Hl  @HFH fHf.B(   E    HFH H Hx HF   f.     HFH H1H6H@H H8 EH  HFH8 1HH@H H HxyH  HFH8 h1HH@H H Hx H  HFH8 u1HH@fD  H H@80fD  H  HVHHp1H_H@H @% =
  e1H6H@H @EH  HFH8 r1HH@_hH @:fD  AUATUHSHH! 8IH8  Ht3HLLcIt$LHLHHK    HH[]A\A]ÐAUATIUSHH^! 8IH8  Mt)uHHc2HcLLHHnK    HH[]A\A]f     H5]! DNDFJ
1Ax
1i
1f
1e
1r
1P
1Dȉ
1D
1~vAA
DAAD1AA
DAAD1ЍAAD1AADЉ! BAA
DAAD1ЃIAA
DAAD1ЃRAA
DAAD1ЃUAA
DAAD1ЃeAA
DAAD1ЃcAA
DAAD1ЃaAA
DAAD1ЃpAA
DAAD1ЃsAA
DAAD1ЃeAA
DAAD1ЃmAA
DAAD1ЃaAA
DAAD1ЃNAA
DAAD1DAA
DAAD1DAA
DAAD1AA
DAAD1AA
DAAD1ЍAAD1AADDR! D
ADA1ABeAA
DAAD1؃mAA
DAAD1؃aAA
DAAD1؃NAA
DAAD1DAA
DAAD1DAA
DAAD1AA
DAAD1AA
DAAD1؍AAD1AAD؉'! B	AA
DAAD1؃eAA
DAAD1؃mAA
DAAD1؃aAA
DAAD1؃NAA
DAAD1؃lAA
DAAD1؃aAA
DAAD1؃cAA
DAAD1؃oAA
DAAD1؃LAA
DAAD1DAA
DAAD1DAA
DAAD1AA
DAAD1AA
DAAD1؍AAD1AAD؉! B
AA
DAAD1؃sAA
DAAD1؃eAA
DAAD1؃tAA
DAAD1؃uAA
DAAD1؃bAA
DAAD1؃iAA
DAAD1؃rAA
DAAD1؃tAA
DAAD1؃tAA
DAAD1؃AAA
DAAD1DAA
DAAD1DAA
DAAD1AA
DAAD1AA
DAAD1؍AAD1AAD؉N! BAA
DAAD1؃eAA
DAAD1؃uAA
DAAD1؃lAA
DAAD1؃aAA
DAAD1؃VAA
DAAD1DAA
DAAD1DAA
DAAD1AA
DAaAAD1AA
DAAD1؍AAD1AAD؉E! D
DAAD1ЃtAA
DAAD1ЃaAA
DAAD1ЃDAA
DAAD1DȃtAA
DAAD1DAA
DAAD1AA
DAAD1AA
DAAD1ЍAAD1AADЉo! 
ȉ1ȃe
ȉ1ȃg
ȉ1ȃr
ȉ1ȃa
ȉ1ȃT
ȉ1Dȉ
ȉ1D
ȉ1
ȉ1
ȉ1ȍ1ȉȉ! B
ȉ1ȃn
ȉ1ȃo
ȉ1ȃi
ȉ1ȃs
ȉ1ȃr
ȉ1ȃe
ȉ1ȃV
ȉ1Dȉ
ȉ1D
ȉ1
ȉ1
ȉ1ȍ1ȉȉ! 
1Bg
ȉ1ȃn
ȉ1ȃi
ȉ1ȃd
ȉ1ȃo
ȉ1ȃc
ȉ1ȃn
ȉ1ȃE
ȉ1Dȉ
ȉ1D
ȃd1
ȉ1
ȉ1ȍ1ȉȉ! 
Љ1ЃI
Љ1ЍPc
ʉ1ʃi
ʉ1ʃl
ʉ1ʃb
ʉ1ʃu
ʉ1ʃP
ʉ1Dʉ
ʉ1D
ʉm1
ʉ1
ʉ1ʍ҉1ʉʉ! 
Љ1Ѓe
Љ1Ѓt
Љ1Ѓs
Љ1Ѓy
Љ1ЃS
Љ1AD
ADA1ED
ADA1Dǉ
ǉ1
Ɖ1ƍ1ЉЉ#! fHHY!    f H@    HfD  SH,!    HHHCH[f     HtgAUIATUSHH/H}Ht?L%O! D  H{HH] I$HtI$HHugIE IEH[]A\A]@ ff.     @ HtWAUIATUSHHH-! Ht& H{L#HE HtHE HLMuHE HL[]A\A]fff.     @ H1HtfBHHu@ ff.     @ AUIATLcUSHLHH! LLHHHCHHHCD`HkSHE HCH HCH[]A\A]f     AUATUSHH*HcHX! }HcIHv! 8HHsHtMLE1 HsHtHcSAD9|2HSHHcCHHHuA, HL[]A\A]E1H*!       H=I@ H)$@ AUATUHSHH! H  8Hs IHtV   VHC     H{0L%! HC0    H} A$HE     H3HtVv\VH    H{fHsHC    HtVv=VHC    HA$Hǅ      H[]A\A]fLfD  LfD  H7 HtHG@HHHED  1ff.     fAWAVIAUATUHSHH! HT$8HHL GH   HRHT$D=! 1IHHLHAW   IA$   H> 3Y^H  D=! 1HHAWIHQ. A$   LH߹   XHCxZHHCxH;     LH+SHHC L)H  Mt$LHIl$IHC H)H  LeH   HH+H5= RLH7H  HVHH  @   HuNHtFHρ 
  t3 HCXH9CP   HH[]A\A]A^A_Hf     t+H8 tHFH H Hx  1H1@ @     H@  HFH H Hx  uHFH   f     Ha -! 1H=' HIUA    1HH@H8 H  HVHH1HH  H@H @ W  HVHH1HH@H @   u2H  HVHHx1HH@H x  H  HVHH1HZH  H@H @  HVHH1H(H  H@H @   HF   H Hu1HH@H 1HH&fD  LL   HID  H HH   HHD  HFH Hu1HjH@H     HHh H8   1H4H@H @t4H  HFH8 1HH@H H Hx  CH  HFH Hl  @HFH fHf.B(   E    HFH H Hx HF   f.     HFH H1HfH@H H8 UH  HFH8 1H6H@H H HxqH  HFH8 h1HH@H H Hx H  HFH8 u1HH@fD  H H@80fD  H  HVHH1HH@H @% =
  u1HfH@H @UH  HFH8 r1H6H@_H @?ff.     AWAVIAUATUHSHH! HT$8%HHL H_   HHT$D=n! 1IHiHLHAW   IA$   H7 Y^H  D=-! 1H'HAWIH' A$   LH߹   aXHCxZHHCxH;     LH+SHHC L)H  Mt$LHIl$IHC H)H  LeH   HH+H5R7 LHH  HVHH  @   HuNHtFHρ 
  t3 HCXH9CP   HH[]A\A]A^A_,Hf     t+H8 tHFH H Hx  1H1D@ @     H@  HFH H Hx  uHFH   f     H8a -v! 1H=H! lHIUA    1HH@H8 H  HVHH1H_H  H@H @ W  HVHH1H-H@H @   u2H  HVHHx1HH@H x  H  HVHH1HH  H@H @  HVHH1HH  H@H @   HF   H Hu1HgH@H 1HH胼&fD  LL   H=ID  H HH   HHD  HFH Hu1HH@H     HHh H8   1HH@H @t4H  HFH8 1HxH@H H Hx  CH  HFH Hl  @HFH fHf.B(   E    HFH H Hx HF   f.     HFH H1HH@H H8 UH  HFH8 1HH@H H HxqH  HFH8 h1HrH@H H Hx H  HFH8 u1HBH@fD  H H@80fD  H  HVHH1HH@H @% =
  u1HH@H @UH  HFH8 r1HH@_H @?ff.     ATIUSH1HdH%(   HD$1HH$    <H$HHt0HsH~@H{1HtHHͻI     H{1L1谻IMtH{LLcHtH$! HH<$Ht	H! HD$dH3%(   u	H[]A\    AVAUATIUSHH_`Lw(HtHIH-+ @ HHt+H{H|uHSHsLL%HHuI|$cI|$[]Mt$A\A]A^ff.     AWAVAUATUSHHHdH%(   HD$1H$    HtEIHHILfIHCHxH tHH<$Ht	H! LLHHHD$dH3%(      H[]A\A]A^A_fHpH1RIHtZH<$Hnt%HCHxLxHH! L{LIGH<$Ht	H]! MdLSfH<$HuHCLxHX     AWAVAUI   ATIUSHHdH%(   HD$1H$    HHt; u&HL$dH3%(   H  H[]A\A]A^A_D5! 1HHHLAVIA$      H; YA^A_1HHHtHHa! I}H4$H<$IHt	H?! D=! M   I~1HHLAWIA$      H". I~A[1[a! H  WHHLSIA$      H IEAY1AZ! HxHSIH- A$   HL	   TXZD  1H= HHLAWIA$      Hb- Y^1D-! H=y HHLAUIA$      H& _D-_! 1AXHcHIAUDD  H=  ff.     @ HtwAUATUHSHHr   H5, 1AIHtHLLHIL   H5 HDHH[]A\A]1ff.     fAWAVIAUATUSHHHHt$   HL$ dH%(   HD$81HD$0    HD$Hm  D  H; ^     LHmHkIHtـ}  tHT$0H1Lc8! 1HIǉT$HLLT$IA$      RH
 (A[XMtA! 1LT$HLLT$IA$      RH AYAZHH={+ а  HL$ H|$L1$D%A! 1HCHLLATIA$      H_ }D%! X1ZH= HLLATIA$      H @YD%! H^1HLLATI	   A$   H* _D%! 1AXH=k HA$      ATIH* LLE1Y^MLIEHHH觸H5! HcH  L&+ IcL>f.     
Љ1UЉ
Љ1UЉ
Љ1UЉ
Љ1UЉ
Љ1UЉ
Љ1U
Љ
Љ1U	Љ
Љ1UЉ
Љ1UЉ
Љ1UЉ
Љ1UЉ
Љ1UЉ
Љ1UЉ
Љ1UЉ
Љ1UЉ
Љ1U Љ
Љ1VЉ
Љ1VЉ
Љ1FЉ
Љ1FЉ
Љ1D$DA1DALLL$蝯HHLATL$$IA$   Ht$XZHtH! HMtH! LH|$0Ht	H}! HD$0    H; HL$8dH3%(   HD$  HH[]A\A]A^A_        HH='    Ht$0H  HD$Hx蘾H  L`]! 1HD$(LT$RHLLT$IA$      RH& 艿! 1T$$A[XLT$(IzHLLT$IA$      RH C! 1LT$$XZ;HLLT$	   IA$   RH& Y^9D  HL$ H|$LLSH|$0D%s! 1pHLLATI   A$   H 誾_D%2! 1AXL6HLLATA$   	   IH% pAYD%! 1AZH=% HLLATIA$      H% 1A[A\L%% ]D%! 1H= 諽HLLATI   A$   H3% _D%y! 1AXH=I mHLLATA$      IH 觽AYD%.! 1AZH2HA$   	   IATH$ fAHFIL^AH8ImodnarodHarenegylIcL1I)HsetybdetH1IL1IuespemosM1L9tZID  MIHIL1I L1HHH1HHIHH1L1H M1M9uI)MBINTL% EOcM>AEBI0L	EBI(L	EBI L	EBIL	EBIL	EBIL	EL	H1IHHHL1H1I HMHHH1L1H L1HH@H1H IH2HII1LJ4'LIHI1H1H HHH1H LII1HHLIH1I1H H>LHIH1I1HHII1H I1A1ͺff.     fAV   AUAATIUSH1HHt; u[H]A\A]A^     D5! DH.HHLAVIA$      H  XHZ[]A\A]A^f.     AV   AUIATIUSHHHt; u[H]A\A]A^     HD5! 1/HHLAV   IA$   H!" iY! ^1Mt
A}  LuH= HHLSH5 I   A$   XHZ[]A\A]A^ÐAW   AVIAUATIUHSLHȿIMtA<$    Ht}  ubHt; uHL[]A\A]A^A_fD  -! 1H8HLLUH I   A$   sXZ    D%! 1HHLLAT   IA$   H 1Y^`f.     D=! 1L诸HLLAWA$   I   H _AXAUATUSHHH! 8   HI葾1I1HSHHt}  udHt; uHL[]A\A]@ HL1;HLLj IA$      H EXZLH[]A\A]D  1HLHLLj    IA$   H Y^bfD  H! ATUHS8L  I|$    HHE8HHcp4aHHIt$j I
   A$   HH 艷HE8_HAXHcp8&HIt$Hj IA$      H NHE8AYAZHpPHhXHt> uHt}  uI[]A\@ 1HHIt$   j IA$   HH Y^HuD  HH1裺HIt$Hj IA$   
   H 諶XZ[]A\@ AWAVAUATUHSHHl! L  8薣Ml$ M  HHL0JHH躼   HIHCxHHCxH;   y  LH+SHHC L)Hl  MnHC MfL)Ht  LHIͤHH袨   H5 HI$L#藳H  HVHHp  @ 	  H  H  Hρ 
        HCxL3HHCxH;   \  LH+SHHC L)H  Mn   HMfH} D5! 1IH	  蔴HLHAV   IA$   H δHE8Y^HxPHt4-1! 1RHLHUHr I   A$   荴XZLHpHHC L)HE  Il$I   HL#H5G -HHH  HFH H  @ 9  P  P  Pс 
    fHCXH9CP  H蚬H   []A\A]A^A_ËH t+H8 QHFH H Hx  1H1蠸@   ;  H@  HFH H^  @HFH fHf.B(   E  f     1HH@H8 H  HVHHa1H׳H  H@H @   HVHH91H襳H@H @     H  HVHH1HpH  H@H @  HFH H1H>H@H H8 H  HFH8 1HH@H H Hx}H  HFH8 p  1HڲH@H H Hx H  HFH8 u1H課H@fD  H H@80s  fD  H耹z LL   HuIyD  LL   HUIqPf.     tkH HOHxHFH H Hx /HFH H@80V  f     HH H=!  @ @     PtHHz  !PHF       1HvH@H8 H  HFH HF1HGH  H@H @ HFH F  H1HH@H @     H  HFH H1HH  H@H @HFH )  H1H记H  H@H @   HFH    H1HyH@H @t6H  HFH H1HKH@H H Hx  H  HFH H1HH@H @4H  HFH8 u1HH@D  H fHf.B(   E1@ Hu1H豯H@H f.     1HHÝ
fD  HVHH 1HfH  H@H @   HF  H Hu1H5H@H fD  1HHKfD  LL   HID  LL   HID  H H  HVHH71H藮H@H xH  HVHH1HeH@H @% =
  fD  H  HFH H41HH@H xH  HFH H1HH@H @% =
  H @{HFH H Hx  /HFH Y    Hd1H腭H@H H8 H  HFH H  1HSH@H H HxH  HFH8 1HH@H H Hx :H  HFH8 1HH@Hu1HӬH@H @    HH HFH Hu1H蝬H@H fD     HH谚` HFH H Hx #HFf.     H8 x1H<H@H @t4H  HFH8 ^1HH@H H Hx  H      1HޫH@H @H  HFH8 1H讫H@mH ~ff.     fAWIAVIAUATIUSHHv! H  H4$8蜗Lm LH]M  H3HHt$H輰HCxHt$HH;   HCx  HH+SHHC H)H  LnH$LNMLHHLL$OHHԘLL$IHC L)HT  IiMa   HH+H5 荧LHrH  HVHH  @   H   H   Hρ 
     fHCxHHCxH;     HH+SHHC H)H  Lm   HLeHHHHC L)HO  Il$I   HL#H5 触HCXH9CP  HH[]A\A]A^A_cHt;H8 AHFH H Hx  1H1耭H[]A\A]A^A_Ð@     H@  HFH H^  @HFH fHf.B(   E^  f     1H֨H@H8 H  HVHHF1H觨H  H@H @   HVHH1HuH@H @   9  H  HVHH1H@H  H@H @8  HFH H1HH@H H8 H  HFH8 {1HާH@H H HxmH  HFH8 p  1H誧H@H H Hx eH  HFH8 u1HzH@fD  H H@80   fD  LLι   HUID  H0Ht$fD  H   H H     HhZ HVHH1H֦H  H@H @   HF  H Hu1H襦H@H fD  1HH軔S"fD  LL   HuID  HH   HUHCD  H0 H  HVHH1HH@H xH  HVHH1HեH@H @% =
  UH @f     HFH H Hx  /HFH iHFH Hu1HiH@H f   HH耓 HFH H Hx HFf.     H8 `1HH@H @t4H  HFH8 N1HH@H H Hx  oH      1H认H@H @mH  HFH8 1H~H@mD  AWAVAUAATIUSHHY! H  8胐H  L} MtMuH   []A\A]A^A_     H0HHHt$ݨH腩HCxHt$HH;   HCx  HH+SHHC H)H  L~LvDHLHaHH覑HHC L)H3  InHHI`L3   HH5
 YH  HVHH"  @   HuPHtHHρ 
  t5D  HCXH9CPnHޚH   []A\A]A^A_ËH    tSH8 tHFH H Hxx  1H1@ H1[]A\A]A^A_    H fD  @     H@  HFH H Hx  uHFH @<HFH fHf.B(   E  f     1HH@H8 H  HVHH1HH  H@H @ G  HVHH1H赡H@H @   umH  HVHH^1H脡H@H xt?H  HVHH81HVH@H @% =
  ,@ H  HVHH71HH  H@H @  HVHHg1HH  H@H @   HF   H Hu1H贠H@H D  1HHˎfD  HFH Hu1HrH@H     HH舎fD  LL   HMID  H   H0H^     HHt$'H8   1HH@H @t4H  HFH8 ^1H辟H@H H Hx  H  HFH H<1H舟H@H @gH  HFH8 1HXH@    HFH H Hx #HFH H@80D  HFH H-1HH@H H8 H  HFH8 1HΞH@H H HxH  HFH8 `1H蚞H@H H Hx uH  HFH8 A1HfH@.H @ff.     AUAATIUSHHH  -E8uHDLH[]A\A]NfD  H}0DLٔH   []A\A]f     HHx tRAUATUHSHHL  I|$0著I|$0I4HAYHDLH[]A\A]   f.     AWAVAUIATUHSHHI! L  8sMt$ HL8AD$8  HH蛢HCxHHCxH;     LH+SHHC L)H  MwLIo5HID$HIHC H)H  LeH   HH+H5 胙LHhH  HVHH   @   HuOHtGHρ 
  t4@ HCXH9CP   HH   []A\A]A^A_ËH t+H8 tHFH H Hx  1H1@ @     H@  HFH H Hx  uHFH }  f     It$0H×cfD  HI 1H^H@H8  H  HVHH1H/H  H@H @ W  HVHH1HH@H @   u2H  HVHH1H̚H@H x  H  HVHH1H蚚H  H@H @  HVHH1HhH  H@H @   HF   H Hu1H7H@H 1HHS6fD  LL   HI D  H HH   HݓH#D  HFH Hu1H誙H@H     HHh H8   1HtH@H @t4H  HFH8 1HHH@H H Hx  SH  HFH Hl  @HFH fHf.B(   E    HFH H Hx HF   f.     HFH H1H覘H@H H8 eH  HFH8 1HvH@H H HxH  HFH8 h1HBH@H H Hx H  HFH8 u1HH@fD  H H@80fD  H  HVHH1HϗH@H @% =
  1H覗H@H @eH  HFH8 r1HvH@_H @?ff.     AUIATUSHH@! L  8jLHH(,AD$8O  HH菜HCxHHCxH;     HH+SHHC H)H  I$H   HH5  HE H+vH  HVHH   @   HuMHtEHρ 
  t2fHCXH9CP   H*H   []A\A]ËH    t+H8 tHFH H Hx  1H14@ @     H@j  HFH H Hx  uHFH ]  f     It$0LfD  HI 1H莕H@H8  H  HVHH1H_H  H@H @ 7  HVHH1H-H@H @   u2H  HVHH1HH@H x  H  HVHH1HʔH  H@H @  HVHH1H蘔H  H@H @   HF   H Hu1HgH@H 1HH胂6fD  H8M HH   H-HLD  HFH Hu1HH@H     HHfD  H8   1HēH@H @t4H  HFH8 1H蘓H@H H Hx  sH  HFH Hl  @HFH fHf.B(   E    HFH H Hx HF   f.     HFH H1HH@H H8 H  HFH8 1HƒH@H H HxH  HFH8 h1H蒒H@H H Hx H  HFH8 u1HbH@fD  H H@80fD  H  HVHH1HH@H @% =
  1HH@H @H  HFH8 r1HƑH@_H @?ff.     AWAVIAUATIUSHH! H  HT$8}LLm HL8lu8  H)HіLH֍HT$LHH蓋LHHIBLHIHLHI! 
   H5  A$   PHCxHHCxZYH;     LH+SHHC L)H  MoLHIo~IHC H)H  LeH   HH+H5  \LHAH  HVHH   @   HuPHtHHρ 
  t5D  HCXH9CP   H҇H   []A\A]A^A_ËH t+H8 tHFH H Hx  1H1ܓ@ @     H@  HFH H Hx  uHFH u  Hu0L褋    HQ 1H>H@H8 (H  HVHH1HH  H@H @ W  HVHH1HݎH@H @   u2H  HVHH1H謎H@H x  H  HVHH1HzH  H@H @  HVHH1HHH  H@H @   HF   H Hu1HH@H 1HH3|>fD  LL   HI4D  HȔ HH   H轇H*D  HFH Hu1H芍H@H     HH{h H8   1HTH@H @t4H  HFH8 1H(H@H H Hx  [H  HFH Hl  @HFH fHf.B(   E    HFH H Hx HF   f.     HFH H1H膌H@H H8 mH  HFH8 1HVH@H H HxH  HFH8 h1H"H@H H Hx H  HFH8 u1HH@fD  H H@80fD  H  HVHH1H诋H@H @% =
  1H膋H@H @mH  HFH8 r1HVH@_H @?ff.     AWAVIAUATUHSHH! L  8CwHMl$ HL8 AD$8  H軏HcHCxHHCxH;   
  LH+SHHC L)H  MoLLHIo跀HHxIHC H)H  LuH   HH+H5  JLH/|H  HVHH   @   HuVHtNHρ 
  t; HCXH9CP   HLL~H   []A\A]A^A_ËHt+H8 tHFH H Hx  1H1č@ @     H@  HFH H Hx  uHFH }  f     It$0H胅[fD  H|A 1HH@H8 H  HVHH1HH  H@H @ W  HVHH1H轈H@H @   u2H  HVHH1H茈H@H x  H  HVHH1HZH  H@H @  HVHH1H(H  H@H @   HF   H Hu1HH@H 1HHv6fD  LL   H́ID  H討 HH   H蝁HD  HFH Hu1HjH@H     HHuh H8   1H4H@H @t4H  HFH8 1HH@H H Hx  SH  HFH Hl  @HFH fHf.B(   E    HFH H Hx HF   f.     HFH H1HfH@H H8 ]H  HFH8 1H6H@H H HxH  HFH8 h1HH@H H Hx H  HFH8 u1H҅H@fD  H H@80fD  H  HVHH1H菅H@H @% =
  }1HfH@H @]H  HFH8 r1H6H@_H @?ff.     AWAVAUIATUHSHH! L  8#qHMt$ HMtMuH   []A\A]A^A_D  LL;yD$AD$8d  HlHHCxHHCxH;   s  LH+SHHC L)Hf  MwL$LLHIo}HH9rIHC H)HN  LeH   HH+H5C  LHuH  HVHH  @   HtS   H8 tdHFH H Hx   HFH H Hx t>HFH H@805       HtHρ 
  tD  HCXH9CP.H{pf     It$0HcfD  HvfD  @     H@  HFH H Hx    1H1D  1H辂H@H8 `H  HVHH1H菂H  H@H @ G  HVHH1H]H@H @   umH  HVHH1H,H@H xt?H  HVHH1HH@H @% =
  @ H  HVHH  1H迁H  H@H @  HVHH1H荁H  H@H @   HF   H Hu1H\H@H D  1HHso]fD  HFH Hu1HH@H     HH0ofD  H LL   HzID  HH   HzHH8   1H虀H@H @t4H  HFH8 1HmH@H H Hx  H  HFH H   @HFH fHf.B(   E@ HFH HF1HH@H H8 H  HFH8  1HH@H H HxH  HFH8 1HH@H H Hx -H  HFH8 1H^H@D  HFH 1H:H@H @H  HFH8 1H
H@H @H$    AWIAVAAUIATUSHHƊ! L  8jLIl$ H|M  H  AD$8L  HLD$QHHCxLD$HH;   HCx  LH+SHHC L)H
  IhI   HLH5  {H  HVHH   @   H  H  Hρ 
        HCxH3HHCxH;     HH+SHHC H)H  HnLL~DLH&wHHkkIHC L)H  MoI   HL;H5^  )zH  HVHH
  @   H  H  Hρ 
  y  f     HCxL#HHCxH;     LH+SHHC L)H  Il$I   HL#H5  wyLH\nH  HFH H  @ 3  @   >  x4  @% =
    HCXH9CP  HsH   []A\A]A^A_ËH t+H8 )HFH H Hx  1H1@     H@	  HFH H  @HFH fHf.B(   E  HfD    H8 }HFH H HxlHFH H Hx SHFH H@80  D  HFH @tzH HHxHFH H Hx HFH H@80e       It$0LLD$vLD$@ Hmq @     Pg  >HFH fHf.B(   E   @     H@  HFH H Hx  =HFH   D  1HyH@H8 (H  HVHH1HyH  H@H @ 	  HVHH1HyH@H @   umH  HVHH1H\yH@H xt?H  HVHHb1H.yH@H @% =
  \@ H  HVHH1HxH  H@H @  HFH H1HxH@H H8 H  HFH8 1HxH@H H HxH  HFH8   1HYxH@H H Hx H  HFH8 u1H)xH@D  H H@803  fD  1HwH@H8  H  HVHH1HwH  H@H @ O  HVHH1HwH@H @   q  H  HVHH	1HhwH  H@H @  HFH H1H6wH@H H8 UH  HFH8 1HwH@H H Hx%H  HFH8 1HvH@H H Hx H  HFH8 1HvH@vD  1HvH@H8 XH  HFH H1HWvH  H@H @ HFH   H1H%vH  H@H @   HFH uoH1HuH  H@H xHFH tAH1HuH@H @% =
  H  HFH fD  H1HuH  H@H @HFH   H1HSuH  H@H @   HFH    H1HuH@H @t6H  HFH H  1HtH@H H Hx  H  HFH H  1HtH@H @H  HFH8 :1HtH@'Hu1HqtH@H f.     1HHb+zfD  HVHHp1H&tH  H@H @   HFg  H Hu1HsH@H fD  1HHbfD  HVHH1HsH  H@H @   HF   H Hu1H}sH@H fD  1HHafD  LLƹ   HMmID  H(zLD$fD  H  HVHH1HrH@H x]H  HVHH1HrH@H @% =
  fD  H8   1HrH@H @t4H  HFH8 P1H`rH@H H Hx  H  HFH H  @ZHFH fHf.B(   E    HHz  &PH @GD  HFH H Hx  HFH !    H1HqH@H H8 lH  HFH H  1HkqH@H H HxH  HFH8 b1H7qH@H H Hx H  HFH8 C1HqH@0f.     LL   HjI>D  HHt$wHt$f     Hw LL   HjI=D  H   HjHHFH Hu1HRpH@H     HHh^Hu1H$pH@H D     HH8^HFH Hu1HoH@H fD     HH ^ HFH H Hx HFf.     H8 1HoH@H @t4H  HFH8 1H`oH@H H Hx  H      1H.oH@H @MH  HFH8 1HnH@D  1HnH@H @H  HFH8 81HnH@%H H @z_ AWIAVAUATUHSHHyz! L  Ht$8ZMl$ HH^lM  AD$8L3  HsHsHCxHHCxH;   $  LH+SHHC L)H  MnHT$LLHIneHH[IHC H)H  LeH   HH+H5'  jLH|_H  HVHHU  @   HucHt[Hρ 
  tHHCXH9CP  HeH   []A\A]A^A_fD  It$0HKiH t+H8 tHFH H Hx  1H1q@ @     H@  HFH H  @THFH fHf.B(   E4@ HFH Hu1HblH@H     HHxZ`HCXH9CPH_D  1HlH@H8 H  HVHH|1HkH  H@H @ WHVHHT1HkH@H @     H  HVHH1HkH  H@H @   HFH H]1HNkH@H H8 H  HFH8 71HkH@H H Hx)H  HFH8    1HjH@H H Hx H  HFH8 u1HjH@fD  H H@80VfD  HVHH1H~jH  H@H @   HF  H Hu1HMjH@H fD  1HHcXfD  LL   H%dID  HH   HdH7D  Hp HFH H Hx {HF
f.     H  HVHH61HiH@H xH  HVHH1H]iH@H @% =
  H @HFH H Hx  ;HFH i    1HhH@H @H  HFH8 @1HhH@-D  H8 x1HhH@H @t4H  HFH8 ^1HhH@H H Hx  H  ff.     @ HHu!    HxHH     HHǀ       H1H)   HH*t! HBh    HBXHt! HB`H<u! HBpHt! HBxHt! H   H   Hs! H   HSt! H   Hs! H   Hs! H   Hyt! H   Hs! H   Hut! H   HHfD  HMs! AVIAUATIUHS8mS@   IHs! 1Hh1H  1HCHWH{HCHhHC    Ls(HtEHH+HuLj E1A       HY  e^_IHtbH0HtZF      t/   HHt6H@HP  FHs &fD  <t͉ 
  t@ HC     HHu   E1j H  A    L1eZYHtzH0F%   =   uHH@ C8uOHC0    I<$Ht	Hs! 1bI$  [I$]A\A]A^D     LSiC8t`HC0뮐C8        t;tHHz   Hff.@(f1LfSI6HD  HHF80D     LS볐FwtHG H  AWAVAUATE1USHH F  ]     HPbHC 8t7C   M  HL[]A\A]A^A_]G        HfHx  HZ  Mt%ID$Ht~H@H0~uHv(
fHCHpH~@YH} HI`gIMtH)q! LM  HCLH@H@@H   O  LHSH  HiHHl^Hp! LH]MH[]A\A]A^A_Ã  G   H[]A\A]A^A_ÐHe1IiIIFH      E1H@IcHT$H<hHH]   H`HT$   IFH@H<hHH]   HA9aHdIHpHD$dHT$IGH\IFD;(`L[MtL[HLH[]A\A]A^A_#] dIHC  D  G   HCH@Hx@gHH\s    LMHH\&1gHH\I1gHH\&fAWAVAUATUSHHM  HD  IH@AHLE1H0  YLxA	II@   LXIFPAFX    HtH8 t   HcANXH< uH n! H59  LLE   HL^NRHI~PHt	H#n! LQ]Mt2H1"YHC@    LHC(    IE    IE     SHH[]A\A]A^A_     cI@H?WIFPfD  HLWHbD  1@ aI	fD  HHC(HuHLIaHLnXLk@I@ATAUHHSYHt%DHHH^HHPH[]A\Ð1[H]A\fD  S1`HHtHXH@    YH[fD  Y1H[@ S1t^HHtHXH@    XH[fD  X1H[@ AVAUATUSH   H_H   H   E1H{@ AHI   LHEuc~VHMtD1H,WHC@    HC(    IF    IF     ID$HtH@@    LQ[H]A\A]A^fD  +\OH    1[H]A\A]A^f.     1_I@ HHC(HuHLY_LH~VLs@'D  ATUSH tAHt<HHWIHt'HHLLHNH[]A\    1H[]A\fD  S1DSHHtHXH@    WH[fD  W1H[HH                       XS_unpack_charPtrPtr: unable to malloc char**   XS_unpack_charPtrPtr: unable to malloc char*    XS_unpack_charPtrPtr: array elem %d was not a string. Devel.c n, p n, o = NULL none 2.0210 v5.26.0 XML::LibXML::Devel::refcnt XML::LibXML::Devel::fix_owner XML::LibXML::Devel::mem_used DEBUG_MEMORY   !(SvFLAGS(TARG) & (SVf_OOK|SVf_UTF8|(SVf_OK & ~(SVf_IOK|SVp_IOK))))     XML::LibXML::Devel::node_to_perl        XML::LibXML::Devel::node_from_perl      XML::LibXML::Devel::refcnt_inc  XML::LibXML::Devel::refcnt_dec  XS_XML__LibXML__Devel_node_from_perl                            XS_XML__LibXML__Devel_refcnt_dec                XS_XML__LibXML__Devel_refcnt                    XS_XML__LibXML__Devel_fix_owner XS_XML__LibXML__Devel_mem_used  XML::LibXML::InputCallback::_callback_match     match callback must return a single value       XML::LibXML::InputCallback::_callback_open      open callback must return a single value        LibXML_validity_warning_ctx internal error: context was null (%s)       XML::LibXML::InputCallback::_callback_read      read callback must return a single value        Read more bytes than requested. Do you use an encoding-related PerlIO layer?    external entity handler did not return a value  cannot push an external entity into a buffer!
  XPathContext: missing xpath context
    XPathContext: invalid position
 XML::LibXML::XPathExpression::DESTROY() -- self is not a XML::LibXML::XPathExpression   XML::LibXML::RegExp::DESTROY() -- self is not a XML::LibXML::RegExp     XML::LibXML::RegExp::isDeterministic() -- self is not a XML::LibXML::RegExp     XML::LibXML::LibError::level() -- self is not a blessed SV reference    XML::LibXML::LibError::num2() -- self is not a blessed SV reference     XML::LibXML::LibError::num1() -- self is not a blessed SV reference     XML::LibXML::LibError::line() -- self is not a blessed SV reference     XML::LibXML::LibError::code() -- self is not a blessed SV reference     XML::LibXML::LibError::domain() -- self is not a blessed SV reference   this feature is not implemented XML::LibXML::RegExp::matches() -- self is not a XML::LibXML::RegExp     XML::LibXML::Pattern::DESTROY() -- self is not a XML::LibXML::Pattern   XML::LibXML::Node::unique_key() -- self contains no data        XML::LibXML::Node::unique_key() -- self is not a blessed SV reference   XML::LibXML::Node::isSameNode() -- self contains no data        XML::LibXML::Node::isSameNode() -- self is not a blessed SV reference   XML::LibXML::Node::isSameNode() -- oNode contains no data       XML::LibXML::Node::isSameNode() -- oNode is not a blessed SV reference  XML::LibXML::Node::hasAttributes() -- self contains no data     XML::LibXML::Node::hasAttributes() -- self is not a blessed SV reference        XML::LibXML::Node::hasChildNodes() -- self contains no data     XML::LibXML::Node::hasChildNodes() -- self is not a blessed SV reference        XML::LibXML::Node::nodeType() -- self contains no data  XML::LibXML::Node::nodeType() -- self is not a blessed SV reference     XML::LibXML::Document::setVersion() -- self contains no data    XML::LibXML::Document::setVersion() -- self is not a blessed SV reference       XML::LibXML::Document::setStandalone() -- self contains no data XML::LibXML::Document::setStandalone() -- self is not a blessed SV reference    XML::LibXML::Document::standalone() -- self contains no data    XML::LibXML::Document::standalone() -- self is not a blessed SV reference       XML::LibXML::Document::setEncoding() -- self contains no data   XML::LibXML::Document::setEncoding() -- self is not a blessed SV reference      XML::LibXML::Document::setURI() -- self contains no data        XML::LibXML::Document::setURI() -- self is not a blessed SV reference   XML::LibXML::Pattern::matchesNode() -- self is not a XML::LibXML::Pattern       XML::LibXML::Pattern::matchesNode() -- node contains no data    XML::LibXML::Pattern::matchesNode() -- node is not a blessed SV reference       XML::LibXML::LibError::context_and_column() -- self is not a blessed SV reference       XML::LibXML::Dtd::publicId() -- self contains no data   XML::LibXML::Dtd::publicId() -- self is not a blessed SV reference      XML::LibXML::Dtd::systemId() -- self contains no data   XML::LibXML::Dtd::systemId() -- self is not a blessed SV reference      XML::LibXML::Node::namespaceURI() -- self contains no data      XML::LibXML::Node::namespaceURI() -- self is not a blessed SV reference XML::LibXML::Node::prefix() -- self contains no data    XML::LibXML::Node::prefix() -- self is not a blessed SV reference       XML::LibXML::Node::localname() -- self contains no data XML::LibXML::Node::localname() -- self is not a blessed SV reference    XML::LibXML::LibError::str3() -- self is not a blessed SV reference     XML::LibXML::LibError::str2() -- self is not a blessed SV reference     XML::LibXML::LibError::str1() -- self is not a blessed SV reference     XML::LibXML::LibError::file() -- self is not a blessed SV reference     XML::LibXML::LibError::message() -- self is not a blessed SV reference  XML::LibXML::Document::version() -- self contains no data       XML::LibXML::Document::version() -- self is not a blessed SV reference  XML::LibXML::Document::encoding() -- self contains no data      XML::LibXML::Document::encoding() -- self is not a blessed SV reference XML::LibXML::Document::URI() -- self contains no data   XML::LibXML::Document::URI() -- self is not a blessed SV reference      XML::LibXML::Reader::readState() -- reader is not a blessed SV reference        XML::LibXML::Reader::_close() -- reader is not a blessed SV reference   XML::LibXML::Reader::_preserve_flag     XML::LibXML::Reader::_DESTROY() -- reader is not a blessed SV reference XML::LibXML::Reader::_setXSD() -- reader is not a blessed SV reference  XML::LibXML::Reader::_setXSD() -- xsd_doc is not a blessed SV reference XML::LibXML::Reader::_setXSDFile() -- reader is not a blessed SV reference      XML::LibXML::Reader::_setRelaxNG() -- reader is not a blessed SV reference      XML::LibXML::Reader::_setRelaxNG() -- rng_doc is not a blessed SV reference     XML::LibXML::Reader::_setRelaxNGFile() -- reader is not a blessed SV reference  XML::LibXML::Node::ownerNode() -- self contains no data XML::LibXML::Node::ownerNode() -- self is not a blessed SV reference    XML::LibXML::Node::ownerDocument() -- self contains no data     XML::LibXML::Node::ownerDocument() -- self is not a blessed SV reference        XML::LibXML::Node::lastChild() -- self contains no data XML::LibXML::Node::lastChild() -- self is not a blessed SV reference    XML::LibXML::Node::firstChild() -- self contains no data        XML::LibXML::Node::firstChild() -- self is not a blessed SV reference   XML::LibXML::Node::previousSibling() -- self contains no data   XML::LibXML::Node::previousSibling() -- self is not a blessed SV reference      XML::LibXML::Node::nextSibling() -- self contains no data       XML::LibXML::Node::nextSibling() -- self is not a blessed SV reference  XML::LibXML::Node::parentNode() -- self contains no data        XML::LibXML::Node::parentNode() -- self is not a blessed SV reference   XML::LibXML::Document::removeExternalSubset() -- self contains no data  XML::LibXML::Document::removeExternalSubset() -- self is not a blessed SV reference     XML::LibXML::Document::internalSubset() -- self contains no data        XML::LibXML::Document::internalSubset() -- self is not a blessed SV reference   XML::LibXML::Document::externalSubset() -- self contains no data        XML::LibXML::Document::externalSubset() -- self is not a blessed SV reference   XML::LibXML::Reader::_preservePattern() -- reader is not a blessed SV reference XML::LibXML::Reader::_preservePattern   %s: %s is not an ARRAY reference        XML::LibXML::Reader::document() -- reader is not a blessed SV reference XML::LibXML::Reader::_getParserProp() -- reader is not a blessed SV reference   XML::LibXML::Reader::matchesPattern() -- reader is not a blessed SV reference   XML::LibXML::Reader::matchesPattern() -- compiled is not a XML::LibXML::Pattern XML::LibXML::Node::cloneNode() -- self contains no data XML::LibXML::Node::cloneNode() -- self is not a blessed SV reference    XML::LibXML::Reader::_nodePath() -- reader is not a blessed SV reference        XML::LibXML::Node::nodePath() -- self contains no data  XML::LibXML::Node::nodePath() -- self is not a blessed SV reference     cannot calculate path for the given node        XML::LibXML::Reader::standalone() -- reader is not a blessed SV reference       XML::LibXML::Reader::_setParserProp() -- reader is not a blessed SV reference   XML::LibXML::Reader::quoteChar() -- reader is not a blessed SV reference        XML::LibXML::Reader::nodeType() -- reader is not a blessed SV reference XML::LibXML::Reader::depth() -- reader is not a blessed SV reference    XML::LibXML::Reader::name() -- reader is not a blessed SV reference     XML::LibXML::Reader::namespaceURI() -- reader is not a blessed SV reference     XML::LibXML::Reader::localName() -- reader is not a blessed SV reference        XML::LibXML::Reader::moveToNextAttribute() -- reader is not a blessed SV reference      XML::LibXML::Reader::moveToFirstAttribute() -- reader is not a blessed SV reference     XML::LibXML::Reader::moveToElement() -- reader is not a blessed SV reference    reader, localName, namespaceURI XML::LibXML::Reader::moveToAttributeNs() -- reader is not a blessed SV reference        XML::LibXML::Reader::moveToAttributeNo() -- reader is not a blessed SV reference        XML::LibXML::Reader::moveToAttribute() -- reader is not a blessed SV reference  XML::LibXML::Reader::lookupNamespace() -- reader is not a blessed SV reference  XML::LibXML::Reader::isValid() -- reader is not a blessed SV reference  XML::LibXML::Reader::isNamespaceDecl() -- reader is not a blessed SV reference  XML::LibXML::Reader::isEmptyElement() -- reader is not a blessed SV reference   XML::LibXML::Reader::isDefault() -- reader is not a blessed SV reference        XML::LibXML::Reader::hasAttributes() -- reader is not a blessed SV reference    XML::LibXML::Reader::value() -- reader is not a blessed SV reference    XML::LibXML::Reader::hasValue() -- reader is not a blessed SV reference XML::LibXML::Reader::lineNumber() -- reader is not a blessed SV reference       XML::LibXML::Reader::columnNumber() -- reader is not a blessed SV reference     XML::LibXML::Reader::getAttributeNs() -- reader is not a blessed SV reference   XML::LibXML::Reader::getAttributeNo() -- reader is not a blessed SV reference   XML::LibXML::Reader::getAttribute() -- reader is not a blessed SV reference     XML::LibXML::Reader::xmlVersion() -- reader is not a blessed SV reference       XML::LibXML::Reader::xmlLang() -- reader is not a blessed SV reference  XML::LibXML::Reader::prefix() -- reader is not a blessed SV reference   XML::LibXML::Reader::encoding() -- reader is not a blessed SV reference XML::LibXML::Reader::byteConsumed() -- reader is not a blessed SV reference     XML::LibXML::Reader::baseURI() -- reader is not a blessed SV reference  XML::LibXML::Reader::attributeCount() -- reader is not a blessed SV reference   CLASS, fd, url, encoding, options       CLASS, string, url, encoding, options   CLASS, fh, url, encoding, options       CLASS, filename, encoding, options      XML::LibXML::Element::_getNamespaceDeclURI() -- self contains no data   XML::LibXML::Element::_getNamespaceDeclURI() -- self is not a blessed SV reference      XML::LibXML::Node::getNamespace() -- node contains no data      XML::LibXML::Node::getNamespace() -- node is not a blessed SV reference XML::LibXML::Document::documentElement() -- self contains no data       XML::LibXML::Document::documentElement() -- self is not a blessed SV reference  XPathContext: failed to allocate proxy object
  XML::LibXML::Schema::DESTROY() -- self is not a blessed SV reference    XML::LibXML::RelaxNG::DESTROY() -- self is not a blessed SV reference   CLASS, namespaceURI, namespacePrefix=&PL_sv_undef       XML::LibXML::Element::setNamespaceDeclPrefix() -- self contains no data XML::LibXML::Element::setNamespaceDeclPrefix() -- self is not a blessed SV reference    setNamespaceDeclPrefix: prefix '%s' is in use   setNamespaceDeclPrefix: cannot set non-empty prefix for empty namespace self, namespaceURI, namespacePrefix = &PL_sv_undef, flag = 1    XML::LibXML::Node::lookupNamespaceURI() -- self contains no data        XML::LibXML::Node::lookupNamespaceURI() -- self is not a blessed SV reference   self, namespaceURI, namespacePrefix = &PL_sv_undef      XML::LibXML::Node::lookupNamespacePrefix() -- self contains no data     XML::LibXML::Node::lookupNamespacePrefix() -- self is not a blessed SV reference        self, format=0, useDomEncoding = &PL_sv_undef   self, useDomEncoding = &PL_sv_undef     XML::LibXML::Document::createDocumentFragment() -- self contains no data        XML::LibXML::Document::createDocumentFragment() -- self is not a blessed SV reference   XML::LibXML::Document::createCDATASection() -- self contains no data    XML::LibXML::Document::createCDATASection() -- self is not a blessed SV reference       XML::LibXML::Node::nodeValue() -- self contains no data XML::LibXML::Node::nodeValue() -- self is not a blessed SV reference    XML::LibXML::Text::substringData() -- self contains no data     XML::LibXML::Text::substringData() -- self is not a blessed SV reference        XML::LibXML::Text::replaceData() -- self contains no data       XML::LibXML::Text::replaceData() -- self is not a blessed SV reference  XML::LibXML::Text::deleteData() -- self contains no data        XML::LibXML::Text::deleteData() -- self is not a blessed SV reference   XML::LibXML::Text::insertData() -- self contains no data        XML::LibXML::Text::insertData() -- self is not a blessed SV reference   XML::LibXML::Text::setData() -- self contains no data   XML::LibXML::Text::setData() -- self is not a blessed SV reference      XML::LibXML::Text::appendData() -- self contains no data        XML::LibXML::Text::appendData() -- self is not a blessed SV reference   XML::LibXML::Element::addNewChild() -- self contains no data    XML::LibXML::Element::addNewChild() -- self is not a blessed SV reference       XML::LibXML::Document::createRawElement() -- self contains no data      XML::LibXML::Document::createRawElement() -- self is not a blessed SV reference self, strname, strcontent=&PL_sv_undef, nsURI=&PL_sv_undef      XML::LibXML::Element::appendTextChild() -- self contains no data        XML::LibXML::Element::appendTextChild() -- self is not a blessed SV reference   XML::LibXML::Element::appendText() -- self contains no data     XML::LibXML::Element::appendText() -- self is not a blessed SV reference        XML::LibXML::Element::removeAttributeNode() -- self contains no data    XML::LibXML::Element::removeAttributeNode() -- self is not a blessed SV reference       XML::LibXML::Node::addChild() -- self contains no data  XML::LibXML::Node::addChild() -- self is not a blessed SV reference     XML::LibXML::Node::addChild() -- nNode contains no data XML::LibXML::Node::addChild() -- nNode is not a blessed SV reference    Adding document fragments with addChild not supported!  addChild: HIERARCHY_REQUEST_ERR
        addChild: unsupported node type!        Error: addChild failed (check node types)!
     XML::LibXML::Document::adoptNode() -- self contains no data     XML::LibXML::Document::adoptNode() -- self is not a blessed SV reference        XML::LibXML::Document::adoptNode() -- node contains no data     XML::LibXML::Document::adoptNode() -- node is not a blessed SV reference        XML::LibXML::Document::importNode() -- self contains no data    XML::LibXML::Document::importNode() -- self is not a blessed SV reference       XML::LibXML::Document::importNode() -- node contains no data    XML::LibXML::Document::importNode() -- node is not a blessed SV reference       XML::LibXML::Document::setExternalSubset() -- self contains no data     XML::LibXML::Document::setExternalSubset() -- self is not a blessed SV reference        XML::LibXML::Element::getAttributeNodeNS() -- self contains no data     XML::LibXML::Element::getAttributeNodeNS() -- self is not a blessed SV reference        XML::LibXML::Element::hasAttributeNS() -- self contains no data XML::LibXML::Element::hasAttributeNS() -- self is not a blessed SV reference    XML::LibXML::Element::setAttributeNodeNS() -- self contains no data     XML::LibXML::Element::setAttributeNodeNS() -- self is not a blessed SV reference        XML::LibXML::Element::removeAttributeNS() -- self contains no data      XML::LibXML::Element::removeAttributeNS() -- self is not a blessed SV reference self, namespaceURI, attr_name, useDomEncoding = 0       XML::LibXML::Element::_getAttributeNS() -- self contains no data        XML::LibXML::Element::_getAttributeNS() -- self is not a blessed SV reference   XML::LibXML::Element::setAttributeNode() -- self contains no data       XML::LibXML::Element::setAttributeNode() -- self is not a blessed SV reference  XML::LibXML::Element::getAttributeNode() -- self contains no data       XML::LibXML::Element::getAttributeNode() -- self is not a blessed SV reference  XML::LibXML::Element::removeAttribute() -- self contains no data        XML::LibXML::Element::removeAttribute() -- self is not a blessed SV reference   XML::LibXML::Element::hasAttribute() -- self contains no data   XML::LibXML::Element::hasAttribute() -- self is not a blessed SV reference      self, attr_name, useDomEncoding = 0     XML::LibXML::Element::_getAttribute() -- self contains no data  XML::LibXML::Element::_getAttribute() -- self is not a blessed SV reference     XML::LibXML::Element::setNamespaceDeclURI() -- self contains no data    XML::LibXML::Element::setNamespaceDeclURI() -- self is not a blessed SV reference       XML::LibXML::Node::line_number() -- self contains no data       XML::LibXML::Node::line_number() -- self is not a blessed SV reference  XML::LibXML::Node::to_number() -- self contains no data XML::LibXML::Node::to_number() -- self is not a blessed SV reference    XML::LibXML::Node::string_value() -- self contains no data      XML::LibXML::Node::string_value() -- self is not a blessed SV reference XML::LibXML::__PROXY_NODE_REGISTRY_MUTEX        XML::LibXML ':threads_shared' can only be used after 'use threads'      XML::LibXML::Node::toString() -- self contains no data  XML::LibXML::Node::toString() -- self is not a blessed SV reference     XML::LibXML::setTagCompression  XML::LibXML::Node::setBaseURI() -- self contains no data        XML::LibXML::Node::setBaseURI() -- self is not a blessed SV reference   XML::LibXML::Node::baseURI() -- self contains no data   XML::LibXML::Node::baseURI() -- self is not a blessed SV reference      XML::LibXML::Node::removeChildNodes() -- self contains no data  XML::LibXML::Node::removeChildNodes() -- self is not a blessed SV reference     XML::LibXML::Node::normalize() -- self contains no data XML::LibXML::Node::normalize() -- self is not a blessed SV reference    XML::LibXML::Node::_attributes() -- self contains no data       XML::LibXML::Node::_attributes() -- self is not a blessed SV reference  XML::LibXML::Node::_getChildrenByTagNameNS() -- self contains no data   XML::LibXML::Node::_getChildrenByTagNameNS() -- self is not a blessed SV reference      XML::LibXML::Node::firstNonBlankChild() -- self contains no data        XML::LibXML::Node::firstNonBlankChild() -- self is not a blessed SV reference   XML::LibXML::Node::_childNodes() -- self contains no data       XML::LibXML::Node::_childNodes() -- self is not a blessed SV reference  XML::LibXML::Node::previousNonBlankSibling() -- self contains no data   XML::LibXML::Node::previousNonBlankSibling() -- self is not a blessed SV reference      XML::LibXML::Node::nextNonBlankSibling() -- self contains no data       XML::LibXML::Node::nextNonBlankSibling() -- self is not a blessed SV reference  XML::LibXML::Node::setRawName() -- self contains no data        XML::LibXML::Node::setRawName() -- self is not a blessed SV reference   XML::LibXML::Node::nodeName() -- self contains no data  XML::LibXML::Node::nodeName() -- self is not a blessed SV reference     Couldn't checks if the variable is shared or not
       XML::LibXML::Document::indexElements() -- self contains no data XML::LibXML::Document::indexElements() -- self is not a blessed SV reference    XML::LibXML::Document::getElementById() -- self contains no data        XML::LibXML::Document::getElementById() -- self is not a blessed SV reference   XML::LibXML::Document::cloneNode() -- self contains no data     XML::LibXML::Document::cloneNode() -- self is not a blessed SV reference        XML::LibXML::Document::setCompression() -- self contains no data        XML::LibXML::Document::setCompression() -- self is not a blessed SV reference   XML::LibXML::Document::compression() -- self contains no data   XML::LibXML::Document::compression() -- self is not a blessed SV reference      XML::LibXML::Document::removeInternalSubset() -- self contains no data  XML::LibXML::Document::removeInternalSubset() -- self is not a blessed SV reference     XML::LibXML::Document::setInternalSubset() -- self contains no data     XML::LibXML::Document::setInternalSubset() -- self is not a blessed SV reference        XML::LibXML::Document::_setDocumentElement() -- self contains no data   XML::LibXML::Document::_setDocumentElement() -- self is not a blessed SV reference      setDocumentElement: ELEMENT node required       self, name, value=&PL_sv_undef  XML::LibXML::Document::createProcessingInstruction() -- self contains no data   XML::LibXML::Document::createProcessingInstruction() -- self is not a blessed SV reference      XML::LibXML::Document::createEntityReference() -- self contains no data XML::LibXML::Document::createEntityReference() -- self is not a blessed SV reference    XML::LibXML::Document::createComment() -- self contains no data XML::LibXML::Document::createComment() -- self is not a blessed SV reference    XML::LibXML::Document::createTextNode() -- self contains no data        XML::LibXML::Document::createTextNode() -- self is not a blessed SV reference   XML::LibXML::Document::createDTD() -- self contains no data     XML::LibXML::Document::createDTD() -- self is not a blessed SV reference        XML::LibXML::Document::createExternalSubset() -- self contains no data  XML::LibXML::Document::createExternalSubset() -- self is not a blessed SV reference     XML::LibXML::Document::createInternalSubset() -- self contains no data  XML::LibXML::Document::createInternalSubset() -- self is not a blessed SV reference     CLASS, version="1.0", encoding=NULL     XML::LibXML::Document::_toString() -- self contains no data     XML::LibXML::Document::_toString() -- self is not a blessed SV reference        XML::LibXML::HashTable::DESTROY() -- table is not a blessed SV reference        XML::LibXML::__PROXY_NODE_REGISTRY      XML::LibXML::Error::_report_warning     XML::LibXML::Error::_report_error       Compilation of XPath expression failed! XML::LibXML::Reader::finish() -- reader is not a blessed SV reference   XML::LibXML::Reader::read() -- reader is not a blessed SV reference     XML::LibXML::Reader::preserveNode() -- reader is not a blessed SV reference     XML::LibXML::Reader::nextPatternMatch() -- reader is not a blessed SV reference XML::LibXML::Reader::nextPatternMatch() -- compiled is not a XML::LibXML::Pattern       Usage: $reader->nextPatternMatch( a-XML::LibXML::Pattern-object )       XML::LibXML::Reader::copyCurrentNode() -- reader is not a blessed SV reference  XML::LibXML::Reader::readOuterXml() -- reader is not a blessed SV reference     XML::LibXML::Reader::readInnerXml() -- reader is not a blessed SV reference     XML::LibXML::Reader::readAttributeValue() -- reader is not a blessed SV reference       XML::LibXML::Reader::skipSiblings() -- reader is not a blessed SV reference     XML::LibXML::Reader::next() -- reader is not a blessed SV reference     reader, name = NULL, nsURI = NULL       XML::LibXML::Reader::nextElement() -- reader is not a blessed SV reference      XML::LibXML::Reader::nextSiblingElement() -- reader is not a blessed SV reference       XML::LibXML::Reader::nextSibling() -- reader is not a blessed SV reference      XML::LibXML::Reader::getAttributeHash() -- reader is not a blessed SV reference XML::LibXML::Schema::validate() -- self is not a blessed SV reference   XML::LibXML::Schema::validate() -- node contains no data        XML::LibXML::Schema::validate() -- node is not a blessed SV reference   cannot initialize the validation context        self, perlstring, parser_options = 0, recover = FALSE   failed to initialize Schema parser      self, url, parser_options = 0, recover = FALSE  XML::LibXML::RelaxNG::validate() -- self is not a blessed SV reference  XML::LibXML::RelaxNG::validate() -- doc contains no data        XML::LibXML::RelaxNG::validate() -- doc is not a blessed SV reference   self, doc, parser_options = 0, recover = FALSE  XML::LibXML::RelaxNG::parse_document() -- doc contains no data  XML::LibXML::RelaxNG::parse_document() -- doc is not a blessed SV reference     failed to initialize RelaxNG parser     parse_string: too many parameters       XML::LibXML::Document::toStringHTML() -- self contains no data  XML::LibXML::Document::toStringHTML() -- self is not a blessed SV reference     XML::LibXML::Document::toFile() -- self contains no data        XML::LibXML::Document::toFile() -- self is not a blessed SV reference   XML::LibXML::Document::toFH() -- self contains no data  XML::LibXML::Document::toFH() -- self is not a blessed SV reference     pxpath_context, pxpath, to_bool XPathContext: lost current node
        XPathContext: empty XPath found
        pxpath_context, prefix, ns_uri  XPathContext: cannot register namespace
        XPathContext: cannot unregister namespace
      self, comments=0, xpath=&PL_sv_undef, exclusive=0, inc_prefix_list=NULL, xpath_context  XML::LibXML::Node::_toStringC14N() -- self contains no data     XML::LibXML::Node::_toStringC14N() -- self is not a blessed SV reference        Node passed to toStringC14N must be part of a document  (. | .//node() | .//@* | .//namespace::*)       (. | .//node() | .//@* | .//namespace::*)[not(self::comment())] Failed to create xpath context  2 Failed to compile xpath expression    cannot canonize empty nodeset!  Failed to convert doc to string in doc->toStringC14N    XML::LibXML::Node::appendChild() -- self contains no data       XML::LibXML::Node::appendChild() -- self is not a blessed SV reference  XML::LibXML::Node::appendChild() -- nNode contains no data      XML::LibXML::Node::appendChild() -- nNode is not a blessed SV reference Appending an element to a document node not supported yet!      Appending a document fragment node to a document node not supported yet!        Appending text node not supported on a document node yet!       XML::LibXML::Node::insertAfter() -- self contains no data       XML::LibXML::Node::insertAfter() -- self is not a blessed SV reference  XML::LibXML::Node::insertAfter() -- nNode contains no data      XML::LibXML::Node::insertAfter() -- nNode is not a blessed SV reference XML::LibXML::Node::insertBefore() -- self contains no data      XML::LibXML::Node::insertBefore() -- self is not a blessed SV reference XML::LibXML::Node::insertBefore() -- nNode contains no data     XML::LibXML::Node::insertBefore() -- nNode is not a blessed SV reference        XML::LibXML::Node::unbindNode() -- self contains no data        XML::LibXML::Node::unbindNode() -- self is not a blessed SV reference   XML::LibXML::Node::addSibling() -- self contains no data        XML::LibXML::Node::addSibling() -- self is not a blessed SV reference   XML::LibXML::Node::addSibling() -- nNode contains no data       XML::LibXML::Node::addSibling() -- nNode is not a blessed SV reference  Adding document fragments with addSibling not yet supported!    XML::LibXML::Node::removeChild() -- self contains no data       XML::LibXML::Node::removeChild() -- self is not a blessed SV reference  XML::LibXML::Node::removeChild() -- node contains no data       XML::LibXML::Node::removeChild() -- node is not a blessed SV reference  XML::LibXML::Node::replaceNode() -- self contains no data       XML::LibXML::Node::replaceNode() -- self is not a blessed SV reference  XML::LibXML::Node::replaceNode() -- nNode contains no data      XML::LibXML::Node::replaceNode() -- nNode is not a blessed SV reference XML::LibXML::Node::replaceChild() -- self contains no data      XML::LibXML::Node::replaceChild() -- self is not a blessed SV reference XML::LibXML::Node::replaceChild() -- nNode contains no data     XML::LibXML::Node::replaceChild() -- nNode is not a blessed SV reference        XML::LibXML::Node::replaceChild() -- oNode contains no data     XML::LibXML::Node::replaceChild() -- oNode is not a blessed SV reference        replaceChild with an element on a document node not supported yet!      replaceChild with a document fragment node on a document node not supported yet!        replaceChild with a text node not supported on a document node! XML::LibXML::Document::validate() -- self contains no data      XML::LibXML::Document::validate() -- self is not a blessed SV reference is_valid: argument must be a DTD object XML::LibXML::Document::is_valid() -- self contains no data      XML::LibXML::Document::is_valid() -- self is not a blessed SV reference CLASS, ppattern, pattern_type, ns_map=NULL      XML::LibXML::Pattern::_compilePattern   XPathContext: ignoring non-node member of a nodelist    XPathContext: missing xpath context     XPathContext: missing xpath context private data        XPathContext: lost variable lookup function!    XPathContext: variable lookup function returned none or more than one argument! pxpath_context, name, uri, func XPathContext: nothing to unregister
    XPathContext: cannot register: funcLookupData structure occupied
       XPathContext: 3rd argument is not a CODE reference or function name
    pxpath_context, lookup_func, lookup_data        XPathContext: missing xpath context private data
       XPathContext: registration failure
     XPathContext: 1st argument is not a CODE reference
     XML::LibXML::InputCallback::_callback_close     XPathContext: lost function lookup data structure!      XPathContext: lost perl extension function!     Unknown XPath return type (%d) in call to {%s}%s - assuming string      XML::LibXML::XPathContext::_perl_dispatcher     XPathContext: perl-dispatcher in pm file returned none or more than one argument!       XML::LibXML::Error::_callback_error     XML::LibXML::Error::_instant_error_callback     XML not well-formed in xmlParseChunk
   unknown error during XInclude processing
       self, svchunk, enc = &PL_sv_undef       Could not create memory parser context!
        _parse_sax_xml_chunk: chunk parsing failed
     _parse_xml_chunk: chunk parsing failed
 self, fh, svURL, svEncoding, options = 0        self, filename_sv, svURL, svEncoding, options = 0       self, string, svURL, svEncoding, options = 0    Could not create file parser context for file "%s": %s
 Could not create xml push parser context!
      self, string, dir = &PL_sv_undef        self, namespaceURI, attr_name, attr_value       XML::LibXML::Element::_setAttributeNS() -- self contains no data        XML::LibXML::Element::_setAttributeNS() -- self is not a blessed SV reference   XML::LibXML::Element::_setAttribute() -- self contains no data  XML::LibXML::Element::_setAttribute() -- self is not a blessed SV reference     XML::LibXML::Node::setNodeName() -- self contains no data       XML::LibXML::Node::setNodeName() -- self is not a blessed SV reference  self, URI, pname, pvalue=&PL_sv_undef   XML::LibXML::Document::createAttributeNS() -- self contains no data     XML::LibXML::Document::createAttributeNS() -- self is not a blessed SV reference        can't create a new namespace on an attribute!   self, pname, pvalue=&PL_sv_undef        XML::LibXML::Document::createAttribute() -- self contains no data       XML::LibXML::Document::createAttribute() -- self is not a blessed SV reference  XML::LibXML::Document::createRawElementNS() -- self contains no data    XML::LibXML::Document::createRawElementNS() -- self is not a blessed SV reference       XML::LibXML::Document::createElementNS() -- self contains no data       XML::LibXML::Document::createElementNS() -- self is not a blessed SV reference  XML::LibXML::Document::createElement() -- self contains no data XML::LibXML::Document::createElement() -- self is not a blessed SV reference    XML::LibXML::LIBXML_DOTTED_VERSION      XML::LibXML::HAVE_STRUCT_ERRORS XML::LibXML::HAVE_THREAD_SUPPORT        XML::LibXML::LIBXML_RUNTIME_VERSION     XML::LibXML::INIT_THREAD_SUPPORT        XML::LibXML::DISABLE_THREAD_SUPPORT     XML::LibXML::_parse_sax_string  XML::LibXML::_parse_html_string XML::LibXML::_parse_sax_xml_chunk       XML::LibXML::_processXIncludes  XML::LibXML::_externalEntityLoader      XML::LibXML::HashTable::DESTROY XML::LibXML::ParserContext::DESTROY     XML::LibXML::Document::_toString        XML::LibXML::Document::serialize_html   XML::LibXML::Document::toStringHTML     XML::LibXML::Document::documentURI      XML::LibXML::Document::createDocument   XML::LibXML::Document::createInternalSubset     XML::LibXML::Document::createExternalSubset     XML::LibXML::Document::createDTD        XML::LibXML::Document::createDocumentFragment   XML::LibXML::Document::createElement    XML::LibXML::Document::createRawElement XML::LibXML::Document::createElementNS  XML::LibXML::Document::createRawElementNS       XML::LibXML::Document::createTextNode   XML::LibXML::Document::createComment    XML::LibXML::Document::createCDATASection       XML::LibXML::Document::createEntityReference    XML::LibXML::Document::createAttribute  XML::LibXML::Document::createAttributeNS        XML::LibXML::Document::createPI XML::LibXML::Document::createProcessingInstruction      XML::LibXML::Document::_setDocumentElement      XML::LibXML::Document::documentElement  XML::LibXML::Document::getDocumentElement       XML::LibXML::Document::externalSubset   XML::LibXML::Document::internalSubset   XML::LibXML::Document::setExternalSubset        XML::LibXML::Document::setInternalSubset        XML::LibXML::Document::removeInternalSubset     XML::LibXML::Document::removeExternalSubset     XML::LibXML::Document::importNode       XML::LibXML::Document::adoptNode        XML::LibXML::Document::encoding XML::LibXML::Document::getEncoding      XML::LibXML::Document::xmlEncoding      XML::LibXML::Document::setEncoding      XML::LibXML::Document::standalone       XML::LibXML::Document::xmlStandalone    XML::LibXML::Document::setStandalone    XML::LibXML::Document::getVersion       XML::LibXML::Document::version  XML::LibXML::Document::xmlVersion       XML::LibXML::Document::setVersion       XML::LibXML::Document::compression      XML::LibXML::Document::setCompression   XML::LibXML::Document::is_valid XML::LibXML::Document::validate XML::LibXML::Document::cloneNode        XML::LibXML::Document::getElementById   XML::LibXML::Document::getElementsById  XML::LibXML::Document::indexElements    XML::LibXML::Node::getLocalName XML::LibXML::Node::getNamespaceURI      XML::LibXML::Node::namespaceURI XML::LibXML::Node::lookupNamespaceURI   XML::LibXML::Node::lookupNamespacePrefix        XML::LibXML::Node::setNodeName  XML::LibXML::Attr::getOwnerElement      XML::LibXML::Attr::ownerElement XML::LibXML::Node::getParentNode        XML::LibXML::Node::getNextSibling       XML::LibXML::Node::nextSibling  XML::LibXML::Node::nextNonBlankSibling  XML::LibXML::Node::getPreviousSibling   XML::LibXML::Node::previousSibling      XML::LibXML::Node::previousNonBlankSibling      XML::LibXML::Node::_childNodes  XML::LibXML::Node::getChildnodes        XML::LibXML::Node::_getChildrenByTagNameNS      XML::LibXML::Node::getFirstChild        XML::LibXML::Node::firstNonBlankChild   XML::LibXML::Node::getLastChild XML::LibXML::Node::_attributes  XML::LibXML::Node::getAttributes        XML::LibXML::Node::hasChildNodes        XML::LibXML::Node::hasAttributes        XML::LibXML::Node::getOwnerDocument     XML::LibXML::Node::ownerDocument        XML::LibXML::Node::getOwnerElement      XML::LibXML::Node::insertBefore XML::LibXML::Node::insertAfter  XML::LibXML::Node::replaceChild XML::LibXML::Node::replaceNode  XML::LibXML::Node::removeChild  XML::LibXML::Node::removeChildNodes     XML::LibXML::Node::appendChild  XML::LibXML::Node::_toStringC14N        XML::LibXML::Node::string_value XML::LibXML::Node::textContent  XML::LibXML::Node::getNamespaces        XML::LibXML::Node::getNamespace XML::LibXML::Node::localNamespace       XML::LibXML::Node::line_number  XML::LibXML::Element::_setNamespace     XML::LibXML::Element::setNamespaceDeclURI       XML::LibXML::Element::setNamespaceDeclPrefix    XML::LibXML::Element::_getNamespaceDeclURI      XML::LibXML::Element::hasAttribute      XML::LibXML::Element::hasAttributeNS    XML::LibXML::Element::_getAttribute     XML::LibXML::Element::_setAttribute     XML::LibXML::Element::removeAttribute   XML::LibXML::Element::getAttributeNode  XML::LibXML::Element::setAttributeNode  XML::LibXML::Element::_getAttributeNS   XML::LibXML::Element::_setAttributeNS   XML::LibXML::Element::removeAttributeNS XML::LibXML::Element::getAttributeNodeNS        XML::LibXML::Element::setAttributeNodeNS        XML::LibXML::Element::removeAttributeNode       XML::LibXML::DocumentFragment::appendText       XML::LibXML::DocumentFragment::appendTextNode   XML::LibXML::Element::appendText        XML::LibXML::Element::appendTextNode    XML::LibXML::Element::appendTextChild   XML::LibXML::DocumentFragment::addNewChild      XML::LibXML::Element::addNewChild       XML::LibXML::Text::substringData        XML::LibXML::Text::replaceData  XML::LibXML::CDATASection::new  XML::LibXML::DocumentFragment::new      XML::LibXML::Attr::getNextSibling       XML::LibXML::Attr::getParentNode        XML::LibXML::Attr::getPreviousSibling   XML::LibXML::Attr::nextSibling  XML::LibXML::Attr::parentElement        XML::LibXML::Attr::previousSibling      XML::LibXML::Attr::serializeContent     XML::LibXML::Attr::_setNamespace        XML::LibXML::Namespace::DESTROY XML::LibXML::Namespace::getType XML::LibXML::Namespace::nodeType        XML::LibXML::Namespace::declaredURI     XML::LibXML::Namespace::getData XML::LibXML::Namespace::getValue        XML::LibXML::Namespace::nodeValue       XML::LibXML::Namespace::value2  XML::LibXML::Namespace::declaredPrefix  XML::LibXML::Namespace::getLocalName    XML::LibXML::Namespace::localname       XML::LibXML::Namespace::unique_key      XML::LibXML::Namespace::_isEqual        XML::LibXML::Dtd::parse_string  XML::LibXML::RelaxNG::parse_location    XML::LibXML::RelaxNG::parse_buffer      XML::LibXML::RelaxNG::parse_document    XML::LibXML::RelaxNG::validate  XML::LibXML::Schema::parse_location     XML::LibXML::Schema::parse_buffer       XML::LibXML::XPathContext::new  XML::LibXML::XPathContext::DESTROY      XML::LibXML::XPathContext::getContextNode       XML::LibXML::XPathContext::getContextPosition   XML::LibXML::XPathContext::getContextSize       XML::LibXML::XPathContext::setContextNode       XML::LibXML::XPathContext::setContextPosition   XML::LibXML::XPathContext::setContextSize       XML::LibXML::XPathContext::registerNs   XML::LibXML::XPathContext::lookupNs     XML::LibXML::XPathContext::getVarLookupData     XML::LibXML::XPathContext::getVarLookupFunc     XML::LibXML::XPathContext::registerVarLookupFunc        XML::LibXML::XPathContext::registerFunctionNS   XML::LibXML::XPathContext::_free_node_pool      XML::LibXML::XPathContext::_findnodes   XML::LibXML::XPathContext::_find        XML::LibXML::InputCallback::lib_cleanup_callbacks       XML::LibXML::InputCallback::lib_init_callbacks  XML::LibXML::Reader::_newForFile        XML::LibXML::Reader::_newForIO  XML::LibXML::Reader::_newForString      XML::LibXML::Reader::_newForFd  XML::LibXML::Reader::_newForDOM XML::LibXML::Reader::attributeCount     XML::LibXML::Reader::byteConsumed       XML::LibXML::Reader::localName  XML::LibXML::Reader::namespaceURI       XML::LibXML::Reader::xmlVersion XML::LibXML::Reader::getAttribute       XML::LibXML::Reader::getAttributeNo     XML::LibXML::Reader::getAttributeNs     XML::LibXML::Reader::columnNumber       XML::LibXML::Reader::lineNumber XML::LibXML::Reader::_getParserProp     XML::LibXML::Reader::hasAttributes      XML::LibXML::Reader::getAttributeHash   XML::LibXML::Reader::isDefault  XML::LibXML::Reader::isEmptyElement     XML::LibXML::Reader::isNamespaceDecl    XML::LibXML::Reader::lookupNamespace    XML::LibXML::Reader::moveToAttribute    XML::LibXML::Reader::moveToAttributeNo  XML::LibXML::Reader::moveToAttributeNs  XML::LibXML::Reader::moveToElement      XML::LibXML::Reader::moveToFirstAttribute       XML::LibXML::Reader::moveToNextAttribute        XML::LibXML::Reader::nextSibling        XML::LibXML::Reader::nextSiblingElement XML::LibXML::Reader::nextElement        XML::LibXML::Reader::nextPatternMatch   XML::LibXML::Reader::skipSiblings       XML::LibXML::Reader::quoteChar  XML::LibXML::Reader::readAttributeValue XML::LibXML::Reader::readInnerXml       XML::LibXML::Reader::readOuterXml       XML::LibXML::Reader::readState  XML::LibXML::Reader::_setParserProp     XML::LibXML::Reader::standalone XML::LibXML::Reader::_nodePath  XML::LibXML::Reader::matchesPattern     XML::LibXML::Reader::copyCurrentNode    XML::LibXML::Reader::preserveNode       XML::LibXML::Reader::_setRelaxNGFile    XML::LibXML::Reader::_setRelaxNG        XML::LibXML::Reader::_setXSDFile        XML::LibXML::LibError::message  XML::LibXML::LibError::context_and_column       XML::LibXML::Pattern::matchesNode       XML::LibXML::RegExp::isDeterministic    XML::LibXML::XPathExpression::new       XML::LibXML::XPathExpression::DESTROY   XML::LibXML::Common::encodeToUTF8       XML::LibXML::Common::decodeFromUTF8 validation error: %s XML::LibXML::__read read method call failed read error XML_LIBXML_RECOVER ext_ent_handler a buffer would be too big
 cannot create a buffer!
 self, size XPathContext: invalid size
 self, position self CLASS, sv_libxml, deep=1 GDOME Support not configured! CLASS, sv_gdome, deep=1 GDOME Support not compiled XML::LibXML::XPathExpression XML::LibXML::RegExp self, catalog empty catalog
 self, pvalue XML::LibXML::Pattern self, oNode self, version self, value = 0 self, encoding = NULL self, new_URI self, node 2.9.7 reader reader, xsd_doc reader, xsd reader, rng_doc reader, rng reader, pattern, ns_map=NULL ns_map reader, prop reader, compiled self, deep=0 reader, prop, value %c reader, no reader, name reader, prefix CLASS, perl_doc UTF-8 self, ns_prefix XML::LibXML::Namespace lost node loader CLASS, ... self, ref_node | self, svprefix, newPrefix self, svprefix=&PL_sv_undef self, svuri   =" CLASS, pname, pvalue CLASS CLASS, content self, content self, offset, length self, offset, length, value self, offset, value self, value self, namespaceURI, nodename self, name bad name self, string self, attr_node lost attribute node self, nNode Can't adopt Documents! Can't adopt DTD nodes self, node, dummy=0 Can't import Documents! Can't import DTD nodes self, extdtd lost DTD node self, namespaceURI, attr_name lost attribute self, attr_name self, svprefix, newURI CLASS, name threads::threads self, URI self, namespaceURI, node_name * self, only_nonblank = 0 XML::LibXML::__threads_shared threads::shared::is_shared self, id self, zLevel can't import DTDs self, proxy self, pname self, Pname, extID, sysID 1.0 self, format=0 XML::LibXML::skipDTD table self, filename cannot load catalog XML_LIBXML_GDOME class encoding, string string is not utf8!! no encoder found
 cannot encode string return value missing! CLASS, pxpath CLASS, pregexp Compilation of regexp failed reader, expand = 0 API Error cannot parse empty string XML::LibXML::Schema self, doc XML::LibXML::RelaxNG CLASS, str, ... Parse of encoding %s failed cannot create buffer!
 no DTD parsed! CLASS, external, system pnode, perl_xpath empty XPath found pnode, pxpath, to_bool XML::LibXML::NodeList XML::LibXML::Boolean XML::LibXML::Number XML::LibXML::Literal Unknown XPath return type self, filename, format=0 self, filehandler, format=0 XML::LibXML::__write pxpath_context, perl_xpath pxpath_context, prefix self, nNode, refNode replacement failed self, nNode, oNode self, ... Compilation of pattern failed XML::LibXML::Node pxpath_context self, pnode { } have no save_error
 XML::LibXML::LibError XML_LIBXML_PARSER_OPTIONS XML_LIBXML_LINENUMBERS self, pctxt parser context already freed
 self, pctxt, restore no document found!
 self, pctxt, data self, with_sax=0 self, doc, options=0 No document to process!
 Empty string
 unknown-%p Empty filename
 self, filename_sv self, fh, dir = &PL_sv_undef Empty Stream
 bad ns attribute! self, attr_name, attr_value self, nsURI, name LibXML.c XML::LibXML::_CLONE XML::LibXML::_leaked_nodes XML::LibXML::_dump_registry XML::LibXML::LIBXML_VERSION XML::LibXML::HAVE_SCHEMAS XML::LibXML::HAVE_READER XML::LibXML::END XML::LibXML::_parse_string XML::LibXML::_parse_fh XML::LibXML::_parse_sax_fh XML::LibXML::_parse_file XML::LibXML::_parse_sax_file XML::LibXML::_parse_html_file XML::LibXML::_parse_html_fh XML::LibXML::_parse_xml_chunk XML::LibXML::_start_push XML::LibXML::_push XML::LibXML::_end_push XML::LibXML::_end_sax_push XML::LibXML::import_GDOME XML::LibXML::export_GDOME XML::LibXML::load_catalog XML::LibXML::_default_catalog XML::LibXML::HashTable::new XML::LibXML::Document::toFH XML::LibXML::Document::toFile XML::LibXML::Document::URI XML::LibXML::Document::setURI XML::LibXML::Document::new XML::LibXML::Node::DESTROY XML::LibXML::Element::tagName XML::LibXML::Node::getName XML::LibXML::Node::nodeName XML::LibXML::Attr::name XML::LibXML::Node::localName XML::LibXML::Node::localname XML::LibXML::Node::getPrefix XML::LibXML::Node::prefix XML::LibXML::Node::setName XML::LibXML::Node::setRawName XML::LibXML::Attr::getValue XML::LibXML::Attr::value XML::LibXML::Node::getData XML::LibXML::Node::getValue XML::LibXML::Node::nodeValue XML::LibXML::Text::data XML::LibXML::Node::getType XML::LibXML::Node::nodeType XML::LibXML::Node::parentNode XML::LibXML::Node::firstChild XML::LibXML::Node::lastChild XML::LibXML::Node::getOwner XML::LibXML::Node::ownerNode XML::LibXML::Node::normalize XML::LibXML::Node::unbindNode XML::LibXML::Node::unlink XML::LibXML::Node::unlinkNode XML::LibXML::Node::addChild XML::LibXML::Node::addSibling XML::LibXML::Node::cloneNode XML::LibXML::Node::isEqual XML::LibXML::Node::isSameNode XML::LibXML::Node::unique_key XML::LibXML::Node::baseURI XML::LibXML::Node::setBaseURI XML::LibXML::Node::serialize XML::LibXML::Node::toString XML::LibXML::Node::to_literal XML::LibXML::Node::to_number XML::LibXML::Node::_find XML::LibXML::Node::_findnodes XML::LibXML::Node::namespaces XML::LibXML::Node::localNS XML::LibXML::Node::nodePath XML::LibXML::Element::new XML::LibXML::Text::new XML::LibXML::Attr::setValue XML::LibXML::PI::_setData XML::LibXML::Text::setData XML::LibXML::Text::appendData XML::LibXML::Text::insertData XML::LibXML::Text::deleteData XML::LibXML::Comment::new XML::LibXML::Attr::new XML::LibXML::Attr::serialize XML::LibXML::Attr::toString XML::LibXML::Attr::isId XML::LibXML::Namespace::new XML::LibXML::Namespace::href XML::LibXML::Namespace::value XML::LibXML::Dtd::new XML::LibXML::Dtd::parse_uri XML::LibXML::Dtd::getSystemId XML::LibXML::Dtd::systemId XML::LibXML::Dtd::getPublicId XML::LibXML::Dtd::publicId XML::LibXML::RelaxNG::DESTROY XML::LibXML::Schema::DESTROY XML::LibXML::Schema::validate XML::LibXML::Reader::baseURI XML::LibXML::Reader::_close XML::LibXML::Reader::encoding XML::LibXML::Reader::name XML::LibXML::Reader::prefix XML::LibXML::Reader::value XML::LibXML::Reader::xmlLang XML::LibXML::Reader::depth XML::LibXML::Reader::hasValue XML::LibXML::Reader::isValid XML::LibXML::Reader::next XML::LibXML::Reader::nodeType XML::LibXML::Reader::read XML::LibXML::Reader::document XML::LibXML::Reader::finish XML::LibXML::Reader::_setXSD XML::LibXML::Reader::_DESTROY XML::LibXML::LibError::domain XML::LibXML::LibError::code XML::LibXML::LibError::line XML::LibXML::LibError::int1 XML::LibXML::LibError::num1 XML::LibXML::LibError::int2 XML::LibXML::LibError::num2 XML::LibXML::LibError::level XML::LibXML::LibError::file XML::LibXML::LibError::str1 XML::LibXML::LibError::str2 XML::LibXML::LibError::str3 XML::LibXML::Pattern::DESTROY XML::LibXML::RegExp::_compile XML::LibXML::RegExp::matches XML::LibXML::RegExp::DESTROY    88xml #document-fragment #document #text #cdata-section #comment NOT_FOUND_ERR
 & ;       http://www.w3.org/XML/1998/namespace    appendChild: HIERARCHY_REQUEST_ERR
     replaceChild: HIERARCHY_REQUEST_ERR
    insertBefore/insertAfter: HIERARCHY_REQUEST_ERR
        replaceNode: HIERARCHY_REQUEST_ERR
 rqqqDqTqTqTqdqtqTqqTqtqTqqqTqTqTqTqtqXML::LibXML::Text XML::LibXML::Element XML::LibXML::PI XML::LibXML::Dtd XML::LibXML::DocumentFragment XML::LibXML::Document XML::LibXML::Attr XML::LibXML::CDATASection XML::LibXML::Comment PmmFreeHashTable: not empty
 %d total nodes
 empty context XML::LibXML::ParserContext UTF-16LE UTF-16BE    4$4444444pppppx    %s=%p with %d references (%d perl)
     PmmProxyNodeRegistryPtr: TODO!
 PmmRegisterProxyNode: error adding node to hash, hash size is %d
       PmmUnregisterProxyNode: error removing node from hash
  PmmREFCNT_dec: REFCNT decremented below 0 for %p!       XML::LibXML: failed to create a proxy node (out of memory?)
    PmmFastDecodeString: no encoding found
 XML::LibXML::_SAXParser::warning        XML::LibXML::_SAXParser::fatal_error    XML::LibXML::_SAXParser::error  XML::LibXML::_SAXParser::end_document   string overflow
 NamespaceURI start_prefix_mapping end_prefix_mapping LocalName http://www.w3.org/2000/xmlns/ xmlns xmlns: Target LineNumber ColumnNumber Encoding XMLVersion start_document xml_decl start_dtd end_dtd characters set_document_locator Attributes start_element end_element start_cdata end_cdata processing_instruction stack HANDLER JOIN_CHARACTERS 0|hT@,s;    g  |  ̟&    |h  L       l    |  |D    ̯    \  l0  ̻l  ,    Lh  ,    `  |    L          <\      \H      ,  \x      	\  |  <  4  l        (  t      \       !@  #  l%  L'  \)d  +  ,.  28  <4x  5  6  88   9x   L;   <   >8!  Ax!  ,C!  LE!  lG8"  ,Ix"  J"  L"  M8#  ,P#  |R#  U8$  V$  Y$  \ %  _l%  lb%  c0&  <ep&  f&  g&  \i0'  jp'  l'  m'  o0(  |pp(  t(  w)  \zT)  })  l)  L,*  ̃l*  *  \+  D+  l+  +  l,  \,  ̔,  ,  l4-  -  \-  .  ܤd.  .  ܩ.  ,</  |/  ̰/   0  ̴`0  0  l0  D1  1  ,1  l2  P2  2  |2  ,3  |\3  ,3  |3  <44  4  4  5  d5  L5  5  ,06  p6  6  ,6  |<7  |7  7  L8  48  L8  8   9  l9  9  9  |8:  L:  L:  ;  ,
h;  ,;  L <  L<  <  <  =  ,X=  =  =  0>   |>  L#>  '?  ,*`?  <-?  .?  0,@  L1l@  4@  6A  |9lA  <;A  L=A  <@HB  CB  FB  G C  lJlC  MC  ,QD  SlD  VD  Y E  [lE  ,]E  _E  ,cDF  fF  LhF  <jG  <l`G  nG  lqG  v8H  <xxH  yH  {I  |DI  |I  I  ,J  |hJ  J  J  ,K  lK  LK  <L  \DL  |L  L  M  \M  |M  M  \4N  <N  <N  <O  |O  \O  DP  P  ̼P  Q  \`Q  Q  LQ  l@R  R  <R  \R  HS  lS  ,S  T  dT  T  T  L<U  U  U  l V  lV  V  V  8W  W  lW  X  hX  L X  lY  \Y  Y  Y  ,@Z  Z  L"Z  '$[  L+p[  -[  2[  ;H\  L>\  C\  J$]  Tp]  ,U]  \U]  <^^  |c`^  e^  lg^  nH_  nt_  q_  |t`  wX`  \w`  x`  <|a  |~Xa  la  La  @b  b  b  b  hc  ̖ d  @d  Ld  d  e  Le  \e  f  tf  \f  \f  ,g  hg  <g  <g  lh  LXh  Lh  h  <i  i  i   j  \lj  j   k  LXk  k  
k  Hl  l  l  \m  |dm  <m  \!m  l%@n  'n  +n  \/$o  l1po  `o  `o  ao  ap  <b p  b4p  cp  ep  lep  fp  <gq  <h(q  h<q  ,iTq  \ihq  ,j|q  ,kq  <lr  m\r  ,nr  |or  qds  qxs  ,ss  t<t  tht  ,ut  vt  v<u  wpu  Lxu  xu  y v  yDv  z\v  zpv  zv  {v  |v  L|v  |0w  }Dw  \}`w  |}|w  Lw  |x  <8x  lXx  xx  ̂x  |x  y  <,y  @y  |y  ,y  y  \z  ,Dz  <z  z  z  ̋z  ,0{  ܌l{  \{  {  4|  |  \|  }  `}  }  ,}  \}  T~  l~    lL  ܮ  L  |    ,  H  ̼\  <  Ѐ    <     \   <4  p    l\      <      x  \  LH  l  (  t  |     <8    ܉  (  L)t  /  0؊  24  ,6  7D  ,8|  l8  8  9  ,:D         zR x  $      8X`   FJw ?:*3$"       D   ptP          H   \   x   FBB B(A0A8D`M
8D0A(B BBBD<          FEB H(D0
(A FBBA   (      ?    EDD hDA     H     }   FBB E(A0A8D@
8A0A(B BBBG H   `     FBB E(A0A8D@C
8A0A(B BBBF<         FBE A(A0
(A BBBG   H     Xp   FBE B(A0A8D@
8A0A(B BBBBH   8  |    FBB E(A0A8D@H
8A0A(B BBBIH     0   FBB E(A0A8D@
8A0A(B BBBGH        FBB E(A0A8D@
8A0A(B BBBI             (   0  j   EAD TCD      \  8
       8   p  4`
   FEA A(D0&
(D ABBH8     X`	   FEA A(D0
(D ABBE\     |   FBA D(JHTA[
(A ABBAzHYA   \   H  <   FBA D(JHWAE
(A ABBGHYA  \     ܵ   FBA D(JHTA[
(A ABBAzHYA   H     \	   FEE E(A0A8D@
8C0A(B BBBDH   T   
   FBE B(D0A8D`N
8A0A(B BBBHP     p   BHA P(H0[(A R
ABLU
CBFz
ABC  T     |   FEB E(A0D8D`
8A0A(B BBBCfhHp^hA`<   L     FEB A(A0
(A BBBE  <     Hn   FEB A(A0
(A BBBI   <     x    FBE A(A0
(A BBBA   $         FBD A(D0$   4      FBD A(D0<   \  x    FBE A(H0o
(A BBBA   L        FBE A(A0
(A BBBG
(A BBBBL     X   FBE A(A0
(A BBBG
(A BBBBH   <  ~   FBB E(A0A8D@	
8A0A(B BBBHH     >   FBB E(A0A8D@	
8A0A(B BBBHH      >   FBB E(A0A8D@	
8A0A(B BBBHH    	  >   FBB E(A0A8D@	
8A0A(B BBBHH   l	  >   FBB E(A0A8D@	
8A0A(B BBBHH   	  >   FBB E(A0A8D@	
8A0A(B BBBHH   
  >   FBB E(A0A8D@	
8A0A(B BBBHH   P
     FBB E(A0A8D@!
8A0A(B BBBHH   
  H   FBB E(A0A8D@!
8A0A(B BBBHH   
     FBB E(A0A8D@
8A0A(B BBBK<   4  @   FEB A(A0-
(A BBBE  H   t  ^   FBB E(A0A8D@
8A0A(B BBBJ <     @   FBE A(A0
(A BBBE         	            	       <   (  @   FBE A(A0
(A BBBE   H   h     FBE B(A0A8D@*
8A0A(B BBBGL     p   FBE A(A0
(A BBBG
(A BBBBH        FBB E(A0A8D@L
8A0A(B BBBEH   P  t   FBB B(D0A8D@
8A0A(B BBBHH         FBB E(A0A8D@j
8A0A(B BBBGH     l   FBB E(A0A8D@\
8A0A(B BBBEH   4     FBB E(A0A8D@M
8A0A(B BBBD<        FEB A(A0G
(A BBBC  H        FBB E(A0A8D@
8A0A(B BBBG H        FBB E(A0A8D@M
8A0A(B BBBDH   X  ,	   FBB E(A0A8D@
8A0A(B BBBA<     
   FEB A(A0U
(A BBBE  H     p   FBE B(A0A8D@
8A0A(B BBBED   0  4   FEB A(A0D
0A(A BBBE   <   x  o   FBE A(A0
(A BBBE  <     o   FBE A(A0
(A BBBE  <     +   FBE A(A0
(A BBBI   <   8  +   FBE A(A0
(A BBBI   <   x     FBE A(A0b
(A BBBA  <     <   FBE A(A0J
(A BBBA  <        FBE A(A0
(A BBBG  <   8     FBE A(A0
(A BBBH  <   x     FBE A(A0
(A BBBH  <        FBE A(A0
(A BBBH  <     l!   FBE A(A0
(A BBBH  <   8  L#   FBE A(A0
(A BBBH  <   x  ,%   FBE A(A03
(A BBBG  <     &   FBE A(A03
(A BBBG  <     ,(   FBE A(A0>
(A BBBD  <   8  )#   FBE A(A0
(A BBBE   H   x  *N   FBB E(A0A8D@	
8A0A(B BBBHH     ,N   FBB E(A0A8D@	
8A0A(B BBBHd     .=   FBB E(A0A8Dp
8A0A(B BBBGxHXxBpxHXxDpL   x  |1   BBB A(A0G`hHpWhA`T
0A(A BBBA H     <2   FBE B(A0A8DP
8A0A(B BBBEH      5   FBE B(A0A8D@^
8A0A(B BBBCH   `  t7   FBE B(A0A8DP
8A0A(B BBBEH     8:   FBE B(A0A8D@^
8A0A(B BBBC<     <_   FBE A(A0
(A BBBA          zR x0     (   y
       <   p  =o   FBE A(A0
(A BBBE  <     >V   FBE A(A0
(A BBBA  <     ?V   FBE A(A0
(A BBBA  <   0  AV   FBE A(A0
(A BBBA  <   p  $BV   FBE A(A0
(A BBBA  <     DCV   FBE A(A0
(A BBBA  <     dDw   FBE A(A0
(A BBBD  <   0  Eo   FBE A(A0
(A BBBD  <   p  Fo   FBE A(A0
(A BBBD  H     H   FBE B(A0A8Dpm
8A0A(B BBBDH     8L   FBB E(A0A8DP
8A0A(B BBBD H   H  N   FBE B(A0A8D@[
8A0A(B BBBFH      Q   FBE B(A0A8DP
8A0A(B BBBEH     TTl   FBE B(A0A8D@j
8A0A(B BBBG<   ,  xV   FBE A(A0
(A BBBH   <   l  Xq   FBE A(A0#
(A BBBA  H     XYN   FBB E(A0A8D@	
8A0A(B BBBHH     \[6   FBE B(A0A8DP
8A0A(B BBBB<   D  P^   FBE A(A0
(A BBBH   H     _N   FBB E(A0A8D@	
8A0A(B BBBHH     aN   FBB E(A0A8D@	
8A0A(B BBBH<     c   FBE A(A0
(A BBBH   <   \  He   FBE A(A0
(A BBBH   <     f   FBE A(A0
(A BBBH   H     (hN   FBB E(A0A8D@	
8A0A(B BBBHH   (  ,jN   FBB E(A0A8D@	
8A0A(B BBBHH   t  0lN   FBB E(A0A8D@	
8A0A(B BBBHH     4n   FBE B(A0A8DP
8A0A(B BBBAH     q   FBE B(A0A8D@[
8A0A(B BBBFH   X  s   FBE B(A0A8D@^
8A0A(B BBBC<     pv   FBE A(A0R
(A BBBH  H     xN   FBB E(A0A8D@	
8A0A(B BBBHH   0   zN   FBB E(A0A8D@	
8A0A(B BBBHH   |   |N   FBB E(A0A8D@	
8A0A(B BBBHH      ~N   FBB E(A0A8D@	
8A0A(B BBBHH   !  N   FBB E(A0A8D@	
8A0A(B BBBH<   `!     FBE A(A0
(A BBBH   H   !  dN   FBB E(A0A8D@	
8A0A(B BBBHH   !  hN   FBB E(A0A8D@	
8A0A(B BBBHH   8"  lN   FBB E(A0A8D@	
8A0A(B BBBHH   "  p,   FBE B(A0A8D@
8A0A(B BBBJ<   "  T<   FEB A(A0-
(A BBBE  <   #  T<   FEB A(A00
(A BBBJ  <   P#  T   FBE A(A0
(A BBBH   <   #  Ē   FBE A(A0
(A BBBH   <   #  4   FBE A(A0
(A BBBH   <   $     FBE A(A0
(A BBBH   H   P$  F   FBB E(A0A8D@	
8A0A(B BBBH<   $     FBE A(A0
(A BBBH   H   $  N   FBB E(A0A8D@	
8A0A(B BBBHH   (%     FBE B(A0A8D@J
8A0A(B BBBGH   t%   I   FBE B(A0A8DP
8A0A(B BBBDH   %  g   FBE B(A0A8DP
8A0A(B BBBJH   &  (
   FBE B(A0A8DP
8A0A(B BBBCH   X&  y   FBE B(A0A8DP<
8A0A(B BBBE<   &       FBE A(H0
(A BBBA   <   &      FBE A(H0l
(A BBBA   H   $'   <   FBE B(A0A8D@
8A0A(B BBBK<   p'     FBE A(A0[
(A BBBG  H   '  t   FBE B(A0A8D@
8A0A(B BBBD <   '  y   FBE A(A0
(A BBBA  <   <(  (I   FBE A(A0
(A BBBA   <   |(  8I   FBE A(A0
(A BBBC   <   (  HI   FBE A(A0
(A BBBD   H   (  X,   FBB E(A0A8D@
8A0A(B BBBD (   H)  <    BIH AB  H   t)  Y   FBB E(A0A8DP
8A0A(B BBBDL   )  ĺ   FBE A(A0
(A BBBGo
(A BBBBL   *     FBE A(A0
(A BBBGo
(A BBBBH   `*  dI   FBE B(A0A8D@k
8A0A(B BBBF<   *  h>   FBE A(A0
(A BBBI   <   *  h    FBE A(A0
(A BBBK   H   ,+  (`   FBE B(A0A8DP
8A0A(B BBBGH   x+  <   FBB E(A0A8D@-
8A0A(B BBBDH   +     FBB E(A0A8DP
8A0A(B BBBCH   ,  t   FBE B(A0A8D`z
8A0A(B BBBGH   \,  D   FBE B(A0A8D@
8A0A(B BBBIH   ,     FBE B(A0A8DP
8A0A(B BBBEH   ,  p   FBE B(A0A8D@
8A0A(B BBBJH   @-  D   FBE B(A0A8DP
8A0A(B BBBDH   -     FBE B(A0A8DPh
8A0A(B BBBI<   -  E   FEB A(A0
(A BBBE   <   .  ,    FBE A(A0
(A BBBA   <   X.  K   FBE A(A0
(A BBBA  H   .  U   FBE B(A0A8D@
8A0A(B BBBGH   .      FBE B(A0A8D@
8A0A(B BBBE<   0/  =   FEB A(A0
(A BBBG   H   p/     FBE B(A0A8D@
8A0A(B BBBFH   /  (   FBE B(A0A8D@
8A0A(B BBBHH   0  |   FBE B(A0A8DP
8A0A(B BBBIH   T0      FBE B(A0A8DP
8A0A(B BBBEH   0     FBE B(A0A8DPv
8A0A(B BBBK<   0  R   FEB A(A0
(A BBBA  <   ,1  o   FEB A(A0-
(A BBBA  <   l1  =   FEB A(A0
(A BBBG   H   1  _   FBE B(A0A8Dp-
8A0A(B BBBDH   1     FBE B(A0A8D@
8A0A(B BBBKd   D2     FBE B(A0A8DPn
8A0A(B BBBC
8A0A(B BBBA   L   2     FEB A(A0<
(A BBBFr
(A BBBA<   2  x   FEB A(A00
(A BBBJ  H   <3  H   FBB E(A0A8DP+
8A0A(B BBBFH   3     FBB E(A0A8D@
8A0A(B BBBHH   3  p    FBB E(A0A8DP
8A0A(B BBBD<    4  $   FEB A(A0N
(A BBBD  H   `4  s   FBE B(A0A8DP
8A0A(B BBBEH   4  e   FBE B(A0A8DP
8A0A(B BBBJH   4  
E   FBE B(A0A8DP
8A0A(B BBBJd   D5   X   FBE B(A0A8DPl
8A0A(B BBBE
8A0A(B BBBF   H   5  /   FBB B(D0A8D`
8A0A(B BBBId   5     FBE B(A0A8DP
8A0A(B BBBET
8A0A(B BBBB   H   `6     FBE B(A0A8D@n
8A0A(B BBBC<   6  (   FEB A(A0=
(A BBBE  H   6  x]   FBE B(A0A8D@
8A0A(B BBBFH   87     FBE B(A0A8Dp
8A0A(B BBBEH   7     FBB E(A0A8DP
8A0A(B BBBE<   7  D e   FEB A(A0!
(A BBBI  H   8  t!   FBB E(A0A8D@X
8A0A(B BBBI@   \8  #   FBE A(A0D@a
0A(A BBBDH   8  $   FBE B(A0A8D@z
8A0A(B BBBG<   8  8'}   FBE A(A0r
(A BBBH  H   ,9  x)|   FBE B(A0A8D`
8A0A(B BBBB<   x9  .D   FEB A(A0
(A BBBA  <   9  /b   FBE A(A0"
(A BBBA  H   9  0   FBB E(A0A8DP
8A0A(B BBBG<   D:  2   FBE A(A0
(A BBBA   H   :  3   FBB E(A0A8DP
8A0A(B BBBCH   :  6   FBB E(A0A8Dp
8A0A(B BBBK<   ;  :   FBE A(H0G
(A BBBD  H   \;  <K   FEB B(A0A8D`
8A0A(B BBBE<   ;  ?   FBE A(H0G
(A BBBD  <   ;  l@   FBE A(H0G
(A BBBD  @   (<  A6   FEB A(A0D@
0A(A BBBB<   l<  C   FBE A(A0#
(A BBBG  H   <  E   FBB E(A0A8D@~
8A0A(B BBBCH   <  I   FBB E(A0A8D@X
8A0A(B BBBI<   D=  0K   FEB A(A0
(A BBBG  H   =  M   FBB E(A0A8D@.
8A0A(B BBBC<   =  N   FEB A(A0)
(A BBBA  H   >  4P   FBB E(A0A8D@U
8A0A(B BBBD<   \>  Q   FBE A(A0-
(A BBBE  <   >  (S   FEB A(A0H
(A BBBB  H   >  T   FBE B(A0A8DP
8A0A(B BBBHH   (?  WI   FBE B(A0A8DP
8A0A(B BBBGH   t?   Y   FBE B(A0A8D@n
8A0A(B BBBCH   ?  Z   FBE B(A0A8D@z
8A0A(B BBBGH   @  h\   FBE B(A0A8D@z
8A0A(B BBBG`   X@  ^t   FBE B(A0A8D`
8A0A(B BBBJ~
8A0A(B BBBA`   @  8`   FBE B(A0A8D`
8A0A(B BBBD~
8A0A(B BBBH`    A  tb   FBE B(A0A8D`
8A0A(B BBBD~
8A0A(B BBBH<   A  d   FEB A(A0
(A BBBE   H   A  f   FBE B(A0A8Dp
8A0A(B BBBF<   B  k    FBE A(A0
(A BBBK   L   PB  l   FBE A(A0
(A BBBGo
(A BBBBH   B  mM   FBB E(A0A8D@
8A0A(B BBBDH   B  n   FBE B(A0A8D@
8A0A(B BBBED   8C  Lp   BDH O(H0[(A O
DBJ`
DDH   <   C  $q    FBE A(H0f
(A BBBA   <   C  q+   FBE A(A0
(A BBBI   8    D  tr   FEA A(D0
(A ABBE H   <D  Xs^   FBB E(A0A8D@
8A0A(B BBBB <   D  lt    FBE A(H0v
(A BBBA   @   D  t   gBB D(H0
(A EBBI  H   E  Xv   FBE B(A0A8D`
8A0A(B BBBDH   XE  z.   FBE B(A0A8D`
8A0A(B BBBDH   E  ~   FBE B(A0A8D@_
8A0A(B BBBB<   E     FEB A(A0Y
(A BBBA  H   0F     FBB E(A0A8D@.
8A0A(B BBBCH   |F     FBB E(A0A8D@.
8A0A(B BBBCH   F  l   FBB E(A0A8D@
8A0A(B BBBKH   G     FBE B(A0A8DP7
8A0A(B BBBJH   `G  DP   FBE B(A0A8DP
8A0A(B BBBF<   G  H,   FBE A(A0
(A BBBG  <   G  8,   FBE A(A0
(A BBBG  H   ,H  (   FBB E(A0A8D@.
8A0A(B BBBCH   xH     FBB E(A0A8DP.
8A0A(B BBBCH   H  0   FBB E(A0A8D@.
8A0A(B BBBCH   I  K   FBB E(A0A8D`B
8A0A(B BBBGH   \I  K   FBB E(A0A8D`P
8A0A(B BBBAH   I  9   FBB E(A0A8DP.
8A0A(B BBBCX   I     FBB E(A0A8D`
8A0A(B BBBJhhKpWhA`  H   PJ  T]   FBE B(A0A8DP;
8A0A(B BBBFH   J  h   FBB E(A0A8D`
8A0A(B BBBEH   J  ܳ   FBB E(A0A8DP
8A0A(B BBBBH   4K      FBE B(A0A8DP;
8A0A(B BBBFH   K  }   FBB E(A0A8DP
8A0A(B BBBKH   K     FBB E(A0A8D`
8A0A(B BBBJH   L  la   FBB E(A0A8DP
8A0A(B BBBGH   dL     FBB E(A0A8D@
8A0A(B BBBJ<   L  j   FEB A(A0
(A BBBE  H   L     FBE B(A0A8D`
8A0A(B BBBHH   <M  	   FBE B(A0A8D`
8A0A(B BBBF@   M  N   FBE A(A0DP
0A(A BBBFH   M     FBE B(A0A8D`
8A0A(B BBBBH   N     FBB E(A0A8D`w
8A0A(B BBBJH   dN  f	   FBB B(D0A8DPR
8D0A(B BBBD  8   N  
   BBA A(G0
(A ABBF    N  x0    Aj   H   O     FBB B(A0D8D`
8A0A(B BBBFH   TO    ;   FBB B(D0A8D`
8A0A(B BBBFH   O     FBE B(A0A8D@
8A0A(B BBBHH   O  hL   FBE B(A0A8D@a
8A0A(B BBBHL   8P  l.   FBB E(A0A8D
8A0A(B BBBJ   (   P  L:    BAA f
ABCH   P  `   FBB E(A0A8D@D
8A0A(B BBBEH    Q     FBE B(A0A8DP
8A0A(B BBBFH   LQ  h   FBE B(A0A8DP
8A0A(B BBBF$   Q  1    AAG ^DA <   Q  J   FBE A(A0
(A BBBK   H    R     FBB E(A0A8DP
8A0A(B BBBGH   LR  (3   FBB E(A0A8D@
8A0A(B BBBAH   R     FBB E(A0A8D@
8A0A(B BBBGH   R     FBE B(A0A8DP{
8A0A(B BBBFL   0S  T#   FBE B(A0A8G
8A0A(B BBBJ   L   S  &   FBE B(A0A8G
8A0A(B BBBD   H   S  *   FBB E(A0A8D`
8A0A(B BBBH   T  -=    L`
Dl   8T  -%   BBE B(D0D8D`hHpWhB`hhHp[hA`~
8A0A(B BBBGhHpUhA`   T  /   BBB B(D0D8D`
8A0A(B BBBIX
8A0A(B BBBNg
8A0A(B BBBG^
8A0A(B BBBH   <   @U  2*   FBE A(A0
(A BBBA   L   U  3P   BBA D(G0
(A ABBJt
(A ABBF   H   U  4
   FEB B(D0A8DP2
8D0A(B BBBI<   V  ?   FEB A(A0
(A BBBD  l   \V  h@   FBB E(A0A8DHYA
8A0A(B BBBDaKXA H   V  E   FBE B(A0A8DP
8A0A(B BBBF8   W  |H"	   FEA A(D0
(A DBBH\   TW  pQz   FBE B(A0A8DHUA
8A0A(B BBBA  <   W  dK   FBE A(A0
(A BBBI  <   W  g	   FEE A(A0
(A EBBI  4   4X  `qb    FED A(D0}(G ABB 8   lX  q   FED A(G
(A ABBA   X  lrX    H0J
A p   X  r   FBB B(A0C8D@dHHP\HB@HHP[HA@U
8D0A(B BBBCMHHP[HA@      8Y  <v)       H   LY  Xv   FBE B(A0A8D@
8A0A(B BBBBH   Y  w   FBE B(A0A8D`q
8A0A(B BBBHH   Y  zL   FBE B(A0A8D`\
8A0A(B BBBEH   0Z  }s   FBB E(A0A8DPd
8A0A(B BBBEH   |Z     FBE B(A0A8D`
8A0A(B BBBHH   Z     FBE B(A0A8Dps
8A0A(B BBBFH   [  ЅP   FBE B(A0A8Dpa
8A0A(B BBBHH   `[  ԈQ   FBE B(A0A8Dp|
8A0A(B BBBEL   [  Y   FBE B(A0A8D
8A0A(B BBBF   L   [  .   FBE B(A0A8D
8A0A(B BBBE   H   L\  ؕU   FBE B(A0A8DP
8A0A(B BBBAL   \  \   FBE B(A0A8D{
8A0A(B BBBF   L   \  d   FBE B(A0A8G	
8A0A(B BBBH   L   8]     FBB E(A0A8G	
8A0A(B BBBD   H   ]  	   FBE B(A0A8D`$
8A0A(B BBBEL   ]  P   FBB B(D0A8D
8A0A(B BBBG   0   $^  \   FAA D0
 AABA  H   X^  <   FBB E(A0A8DpF
8A0A(B BBBKH   ^     FBE B(A0A8D@T
8A0A(B BBBA@   ^     FEB A(A0D@
0A(A BBBJH   4_  `   FBE B(A0A8Dp
8A0A(B BBBDH   _  $Y   FBE B(A0A8DPg
8A0A(B BBBJH   _  8   FBE B(A0A8Dp

8A0A(B BBBGH   `  l   FBE B(A0A8Dp 
8A0A(B BBBAH   d`  0   FBE B(A0A8D@|
8A0A(B BBBE(   `  %/   FAA /DE    `  )    JXF <   `      NDD Z
AAND
AAJ`     8a  8          La  g          `a  D       L   ta  P6   FBA A(D0
(A ABBE\
(D ABBK   (   a  @K   FDD w
ABH   a  dP    H B
A    b  4      0    b      FAA F0]
 AABA    Tb             hb  v          |b  xc    gN    b  ,          b         \   b      FED A(G0}
(D ABBCa
(C DBBDL
(D ABBK (   c  H   Nm
Eh
HP  P   Hc  ,f   FAA y
ABDx
ABED
AEFe
ABH  $   c  Ht    eJ RAFX   D   c  N   FAA 
ABFs
DBGA
DBI      d  +   FBA D(D0
(D ABBJm
(D ABBJD
(A ABBFT
(D DBBHV
(D ABBID
(D DBBH     d  @       `   d  LY   XBB E(A0D8D@v
8D0A(B BBBCC@\   e  H    FBA A(D0n
(D ABBKD
(A ABBFG
(D ABBH  (   |e      JN U
ABDA  4   e  < {    FAA a
ABDDAE  L   e       OBA A(D0v
(D ABBJd(D DBBH H   0f  x    FED A(G0w
(A DBBID(J ABB   0   |f  H   FAA D@S
 AABE ,   f  $    [G F
AGFAIP 4   f      FBA A(D0(A ABBD   g      NDD X
FAKm
FADVAAP     `g  =    J\
JFA      g                g  X	       $   g  T-    EDD ]AA    g  \       $   g  (9    EDD VGJ    h  @*    E`   <   0h  T    OBB A(H0|(A BBB    ph      H   h  ;    Eu      h      EX   H   h     FBB B(A0A8G@
8D0A(B BBBI <   i  |!   FBB A(A0
(D HBBF   ,   Hi  l    FAA 
ABF      xi  .    ER
IM    i  	)    ET
GD <   i  	#   FBB A(A0
(D HBBF   0   i  
    EAD i
ADHeAA    ,j  
    YO
HOA     Pj  
,    Ef      lj  u       8   j  t    FAC `
ABCD
ABI   H   j     FBB B(D0D8D@
8D0A(B BBBF    k  \m       (   k      EAG 
AAH 8   Hk  L    FAH F
EBDA
CBJ   <   k     FBB D(H0
(A BBBF   ,   k  i    JDG h
AAAh 0   k      PDG AAFH      (l  1       0   <l  X    EID g
DABRDA 8   pl      FBA C(D0g
(C ABBA  4   l  h    FAD _
ABCHDB  ,   l  M   FAH 
ABI   \   m     FED D(G0l
(D ABBI
(D ABBEI
(D DBBK l   tm  Pu   FBB A(A0D@
0D(A BBBBR
0C(D BBBAd
0D(A BBBA  (   m  `C    PDD RCBH   n      FBD A(G0Z
(A ABBDk(A ABB  @   \n     FBE A(D0D@
0A(A BBBA8   n  D    FBD D(DP
(A ABBA 8   n     FBA A(G@
(A ABBD   o  L"    EV   \   4o  `J   FEB E(A0A8GHTDq
8A0A(B BBBA  \   o  P    FBB B(A0A8J$HZA
8A0A(B BBBA \   o  '   FEB E(A0A8GHTD
8A0A(B BBBA  4   Tp  .o    FBA D(D0T(D ABB4   p  /g    FBD C(D0J(D ABB   p  P/n         p  ;*    Ha    p  ;'    Ea   <   q  ;q    KEA A(D0O(A ABBE   8   Lq  <a    KEA A(D0}(D ABB    q  L<!       4   q  h<g    FED A(J0F(A ABB8   q  <    FBA A(G0w
(D ABBA 8   r  $=   FBA D(D0
(A ABBC    Lr  =#       l   `r  >   FBE B(A0D8DPSXH`[XAP^XB`aXEP
8D0A(B BBBE
XD`L  l   r  4D   FBE B(A0D8DPSXH`[XAP^XB`aXEP
8D0A(B BBBE
XD`L  0   @s  TJ    FDA I0
 AABA 8   ts   K    FBB D(A0i(A GBB  H   s  TK(   FBB B(A0A8GP~
8A0A(B BBBC    s  8La   FBB J(D0A8GPE
8A0A(B BBBAUXH`\XBP_XH``XCPXXG``XDPSXA`aXAP\
XH`[XAPYXH`[XKPLXE`J   8   t  N    KBA D(G0S(J ABBH  t  \N	   FBE B(A0A8GYNA]YNB@HbCPH[KKH[KPMYAHXAe
8A0A(B BBBIbYZARY\AIYMAvH[KLH\KPH\Bf
H[KPH\KLPNT   $v  V    FGE D(A0V
(D BBBIV8H@[8D0A(A BBB `   |v  V    FGE D(A0V
(D BBBIU8H@[8G0a8G@[8D0A(A BBB l   v  DW/   FGE B(D0D8G@q
8D0A(B BBBGTHGP[HA@^HHP[HA@dHHP[HB@  d   Pw  X    FBA A(G0I
(D ABBEQ8H@[8A0G
(A ABBFQ8H@[8A0   d   w  XL   MAD q(J0_(E M(J0`(B ^
ABEN(L0Y(A ](J0[(A AAB   d    x  tY   FBB B(A0D8D@HHP_HA@ZHGP[HA@
8F0A(B BBBA   `   x  d   FEE B(D0A8DP
8D0A(B BBBEw
8A0A(B BBBBx   x  k%   FBB E(D0A8DPp
8F0A(B BBBI
8F0A(B BBBA~
8C0A(B BBBHH   hy  lqg    FED A(G0W
(J ABBKS(F ABB   8   y  qf    PBA D(G0m(J ABB H   y  q   FBB E(A0D8D@2
8F0A(B BBBA8   <z  w   FEA A(D0
(F ABBA T   xz  |e   FBE B(D0A8DPXb`RXAP
8F0A(B BBBAH   z     FBE B(A0D8D@E
8F0A(B BBBAH   {  )   FBB E(A0D8DPs
8F0A(B BBBF  H   h{  ̎M   FEE E(A0A8DP
8F0A(B BBBAH   {  О1   FEB B(A0D8DPJ
8F0A(B BBBG    |  Ĥ    HX   |  o   MEB D(D0b8L@[8A0v8N@V8A0N
(E BBBF        t|  .   [BB B(D0C8GP~8D0A(B BBBVP
8A0A(B BBBAT
8A0A(B BBBB
8G0A(B BBBHXHPH   8}  ,   FBB B(A0A8D@
8D0A(B BBBI4   }  J    FDG j
ABBCDB      }  <    Ed
GK    }  ȫ<    Ed
GK L   }     FBB A(A0
(D BBBG[
(D BBBK 4   L~  Z    FAA }
ABHFAB      ~  <    Ed
GK                  GNU                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     @             &            U              #             #             #             #             #             #             $                          e            ؽ&                          &                   o    `             7             X      
       =%                           @&            x*                           0g             hb                   	                             o           o    `      o           o    \      o                                                                                           &                                                     0      @      P      `      p                                    В                                      0      @      P      `      p                                    Г                                      0      @      P      `      p                                    Д                                      0      @      P      `      p                                    Е                                      0      @      P      `      p                                    Ж                                      0      @      P      `      p                                    З                                      0      @      P      `      p                                    И                                      0      @      P      `      p                                    Й                                      0      @      P      `      p                                    К                                      0      @      P      `      p                                    Л                                      0      @      P      `      p                                    М                                      0      @      P      `      p                                    Н                                      0      @      P      `      p                                    О                                      0      @      P      `      p                                    П                                      0      @      P      `      p                                    Р                                      0      @      P      `      p                                    С                                      0      @      P      `      p                                    Т                                      0      @      P      `      p                                    У                                      0      @      P      `      p                                    Ф                                      0      @      P      `      p                                    Х                                      0      @      P      `      p                                    Ц                                      0      @      P      `      p                                    Ч                                      0      @      P      `      p                                    Ш                                      0      @      P      `      p                                    Щ                                      0      @      P      `      p                                    Ъ                                      0      @      P      `      p                                    Ы                                      0      @      P      `      p                                    Ь                                      0      @      P      `      p                                    Э                                                                                                                                                                                                                                                                                                                                                                                                                                      GCC: (GNU) 8.5.0 20210514 (Red Hat 8.5.0-20)             GA$3a1                      GA$3a1                      GA$3a1 e     $e              GA$3a1       I               GA$3p1113  P      ?                GA$running gcc 8.5.0 20210514            GA$annobin gcc 8.5.0 20210514            GA$plugin name: annobin              GA*GOW *            GA*             GA+stack_clash            GA*cf_protection             GA*FORTIFY               GA+GLIBCXX_ASSERTIONS             GA*             GA!              GA+omit_frame_pointer             GA*             GA!stack_realign            GA*FORTIFY     P      !              GA+GLIBCXX_ASSERTIONS   P      !              GA*FORTIFY     !                    GA+GLIBCXX_ASSERTIONS   !                    GA*FORTIFY           ?              GA+GLIBCXX_ASSERTIONS         ?               GA$3p1113                        GA$running gcc 8.5.0 20210514            GA$annobin gcc 8.5.0 20210514            GA$plugin name: annobin              GA*GOW *            GA*             GA+stack_clash            GA*cf_protection             GA*FORTIFY               GA+GLIBCXX_ASSERTIONS             GA*             GA!              GA+omit_frame_pointer             GA*             GA!stack_realign             GA$3p1113                        GA$running gcc 8.5.0 20210514            GA$annobin gcc 8.5.0 20210514            GA$plugin name: annobin              GA*GOW *            GA*             GA+stack_clash            GA*cf_protection             GA*FORTIFY               GA+GLIBCXX_ASSERTIONS             GA*             GA!              GA+omit_frame_pointer             GA*             GA!stack_realign             GA$3p1113                        GA$running gcc 8.5.0 20210514            GA$annobin gcc 8.5.0 20210514            GA$plugin name: annobin              GA*GOW *            GA*             GA+stack_clash            GA*cf_protection             GA*FORTIFY               GA+GLIBCXX_ASSERTIONS             GA*             GA!              GA+omit_frame_pointer             GA*             GA!stack_realign             GA$3p1113                        GA$running gcc 8.5.0 20210514            GA$annobin gcc 8.5.0 20210514            GA$plugin name: annobin              GA*GOW *            GA*             GA+stack_clash            GA*cf_protection             GA*FORTIFY               GA+GLIBCXX_ASSERTIONS             GA*             GA!              GA+omit_frame_pointer             GA*             GA!stack_realign             GA$3p1113  @      
                GA$running gcc 8.5.0 20210514            GA$annobin gcc 8.5.0 20210514            GA$plugin name: annobin              GA*GOW *            GA*             GA+stack_clash            GA*cf_protection             GA*FORTIFY               GA+GLIBCXX_ASSERTIONS             GA*             GA!              GA+omit_frame_pointer             GA*             GA!stack_realign            GA*FORTIFY     @                    GA+GLIBCXX_ASSERTIONS   @                    GA*FORTIFY                         GA+GLIBCXX_ASSERTIONS                       GA*FORTIFY                         GA+GLIBCXX_ASSERTIONS                       GA*FORTIFY           0              GA+GLIBCXX_ASSERTIONS         0              GA*FORTIFY     0      0              GA+GLIBCXX_ASSERTIONS   0      0              GA*FORTIFY     0                    GA+GLIBCXX_ASSERTIONS   0                    GA*FORTIFY           y              GA+GLIBCXX_ASSERTIONS         y              GA*FORTIFY     y                    GA+GLIBCXX_ASSERTIONS   y                    GA*FORTIFY           
              GA+GLIBCXX_ASSERTIONS         
               GA$3p1113                        GA$running gcc 8.5.0 20210514            GA$annobin gcc 8.5.0 20210514            GA$plugin name: annobin              GA*GOW *            GA*             GA+stack_clash            GA*cf_protection             GA*FORTIFY               GA+GLIBCXX_ASSERTIONS             GA*             GA!              GA+omit_frame_pointer             GA*             GA!stack_realign             GA$3p1113                        GA$running gcc 8.5.0 20210514            GA$annobin gcc 8.5.0 20210514            GA$plugin name: annobin              GA*GOW *            GA*             GA+stack_clash            GA*cf_protection             GA*FORTIFY               GA+GLIBCXX_ASSERTIONS             GA*             GA!              GA+omit_frame_pointer             GA*             GA!stack_realign             GA$3p1113                        GA$running gcc 8.5.0 20210514            GA$annobin gcc 8.5.0 20210514            GA$plugin name: annobin              GA*GOW *            GA*             GA+stack_clash            GA*cf_protection             GA*FORTIFY               GA+GLIBCXX_ASSERTIONS             GA*             GA!              GA+omit_frame_pointer             GA*             GA!stack_realign             GA$3p1113                        GA$running gcc 8.5.0 20210514            GA$annobin gcc 8.5.0 20210514            GA$plugin name: annobin              GA*GOW *            GA*             GA+stack_clash            GA*cf_protection             GA*FORTIFY               GA+GLIBCXX_ASSERTIONS             GA*             GA!              GA+omit_frame_pointer             GA*             GA!stack_realign             GA$3p1113        E               GA$running gcc 8.5.0 20210514            GA$annobin gcc 8.5.0 20210514            GA$plugin name: annobin              GA*GOW *            GA*             GA+stack_clash            GA*cf_protection             GA*FORTIFY               GA+GLIBCXX_ASSERTIONS             GA*             GA!              GA+omit_frame_pointer             GA*             GA!stack_realign            GA*FORTIFY                         GA+GLIBCXX_ASSERTIONS                       GA*FORTIFY                         GA+GLIBCXX_ASSERTIONS                       GA*FORTIFY                         GA+GLIBCXX_ASSERTIONS                       GA*FORTIFY                         GA+GLIBCXX_ASSERTIONS                       GA*FORTIFY                         GA+GLIBCXX_ASSERTIONS                       GA*FORTIFY                         GA+GLIBCXX_ASSERTIONS                       GA*FORTIFY                         GA+GLIBCXX_ASSERTIONS                       GA*FORTIFY           
             GA+GLIBCXX_ASSERTIONS         
             GA*FORTIFY     
     0             GA+GLIBCXX_ASSERTIONS   
     0             GA*FORTIFY     0                  GA+GLIBCXX_ASSERTIONS   0                  GA*FORTIFY          A             GA+GLIBCXX_ASSERTIONS        A             GA*FORTIFY     A                  GA+GLIBCXX_ASSERTIONS   A                  GA*FORTIFY          p             GA+GLIBCXX_ASSERTIONS        p             GA*FORTIFY     p     U             GA+GLIBCXX_ASSERTIONS   p     U             GA*FORTIFY     U     E             GA+GLIBCXX_ASSERTIONS   U     E             GA*FORTIFY     E                  GA+GLIBCXX_ASSERTIONS   E                  GA*FORTIFY                        GA+GLIBCXX_ASSERTIONS                      GA*FORTIFY           "             GA+GLIBCXX_ASSERTIONS         "             GA*FORTIFY     "     %             GA+GLIBCXX_ASSERTIONS   "     %             GA*FORTIFY     %     N'             GA+GLIBCXX_ASSERTIONS   %     N'             GA*FORTIFY     N'     )             GA+GLIBCXX_ASSERTIONS   N'     )             GA*FORTIFY     )     +             GA+GLIBCXX_ASSERTIONS   )     +             GA*FORTIFY     +     .             GA+GLIBCXX_ASSERTIONS   +     .             GA*FORTIFY     .     N0             GA+GLIBCXX_ASSERTIONS   .     N0             GA*FORTIFY     N0     2             GA+GLIBCXX_ASSERTIONS   N0     2             GA*FORTIFY     2     U4             GA+GLIBCXX_ASSERTIONS   2     U4             GA*FORTIFY     U4     %6             GA+GLIBCXX_ASSERTIONS   U4     %6             GA*FORTIFY     %6     7             GA+GLIBCXX_ASSERTIONS   %6     7             GA*FORTIFY     7     9             GA+GLIBCXX_ASSERTIONS   7     9             GA*FORTIFY     9     ;             GA+GLIBCXX_ASSERTIONS   9     ;             GA*FORTIFY     ;     `<             GA+GLIBCXX_ASSERTIONS   ;     `<             GA*FORTIFY     `<     i<             GA+GLIBCXX_ASSERTIONS   `<     i<             GA*FORTIFY     i<     y<             GA+GLIBCXX_ASSERTIONS   i<     y<             GA*FORTIFY     y<     =             GA+GLIBCXX_ASSERTIONS   y<     =             GA*FORTIFY     =     @             GA+GLIBCXX_ASSERTIONS   =     @             GA*FORTIFY     @     iB             GA+GLIBCXX_ASSERTIONS   @     iB             GA*FORTIFY     iB     JD             GA+GLIBCXX_ASSERTIONS   iB     JD             GA*FORTIFY     JD     F             GA+GLIBCXX_ASSERTIONS   JD     F             GA*FORTIFY     F     H             GA+GLIBCXX_ASSERTIONS   F     H             GA*FORTIFY     H     J             GA+GLIBCXX_ASSERTIONS   H     J             GA*FORTIFY     J     L             GA+GLIBCXX_ASSERTIONS   J     L             GA*FORTIFY     L     AN             GA+GLIBCXX_ASSERTIONS   L     AN             GA*FORTIFY     AN      P             GA+GLIBCXX_ASSERTIONS   AN      P             GA*FORTIFY      P     Q             GA+GLIBCXX_ASSERTIONS    P     Q             GA*FORTIFY     Q     T             GA+GLIBCXX_ASSERTIONS   Q     T             GA*FORTIFY     T     U             GA+GLIBCXX_ASSERTIONS   T     U             GA*FORTIFY     U     X             GA+GLIBCXX_ASSERTIONS   U     X             GA*FORTIFY     X     ]             GA+GLIBCXX_ASSERTIONS   X     ]             GA*FORTIFY     ]     ^             GA+GLIBCXX_ASSERTIONS   ]     ^             GA*FORTIFY     ^     _`             GA+GLIBCXX_ASSERTIONS   ^     _`             GA*FORTIFY     _`     a             GA+GLIBCXX_ASSERTIONS   _`     a             GA*FORTIFY     a     b             GA+GLIBCXX_ASSERTIONS   a     b             GA*FORTIFY     b     bd             GA+GLIBCXX_ASSERTIONS   b     bd             GA*FORTIFY     bd     e             GA+GLIBCXX_ASSERTIONS   bd     e             GA*FORTIFY     e     g             GA+GLIBCXX_ASSERTIONS   e     g             GA*FORTIFY     g     i             GA+GLIBCXX_ASSERTIONS   g     i             GA*FORTIFY     i     k             GA+GLIBCXX_ASSERTIONS   i     k             GA*FORTIFY     k     m             GA+GLIBCXX_ASSERTIONS   k     m             GA*FORTIFY     m     o             GA+GLIBCXX_ASSERTIONS   m     o             GA*FORTIFY     o     r             GA+GLIBCXX_ASSERTIONS   o     r             GA*FORTIFY     r     s             GA+GLIBCXX_ASSERTIONS   r     s             GA*FORTIFY     s     u             GA+GLIBCXX_ASSERTIONS   s     u             GA*FORTIFY     u     ]w             GA+GLIBCXX_ASSERTIONS   u     ]w             GA*FORTIFY     ]w     x             GA+GLIBCXX_ASSERTIONS   ]w     x             GA*FORTIFY     x     z             GA+GLIBCXX_ASSERTIONS   x     z             GA*FORTIFY     z     .}             GA+GLIBCXX_ASSERTIONS   z     .}             GA*FORTIFY     .}     m             GA+GLIBCXX_ASSERTIONS   .}     m             GA*FORTIFY     m     ~             GA+GLIBCXX_ASSERTIONS   m     ~             GA*FORTIFY     ~                  GA+GLIBCXX_ASSERTIONS   ~                  GA*FORTIFY          F             GA+GLIBCXX_ASSERTIONS        F             GA*FORTIFY     F     `             GA+GLIBCXX_ASSERTIONS   F     `             GA*FORTIFY     `                  GA+GLIBCXX_ASSERTIONS   `                  GA*FORTIFY                       GA+GLIBCXX_ASSERTIONS                     GA*FORTIFY                       GA+GLIBCXX_ASSERTIONS                     GA*FORTIFY          F             GA+GLIBCXX_ASSERTIONS        F             GA*FORTIFY     F                  GA+GLIBCXX_ASSERTIONS   F                  GA*FORTIFY                       GA+GLIBCXX_ASSERTIONS                     GA*FORTIFY          f             GA+GLIBCXX_ASSERTIONS        f             GA*FORTIFY     f     Ɩ             GA+GLIBCXX_ASSERTIONS   f     Ɩ             GA*FORTIFY     Ɩ     G             GA+GLIBCXX_ASSERTIONS   Ɩ     G             GA*FORTIFY     G                  GA+GLIBCXX_ASSERTIONS   G                  GA*FORTIFY          /             GA+GLIBCXX_ASSERTIONS        /             GA*FORTIFY     /                  GA+GLIBCXX_ASSERTIONS   /                  GA*FORTIFY          B             GA+GLIBCXX_ASSERTIONS        B             GA*FORTIFY     B                  GA+GLIBCXX_ASSERTIONS   B                  GA*FORTIFY                       GA+GLIBCXX_ASSERTIONS                     GA*FORTIFY                       GA+GLIBCXX_ASSERTIONS                     GA*FORTIFY                       GA+GLIBCXX_ASSERTIONS                     GA*FORTIFY          q             GA+GLIBCXX_ASSERTIONS        q             GA*FORTIFY     q     ΰ             GA+GLIBCXX_ASSERTIONS   q     ΰ             GA*FORTIFY     ΰ                  GA+GLIBCXX_ASSERTIONS   ΰ                  GA*FORTIFY          ɵ             GA+GLIBCXX_ASSERTIONS        ɵ             GA*FORTIFY     ɵ                  GA+GLIBCXX_ASSERTIONS   ɵ                  GA*FORTIFY          n             GA+GLIBCXX_ASSERTIONS        n             GA*FORTIFY     n                  GA+GLIBCXX_ASSERTIONS   n                  GA*FORTIFY          ɽ             GA+GLIBCXX_ASSERTIONS        ɽ             GA*FORTIFY     ɽ     y             GA+GLIBCXX_ASSERTIONS   ɽ     y             GA*FORTIFY     y                  GA+GLIBCXX_ASSERTIONS   y                  GA*FORTIFY                       GA+GLIBCXX_ASSERTIONS                     GA*FORTIFY          n             GA+GLIBCXX_ASSERTIONS        n             GA*FORTIFY     n                  GA+GLIBCXX_ASSERTIONS   n                  GA*FORTIFY                       GA+GLIBCXX_ASSERTIONS                     GA*FORTIFY                       GA+GLIBCXX_ASSERTIONS                     GA*FORTIFY          <             GA+GLIBCXX_ASSERTIONS        <             GA*FORTIFY     <                  GA+GLIBCXX_ASSERTIONS   <                  GA*FORTIFY                       GA+GLIBCXX_ASSERTIONS                     GA*FORTIFY          .             GA+GLIBCXX_ASSERTIONS        .             GA*FORTIFY     .     ~             GA+GLIBCXX_ASSERTIONS   .     ~             GA*FORTIFY     ~                  GA+GLIBCXX_ASSERTIONS   ~                  GA*FORTIFY          y             GA+GLIBCXX_ASSERTIONS        y             GA*FORTIFY     y                  GA+GLIBCXX_ASSERTIONS   y                  GA*FORTIFY                       GA+GLIBCXX_ASSERTIONS                     GA*FORTIFY          n             GA+GLIBCXX_ASSERTIONS        n             GA*FORTIFY     n                  GA+GLIBCXX_ASSERTIONS   n                  GA*FORTIFY                       GA+GLIBCXX_ASSERTIONS                     GA*FORTIFY                       GA+GLIBCXX_ASSERTIONS                     GA*FORTIFY                       GA+GLIBCXX_ASSERTIONS                     GA*FORTIFY          y             GA+GLIBCXX_ASSERTIONS        y             GA*FORTIFY     y     )             GA+GLIBCXX_ASSERTIONS   y     )             GA*FORTIFY     )                  GA+GLIBCXX_ASSERTIONS   )                  GA*FORTIFY          &             GA+GLIBCXX_ASSERTIONS        &             GA*FORTIFY     &                  GA+GLIBCXX_ASSERTIONS   &                  GA*FORTIFY          .             GA+GLIBCXX_ASSERTIONS        .             GA*FORTIFY     .                  GA+GLIBCXX_ASSERTIONS   .                  GA*FORTIFY          9             GA+GLIBCXX_ASSERTIONS        9             GA*FORTIFY     9                  GA+GLIBCXX_ASSERTIONS   9                  GA*FORTIFY          	             GA+GLIBCXX_ASSERTIONS        	             GA*FORTIFY     	     9             GA+GLIBCXX_ASSERTIONS   	     9             GA*FORTIFY     9                  GA+GLIBCXX_ASSERTIONS   9                  GA*FORTIFY                       GA+GLIBCXX_ASSERTIONS                     GA*FORTIFY                       GA+GLIBCXX_ASSERTIONS                     GA*FORTIFY                       GA+GLIBCXX_ASSERTIONS                     GA*FORTIFY          S             GA+GLIBCXX_ASSERTIONS        S             GA*FORTIFY     S                  GA+GLIBCXX_ASSERTIONS   S                  GA*FORTIFY          )             GA+GLIBCXX_ASSERTIONS        )             GA*FORTIFY     )     y             GA+GLIBCXX_ASSERTIONS   )     y             GA*FORTIFY     y                  GA+GLIBCXX_ASSERTIONS   y                  GA*FORTIFY                       GA+GLIBCXX_ASSERTIONS                     GA*FORTIFY                       GA+GLIBCXX_ASSERTIONS                     GA*FORTIFY                       GA+GLIBCXX_ASSERTIONS                     GA*FORTIFY                       GA+GLIBCXX_ASSERTIONS                     GA*FORTIFY          9!             GA+GLIBCXX_ASSERTIONS        9!             GA*FORTIFY     9!     #             GA+GLIBCXX_ASSERTIONS   9!     #             GA*FORTIFY     #     $             GA+GLIBCXX_ASSERTIONS   #     $             GA*FORTIFY     $     %             GA+GLIBCXX_ASSERTIONS   $     %             GA*FORTIFY     %     0(             GA+GLIBCXX_ASSERTIONS   %     0(             GA*FORTIFY     0(     )             GA+GLIBCXX_ASSERTIONS   0(     )             GA*FORTIFY     )     -             GA+GLIBCXX_ASSERTIONS   )     -             GA*FORTIFY     -     2             GA+GLIBCXX_ASSERTIONS   -     2             GA*FORTIFY     2     4             GA+GLIBCXX_ASSERTIONS   2     4             GA*FORTIFY     4     7             GA+GLIBCXX_ASSERTIONS   4     7             GA*FORTIFY     7     9             GA+GLIBCXX_ASSERTIONS   7     9             GA*FORTIFY     9     =             GA+GLIBCXX_ASSERTIONS   9     =             GA*FORTIFY     =     m@             GA+GLIBCXX_ASSERTIONS   =     m@             GA*FORTIFY     m@     A             GA+GLIBCXX_ASSERTIONS   m@     A             GA*FORTIFY     A     B             GA+GLIBCXX_ASSERTIONS   A     B             GA*FORTIFY     B     C             GA+GLIBCXX_ASSERTIONS   B     C             GA*FORTIFY     C     5E             GA+GLIBCXX_ASSERTIONS   C     5E             GA*FORTIFY     5E     @G             GA+GLIBCXX_ASSERTIONS   5E     @G             GA*FORTIFY     @G     }H             GA+GLIBCXX_ASSERTIONS   @G     }H             GA*FORTIFY     }H     YK             GA+GLIBCXX_ASSERTIONS   }H     YK             GA*FORTIFY     YK     M             GA+GLIBCXX_ASSERTIONS   YK     M             GA*FORTIFY     M     Q             GA+GLIBCXX_ASSERTIONS   M     Q             GA*FORTIFY     Q     T             GA+GLIBCXX_ASSERTIONS   Q     T             GA*FORTIFY     T     W             GA+GLIBCXX_ASSERTIONS   T     W             GA*FORTIFY     W     BY             GA+GLIBCXX_ASSERTIONS   W     BY             GA*FORTIFY     BY     Z             GA+GLIBCXX_ASSERTIONS   BY     Z             GA*FORTIFY     Z     [             GA+GLIBCXX_ASSERTIONS   Z     [             GA*FORTIFY     [     __             GA+GLIBCXX_ASSERTIONS   [     __             GA*FORTIFY     __     sa             GA+GLIBCXX_ASSERTIONS   __     sa             GA*FORTIFY     sa     #d             GA+GLIBCXX_ASSERTIONS   sa     #d             GA*FORTIFY     #d     e             GA+GLIBCXX_ASSERTIONS   #d     e             GA*FORTIFY     e     g             GA+GLIBCXX_ASSERTIONS   e     g             GA*FORTIFY     g     j             GA+GLIBCXX_ASSERTIONS   g     j             GA*FORTIFY     j     m             GA+GLIBCXX_ASSERTIONS   j     m             GA*FORTIFY     m     p             GA+GLIBCXX_ASSERTIONS   m     p             GA*FORTIFY     p     r             GA+GLIBCXX_ASSERTIONS   p     r             GA*FORTIFY     r     u             GA+GLIBCXX_ASSERTIONS   r     u             GA*FORTIFY     u     x             GA+GLIBCXX_ASSERTIONS   u     x             GA*FORTIFY     x     {             GA+GLIBCXX_ASSERTIONS   x     {             GA*FORTIFY     {     8~             GA+GLIBCXX_ASSERTIONS   {     8~             GA*FORTIFY     8~     o             GA+GLIBCXX_ASSERTIONS   8~     o             GA*FORTIFY     o     h             GA+GLIBCXX_ASSERTIONS   o     h             GA*FORTIFY     h     I             GA+GLIBCXX_ASSERTIONS   h     I             GA*FORTIFY     I     ݇             GA+GLIBCXX_ASSERTIONS   I     ݇             GA*FORTIFY     ݇     =             GA+GLIBCXX_ASSERTIONS   ݇     =             GA*FORTIFY     =     ԍ             GA+GLIBCXX_ASSERTIONS   =     ԍ             GA*FORTIFY     ԍ                  GA+GLIBCXX_ASSERTIONS   ԍ                  GA*FORTIFY                       GA+GLIBCXX_ASSERTIONS                     GA*FORTIFY                       GA+GLIBCXX_ASSERTIONS                     GA*FORTIFY                       GA+GLIBCXX_ASSERTIONS                     GA*FORTIFY                       GA+GLIBCXX_ASSERTIONS                     GA*FORTIFY                       GA+GLIBCXX_ASSERTIONS                     GA*FORTIFY                       GA+GLIBCXX_ASSERTIONS                     GA*FORTIFY                       GA+GLIBCXX_ASSERTIONS                     GA*FORTIFY          R             GA+GLIBCXX_ASSERTIONS        R             GA*FORTIFY     R     l             GA+GLIBCXX_ASSERTIONS   R     l             GA*FORTIFY     l                  GA+GLIBCXX_ASSERTIONS   l                  GA*FORTIFY          +             GA+GLIBCXX_ASSERTIONS        +             GA*FORTIFY     +     ?             GA+GLIBCXX_ASSERTIONS   +     ?             GA*FORTIFY     ?     װ             GA+GLIBCXX_ASSERTIONS   ?     װ             GA*FORTIFY     װ     +             GA+GLIBCXX_ASSERTIONS   װ     +             GA*FORTIFY     +     ǵ             GA+GLIBCXX_ASSERTIONS   +     ǵ             GA*FORTIFY     ǵ     g             GA+GLIBCXX_ASSERTIONS   ǵ     g             GA*FORTIFY     g                  GA+GLIBCXX_ASSERTIONS   g                  GA*FORTIFY          7             GA+GLIBCXX_ASSERTIONS        7             GA*FORTIFY     7                  GA+GLIBCXX_ASSERTIONS   7                  GA*FORTIFY                       GA+GLIBCXX_ASSERTIONS                     GA*FORTIFY                       GA+GLIBCXX_ASSERTIONS                     GA*FORTIFY          #             GA+GLIBCXX_ASSERTIONS        #             GA*FORTIFY     #                  GA+GLIBCXX_ASSERTIONS   #                  GA*FORTIFY                       GA+GLIBCXX_ASSERTIONS                     GA*FORTIFY          1             GA+GLIBCXX_ASSERTIONS        1             GA*FORTIFY     1     )             GA+GLIBCXX_ASSERTIONS   1     )             GA*FORTIFY     )                  GA+GLIBCXX_ASSERTIONS   )                  GA*FORTIFY          	             GA+GLIBCXX_ASSERTIONS        	             GA*FORTIFY     	                  GA+GLIBCXX_ASSERTIONS   	                  GA*FORTIFY                       GA+GLIBCXX_ASSERTIONS                     GA*FORTIFY                       GA+GLIBCXX_ASSERTIONS                     GA*FORTIFY          d             GA+GLIBCXX_ASSERTIONS        d             GA*FORTIFY     d                  GA+GLIBCXX_ASSERTIONS   d                  GA*FORTIFY                       GA+GLIBCXX_ASSERTIONS                     GA*FORTIFY                       GA+GLIBCXX_ASSERTIONS                     GA*FORTIFY          |             GA+GLIBCXX_ASSERTIONS        |             GA*FORTIFY     |     k             GA+GLIBCXX_ASSERTIONS   |     k             GA*FORTIFY     k     	             GA+GLIBCXX_ASSERTIONS   k     	             GA*FORTIFY     	     ]             GA+GLIBCXX_ASSERTIONS   	     ]             GA*FORTIFY     ]                  GA+GLIBCXX_ASSERTIONS   ]                  GA*FORTIFY                       GA+GLIBCXX_ASSERTIONS                     GA*FORTIFY                       GA+GLIBCXX_ASSERTIONS                     GA*FORTIFY                       GA+GLIBCXX_ASSERTIONS                     GA*FORTIFY          
             GA+GLIBCXX_ASSERTIONS        
             GA*FORTIFY     
     n             GA+GLIBCXX_ASSERTIONS   
     n             GA*FORTIFY     n                  GA+GLIBCXX_ASSERTIONS   n                  GA*FORTIFY                       GA+GLIBCXX_ASSERTIONS                     GA*FORTIFY          ~             GA+GLIBCXX_ASSERTIONS        ~             GA*FORTIFY     ~                  GA+GLIBCXX_ASSERTIONS   ~                  GA*FORTIFY          v             GA+GLIBCXX_ASSERTIONS        v             GA*FORTIFY     v     6             GA+GLIBCXX_ASSERTIONS   v     6             GA*FORTIFY     6                  GA+GLIBCXX_ASSERTIONS   6                  GA*FORTIFY                       GA+GLIBCXX_ASSERTIONS                     GA*FORTIFY          @	             GA+GLIBCXX_ASSERTIONS        @	             GA*FORTIFY     @	                  GA+GLIBCXX_ASSERTIONS   @	                  GA*FORTIFY          p             GA+GLIBCXX_ASSERTIONS        p             GA*FORTIFY     p                  GA+GLIBCXX_ASSERTIONS   p                  GA*FORTIFY                       GA+GLIBCXX_ASSERTIONS                     GA*FORTIFY          ~             GA+GLIBCXX_ASSERTIONS        ~             GA*FORTIFY     ~     f             GA+GLIBCXX_ASSERTIONS   ~     f             GA*FORTIFY     f                  GA+GLIBCXX_ASSERTIONS   f                  GA*FORTIFY          k"             GA+GLIBCXX_ASSERTIONS        k"             GA*FORTIFY     k"     '             GA+GLIBCXX_ASSERTIONS   k"     '             GA*FORTIFY     '     *             GA+GLIBCXX_ASSERTIONS   '     *             GA*FORTIFY     *     .             GA+GLIBCXX_ASSERTIONS   *     .             GA*FORTIFY     .     }2             GA+GLIBCXX_ASSERTIONS   .     }2             GA*FORTIFY     }2     @8             GA+GLIBCXX_ASSERTIONS   }2     @8             GA*FORTIFY     @8     =             GA+GLIBCXX_ASSERTIONS   @8     =             GA*FORTIFY     =     A             GA+GLIBCXX_ASSERTIONS   =     A             GA*FORTIFY     A     ]G             GA+GLIBCXX_ASSERTIONS   A     ]G             GA*FORTIFY     ]G     L             GA+GLIBCXX_ASSERTIONS   ]G     L             GA*FORTIFY     L     aR             GA+GLIBCXX_ASSERTIONS   L     aR             GA*FORTIFY     aR     U             GA+GLIBCXX_ASSERTIONS   aR     U             GA*FORTIFY     U     jX             GA+GLIBCXX_ASSERTIONS   U     jX             GA*FORTIFY     jX     ]             GA+GLIBCXX_ASSERTIONS   jX     ]             GA*FORTIFY     ]     f             GA+GLIBCXX_ASSERTIONS   ]     f             GA*FORTIFY     f     h             GA+GLIBCXX_ASSERTIONS   f     h             GA*FORTIFY     h     n             GA+GLIBCXX_ASSERTIONS   h     n             GA*FORTIFY     n     Ru             GA+GLIBCXX_ASSERTIONS   n     Ru             GA*FORTIFY     Ru     ~             GA+GLIBCXX_ASSERTIONS   Ru     ~             GA*FORTIFY     ~                  GA+GLIBCXX_ASSERTIONS   ~                  GA*FORTIFY                       GA+GLIBCXX_ASSERTIONS                     GA*FORTIFY                       GA+GLIBCXX_ASSERTIONS                     GA*FORTIFY          +             GA+GLIBCXX_ASSERTIONS        +             GA*FORTIFY     +     Ώ             GA+GLIBCXX_ASSERTIONS   +     Ώ             GA*FORTIFY     Ώ                  GA+GLIBCXX_ASSERTIONS   Ώ                  GA*FORTIFY          N             GA+GLIBCXX_ASSERTIONS        N             GA*FORTIFY     N                  GA+GLIBCXX_ASSERTIONS   N                  GA*FORTIFY                       GA+GLIBCXX_ASSERTIONS                     GA*FORTIFY          -             GA+GLIBCXX_ASSERTIONS        -             GA*FORTIFY     -     ͡             GA+GLIBCXX_ASSERTIONS   -     ͡             GA*FORTIFY     ͡                  GA+GLIBCXX_ASSERTIONS   ͡                  GA*FORTIFY          Z             GA+GLIBCXX_ASSERTIONS        Z             GA*FORTIFY     Z                  GA+GLIBCXX_ASSERTIONS   Z                  GA*FORTIFY          #             GA+GLIBCXX_ASSERTIONS        #             GA*FORTIFY     #                  GA+GLIBCXX_ASSERTIONS   #                  GA*FORTIFY                       GA+GLIBCXX_ASSERTIONS                     GA*FORTIFY                       GA+GLIBCXX_ASSERTIONS                     GA*FORTIFY          I             GA+GLIBCXX_ASSERTIONS        I             GA*FORTIFY     I     Q             GA+GLIBCXX_ASSERTIONS   I     Q             GA*FORTIFY     Q                  GA+GLIBCXX_ASSERTIONS   Q                  GA*FORTIFY          Ž             GA+GLIBCXX_ASSERTIONS        Ž             GA*FORTIFY     Ž     ~             GA+GLIBCXX_ASSERTIONS   Ž     ~             GA*FORTIFY     ~                  GA+GLIBCXX_ASSERTIONS   ~                  GA*FORTIFY                        GA+GLIBCXX_ASSERTIONS                      GA*FORTIFY                        GA+GLIBCXX_ASSERTIONS                      GA*FORTIFY          =             GA+GLIBCXX_ASSERTIONS        =             GA*FORTIFY     =                  GA+GLIBCXX_ASSERTIONS   =                  GA*FORTIFY                       GA+GLIBCXX_ASSERTIONS                     GA*FORTIFY          2             GA+GLIBCXX_ASSERTIONS        2             GA*FORTIFY     2                  GA+GLIBCXX_ASSERTIONS   2                  GA*FORTIFY                       GA+GLIBCXX_ASSERTIONS                     GA*FORTIFY                       GA+GLIBCXX_ASSERTIONS                     GA*FORTIFY          r             GA+GLIBCXX_ASSERTIONS        r             GA*FORTIFY     r                  GA+GLIBCXX_ASSERTIONS   r                  GA*FORTIFY                       GA+GLIBCXX_ASSERTIONS                     GA*FORTIFY                       GA+GLIBCXX_ASSERTIONS                     GA*FORTIFY          	             GA+GLIBCXX_ASSERTIONS        	             GA*FORTIFY     	     
             GA+GLIBCXX_ASSERTIONS   	     
             GA*FORTIFY     
                  GA+GLIBCXX_ASSERTIONS   
                  GA*FORTIFY          L             GA+GLIBCXX_ASSERTIONS        L             GA*FORTIFY     L                  GA+GLIBCXX_ASSERTIONS   L                  GA*FORTIFY                       GA+GLIBCXX_ASSERTIONS                     GA*FORTIFY          W             GA+GLIBCXX_ASSERTIONS        W             GA*FORTIFY     W                  GA+GLIBCXX_ASSERTIONS   W                  GA*FORTIFY          "             GA+GLIBCXX_ASSERTIONS        "             GA*FORTIFY     "     i&             GA+GLIBCXX_ASSERTIONS   "     i&             GA*FORTIFY     i&     +             GA+GLIBCXX_ASSERTIONS   i&     +             GA*FORTIFY     +     -             GA+GLIBCXX_ASSERTIONS   +     -             GA*FORTIFY     -     \1             GA+GLIBCXX_ASSERTIONS   -     \1             GA*FORTIFY     \1     4             GA+GLIBCXX_ASSERTIONS   \1     4             GA*FORTIFY     4     9             GA+GLIBCXX_ASSERTIONS   4     9             GA*FORTIFY     9     <             GA+GLIBCXX_ASSERTIONS   9     <             GA*FORTIFY     <     A             GA+GLIBCXX_ASSERTIONS   <     A             GA*FORTIFY     A     D             GA+GLIBCXX_ASSERTIONS   A     D             GA*FORTIFY     D     &H             GA+GLIBCXX_ASSERTIONS   D     &H             GA*FORTIFY     &H     I             GA+GLIBCXX_ASSERTIONS   &H     I             GA*FORTIFY     I     
L             GA+GLIBCXX_ASSERTIONS   I     
L             GA*FORTIFY     
L      P             GA+GLIBCXX_ASSERTIONS   
L      P             GA*FORTIFY      P     yR             GA+GLIBCXX_ASSERTIONS    P     yR             GA*FORTIFY     yR     V             GA+GLIBCXX_ASSERTIONS   yR     V             GA*FORTIFY     V     Z             GA+GLIBCXX_ASSERTIONS   V     Z             GA*FORTIFY     Z     \             GA+GLIBCXX_ASSERTIONS   Z     \             GA*FORTIFY     \     E             GA+GLIBCXX_ASSERTIONS   \     E              GA$3p1113                        GA$running gcc 8.5.0 20210514            GA$annobin gcc 8.5.0 20210514            GA$plugin name: annobin              GA*GOW *            GA*             GA+stack_clash            GA*cf_protection             GA*FORTIFY               GA+GLIBCXX_ASSERTIONS             GA*             GA!              GA+omit_frame_pointer             GA*             GA!stack_realign             GA$3p1113                        GA$running gcc 8.5.0 20210514            GA$annobin gcc 8.5.0 20210514            GA$plugin name: annobin              GA*GOW *            GA*             GA+stack_clash            GA*cf_protection             GA*FORTIFY               GA+GLIBCXX_ASSERTIONS             GA*             GA!              GA+omit_frame_pointer             GA*             GA!stack_realign             GA$3p1113                        GA$running gcc 8.5.0 20210514            GA$annobin gcc 8.5.0 20210514            GA$plugin name: annobin              GA*GOW *            GA*             GA+stack_clash            GA*cf_protection             GA*FORTIFY               GA+GLIBCXX_ASSERTIONS             GA*             GA!              GA+omit_frame_pointer             GA*             GA!stack_realign             GA$3p1113                        GA$running gcc 8.5.0 20210514            GA$annobin gcc 8.5.0 20210514            GA$plugin name: annobin              GA*GOW *            GA*             GA+stack_clash            GA*cf_protection             GA*FORTIFY               GA+GLIBCXX_ASSERTIONS             GA*             GA!              GA+omit_frame_pointer             GA*             GA!stack_realign             GA$3p1113  P     a               GA$running gcc 8.5.0 20210514            GA$annobin gcc 8.5.0 20210514            GA$plugin name: annobin              GA*GOW *            GA*             GA+stack_clash            GA*cf_protection             GA*FORTIFY               GA+GLIBCXX_ASSERTIONS             GA*             GA!              GA+omit_frame_pointer             GA*             GA!stack_realign            GA*FORTIFY     P     y             GA+GLIBCXX_ASSERTIONS   P     y             GA*FORTIFY     y     1             GA+GLIBCXX_ASSERTIONS   y     1             GA*FORTIFY     1     x             GA+GLIBCXX_ASSERTIONS   1     x             GA*FORTIFY     x                  GA+GLIBCXX_ASSERTIONS   x                  GA*FORTIFY          4             GA+GLIBCXX_ASSERTIONS        4             GA*FORTIFY     4     v             GA+GLIBCXX_ASSERTIONS   4     v             GA*FORTIFY     v     ˏ             GA+GLIBCXX_ASSERTIONS   v     ˏ             GA*FORTIFY     ˏ                   GA+GLIBCXX_ASSERTIONS   ˏ                   GA*FORTIFY           T             GA+GLIBCXX_ASSERTIONS         T             GA*FORTIFY     T                  GA+GLIBCXX_ASSERTIONS   T                  GA*FORTIFY                       GA+GLIBCXX_ASSERTIONS                     GA*FORTIFY          f             GA+GLIBCXX_ASSERTIONS        f             GA*FORTIFY     f     ӓ             GA+GLIBCXX_ASSERTIONS   f     ӓ             GA*FORTIFY     ӓ                  GA+GLIBCXX_ASSERTIONS   ӓ                  GA*FORTIFY          є             GA+GLIBCXX_ASSERTIONS        є             GA*FORTIFY     є     ؕ             GA+GLIBCXX_ASSERTIONS   є     ؕ             GA*FORTIFY     ؕ                  GA+GLIBCXX_ASSERTIONS   ؕ                  GA*FORTIFY          V             GA+GLIBCXX_ASSERTIONS        V             GA*FORTIFY     V     Ԙ             GA+GLIBCXX_ASSERTIONS   V     Ԙ             GA*FORTIFY     Ԙ     .             GA+GLIBCXX_ASSERTIONS   Ԙ     .             GA*FORTIFY     .     [             GA+GLIBCXX_ASSERTIONS   .     [             GA*FORTIFY     [     r             GA+GLIBCXX_ASSERTIONS   [     r             GA*FORTIFY     r     ٝ             GA+GLIBCXX_ASSERTIONS   r     ٝ             GA*FORTIFY     ٝ     Þ             GA+GLIBCXX_ASSERTIONS   ٝ     Þ             GA*FORTIFY     Þ     Q             GA+GLIBCXX_ASSERTIONS   Þ     Q             GA*FORTIFY     Q     ۟             GA+GLIBCXX_ASSERTIONS   Q     ۟             GA*FORTIFY     ۟                  GA+GLIBCXX_ASSERTIONS   ۟                  GA*FORTIFY          8             GA+GLIBCXX_ASSERTIONS        8             GA*FORTIFY     8     N             GA+GLIBCXX_ASSERTIONS   8     N             GA*FORTIFY     N                   GA+GLIBCXX_ASSERTIONS   N                   GA*FORTIFY                        GA+GLIBCXX_ASSERTIONS                      GA*FORTIFY          Z             GA+GLIBCXX_ASSERTIONS        Z             GA*FORTIFY     Z                  GA+GLIBCXX_ASSERTIONS   Z                  GA*FORTIFY          a             GA+GLIBCXX_ASSERTIONS        a              GA$3p1113                        GA$running gcc 8.5.0 20210514            GA$annobin gcc 8.5.0 20210514            GA$plugin name: annobin              GA*GOW *            GA*             GA+stack_clash            GA*cf_protection             GA*FORTIFY               GA+GLIBCXX_ASSERTIONS             GA*             GA!              GA+omit_frame_pointer             GA*             GA!stack_realign             GA$3p1113                        GA$running gcc 8.5.0 20210514            GA$annobin gcc 8.5.0 20210514            GA$plugin name: annobin              GA*GOW *            GA*             GA+stack_clash            GA*cf_protection             GA*FORTIFY               GA+GLIBCXX_ASSERTIONS             GA*             GA!              GA+omit_frame_pointer             GA*             GA!stack_realign             GA$3p1113                        GA$running gcc 8.5.0 20210514            GA$annobin gcc 8.5.0 20210514            GA$plugin name: annobin              GA*GOW *            GA*             GA+stack_clash            GA*cf_protection             GA*FORTIFY               GA+GLIBCXX_ASSERTIONS             GA*             GA!              GA+omit_frame_pointer             GA*             GA!stack_realign             GA$3p1113                        GA$running gcc 8.5.0 20210514            GA$annobin gcc 8.5.0 20210514            GA$plugin name: annobin              GA*GOW *            GA*             GA+stack_clash            GA*cf_protection             GA*FORTIFY               GA+GLIBCXX_ASSERTIONS             GA*             GA!              GA+omit_frame_pointer             GA*             GA!stack_realign             GA$3p1113  p                    GA$running gcc 8.5.0 20210514            GA$annobin gcc 8.5.0 20210514            GA$plugin name: annobin              GA*GOW *            GA*             GA+stack_clash            GA*cf_protection             GA*FORTIFY               GA+GLIBCXX_ASSERTIONS             GA*             GA!              GA+omit_frame_pointer             GA*             GA!stack_realign            GA*FORTIFY     p     y             GA+GLIBCXX_ASSERTIONS   p     y             GA*FORTIFY     y                  GA+GLIBCXX_ASSERTIONS   y                  GA*FORTIFY                       GA+GLIBCXX_ASSERTIONS                     GA*FORTIFY          ɦ             GA+GLIBCXX_ASSERTIONS        ɦ             GA*FORTIFY     ɦ                  GA+GLIBCXX_ASSERTIONS   ɦ                  GA*FORTIFY                       GA+GLIBCXX_ASSERTIONS                     GA*FORTIFY          Ƨ             GA+GLIBCXX_ASSERTIONS        Ƨ             GA*FORTIFY     Ƨ                  GA+GLIBCXX_ASSERTIONS   Ƨ                  GA*FORTIFY          .             GA+GLIBCXX_ASSERTIONS        .             GA*FORTIFY     .                  GA+GLIBCXX_ASSERTIONS   .                  GA*FORTIFY          !             GA+GLIBCXX_ASSERTIONS        !             GA*FORTIFY     !                  GA+GLIBCXX_ASSERTIONS   !                  GA*FORTIFY                       GA+GLIBCXX_ASSERTIONS                     GA*FORTIFY          I             GA+GLIBCXX_ASSERTIONS        I             GA*FORTIFY     I     s             GA+GLIBCXX_ASSERTIONS   I     s             GA*FORTIFY     s     ,             GA+GLIBCXX_ASSERTIONS   s     ,             GA*FORTIFY     ,                  GA+GLIBCXX_ASSERTIONS   ,                  GA*FORTIFY                       GA+GLIBCXX_ASSERTIONS                     GA*FORTIFY          e             GA+GLIBCXX_ASSERTIONS        e             GA*FORTIFY     e     I             GA+GLIBCXX_ASSERTIONS   e     I             GA*FORTIFY     I     ѱ             GA+GLIBCXX_ASSERTIONS   I     ѱ             GA*FORTIFY     ѱ     M             GA+GLIBCXX_ASSERTIONS   ѱ     M             GA*FORTIFY     M                  GA+GLIBCXX_ASSERTIONS   M                  GA*FORTIFY          ӳ             GA+GLIBCXX_ASSERTIONS        ӳ             GA*FORTIFY     ӳ                  GA+GLIBCXX_ASSERTIONS   ӳ                  GA*FORTIFY          Y             GA+GLIBCXX_ASSERTIONS        Y             GA*FORTIFY     Y     =             GA+GLIBCXX_ASSERTIONS   Y     =             GA*FORTIFY     =     q             GA+GLIBCXX_ASSERTIONS   =     q             GA*FORTIFY     q     ض             GA+GLIBCXX_ASSERTIONS   q     ض             GA*FORTIFY     ض                  GA+GLIBCXX_ASSERTIONS   ض                  GA*FORTIFY                       GA+GLIBCXX_ASSERTIONS                     GA*FORTIFY          ]             GA+GLIBCXX_ASSERTIONS        ]             GA*FORTIFY     ]     9             GA+GLIBCXX_ASSERTIONS   ]     9             GA*FORTIFY     9                  GA+GLIBCXX_ASSERTIONS   9                  GA*FORTIFY                       GA+GLIBCXX_ASSERTIONS                     GA*FORTIFY                       GA+GLIBCXX_ASSERTIONS                     GA*FORTIFY          U             GA+GLIBCXX_ASSERTIONS        U             GA*FORTIFY     U     Z             GA+GLIBCXX_ASSERTIONS   U     Z             GA*FORTIFY     Z                  GA+GLIBCXX_ASSERTIONS   Z                  GA*FORTIFY                       GA+GLIBCXX_ASSERTIONS                      GA$3p1113                        GA$running gcc 8.5.0 20210514            GA$annobin gcc 8.5.0 20210514            GA$plugin name: annobin              GA*GOW *            GA*             GA+stack_clash            GA*cf_protection             GA*FORTIFY               GA+GLIBCXX_ASSERTIONS             GA*             GA!              GA+omit_frame_pointer             GA*             GA!stack_realign             GA$3p1113                        GA$running gcc 8.5.0 20210514            GA$annobin gcc 8.5.0 20210514            GA$plugin name: annobin              GA*GOW *            GA*             GA+stack_clash            GA*cf_protection             GA*FORTIFY               GA+GLIBCXX_ASSERTIONS             GA*             GA!              GA+omit_frame_pointer             GA*             GA!stack_realign             GA$3p1113                        GA$running gcc 8.5.0 20210514            GA$annobin gcc 8.5.0 20210514            GA$plugin name: annobin              GA*GOW *            GA*             GA+stack_clash            GA*cf_protection             GA*FORTIFY               GA+GLIBCXX_ASSERTIONS             GA*             GA!              GA+omit_frame_pointer             GA*             GA!stack_realign             GA$3p1113                        GA$running gcc 8.5.0 20210514            GA$annobin gcc 8.5.0 20210514            GA$plugin name: annobin              GA*GOW *            GA*             GA+stack_clash            GA*cf_protection             GA*FORTIFY               GA+GLIBCXX_ASSERTIONS             GA*             GA!              GA+omit_frame_pointer             GA*             GA!stack_realign             GA$3p1113       ]               GA$running gcc 8.5.0 20210514            GA$annobin gcc 8.5.0 20210514            GA$plugin name: annobin              GA*GOW *            GA*             GA+stack_clash            GA*cf_protection             GA*FORTIFY               GA+GLIBCXX_ASSERTIONS             GA*             GA!              GA+omit_frame_pointer             GA*             GA!stack_realign            GA*FORTIFY          Z             GA+GLIBCXX_ASSERTIONS        Z             GA*FORTIFY     Z                  GA+GLIBCXX_ASSERTIONS   Z                  GA*FORTIFY                       GA+GLIBCXX_ASSERTIONS                     GA*FORTIFY                       GA+GLIBCXX_ASSERTIONS                     GA*FORTIFY                       GA+GLIBCXX_ASSERTIONS                     GA*FORTIFY                       GA+GLIBCXX_ASSERTIONS                     GA*FORTIFY          *             GA+GLIBCXX_ASSERTIONS        *             GA*FORTIFY     *     W             GA+GLIBCXX_ASSERTIONS   *     W             GA*FORTIFY     W                  GA+GLIBCXX_ASSERTIONS   W                  GA*FORTIFY          A             GA+GLIBCXX_ASSERTIONS        A             GA*FORTIFY     A     q             GA+GLIBCXX_ASSERTIONS   A     q             GA*FORTIFY     q                  GA+GLIBCXX_ASSERTIONS   q                  GA*FORTIFY                       GA+GLIBCXX_ASSERTIONS                     GA*FORTIFY                       GA+GLIBCXX_ASSERTIONS                     GA*FORTIFY                       GA+GLIBCXX_ASSERTIONS                     GA*FORTIFY          u             GA+GLIBCXX_ASSERTIONS        u             GA*FORTIFY     u                  GA+GLIBCXX_ASSERTIONS   u                  GA*FORTIFY                       GA+GLIBCXX_ASSERTIONS                     GA*FORTIFY          u             GA+GLIBCXX_ASSERTIONS        u             GA*FORTIFY     u                  GA+GLIBCXX_ASSERTIONS   u                  GA*FORTIFY                       GA+GLIBCXX_ASSERTIONS                     GA*FORTIFY                       GA+GLIBCXX_ASSERTIONS                     GA*FORTIFY          3             GA+GLIBCXX_ASSERTIONS        3             GA*FORTIFY     3                  GA+GLIBCXX_ASSERTIONS   3                  GA*FORTIFY                       GA+GLIBCXX_ASSERTIONS                     GA*FORTIFY                       GA+GLIBCXX_ASSERTIONS                     GA*FORTIFY          	             GA+GLIBCXX_ASSERTIONS        	             GA*FORTIFY     	                  GA+GLIBCXX_ASSERTIONS   	                  GA*FORTIFY                       GA+GLIBCXX_ASSERTIONS                     GA*FORTIFY                       GA+GLIBCXX_ASSERTIONS                     GA*FORTIFY          E$             GA+GLIBCXX_ASSERTIONS        E$             GA*FORTIFY     E$     $             GA+GLIBCXX_ASSERTIONS   E$     $             GA*FORTIFY     $     &%             GA+GLIBCXX_ASSERTIONS   $     &%             GA*FORTIFY     &%     5+             GA+GLIBCXX_ASSERTIONS   &%     5+             GA*FORTIFY     5+     0             GA+GLIBCXX_ASSERTIONS   5+     0             GA*FORTIFY     0     U7             GA+GLIBCXX_ASSERTIONS   0     U7             GA*FORTIFY     U7     u=             GA+GLIBCXX_ASSERTIONS   U7     u=             GA*FORTIFY     u=     C             GA+GLIBCXX_ASSERTIONS   u=     C             GA*FORTIFY     C     S             GA+GLIBCXX_ASSERTIONS   C     S             GA*FORTIFY     S     1Z             GA+GLIBCXX_ASSERTIONS   S     1Z             GA*FORTIFY     1Z     :[             GA+GLIBCXX_ASSERTIONS   1Z     :[             GA*FORTIFY     :[     ]             GA+GLIBCXX_ASSERTIONS   :[     ]              GA$3p1113                        GA$running gcc 8.5.0 20210514            GA$annobin gcc 8.5.0 20210514            GA$plugin name: annobin              GA*GOW *            GA*             GA+stack_clash            GA*cf_protection             GA*FORTIFY               GA+GLIBCXX_ASSERTIONS             GA*             GA!              GA+omit_frame_pointer             GA*             GA!stack_realign             GA$3p1113                        GA$running gcc 8.5.0 20210514            GA$annobin gcc 8.5.0 20210514            GA$plugin name: annobin              GA*GOW *            GA*             GA+stack_clash            GA*cf_protection             GA*FORTIFY               GA+GLIBCXX_ASSERTIONS             GA*             GA!              GA+omit_frame_pointer             GA*             GA!stack_realign             GA$3p1113                        GA$running gcc 8.5.0 20210514            GA$annobin gcc 8.5.0 20210514            GA$plugin name: annobin              GA*GOW *            GA*             GA+stack_clash            GA*cf_protection             GA*FORTIFY               GA+GLIBCXX_ASSERTIONS             GA*             GA!              GA+omit_frame_pointer             GA*             GA!stack_realign             GA$3p1113                        GA$running gcc 8.5.0 20210514            GA$annobin gcc 8.5.0 20210514            GA$plugin name: annobin              GA*GOW *            GA*             GA+stack_clash            GA*cf_protection             GA*FORTIFY               GA+GLIBCXX_ASSERTIONS             GA*             GA!              GA+omit_frame_pointer             GA*             GA!stack_realign             GA$3p1113  ]     e               GA$running gcc 8.5.0 20210514            GA$annobin gcc 8.5.0 20210514            GA$plugin name: annobin              GA*GOW *            GA*             GA+stack_clash            GA*cf_protection             GA*FORTIFY               GA+GLIBCXX_ASSERTIONS             GA*             GA!              GA+omit_frame_pointer             GA*             GA!stack_realign            GA*FORTIFY     ]     `             GA+GLIBCXX_ASSERTIONS   ]     `             GA*FORTIFY     `     b             GA+GLIBCXX_ASSERTIONS   `     b             GA*FORTIFY     b     b             GA+GLIBCXX_ASSERTIONS   b     b             GA*FORTIFY     b     c             GA+GLIBCXX_ASSERTIONS   b     c             GA*FORTIFY     c     \c             GA+GLIBCXX_ASSERTIONS   c     \c             GA*FORTIFY     \c     {d             GA+GLIBCXX_ASSERTIONS   \c     {d             GA*FORTIFY     {d     d             GA+GLIBCXX_ASSERTIONS   {d     d             GA*FORTIFY     d     e             GA+GLIBCXX_ASSERTIONS   d     e              GA$3p1113                        GA$running gcc 8.5.0 20210514            GA$annobin gcc 8.5.0 20210514            GA$plugin name: annobin              GA*GOW *            GA*             GA+stack_clash            GA*cf_protection             GA*FORTIFY               GA+GLIBCXX_ASSERTIONS             GA*             GA!              GA+omit_frame_pointer             GA*             GA!stack_realign             GA$3p1113                        GA$running gcc 8.5.0 20210514            GA$annobin gcc 8.5.0 20210514            GA$plugin name: annobin              GA*GOW *            GA*             GA+stack_clash            GA*cf_protection             GA*FORTIFY               GA+GLIBCXX_ASSERTIONS             GA*             GA!              GA+omit_frame_pointer             GA*             GA!stack_realign             GA$3p1113                        GA$running gcc 8.5.0 20210514            GA$annobin gcc 8.5.0 20210514            GA$plugin name: annobin              GA*GOW *            GA*             GA+stack_clash            GA*cf_protection             GA*FORTIFY               GA+GLIBCXX_ASSERTIONS             GA*             GA!              GA+omit_frame_pointer             GA*             GA!stack_realign             GA$3p1113                        GA$running gcc 8.5.0 20210514            GA$annobin gcc 8.5.0 20210514            GA$plugin name: annobin              GA*GOW *            GA*             GA+stack_clash            GA*cf_protection             GA*FORTIFY               GA+GLIBCXX_ASSERTIONS             GA*             GA!              GA+omit_frame_pointer             GA*             GA!stack_realign             GA$3a1 e     e              GA$3a1 e     e              GA$3a1       Ñ               GA$3a1 $e     )e     ,             P                            ,    g       @                            <                 5           
                       ,          P                           ,          p                           ,    @                                 ,    M	      ]     l                      g       k*    H  P                  -     9   0  0    	  %-   $    '9   int y     )E      a2  L     E   L  E   |  L   b
  L   6  E   /!  L        w-     @*  y        '          g     &     4  !   e  Z  %  e  N  @     O   &  lB  '      L   		  
:3      L     L    a,      		  
D,  	   
  	N   3  
R0  
  
T#0   
4  
U#0     
  
V  ~/  (
v  
l.  
xy    
  
yE   
E
  
zy   
  
|E   
i2  
y   
_  
f   
8  
f   
#  
6   0    1E   (C	    EB  )  F    G    e  	  L   ' m#  H       Z     m            
     
#  "  h
  #  p
#  $  x
1%  '       L        @          L    l        *!  @      -          L      !E  
N2  '   
  (	y   @
v  )  H   U  L     #  SE      *  y   >6  	(   6  a  	8  
0  :   
   ;    	?  
=  A
y    
  B
y   
  C   	G  
0  I   
   J   
  K   	 Od  
0  Q   
   R   
  S
y   
g6  T  
H$  U   	a  
  c(   
"  d(   ^    ed    g    	 Y  
%0  [(   
  ]f   
%  h
   	l  
7  n    
K!  o
y    	t0  
p  v(   
/  w
y   
	  xE    p3  j  5  >  <  L.  D  _rt L  .  V  *  i  7  p  J3  y   y     L    	$	  
%  &	y    
f   (	y   
R  *	y   
v   0	y   
+  {	0     |    y     (         2  L   @ "    2    2  W    e  Z    !e  	"  $Z  6  2y   .  7y   b  ;y   {  l
  9   W'    
+     
6  
     e    L        (        "      "  f+  -  -  7    B  B  L  -    
0     
(  B
  
-  '
  
S  
   W  W    "!         2  B
    4  5  
    4       	  x
  	  	  	  "  #	  #	  -	  `#  8	  8	  B	  0  M	  M	  W	  }2  b	  b	  l	    w	  w	  	    	    	    	  2  	  G  	    	    	  	  	  (	  	  =	  	  R	  	  g	  
  |	  
  k  4  -  B
  
  !
    H  {(  |
    
|
  3  
  r4  
     
  L    (  
  L    4  
  L    5  
  
1  	N
    
  (  
    
  -   
  L    y5  .  
k4  0    
0*  5   
  =   
4  >   
  @   
!  A    
v   C	y   $
D  E   (
  J   0
,  N*  8
  P6  @
"  [  H
'  \  X
  ]  h
'  j  x N    L    Z    L    6    '  y        6    '  y        4  y     4b  
3  6	y    
  7	y    :  b  	  -Z  ,  .Z  0,    
/	  	Z   
@3  
e  
  y   
1  4       b  
  d	Z   
'  e
e  
  fy   
  gy   
#  h
e      \  2  	Z   P5  
e  *  y   '  	Z     D    F	Z   (  G
e  !6  Hy    -0    
4      
&2     
  9   
'   -   
  !
   e    L    5   %E  
4  '    
&2  (   
  )9   
'  *-   
  +
   DIR  Q  -  IV !v   UV !wL   NV !Ez        "y   *  !/
  OP !1
  op (#  
n  #0   
u  #0  
?  #I  
h  #G  a"  #E   	 S
  #E    ,  #E    5  #E    !  #E    2  #E      #E     *  #E    
a  #$0  "
  #$0  # COP !2
   cop P$y  n  $z0   u  $z0  ?  $zI  h  $zG  !a"  $zE   	 !S
  $zE    !,  $zE    !5  $zE    !!  $zE    !2  $zE    !  $zE    ! *  $zE    a  $z$0  "  $z$0  #  $}0  $s  $G  (p3  $Z  0  $
g0  8  $
g0  <O  $~O  @%  $O  H   !8
    `#,  
n  #0   
u  #0  
?  #I  
h  #G  a"  #E   	 S
  #E    ,  #E    5  #E    !  #E    2  #E      #E     *  #E    
a  #$0  "
  #$0  #
  #
0  (
S*  #
0  0!  # G  8,  #g0  @%  #	I  H3  #I  P$  #
0  X L  !<
9  5  P#j  n  #0   u  #0  ?  #I  h  #G  !a"  #E   	 !S
  #E    !,  #E    !5  #E    !!  #E    !2  #E    !  #E    ! *  #E    a  #$0  "  #$0  #  #
0  (S*  #
0  0  #
0  8  #
0  @  #
0  H   !G
w  "i  !$  
&  %#0   #Iop %$0  
u'  %%0  
  %'0  
Y4  %(0   
A  %*0^  (
f  %,V0  0
:  %-V0  4
5  %/6^  8
  %0V0  @
)  %1V0  D
  %30  H
41  %4  P
  %5  X
!  %6  `
  %8g0  h
  %:6^  p
2  %<6^  x
  %=6^  
X  %A$0  
(  %Cb  
V)  %E0  
O  %HI  
,  %K@  
  %L@  
&  %N 1  
3  %O 1  
2  %^E0  
  %`$0  
6  %a$0  
-  %b0  
!  %n$0  
t%  %u0  
3  %z0  
  %{0  
&  %}hR  
  %~0  
-(  %<^  
t,  %0  $3  %V   $W  %0  $  %0  $@  %@  $  %B^   $
  %H^  ($   %@H  0$`  %$  8$  %$  P$o	  %$  h$"  %/  $	  %/  %ISv %0  $a  %N^  $e(  %0  %Ina %  $  %
   $	  %
  $  %0   $  %0  (%Irs %0  0$4  %0  8$  %0  @$  %0  H$4  %  P$ 5  %0  X$3  %0  `$0  %0  h$  %0  p$  %P  x$  %P  $;(  %aO  $	  %0  `$W/  %7  h$  %0  p$r0  %0  x$p  %0  $!  %0  $  %0  $1  %Z  $  %  $$  %E0  $1  %$0  $-
  % 1  $   % 1  $)  % 1  $  %0  &  % T^  &  %+]  &=  %/+]  &\  %=]  &-  %?e   &5  %@Z  &  %Bg0  &0  %Dg0  &:  %Fy   &R   %Iy   &\   %Je   &	  %K0  (&r  %L0  0&-  %M0  8&  %NZ  @&.  %O  H&0  %P0  P&7  %Q0  X&  %T0  `&I  %Ud^  h&/  %V  p&J  %X 1  x&\  %Y 1  y&e  %Z 1  z&S  %[ 1  {&9  %\ 1  |&  %] 1  }&  %^ 1  ~&z  %_ 1  &  %aZ  &  %b0  &  %d  &  %fV0  &  %hV0  &  %lV0  &=1  %oy   &  %pj^  &  %s0  &  %t0  &  %u0  &-  %v0  &n  %w0  &6  %z0  &0  %}0  &%  %0  &  %0  &4  %0  &  %0   &M  %0  &-  %0  &,  %0  &$  %p^   &
  %0  8&t  %0  @&y3  %0  H&p  %0  P&  %0  X&v  %0  `&  %0  h&  %0  p&v1  %0  x&  %Z  &8  %;  &d  %0  &	  %0  &q!  %0  &  %0  &   %hR  &W2  %y   &e  %y   &$  %Z  &.  %^  &(  %Z  &  %0  &k  %0  &^  %0  &'  %y   &  %V0  &F7  % 1  &.  % 1  &#  %E0  &    %y   &Z  %V0   &p2  %V0  &/  %^  &(  %0  &T,  %^  &!  %   &s  %;  p&  %:H  x&  %G  &7  %G  &"  %;  &=)  %y   &r  %g0  &  % 1  &I  %  1  &   % 1  &  % 1  &7  %}  &  %}  &0  %q  &+  %q  'Ian %	g0  &6  %g0  &t  %g0  &t  %g0  &@'  %g0  &+  %e  &  %Z  &  %3  &  %!^  &`'  %#x0  `&  %%g0  d&  %'Y  h&)/  %)0  p&,  %+V0  x&  %,G  &  %.G  &%  %/G  &a5  %1G  &  %3G  &1  %6Z  &  %7  &I  %8  &  %9g0  &S.  %:$0  &  %; 1  &0  %=$0  &&  %> 1  &-  %F 1  &D2  %G 1  &M  %L\  &}#  %N 1  &.  %SS   &  %Wy   &@  %Y 1  &+  %[Z  &/  %\0  &  %a0  &  %b0  &$  %c0   	&&3  %d0  	&L  %f0  	&  %g0  	&$  %j0   	&7  %k0  (	&  %l0  0	&'  %m0  8	&<  %n0  @	&-  %o0  H	&#  %p0  P	&"  %r^  X	&5  %s^  	&4  %t^  (
&I)  %u0  
&Q  %v0  
&R  %w0  
&_%  %x0  
&  %y0  
&=  %z0  
&   %|0  
& %  %}8C  
&)  %~  
&  %^  
&7  %$0  
&.  % 1  
&v6  % 1  
&,  %0   &j  %0  &92  %^  &  %0  &40  %(   &	  %0  (&-  %0  0&	  %^  8&  %G  @&  %G  H&R-  %^  P&%  %0  X&  %0  `&	  %3  h&h&  %^  p&f  %^  x&4  %0  &  %0  &-4  %0  &i"  %0  &  %0  &G  %0  &  %N]  &V  %0  &+$  %0  &4  %   &J  %Y  &
#  %Y  &}  %Y  &*"  %Y  &  %Y  &9
  %Z  &%
  %0   &   %0  &o  %0  &S	  %0  &  %0   &  %0  (&-  %^  0&7  %^  8&d  %\  @&2  % ]  &5  %	^  &D  %
y   &  %NY  &  %"^  &u7  %-G  &  %/   SV !O
$  $  sv &%  
9%  &(   
!  &g0  
  &g0  
  &5   AV !P
%  av &[%  
9%  &8   
!  &g0  
  &g0  
  &68   HV !Q
g%  hv &%  
9%  &@9   
!  &g0  
  &g0  
  &8   CV !R
%  cv &%  
9%  &08   
!  &g0  
  &g0  
  &7   #a  !S
&  i  &I&  9%  &7   !  &g0    &g0    &9   GP !T
U&  gp P''  
2  '
0   
I  'G  
 ,  '
;  
>   '
g0  
R  '
g0  
.  '
0   
+  '
0  (
J-  '
;  0
  '
0  8l,  'E   @o   'E    @
!  ':  H GV !U
'  gv &Q'  
9%  &7   
!  &g0  
  &g0  
  &&7    io & '  9%  &9   !  &g0    &g0    &F9     !W
'    `$?'  "  $CAS    2  `$j(  {  $	$0      $	$0  K,  $
E0  C   $
V0  =  $
V0  "  $
V0  (  $hR  8  $@  Q  $     $
V0  (@%  $R  0 !  !Z
w(    0((  
!  (;   
K  (T  
0  (
E0  
S7  (
e  
  (	$0  
  (  
  (
0   
+  (Z  ( XPV ![
(   xpv  &A)  ('  &0   /   &:    &    &!;   $  !b
N)  p6  ())  
('  )
0   
/   ):  
r+  )  
3  )  
A!  )
0      !c
)     *)  
('  *
0   
/   *:  
$  *  
|  *     !d
)     0&4\*  ('  &50   /   &5:    &5    &5F;  3  &6:     &7f:  (   !e
i*  [7  h+-+  
('  +0   
/   +:  
  +  
  +H  
%  +0   
)  +H  (
  +H  0
@  +I  8
S   +Z  @
6	  +*I  H
o  +;  P
/  +g0  X
  +k;  \
.  +V0  `   !h
:+  /  &^E,  ('  &_0   /   &_:    &_    &_;  3  &`:     &b 7  (7  &o;  0#  &q	V  8  &r	V  @G#  &s	V  H,2  &tZ  P'  &u
0  X  &vZ  `[3  &w
0  h:-  &xZ  p6  &y
0  x[*  &z
e  @  &{	$0   !  !i
W,  E,    @(,  
  (T   
3  (T  
  (6T  
1  (T  
/  (T   
)6  (dT  (
v/  (T  0
  (T  8 ANY !j
,  (any !-  )O  !(  )  !0  )R1  !0  )!  !0  )  !0  )  !0  )  !0  )#  !Z  )B  !e  )O/  !
V0  )  !
g0  )"  !	V  )}  !	b  )1  !
   )&  !
 1  )  !0  )1  !"1   ,  !{-  4  !|7Y   1  !}Q     !~(   r  !l
.  +  0!o.  9!  !=Y   5  !b    !b  @  !HY  }   !7Y   X  !7Y  ( f  !m
|.    (&b.  ](  &c0     &db  "  &e1  4  &f1    &g0      !q
.    , /  

  ,   
  ,&FH  
  ,'
g0  
^)  ,(
g0   PAD !r
%    !s
:/  V  (,+/  
  ,,   
I  ,-tH  
  ,.  
  ,/G  
  ,0
g0    	  !t
/  '  0,L0  
7  ,MZ   
,  ,M0  
  ,MH  
j)  ,Mg0  
"&  ,Mg0  
d!  ,Mg0   
f3  ,My   $
#  ,M$0  (
  ,M$0  ) I8 -S   U8 --   $0  I16 -f   40  U16 -9   E0  I32 -y   V0  U32 -E   g0  *g0  s0  0  + }0  2  -0    -<g0  0  (   0  "(  !w6	  6  !y  $  0  0  0  '  %  [%       1  1  1  (   j  1  5  .12  
  .3y    
T  .6	Z  
  .7	Z  
2/  .8	Z  
(  .9	Z   
$  .:	Z  (
(  .;	Z  0
  .<	Z  8
  .=	Z  @
;  .@	Z  H
o  .A	Z  P
2  .B	Z  X
%  .D2  `
4  .F2  h
%  .Hy   p
  .Iy   t
 !  .J   x
+  .M9   
{  .NS   
<  .O2  
m.  .Q2  
/5  .Y   
W  .[2  
&  .\2  
5  .]2  
  .^	(  
5  ._
  
4  .`y   
D  .b 3   5  /(1  ,A  .+  2  (1  e  2  L     2  T  2  #  2  e  3  L    (  03  2  &  03  
  03  $  1y     Q3  + F3    1Q3  $  1y     1Q3    2<3      2>3  z3    2N3      37  %  43  1  4	V0     4Z     4	0  Y%  4	0   %  43  -E   &z4  .   .  .F  .]  .f0  .S  .\   .  .,  .i  	.`  
.  .  .  .  .J  .   d4  &4  HE &4  he * 4  
d-  *$
7   
  *%:  
  *)N   HEK &4  hek *-5  
@&  *.g0   
  */V0  
 -  *52   &5    &Z    &V    &b    &n    &0    &7  2  &0    &7    &7  
  & 7   8  57  
('  50   
/   5:  
  5  
  5=  
  5=   
03  5=  (
   50  0
R3  5g0  8
  5  @

  5  H
  5  P
J1  5=  X
Q!  5g0  `
Z1  5g0  d
)  5(  h
  5g0  p
p$  5g0  t
8  5>  x
>  5e  
Z  5Z  
c  50  
|"  5  
6  5  

  5  
V  5  ]  5E   V#  5E   	
	  5;   5  7  4  I&  3  &7    &Z    &V    &b    &n    &0    &7  2  &0    &7    &7  
  & 7   )  &08    &Z    &V    &b    &n    &0    &7  2  &0    &7    &7  
  & 7   \*  &8    &Z    &V    &b    &n    &0    &7  2  &0    &7    &7  
  & 7   A)  &@9    &Z    &V    &b    &n    &0    &7  2  &0    &7    &7  
  & 7   )  /&9  )  &Z  )  &V  )  &b  )  &n  )  &0  )  &7  )2  &0  )  &7  )  &7  )
  & 7   -+  /&f:  )  &Z  )  &V  )  &b  )  &n  )  &0  )  &7  )2  &0  )  &7  )  &7  )
  & 7   0+#  &:  )=  &n  )&,  &0  )q(  &0  )26  & 1   04  &:  )"  &V  )(  &b  )5  &:  )  & 1   4  07  &;  )  &;  )%  &   j(  /&F;  )  &  )  &Z   /&5k;  )  &5  )  &5Z   )  &:g0  ;  1  ;   %  x;  .  /&_;  )  &_  )  &_Z   /&l;  )x   &m;  )1  &n	(   E  4   ;  + ;  G   6;     5;<  
  5$0   
  5	$0  
(  5	E0      5<  
  (5&<  
  5'   
)  5(  
  5)	0  
  5*	0  
{  5+      5-<  
n-  5.$0   
I  5/<   G<  <  L    )  5:=  
(  5;   #end 5<  
  5C   )  5D<  %  =  5<=    5    5Z     h5=  
2  5i>   
  5>  
  5>  
A0  5>  
+  5?   
a7  54?  (
  5_?  0
4  5?  8
  5?  @
!  5?  H
  5>  P
0  5?  X
2  58@  ` <=  =  <  =  8  55  ^  5>>  
+  5e   
	  5>>     -&  5>  1=  i>  1  0  g0   P>  1V0  >  1  =  Z  Z  Z    0  (  g0   o>  1Z  >  1  =  0    Z  Z  s0  >   D>  >  10  >  1  =   >  ?  1  =   ?  4?  1  =  b0  0   ?  T?  1  =  b0  Z?   $  T?  :?  1V0  ?  1  =  Z?  b0   e?  10  ?  1  =  0  0  s0   ?  10  ?  1  =  Z?  s0   ?  1(  ?  1  =  ?   o.  ?  1=  2@  1  0  y   0  =  =  2@  g0  g0    1  ?  2P5h	@  3rex 5i@   ,  5j@  c  5l0  Z  5nZ  |"  5o   6  5p  (
  5q  0   5r;  83pos 5s  @  5t$0  H 
>    )  5u>@  2 5|	1A  )  5}1A   U  5~nA  j  5A  *  5Z   @  
  x5nA    5	y    F  5Z  3u 5P G   7A  "  5\A  /  5]G   &  5^A  x&4  5^"A   tA  &  5@    5V0  25A  2  5nA    25	+B  2  5nA     5
g0  p$  5
g0  3cp 5A   2 5{B  2  5nA     5
g0  p$  5
g0  3cp 5A    5{B   ;<  2@52C  2  5nA     5
g0  p$  5
g0  3cp 5A  P%  5g0    5 1  
  52C   3me 5{B  (  58C  0  5g0  8q  5E0  <
  5E0  > E0  $0  2@5C  2  5nA   d  5nA  %  5$nA  
  5=  3cp 5A   Z5  5A  $   5g0  (3B 5{B  09  5Z  8 25D  2  5nA   >.  5
V0  '  5
V0  3me 5{B   2 5	ID  2  5nA   \  5nA  W  5
0  ^6  5Z   25bD  3val 5
y     285D  2  5nA   d  5nA  3me 5{B  3B 5{B  3cp 5A   D	  5 1  $w	  5y   (  5"y   ,  5#Z  0 2(5&SE  2  5(nA       5)nA  3cp 5*A  Z5  5+A    5,Z  1.  5-V0     5.V0  $ 2`51F  2  53nA   3c1 54
y   3c2 54y   3cp 55A    56
g0  p$  57
g0  E'  58
V0    59
V0   D	  5: 1  $3A 5;{B  (3B 5;{B  03me 5<{B  81  5=F  @Z
  5>F  N $0  *F  L    2h5A G     5B
g0   3cp 5CA    5D
g0  p$  5E
g0  3c1 5F
y   3c2 5Fy   +  5GZ    5HZ     5I
y   (3min 5J
y   ,3max 5Jy   03A 5K{B  83B 5K{B  @1  5LF  HZ
  5MF  V /h5G  )&  5A  ))  5 @  4yes 5A  )	  5A  )  5+B  )#  5B  )%  5>C  )$  5C  )$  5D  )o   5ID  )   5$bD  )3  5/D  )  5?SE  )Q  5N*F   
  5Q7A  G  G  L       5_tA    7KL   Q'    ,  	,!:H  
(  ,":H   
  ,#@H  
  ,$@H   -/   /  ,hH  }1  ,	hH  i  ,%nH   @H  	H  zH  /  ,MH  )  ,M0  f  ,M;   +H    +    +Z   +H  F%  +0    +,   +I  I  +0  h  +;   +*I  %  +0  /  +:   +LI    +;    +(   #	I  ,5  #G  sv #0  iv #V  uv #b   h/  #LI  10  I  1   I  I  /#I  ).  #0  )1  #G  )  #0   /#
J  )F  #0  )!  #G     081jJ  
?  83	Z   
   84	Z  
E.  86   
2  87   
7*  88	Z  
  89	Z   
.  8:	Z  ( D   9*J  
Y"  9,Z   
  9-Z  
  9.   
.  9/e   )   :HK  
"  :MK   $  :VK  $I  :[K   $'  :b0K   $  :ie  $1  :nAK    e  K  5L    e  0K  5L    e  AK  5L    e  RK  5L   w 4  H;+K  
   ;-Z   
K	  ;.Z  
G  ;/   
  ;0   
"  ;1    
  ;2   (
U  ;4   0
  ;6   8
6  ;8L   @ 6P<h	N    <jZ   a  <k	    <qN    <uZ    <v	     <yjJ  (  <zZ  HJ0  <{	  P  <}N  X  <  `
  <Z  1  <	  l  <N  ,  <y     <Z  W  <	  (  <  %  <Z    <	  "  <N  v&  <y   2  <\  &3  <Z   &  <	  &h  <N  &  <J  &  <Z  H&1  <	  P&  <N  X&  <  `&   <Z  &%  <	  &6  <N  &  <RK  &  <Z  &   <	  &  <N  &  <N  &  <	   &   <N  &$  <N  &7  <	  &W  <N   &$  <Z  (&  <	  0&I&  <Z  8&5  <	  @&%$  <	y   H J  jJ      \  J    RK      d  <K  0  *&O  {+  *'0  U  *(	     $ [O  
~4  $![O   
0  $"U  
y  $#y   
4  $$ 1  
  $%E0   O  	  $(O    $yO  g'    mO     ($'O  	  $(
0     $*@H  3cv $+
;  k%  $-
V0  4  $.0    ^  ($31P  	  $4
0     $6@H  3cv $7
;  3gv $9
0  .  $:
0      0$uP  	  $v
0     $x
0  |!  $y
0  7  $z
0  3cv ${
;   )  $|P  ( aO  /$P  4svp $0  4gv $0   2$P  3ary $
0   3ix $
V   2$	Q  6)  $
V0   3ix $
V   2$0Q  3cur $	V   3end $	V   2$WQ  3cur $0   3end $0   /$Q  4ary $P  )
  $P  )+  $	Q  )0  $0Q   4  0$Q    $Q   e   $P  $  $0  )  $WQ  E  $
@H  ( ,  t)  $R  $4  $0   %  $0   /0$hR  ){  $O  )-  $O  )  $1P  )'.  $Q  )L"  $Q     3  X$AS  0  $ 	$0     $	$0    $
E0    $
V0    $  J'  $  8  $Z    $
0   '  $	
0  (  $
Z  0  $Z  8J  $Z  @_  $(  Hy  $=  P /`$@fS  )  $A'  )3  $BnR   1(  0$S  
  $0   U  $S    $S  .  $S  C  $V0   *  $V0  $  $V0  (y  $V0  , '  fS  !  $fS  1y   T  1  0  ;   S  1g0  6T  1  0  ;   T  1y   dT  1  0  ;  0    V0   <T  1y   T  1  ;  ?   jT  E,  	=	T  #val =3   
  =f   
g  =V0  
t  =;   
  =T  +  (=(U  
   =(U   
  =0  
  =Z  
<4  =Z  
  =0    T  u  = T  4  ="X  
(   =&X   
d*  ='3  
!  =(y   
`  =+y   
T  =-y   

  =.X   
v  =/X  (#ps =0X  0
'  =4
V0  8
  =5
V0  <
  =6Z  @
  =7Z  H
'  =8	$0  P
$   =9	$0  Q
  =;	$0  R
$  =<
 1  S
  ==
V0  T
  =>
0  X
)*  =?
0  `
  =@
0  h
  =A
E0  p
4  =BE0  r
6  =C
V0  t
   =D
0  x
"  =E
V0  
  =F
V0  
3  =G	b  
m5  =H	b  
 7  =I 1  
  =J	$0  
n  =K
E0  
   =L
V0  
R(  =M
0  
&  =N
0  
  =OY  
  =P
0  
  =QZ  
3  =TZ  
3  =UZ  
  =VZ  
7  =WZ  
  =XZ  
  =YZ  
  =^0  
(  =_
E0  
  =`	$0  
  =a	$0  $#  =b
0   $  =c 7  $6  =d
0  $  =fY  $  =g
Y  @$1  =h	$0  T$  =i	$0  U$F(  =j	$0  V$  =k	$0  W$7,  =lhR  X$  =m
  `$~5  =n0  `$"  =o0  d$s.  =rV  h$)7  =sV  p$  =te  x$&  =v 1  y7B  =xE   x7\  =yE   x7u  =zE   x7H*  ={E   x$   =} 1  {$~  =~	$0  | :U  T  .U  3  Y  L    V0  +Y  L    4  =:U  -  7Y  <  CY  "  !Y  i  !1     !$Y  4  !$Y   NY    !QY  Y  Y  1y   Y  1   K  !RY  Y  Y  1  0     !SY  c1  !UY  Y  1 1  Z  1  0     !VZ  Z  )Z  1   l  4Z  + )Z  @/  !u4Z  {0  !w4Z    !y4Z  u  !{4Z    !}4Z  9  !4Z    !4Z  /  !4Z    !4Z  Q$  !4Z  ')  !4Z    !4Z  l  Z  L    Z    !Z    !4Z  /  !4Z    !4Z  Y!  !4Z  '1  !4Z     !4Z  #  !4Z  ?  !4Z  M
  !4Z    !4Z    !4Z    !/0    !/0    !/0  l  [  L   @ [    ![  0  !4Z  l  [  L    [    ![    ![  f  !Q3     #\  + \  ,  !#\    !;  /  !;  {  !;  "  !;  -   t\  + P  !i\    !;    \  + 2  !\    !4Z  8  E   !\  .   .  .1  .67  .*  .&  ..   D  !Q3  J4  H!F]  3pad !G]    $  +]  L      !P8]  >]  N]  1  0   +  !a[]  a]  1V0  z]  1  0  0     !fI    !g]  ]  10  ]  1  0     !h8]  1#  !i]  ]  1y   ]  1  Z    N     !lZ  1  !s#^  3fn !t"1   3ptr !u(   (-  !v]  ,  V0  S  G  G  +Y  Z  d^  L      y   V  ^  L      #^  g0  (  ^  L    0  ^  L   	 0  ^  L    $0  ^  L    -  0  N  3  (  (  0  _  L   " &  !Q0    !Q0    >Q3  =$  >&Q3  z]  D_  + -  >9_  ]  \_  + f	  >cQ_    >0  @0  _  + v_  \  >	_  Q0  _  + _  &  >	_    >	4Z  	  >	_  /0  _  + _  }'  >	_     ?&0    ?(1    ?-0    ?1 1  {(  ?4 1  "  ?K3  V0  ?L3    ?X0  m  ?[j^  75  ?\y   .  ?]y     ?aV  Y&  ?e0  3   ?f0  t  ?i    ?0    ?0  5  ?y     ?y   %  ?]  (  ?0  }  ?b    ?0    ?$    ? 1  -   #a  L      ?a  2'  !4Y  )  !6Y    Ya  L    Ia  /  @Ya  R,  za  L    ja    @za  /0  a  L    a    !Na  1  a  + a    !ba    !ca  *  !da    !ea  6"  !fa  }.  !ga  /!Z.b  4nv !Zn  4u8 !Z3b   b  $0  Cb  L    $#  !Z.b  /![sb  4nv ![n  4u8 ![3b   Pb    ![sb  9H6  Z       ?       b  :s Z#e         ;c \	e  m   g   <%      g  =?      g  >UU  9]$  I0             d  :st I0        :s I(e  #    ;av K0  y  o  ;sv L0      ;c M	e  n  f  ?    c  ;_p K(      <R      !g  @_      .g  >T;  Ac  B_p T(   Cf         P   Td  Df  N  J  Df      Ef     Ff      @      ;g  >Ts    <}      !g  G      Hg  <d  >Ts >Q0 <      !g  G      Ug  gd  >T} >Qs  <      !g  G      ag  d  >T~ >Q0 <      !g   H  	e  P            f  :rv "0      ;av 0  O  K  ;ssv 0      ;s 	e      IL  y   }  w  ;x y       Jf  =       =             :e  Dg  G  E  Df  l  j  <E      ng   <      !g  G      yg  e  >T|  G      g  e  >U# $ &3$ <      g  <      !g  <      !g  G:      g  f  >T>Q#>R2 <Y      !g  Gi      g  Kf  >T| >Q >R0 G      g  pf  >U	e     >Ts <      !g  G      g  f  >U	pe      @      g  >U	@e       K5  f  L	  1  Msv 0  NBrc g0    O .  \Z  g  L'  \`  L  \   P
  
  A
P    B`P    AP    AFP    A 	Q      AP	  	  A	R .  .  C Q6  6  AP    A
P0  0  AQ    AP    A1 Q     k*  *>  H  @            {    -     9   0  0    	  %-   $    '9   int y     )E      a2  L     E   L  E   |  L   b
  L   6  E   /!  L        w-     @*  y        '          g     &     4  !   `  %  `  N  @     O   &  lB  '      L   	  	:3      
L     L    a,      		  	D,  	   	  	N   3  
R+  	  
T#+   	4  
U#+     
  
V  ~/  (
v  	l.  
xy    	  
yE   	E
  
zy   	  
|E   	i2  
y   	_  
f   	8  
f   	#  
1   0    1E   (C	    E=  )  F    G    
`    L   ' m#  H       Z     m            	     	#  "  h	  #  p	#  $  x	1%  '   
    L        @      
    L    g      *!  ;      -    
     L      !;  	N2  '   	  (	y   @	v  )  H 
  K  L     #  S;    }  *  y   >6  	(   6  W  8  	0  :   	   ;    ?  	=  A
y    	  B
y   	  C}   G  	0  I   	   J   	  K}    OZ  	0  Q   	   R   	  S
y   	g6  T  	H$  U   a~  	  c(   	"  d(   ^    eZ    g     Y  	%0  [(   	  ]f   	%  h
~   l  	7  n    	K!  o
y    t&  	p  v(   	/  w
y   		  xE    p3  j  5  >  <  L.  D  _rt L  .  V  *  i  7  p  J3  y   
y     L    $	  	%  &	y    	f   (	y   	R  *	y   	v   0	y   	+  {	&     |    y     (       
  (  L   @     (    (  M    [  Z    ![  	"  $Z  6  2y   .  7y   b  ;y   {  l
  9   W'    	+     	6  
     
`    L        (        "        f+  #  #  -    8  8  B  -    	0     	(  8
  	-  
  	S  
   M  M    "!         2  8
    /  5  
    /         x
  	  	  	  "  	  	  #	  `#  .	  .	  8	  0  C	  C	  M	  }2  X	  X	  b	    m	  m	  w	    	    	    	  (  	  =  	    	    	  		  	  	  	  3	  	  H	  	  ]	  	  r	  
  k  /  -  8
  	  !
    H  {#  r
    
r
  3  
  r4  
   
  
  L    
#  
  L    
/  
  L    5  
  	1  	D
    
  (  
    
  
-   
  L    y5  .  	k4  0    	0*  5   	  =   	4  >   	  @   	!  A    	v   C	y   $	D  E   (	  J   0	,  N*  8	  P6  @	"  [  H	'  \  X	  ]  h	'  j  x 
N    L    
Z    L    6    '  y        6    '  y        4  y     4X  	3  6	y    	  7	y    0  X  	  -Z  ,  .Z  0,    	/	  	Z   	@3  
[  	  y   	1  /       b  	  d	Z   	'  e
[  	  fy   	  gy   	#  h
[      R  2  	Z   P5  
[  *  y   '  	Z     D    F	Z   (  G
[  !6  Hy    -0    	4      	&2     	  9   	'   -   	  !
   
`    L    5   %;  	4  '    	&2  (   	  )9   	'  *-   	  +
   DIR  G  -  IV !v   L  UV !wL   NV !Eu        "y   *  !/
  OP !1
  op (#  	n  #W1   	u  #W1  	?  #J  	h  #sH  a"  #E   	 S
  #E    ,  #E    5  #E    !  #E    2  #E      #E     *  #E    	a  #0  "	  #0  # COP !2
   cop P$y  n  $zW1   u  $zW1  ?  $zJ  h  $zsH  !a"  $zE   	 !S
  $zE    !,  $zE    !5  $zE    !!  $zE    !2  $zE    !  $zE    ! *  $zE    a  $z0  "  $z0  #  $}0  $s  $sH  (p3  $Z  0  $
0  8  $
0  <O  $O  @%  $O  H   !8
    `#'  	n  #W1   	u  #W1  	?  #J  	h  #sH  a"  #E   	 S
  #E    ,  #E    5  #E    !  #E    2  #E      #E     *  #E    	a  #0  "	  #0  #	  #
W1  (	S*  #
W1  0!  # sH  8,  #0  @%  #	 J  H3  #RJ  P$  #
W1  X L  !<
4  5  P#e  n  #W1   u  #W1  ?  #J  h  #sH  !a"  #E   	 !S
  #E    !,  #E    !5  #E    !!  #E    !2  #E    !  #E    ! *  #E    a  #0  "  #0  #  #
W1  (S*  #
W1  0  #
W1  8  #
W1  @  #
W1  H   !G
r  "i  !$  	&  %#:1   #Iop %$W1  	u'  %%:1  	  %':1  	Y4  %(:1   	A  %*^  (	f  %,0  0	:  %-0  4	5  %/^  8	  %00  @	)  %10  D	  %3:1  H	41  %4  P	  %5  X	!  %6  `	  %80  h	  %:^  p	2  %<^  x	  %=^  	X  %A0  	(  %C]  	V)  %EQ1  	O  %HJ  	,  %KQA  	  %LQA  	&  %N]1  	3  %O]1  	2  %^0  	  %`0  	6  %a0  	-  %bE1  	!  %n0  	t%  %uv0  	3  %zQ1  	  %{Q1  	&  %}R  	  %~K1  	-(  %^  	t,  %K1  $3  %L   $W  %/1  $  %/1  $@  %QA  $  %^   $
  %^  ($   %H  0$`  %$  8$  %$  P$o	  %$  h$"  %/  $	  %/  %ISv %/1  $a  %^  $e(  %Q1  %Ina %  $  %
   $	  %
  $  %E1   $  %/1  (%Irs %/1  0$4  %E1  8$  %E1  @$  %E1  H$4  %  P$ 5  %/1  X$3  %/1  `$0  %/1  h$  %W1  p$  %	Q  x$  %	Q  $;(  %O  $	  %/1  `$W/  %e7  h$  %W1  p$r0  %W1  x$p  %Q1  $!  %E1  $  %E1  $1  %Z  $  %  $$  %0  $1  %0  $-
  %]1  $   %]1  $)  %]1  $  %/1  &  % ^  &  %]  &=  %/]  &\  %=$^  &-  %?[   &5  %@Z  &  %B0  &0  %D0  &:  %Fy   &R   %Iy   &\   %J[   &	  %KE1  (&r  %LE1  0&-  %ME1  8&  %NZ  @&.  %O  H&0  %P/1  P&7  %Q/1  X&  %T/1  `&I  %U^  h&/  %V  p&J  %X]1  x&\  %Y]1  y&e  %Z]1  z&S  %[]1  {&9  %\]1  |&  %]]1  }&  %^]1  ~&z  %_]1  &  %aZ  &  %b/1  &  %d  &  %f0  &  %h0  &  %l0  &=1  %oy   &  %p^  &  %sE1  &  %tE1  &  %uE1  &-  %vE1  &n  %wK1  &6  %zE1  &0  %}E1  &%  %E1  &  %E1  &4  %E1  &  %/1   &M  %/1  &-  %/1  &,  %K1  &$  %^   &
  %Q1  8&t  %Q1  @&y3  %/1  H&p  %K1  P&  %K1  X&v  %K1  `&  %K1  h&  %K1  p&v1  %K1  x&  %Z  &8  %;  &d  %W1  &	  %W1  &q!  %W1  &  %W1  &   %R  &W2  %y   &e  %y   &$  %Z  &.  %^  &(  %Z  &  %K1  &k  %/1  &^  %/1  &'  %y   &  %0  &F7  %]1  &.  %]1  &#  %0  &    %y   &Z  %0   &p2  %0  &/  %^  &(  %Q1  &T,  %_  &!  %   &s  %;  p&  %H  x&  %sH  &7  %sH  &"  %;  &=)  %y   &r  %0  &  %]1  &I  % ]1  &   %]1  &  %]1  &7  %x  &  %x  &0  %l  &+  %l  'Ian %	0  &6  %0  &t  %0  &t  %0  &@'  %0  &+  %[  &  %Z  &  %4  &  %!_  &`'  %#0  `&  %%0  d&  %'Z  h&)/  %)/1  p&,  %+0  x&  %,sH  &  %.sH  &%  %/sH  &a5  %1sH  &  %3sH  &1  %6Z  &  %7  &I  %8  &  %90  &S.  %:0  &  %;]1  &0  %=0  &&  %>]1  &-  %F]1  &D2  %G]1  &M  %L)]  &}#  %N]1  &.  %SS   &  %Wy   &@  %Y]1  &+  %[Z  &/  %\/1  &  %a/1  &  %b/1  &$  %c/1   	&&3  %d/1  	&L  %f/1  	&  %g/1  	&$  %j/1   	&7  %k/1  (	&  %l/1  0	&'  %m/1  8	&<  %n/1  @	&-  %o/1  H	&#  %p/1  P	&"  %r_  X	&5  %s(_  	&4  %t(_  (
&I)  %u/1  
&Q  %v/1  
&R  %w/1  
&_%  %x/1  
&  %y/1  
&=  %zQ1  
&   %|Q1  
& %  %}C  
&)  %~  
&  %8_  
&7  %0  
&.  %]1  
&v6  %]1  
&,  %:1   &j  %:1  &92  %H_  &  %K1  &40  %(   &	  %:1  (&-  %K1  0&	  %N_  8&  %sH  @&  %sH  H&R-  %T_  P&%  %Q1  X&  %Q1  `&	  %3  h&h&  %Z_  p&f  %Z_  x&4  %/1  &  %/1  &-4  %/1  &i"  %/1  &  %/1  &G  %/1  &  %]  &V  %K1  &+$  %K1  &4  %   &J  %*Z  &
#  %*Z  &}  %*Z  &*"  %MZ  &  %ZZ  &9
  %Z  &%
  %Q1   &   %Q1  &o  %K1  &S	  %Q1  &  %/1   &  %Q1  (&-  %`_  0&7  %^  8&d  %t]  @&2  % b^  &5  %	f_  &D  %
y   &  %Y  &  %"l_  &u7  %-aH  &  %/   SV !O
$  $  sv &	%  	9%  &(   	!  &0  	  &0  	  &W5   AV !P
%  av &V%  	9%  &	9   	!  &0  	  &0  	  &8   HV !Q
b%  hv &%  	9%  &9   	!  &0  	  &0  	  &9   CV !R
%  cv &%  	9%  &8   	!  &0  	  &0  	  &7   #a  !S
%  i  &D&  9%  &Y7   !  &0    &0    &*:   GP !T
P&  gp P'&  	2  '
/1   	I  'mH  	 ,  '
;  	>   '
0  	R  '
0  	.  '
Q1   	+  '
K1  (	J-  '
;  0	  '
E1  8l,  'E   @o   'E    @	!  '=;  H GV !U
'  gv &L'  	9%  &7   	!  &0  	  &0  	  &w7    io & '  9%  &$:   !  &0    &0    &9     !W
'    `$?'  "  $CS    2  `$e(  {  $	0      $	0  K,  $
0  C   $
0  =  $
0  "  $
0  (  $R  8  $QA  Q  $     $
0  (@%  $R  0 !  !Z
r(    0((  	!  (l;   	K  (T  	0  (
0  	S7  (
`  	  (	0  	  (  	  (
/1   	+  (Z  ( XPV ![
(   xpv  &<)  ('  &Q1   /   &C;    &    &r;   E:  !\
I)  ;8  (&)  ('  &Q1   /   &C;    &    &;  3  &:    $  !b
)  p6  ())  	('  )
Q1   	/   )C;  	r+  )  	3  )  	A!  )
:1      !c
*     *I*  	('  *
Q1   	/   *C;  	$  *  	|  *     !d
V*     0&4*  ('  &5Q1   /   &5C;    &5    &5;  3  &6:     &7:  (   !e
*  [7  h++  	('  +Q1   	/   +C;  	  +  	  +I  	%  +Q1   	)  +:I  (	  +\I  0	@  +~I  8	S   +Z  @	6	  +I  H	o  +;  P	/  +0  X	  +;  \	.  +0  `   !h
+  /  &^,  ('  &_Q1   /   &_C;    &_    &_<  3  &`:     &bq7  (7  &o5<  0#  &q	L  8  &r	L  @G#  &s	L  H,2  &tZ  P'  &u
E1  X  &vZ  `[3  &w
E1  h:-  &xZ  p6  &y
E1  x[*  &z
`  @  &{	0   !  !i
,  ,    @(*-  	  (T   	3  (T  	  (T  	1  (T  	/  (T   	)6  (T  (	v/  (T  0	  (T  8 ANY !j
7-  (any !#.  )O  !(  )  !/1  )R1  !:1  )!  !E1  )  !K1  )  !Q1  )  !W1  )#  !Z  )B  ![  )O/  !
0  )  !
0  )"  !	L  )}  !	]  )1  !
   )&  !
]1  )  !1  )1  !1   ,  !{\.  4  !|Y   1  !}G     !~(   r  !l
i.  +  0!.  9!  !Y   5  !]    !]  @  !Y  }   !Y   X  !Y  ( f  !m
.    (&b./  ](  &cK1     &d]  "  &ey1  4  &fy1    &gK1      !q
;/    ,}/  	
  ,   	  ,&H  	  ,'
0  	^)  ,(
0   PAD !r
	%    !s
/  V  (,+/  	  ,,   	I  ,-H  	  ,.  	  ,/sH  	  ,0
0    	  !t
/  '  0,Lv0  	7  ,MZ   	,  ,MQ1  	  ,MH  	j)  ,M0  	"&  ,M0  	d!  ,M0   	f3  ,My   $	#  ,M0  (	  ,M0  ) I8 -S   U8 --   0  I16 -f   0  U16 -9   0  I32 -y   0  U32 -E   0  *0  
0  0  + 0  2  -0    -<0  1  (   1  "(  !w6  6  !y  $  /1  /1  :1  &  	%  V%      ]1  y1  y1  (   e  i1  5  .13  	  .3y    	T  .6	Z  	  .7	Z  	2/  .8	Z  	(  .9	Z   	$  .:	Z  (	(  .;	Z  0	  .<	Z  8	  .=	Z  @	;  .@	Z  H	o  .A	Z  P	2  .B	Z  X	%  .D%3  `	4  .F+3  h	%  .Hy   p	  .Iy   t	 !  .J   x	+  .M9   	{  .NS   	<  .O13  	m.  .QA3  	/5  .Y   	W  .[L3  	&  .\W3  	5  .]+3  	  .^	(  	5  ._
  	4  .`y   	D  .b]3   5  /1  ,A  .+   3  1  
`  A3  L     3  T  G3  #  R3  
`  m3  L    (  0y3  3  &  0y3  
  0y3  $  1y   
  3  + 3    13  $  1y     13    2<3      2>3  3    2N4      37  %  4V4  1  4	0     4Z     4	W1  Y%  4	E1   %  44  -E   &4  .   .  .F  .]  .f0  .S  .\   .  .,  .i  	.`  
.  .  .  .  .J  .   HE &4  he * 5  	d-  *$
e7   	  *%=;  	  *)`O   HEK &"5  hek *-W5  	@&  *.0   	  */0  	 -  *513   &5    &Z    &L    &]    &i    &/1    &Y7  2  &:1    &_7    &k7  
  &q7   8  5Y7  	('  5Q1   	/   5C;  	  5  	  5=  	  5n>   	03  5=  (	   5Q1  0	R3  50  8	  5  @	
  5  H	  5  P	J1  5t>  X	Q!  50  `	Z1  50  d	)  5(  h	  50  p	p$  50  t	8  5z>  x	>  5[  	Z  5Z  	c  5/1  	|"  5  	6  5  	
  5  	V  5  ]  5E   V#  5E   			  5;   5  e7  4  D&  3  &7    &Z    &L    &]    &i    &/1    &Y7  2  &:1    &_7    &k7  
  &q7   I*  &8    &Z    &L    &]    &i    &/1    &Y7  2  &:1    &_7    &k7  
  &q7   *  &	9    &Z    &L    &]    &i    &/1    &Y7  2  &:1    &_7    &k7  
  &q7   )  &9    &Z    &L    &]    &i    &/1    &Y7  2  &:1    &_7    &k7  
  &q7   )  /&$:  )  &Z  )  &L  )  &]  )  &i  )  &/1  )  &Y7  )2  &:1  )  &_7  )  &k7  )
  &q7   +  /&:  )  &Z  )  &L  )  &]  )  &i  )  &/1  )  &Y7  )2  &:1  )  &_7  )  &k7  )
  &q7   0+#  &:  )=  &i  )&,  &Q1  )q(  &0  )26  &]1   04  &=;  )"  &L  )(  &]  )5  &=;  )  &]1   5  07  &l;  )  &l;  )%  &   e(  /&;  )  &  )  &Z   /&;  )  &  )  &Z   /&5;  )  &5  )  &5Z   )  &:0  ;  y1  ;   %  ;  ./  /&_5<  )  &_  )  &_Z   /&lZ<  )x   &mZ<  )1  &n	(   ;  
4   k<  + `<  G   6k<     5<  	  50   	  5	0  	(  5	0      5|<  
  (5&=  	  5'   	)  5(  	  5)	/1  	  5*	/1  	{  5+      5-4=  	n-  5.0   	I  5/4=   
<  D=  L    )  5:y=  	(  5;   #end 5<  	  5C   )  5DD=  %  =  5=    5    5Z     h5i>  	2  5>   	  5?  	  5Z?  	A0  5t?  	+  5?   	a7  5?  (	  5?  0	4  5?  8	  5"@  @	!  5F@  H	  5t?  P	0  5k@  X	2  5@  ` =  i>  =  y=  8  55  ^  5>  	+  5[   		  5>     -&  5>  1=  >  y1  51  0   >  10  ?  y1  =  Z  Z  Z    /1  (  0   >  1Z  T?  y1  =  /1    Z  Z  0  T?   >  "?  1/1  t?  y1  =   `?  ?  y1  =   z?  ?  y1  =  0  51   ?  ?  y1  =  0  ?   $  ?  ?  10  ?  y1  =  ?  0   ?  1/1  "@  y1  =  51  51  0   ?  1/1  F@  y1  =  ?  0   (@  1(  e@  y1  =  e@   .  L@  1=  @  y1  @1  y   W1  n>  =  @  0  0   ]1  q@  2P5h	KA  3rex 5iKA   ,  5jQA  c  5l/1  Z  5nZ  |"  5o   6  5p  (
  5q  0   5rl;  83pos 5s  @  5t0  H >    )  5u@  2 5|	A  )  5}A   U  5~A  j  5&B  *  5Z   WA  
  x5A    5	y    F  5Z  3u 5PvG   A  "  5\&B  /  5]DH   &  5^&B  x&4  5^"&B   A  &  5dA    50  25_B  2  5A    25	B  2  5A     5
0  p$  5
0  3cp 59B   2 5B  2  5A     5
0  p$  5
0  3cp 59B    5B   <  2@5C  2  5A     5
0  p$  5
0  3cp 59B  P%  50    5]1  
  5C   3me 5B  (  5C  0  50  8q  50  <
  50  > 0  0  2@5:D  2  5A   d  5A  %  5$A  
  5=  3cp 59B   Z5  59B  $   50  (3B 5B  09  5Z  8 25|D  2  5A   >.  5
0  '  5
0  3me 5B   2 5	D  2  5A   \  5A  W  5
/1  ^6  5Z   25D  3val 5
y     285]E  2  5A   d  5A  3me 5B  3B 5B  3cp 59B   D	  5]1  $w	  5y   (  5"y   ,  5#Z  0 2(5&E  2  5(A       5)A  3cp 5*9B  Z5  5+9B    5,Z  1.  5-0     5.0  $ 2`51F  2  53A   3c1 54
y   3c2 54y   3cp 559B    56
0  p$  57
0  E'  58
0    59
0   D	  5:]1  $3A 5;B  (3B 5;B  03me 5<B  81  5=F  @Z
  5>F  N 
0  F  L    2h5AvG     5B
0   3cp 5C9B    5D
0  p$  5E
0  3c1 5F
y   3c2 5Fy   +  5GZ    5HZ     5I
y   (3min 5J
y   ,3max 5Jy   03A 5KB  83B 5KB  @1  5LF  HZ
  5MF  V /h57H  )&  5,B  ))  5 WA  4yes 5FB  )	  5_B  )  5B  )#  5B  )%  5C  )$  5:D  )$  5|D  )o   5D  )   5$D  )3  5/]E  )  5?E  )Q  5NF   
  5QA  
7H  TH  L       5_A    7KL   L'    ,  ,!H  	(  ,"H   	  ,#H  	  ,$H   /  }/  ,H  }1  ,	H  i  ,%H   H  H  H  /  ,MI  )  ,MQ1  f  ,M;   +:I    +    +Z   +\I  F%  +W1    +*-   +~I  I  +W1  h  +<   +I  %  +E1  /  +=;   +I    +
<    +(   #	I  ,5  #sH  sv #/1  iv #L  uv #]   h/  #I  1W1  J  y1   J  I  /#RJ  ).  #W1  )1  #sH  )  #E1   /#
wJ  )F  #W1  )!  #sH     081J  	?  83	Z   	   84	Z  	E.  86   	2  87   	7*  88	Z  	  89	Z   	.  8:	Z  ( D   9*"K  	Y"  9,Z   	  9-Z  	  9.   	.  9/[   )   :HK  	"  :MK   $  :VK  $I  :[K   $'  :bK   $  :i`  $1  :nK    
`  K  5L    
`  K  5L    
`  K  5L    
`  K  5L   w 4  H;+KL  	   ;-Z   	K	  ;.Z  	G  ;/   	  ;0   	"  ;1    	  ;2   (	U  ;4   0	  ;6   8	6  ;8L   @ 6P<h	O    <jZ   a  <k	    <qO    <uZ    <v	     <yJ  (  <zZ  HJ0  <{	  P  <}O  X  <  `
  <Z  1  <	  l  <O  ,  <y     <Z  W  <	  (  <{  %  <Z    <	  "  <#O  v&  <y   2  <R  &3  <Z   &  <	  &h  <)O  &  <wJ  &  <Z  H&1  <	  P&  </O  X&  <  `&   <Z  &%  <	  &6  <5O  &  <K  &  <Z  &   <	  &  <;O  &  <AO  &  <	   &   <AO  &$  <GO  &7  <	  &W  <GO   &$  <Z  (&  <	  0&I&  <Z  8&5  <	  @&%$  <	y   H "K  J    {  R  wJ    K      d  <KL  W1  *&O  {+  *'/1  U  *(	     $ O  	~4  $!O   	0  $"K  	y  $#y   	4  $$]1  	  $%0   O  	  $(O    $O  g'    O     ($'TP  	  $(
W1     $*H  3cv $+
;  k%  $-
0  4  $.K1    ^  ($3P  	  $4
W1     $6H  3cv $7
;  3gv $9
E1  .  $:
E1      0$u	Q  	  $v
W1     $x
/1  |!  $y
W1  7  $z
/1  3cv ${
;   )  $|	Q  ( O  /$3Q  4svp $:1  4gv $E1   2$YQ  3ary $
K1   3ix $
L   2$Q  6)  $
0   3ix $
L   2$Q  3cur $	L   3end $	L   2$Q  3cur $/1   3end $/1   /$R  4ary $3Q  )
  $YQ  )+  $Q  )0  $Q   4  0$aR    $aR   e   $Q  $  $/1  )  $Q  E  $
H  ( '  t)  $R  $4  $W1   %  $/1   /0$R  ){  $ P  )-  $TP  )  $P  )'.  $R  )L"  $gR     3  X$S  0  $ 	0     $	0    $
0    $
0    $  J'  $  8  $Z    $
/1   '  $	
/1  (  $
Z  0  $Z  8J  $Z  @_  $(  Hy  $=  P /`$@S  )  $A'  )3  $BR   1(  0$[T  
  $K1   U  $[T    $aT  .  $aT  C  $0   *  $0  $  $0  (y  $0  , '  S  !  $S  1y   T  y1  /1  l;   tT  10  T  y1  /1  l;   T  1y   T  y1  /1  l;  /1    0   T  1y   T  y1  l;  e@   T  ,  =	CU  #val =V4   	  =f   	g  =0  	t  =;   
  =U  +  (=U  	   =U   	  =/1  	  =Z  	<4  =Z  	  =/1    OU  u  = OU  4  ="oY  	(   =&oY   	d*  ='V4  	!  =(y   	`  =+y   	T  =-y   	
  =.uY   	v  =/uY  (#ps =0uY  0	'  =4
0  8	  =5
0  <	  =6Z  @	  =7Z  H	'  =8	0  P	$   =9	0  Q	  =;	0  R	$  =<
]1  S	  ==
0  T	  =>
W1  X	)*  =?
W1  `	  =@
/1  h	  =A
0  p	4  =B0  r	6  =C
0  t	   =D
/1  x	"  =E
0  	  =F
0  	3  =G	]  	m5  =H	]  	 7  =I]1  	  =J	0  	n  =K
0  	   =L
0  	R(  =M
W1  	&  =N
/1  	  =O{Y  	  =P
/1  	  =QZ  	3  =TZ  	3  =UZ  	  =VZ  	7  =WZ  	  =XZ  	  =YZ  	  =^0  	(  =_
0  	  =`	0  	  =a	0  $#  =b
Q1   $  =cq7  $6  =d
K1  $  =fY  $  =g
Y  @$1  =h	0  T$  =i	0  U$F(  =j	0  V$  =k	0  W$7,  =lR  X$  =m
  `$~5  =n0  `$"  =o0  d$s.  =rL  h$)7  =sL  p$  =t`  x$&  =v]1  y7B  =xE   x7\  =yE   x7u  =zE   x7H*  ={E   x$   =}]1  {$~  =~	0  | U  CU  U  
V4  Y  L    
0  Y  L    4  =U  #.  Y  <  Y  "  !Y  i  !y1     !$Y  4  !$Y   Y    !QZ  Z  Z  1y   *Z  y1   K  !R7Z  =Z  MZ  y1  /1     !SZ  c1  !UgZ  mZ  1]1  Z  y1  /1     !VZ  Z  Z  y1   
g  Z  + Z  @/  !uZ  {0  !wZ    !yZ  u  !{Z    !}Z  9  !Z    !Z  /  !Z    !Z  Q$  !Z  ')  !Z    !Z  
g  [[  L    K[    ![[    !Z  /  !Z    !Z  Y!  !Z  '1  !Z     !Z  #  !Z  ?  !Z  M
  !Z    !Z    !Z    !0    !0    !0  
g  3\  L   @ #\    !3\  0  !Z  
g  b\  L    R\    !b\    !b\  f  !3  
   \  + \  ,  !\    !k<  /  !k<  {  !k<  "  !k<  
-   \  + P  !\    !k<  
  ]  + 2  !]    !Z  8  E   !g]  .   .  .1  .67  .*  .&  ..   D  !3  J4  H!F]  3pad !G]    
$  ]  L      !P]  ]  ]  y1  W1   +  !a]  ]  10  ]  y1  51  51     !fJ    !g
^  ^  1W1  $^  y1  W1     !h]  1#  !i>^  D^  1y   b^  y1  Z    ZO     !lZ  1  !s^  3fn !t1   3ptr !u(   (-  !vo^  *-  0  gT  TH  7H  Y  
Z  ^  L      y   
L  ^  L      ^  0  
(  _  L    
/1  (_  L   	 
/1  8_  L    
0  H_  L    \.  Q1  MO  3  (  (  
/1  |_  L   " &  !0    !0    >3  =$  >&3  
]  _  + -  >_  
]  _  + f	  >c_    >0  
0  _  + _  \  >	_  
0  `  + 	`  &  >	`    >	Z  	  >	_  
0  K`  + @`  }'  >	K`     ?&1    ?(y1    ?-"1    ?1]1  {(  ?4]1  "  ?K4  V0  ?L4    ?X1  m  ?[^  75  ?\y   .  ?]y     ?aL  Y&  ?e1  3   ?f1  t  ?i    ?1    ?1  5  ?y     ?y   %  ?1^  (  ?Q1  }  ?]    ?1    ?$    ?]1  
-   a  L      ?a  2'  !4Z  )  !6Z  
  a  L    a  /  @a  
,  a  L    a    @a  
0  b  L    b    !Nb  
d1  .b  + #b    !b.b    !c.b  *  !d.b    !e.b  6"  !f.b  }.  !g.b  /!Zb  4nv !Zi  4u8 !Zb   b  
0  b  L    $#  !Zb  /![b  4nv ![i  4u8 ![b   b    ![b  <  A91  <  AB3c  c  1(  (c     9  AM4c  :c  1(  Nc  (     :  AWZc  `c  1Z  oc     9  B-   oc  oc  -E   Cd  .~>  .x9  .9  .;  .d9  .a=  .e:  .h>  .8  	.b<  
._;  .V>  .8  .<  .K:  .};  .8  .<  .9  .:  .=   6:  Cc  {c  -E   Cpd  .B>  .';  .O8  .<  .5=  .=  .>  .J=  .;  	.8  
 <  C%d  $8  xCje  0  C(     Cd  
  Cd  ,=  Cje  V*  Cje   {  Cje  (4  Cje  0  Cje  83doc Cg  @3ns Ch  Hؒ  Cc  P;  CIi  X9  Ch  `;  C(  h  C9   p=  C9   r |d  =  C_f  0  C(     Cd  
  Cd  ,=  Cje  V*  Cje   {  Cg  (4  Cje  0  Cje  83doc Cg  @<  C(  H;  C(  PC  C(  Xg  C(  `+:  Cd  h=  Cd  p>  C(  x pe  =  C'g  0  C((     C)d  
  C*Z  ,=  C+je  V*  C,je   {  C-je  (4  C.je  0  C/je  83doc C0g  @@  C3y   H  C4y   L8  C:_f  P9  C;_f  X<  C<h  `  C=d  h  C>d  p3ids C?(  xa@  C@(  3URL CAd  y<  CBy   u  CDoi  ;  CE(  T;  CFy   ;  CHy    ef   <  :  Dg  :  ;  Dg  g  )<  Dg  =  Dg  c8  Cwd  ;  C$h  ;  0Ch  4  Ch     C
h  y>  Cd    Cd  0  C(     Cg  ( h  $h  A<  `CIi  0  C(     Cd  
  Cd  ,=  Cje  V*  Cje   {  Cje  (4  CIi  0  CIi  83doc Cg  @3ns Ch  H\<  Cpd  P;  C(  X h  %8  C|d  <  Cii  Oi  g  8  Ec  8;  Ec  m8  E(c  =  Eb  <  ENc  =  F=i  	ey  F>\i   	G
  F?\i  	  F@	y    =  Fi  9=  s      j      m  :	  sy1      ;cv s;      <8  xy   =ax x0    
  >$  x:1  ?sp x:1  >  x0  @Ҍ  }  
e     A              +       6	j  B      q  CQ	        D      }  E        )k  CUCQ	e     CR	e     CX	e      D      }  D      }  D      }  E	        |k  CT	f     CQ	       D      }  E&        k  CT	f     CQ	0       D-      }  EC        k  CT	 g     CQ	       DJ      }  E`        'l  CT	 g     CQ	0       Dg      }  E}        `l  CT	f     CQ	       D      }  E        l  CT	f     CQ	       D      }  E        l  CT	<f     CQ	@       E        l  CU	Yf      D      }  F
         G=  _@      }      o  :	  _y1  ]  Y  ;cv _;      <8  ay   =sp a:1  J  B  =ax a0      H$  a:1  <	  8	  H  a0  	  	  I;  o  	 h     J   n  Hv;  ey   	  	  Hk  f51  
  
  J   n  H\:  jL  i
  c
  D      }  D      }  E        On  CTv CQ}  B      ˁ  CU	hf     CT	e     CQ
jCR	 h       D      }  D      }  D      ׁ  D        D      }  DU      }  D`      }   K!             -o  H9  lX  
  
  D(      }  D3      }   LS  m          aUo  Md  
  
   Dc      }  Dm      }  D      }  B        CU} CT	'       
g  o  L    o  G:  E      p      5s  :	  Ey1    
  ;cv E;  L  :  <8  Gy   =sp G:1      =ax G0    w  H$  G:1  X  P  H  G0      I;  Es  	g     J   r  =n K	(      =p M	(  E  A  Ney  rii    {  N{  sii      Hv;  Sy       Hk  T51  D  >  J@  q  H\:  XL      D%      }  D      }  E        Dq  CTv CQ}  B0      ˁ  CU	hf     CT	e     CQ
XCR	g       D,      }  DV      }  De      }  Eu        q  CT} CQ2 D      }  D      }  D      }  E        	r  CTv CQ2 D      }  D      }  D      ׁ  D      
  D      }  D      }  D      }  D      }  D      }   KX             r  H9  ZX      D_      }  Dj      }   LS           Gr  Md       D      }  D      }  D      }  B        CU~ CT	e       
g  Es  L    5s  G9  .            Gv  :	  .y1  +  '  ;cv .;  n  d  <8  0y   =sp 0:1      =ax 00  S  G  H$  0:1      H  00  4  2  I;  Wv  	g     J  u  =n 4	(  n  j  Ney  gii      Hv;  9y       Hk  :51  3  -  J  t  H\:  >L    |  D      }  Dw      }  E        t  CTv CQ|  B      ˁ  CU	hf     CT	e     CQ
>CR	g       D)      }  DS      }  Db      }  Er        5u  CTv CQ2 D|      }  D      }  D      ׁ  D      }  D-      }  D8      }  DU      }   K             u  H9  @X      D      }  D      }   LS         p  0u  Md       D      }  D      }  D      }  B        CU} CT	%       
g  Wv  L    Gv  G:  0             fy  :	  y1      ;cv ;  ]  S  <8  y   =sp :1      =ax 0  B  6  H$  :1      H  0  #  !  I;  vy  	g     J  x  =n 	(  ]  Y  Ney  ]ii      Hv;  "y       Hk  #51  "    J   x  H\:  'L  q  k  D>      }  D      }  E        w  CTv CQ|  B0      ˁ  CU	hf     CT	e     CQ
'CR	g       D      }  D      }  D      }  E        Gx  CTv CQ2 D      }  D      }  D	      ׁ  D        D      }  D      }  D      }  D      }   Kq             x  H9  )X      Dx      }  D      }   LS  ]         y  Md       DS      }  D]      }  Ds      }  B        CU} CT	%       
g  vy  L     fy  G 9               W{  :	  y1  	    ;cv ;  J  B  <8  y   =sp :1      =ax 0      H$  :1  {  w  H  0      O;  vy  J`  z  =n 		(      Ney  Uii  +  )  D#      }  DI      }  DX      }  Eh        z  CTv CQ2 D      }   J  z  H9  X  P  N  Dv      }  D      }   LS         0  {  Md  v  t   D      }  D      }  D      }  B        CU} CT	%       Pq:  0            ~  Q	  y1      Rcv ;      S8  y   Tsp :1  ]  U  Tax 0      N$  :1  :  6  N  0      I;  '~  	@g     J  c}  Tsv /1      Tn Kii      Nv;  	(  p  j  Nk  51      J  |  N\:  L      D       }  D      }  E        |  CTv CQ~  B      ˁ  CU	hf     CT	e     CQCR	@g       D      }  E      #  }  CT0 D      }  D      }  D      ׁ  D      }  D]      }  Dh      }   K+             }  N9  X  Y  W  D2      }  D=      }   US  ]       P  }  Md    }   DS      }  D]      }  Ds      }  B        CU} CT	       
g  '~  L   $ ~  PA9              Ӏ  Q	  y1      Rcv ;      S8  y   Tsp :1  H  F  Tax 0  w  k  N$  :1       N  0  q   i   O;    J@    Tn 	(        Vo 	(  Ney  @ii  "!  !  WG
  Aii  Nv;  /1  s!  k!  D?      }  Di      }  Dx      }  E        q  CT CQ2 E      /    CU CT0 D      }  E      ;    CTv  D      }  D      }  D      }  D+      }  E;          CTv CQ2 DE      }  De      }   K             c  N9  X  !  !  D      }  D      }   US             Md  !  !   D      }  D      }  D      }  By        CU} CT	e       
g    L   " Ӏ  X:  'y   Y<  "(               S  QB  ")  "  "  Z      H  CUUCT	e     CQ0  [:  0  q  \	  y1   ]A8  A8  Ar^    G`^:  :  H^9  9  H/	^<  <  Iw^8  8  H^q=  q=  H]-8  -8  JC^J<  J<  Hz]6<  6<  A^=  =  Hb^>  >  H^H;  H;  F];  ;  F]9  9  F];  ;  F^2>  2>  H]x8  x8  A   
  qk*  _  H              8  8  #0   8  #<   80  80  8  	  %0   8$    '<   rint #|     )H   8   a2  O     H   L  H   |  O   b
  O   6  H   /!  O        w-     @*  |        '     s++       g     &     4  !   m  +b  8%  #m  N  @     O   &  lJ  '      	O   >
	  :3  
    "O     &O    a,  
  $  	  D,       V   $3  R8    T#8   4  U#8     
  V  $~/  (v  l.  x|      yH   E
  z|     |H   i2  |   _  i   8  i   #  >   80    1H   1(C	    EJ  )  F    G    "m    &O   ' m#  H  8   "m  4  &O      (@  t^  I  "Y  Y  &O     uF     P   H    P{}   H   Pm   +  P   +     c4    ]     p        $         #  "0  h  #6  p#  $6  x1%  '<   "%  %  &O    +  '  C      "L  L  &O    t  #L  +L    *!h      \  -    "     &O    $  !  N2  'z     (	|   @v  )  H "    &O     #  S  `    *  |   >6  	+   6    >8=  0  :      ;    >?n  =  A
|      B
|     C   >G  0  I      J     K   > O  0  Q      R     S
|   g6  T  H$  U   >a    c+   "  d+   1^0    e    g    > Ya  %0  [+     ]i   %  h
   >l  7  n    K!  o
|    >t  p  v+   /  w
|   	  xH    1p3   j  5   >  <  L.  D=  Q_rt Ln  .  V  *  i0  7  pa  J3  y   "|   0  &O    >$	{  %  &	|    f   (	|   R  *	|   v   0	|   +  {	     |0  -  |     +   {    "R    &O   @ #              +  v     b     !  !	"  $b  !6  2|   !.  7|   !b  ;|   8{  l
  <   $W'  n  +  :   6  
s   #F  "m    &O    F  +  '(  #    +  '"  #    +  'f+  #    +  '  #    +  $-  $	  0  :   (  
  -  
  S  o   #    +)	  )"!  	    :   2  
      5  7       #4	  4	  +	  'x
  #	  	  +	  '"  #	  	  +	  '`#  #	  	  +	  '0  #	  	  +	  '}2  #	  	  +	  '  #
  
  +
  n  +
    +"
    +-
    +8
    +C
  $	  +N
  	  +Y
  	  +d
  	  +o
  	  +z
  	  +
  	  +
  
  +
  k    $-  
    !
    H  {  1    
  3    r4  '   "    &O    "  '  &O    "  7  &O    $5  R  1  	
    #7  !(  R  !  R  "0     &O    $y5  .P  k4  0    0*  5     =   4  >     @   !  A    v   C	|   $D  E   (  J   0,  N2  8  P>  @"  [  H'  \  X  ]  h'  jP  x "V  `  &O    "b  p  &O    !6  `  !'  |   !     !6  `  !'  |   !      4  |   $  4  3  6	|      7	|      +  !	   -b  !,   .b  $0,  !R  /	  !	b   @3  !
    !|   1  !   $    "b    "d	b   '  "e
    "f|     "g|   #  "h
   $   "  2  "	b   P5  "
  *  "|   '  "	b   )  "D     "F	b   (  "G
  !6  "H|    I-0  #p  4  #    &2  #     #<   '  # 0     #!
p   "m    &O    I5   #%  4  #'    &2  #(     #)<   '  #*0     #+
p   BDIR $  '-  9IV %v   #  9UV %wO   9NV %E)   8     &|   *  %/
  9OP %1
7  Cop ('  n  'U2   u  'U2  ?  'RK  h  'I  0a"  'H   	 0S
  'H    0,  'H    05  'H    0!  'H    02  'H    0  'H    0 *  'H    a  '1  "  '1  # 9COP %2
  Wcop P(yl  n  (zU2   u  (zU2  ?  (zRK  h  (zI  7a"  (zH   	 7S
  (zH    7,  (zH    75  (zH    7!  (zH    72  (zH    7  (zH    7 *  (zH    a  (z1  "  (z1  #  (}1  $s  (I  (p3  (b  0  (
1  8  (
1  <O  (2Q  @%  (8Q  H   %8
y  $  `'  n  'U2   u  'U2  ?  'RK  h  'I  0a"  'H   	 0S
  'H    0,  'H    05  'H    0!  'H    02  'H    0  'H    0 *  'H    a  '1  "  '1  #  '
U2  (S*  '
U2  0!  ' I  8,  '1  @%  '	^K  H3  'K  P$  '
U2  X L  %<
  )5  P'  n  'U2   u  'U2  ?  'RK  h  'I  7a"  'H   	 7S
  'H    7,  'H    75  'H    7!  'H    72  'H    7  'H    7 *  'H    a  '1  "  '1  #  '
U2  (S*  '
U2  0  '
U2  8  '
U2  @  '
U2  H   %G
   Ri  %E%  &  )#82   3Iop )$U2  u'  )%82    )'82  Y4  )(82   A  )*_  (f  ),1  0:  )-1  45  )/_  8  )01  @)  )11  D  )382  H41  )4  P  )5  X!  )6  `  )81  h  ):_  p2  )<_  x  )=_  X  )A1  (  )C  V)  )EO2  O  )HXK  ,  )KB    )LB  &  )N[2  3  )O[2  2  )^1    )`1  6  )a1  -  )bC2  !  )n1  t%  )ut1  3  )zO2    ){O2  &  )}T    )~I2  -(  )_  t,  )I2  3  )   W  )-2    )-2  @  )B    )_   
  )_  (   )I  0`  )E%  8  )E%  Po	  )E%  h"  )0  	  )0  XISv )-2  a  )`  e(  )O2  XIna )    )   	  )    )C2     )-2  (XIrs )-2  04  )C2  8  )C2  @  )C2  H4  )L  P 5  )-2  X3  )-2  `0  )-2  h  )U2  p  )GR  x  )GR  ;(  )Q  	  )-2  `W/  )~8  h  )U2  pr0  )U2  xp  )O2  !  )C2    )C2  1  )b    )  $  )1  1  )1  -
  )[2     )[2  )  )[2    )-2    ) `    )^  =  )/^  \  )=b_  -  )?   5  )@b    )B1  0  )D1  :  )F|   R   )I|   \   )J   	  )KC2  (r  )LC2  0-  )MC2  8  )Nb  @.  )OL  H0  )P-2  P7  )Q-2  X  )T-2  `I  )U`  h/  )VL  pJ  )X[2  x\  )Y[2  ye  )Z[2  zS  )[[2  {9  )\[2  |  )][2  }  )^[2  ~z  )_[2    )ab    )b-2    )d    )f1    )h1    )l1  =1  )o|     )p`    )sC2    )tC2    )uC2  -  )vC2  n  )wI2  6  )zC2  0  )}C2  %  )C2    )C2  4  )C2    )-2   M  )-2  -  )-2  ,  )I2  $  )$`   
  )O2  8t  )O2  @y3  )-2  Hp  )I2  P  )I2  Xv  )I2  `  )I2  h  )I2  pv1  )I2  x  )b  8  )<=  d  )U2  	  )U2  q!  )U2    )U2     )T  W2  )|   e  )|   $  )b  .  )4`  (  )b    )I2  k  )-2  ^  )-2  '  )|     )1  F7  )[2  .  )[2  #  )1      )|   Z  )1   p2  )1  /  ):`  (  )O2  T,  )@`  !  )   s  )<=  p  )I  x  )I  7  )I  "  )<=  =)  )|   r  )1    )[2  I  ) [2     )[2    )[2  7  )    )  0  )y  +  )y  wIan )	1  6  )1  t  )1  t  )1  @'  )1  +  )    )b    )5    )!F`  `'  )#1  `  )%1  d  )'A[  h)/  ))-2  p,  )+1  x  ),I    ).I  %  )/I  a5  )1I    )3I  1  )6b    )7  I  )8    )91  S.  ):1    );[2  0  )=1  &  )>[2  -  )F[2  D2  )G[2  M  )Lg^  }#  )N[2  .  )SV     )W|   @  )Y[2  +  )[b  /  )\-2    )a-2    )b-2  $  )c-2   	&3  )d-2  	L  )f-2  	  )g-2  	$  )j-2   	7  )k-2  (	  )l-2  0	'  )m-2  8	<  )n-2  @	-  )o-2  H	#  )p-2  P	"  )rV`  X	5  )sf`  	4  )tf`  (
I)  )u-2  
Q  )v-2  
R  )w-2  
_%  )x-2  
  )y-2  
=  )zO2  
   )|O2  
 %  )}D  
)  )~  
  )v`  
7  )1  
.  )[2  
v6  )[2  
,  )82   j  )82  92  )`    )I2  40  )+   	  )82  (-  )I2  0	  )`  8  )I  @  )I  HR-  )`  P%  )O2  X  )O2  `	  )5  hh&  )`  pf  )`  x4  )-2    )-2  -4  )-2  i"  )-2    )-2  G  )-2    )_  V  )I2  +$  )I2  4  )   J  )h[  
#  )h[  }  )h[  *"  )[    )[  9
  )[  %
  )O2      )O2  o  )I2  S	  )O2    )-2     )O2  (-  )`  07  )4`  8d  )^  @2  ) _  5  )	`  D  )
|     )[    )"`  u7  )-I    )/   9SV %O
V%  #E%  Csv *%  9%  *+   !  *1    *1    *p6   9AV %P
%  Cav *%  9%  *":   !  *1    *1    *9   9HV %Q
%  Chv *1&  9%  *:   !  *1    *1    *(:   9CV %R
=&  Ccv *~&  9%  *9   !  *1    *1    *9   #a  %S
&  )i  *&  9%  *r8   !  *1    *1    *C;   9GP %T
&  Cgp P+'  2  +
-2   I  +I   ,  +
<=  >   +
1  R  +
1  .  +
O2   +  +
I2  (J-  +
<=  0  +
C2  80l,  +H   @0o   +H    @!  +V<  H 9GV %U
'  Cgv *'  9%  *9   !  *1    *1    *8   Wio *  (  9%  *=;   !  *1    *1    *:     %W
-(  )  `(?J(  "  (CT    )2  `((  {  (	1      (	1  K,  (
1  C   (
1  =  (
1  "  (
1  (  (T  8  (B  Q  (     (
1  (@%  (S  0 !  %Z
 )  $  0,v)  !  ,<   K  ,=V  0  ,
1  S7  ,
m    ,	1    ,    ,
-2   +  ,b  ( 9XPV %[
)  Wxpv  *)  ('  *O2   /   *\<    *    *<   E:  %\
)  );8  (*,*  ('  *O2   /   *\<    *    *<  3  *<    Kf  %^
9*  )G  0**  ('  *O2   /   *\<    *    *<  3  *	<     *
;  ( $  %b
*  $p6  (-*  ('  -
O2   /   -\<  r+  -  3  -  A!  -
82      %c
+  $   .G+  ('  .
O2   /   .\<  $  .  |  .     %d
T+  )   0*4+  ('  *5O2   /   *5\<    *5    *5<  3  *6<     *7;  (   %e
+  $[7  h/,  ('  /O2   /   /\<    /    /VJ  %  /O2   )  /xJ  (  /J  0@  /J  8S   /b  @6	  /J  Ho  /<=  P/  /1  X  /=  \.  /1  `   %h
,  )/  *^-  ('  *_O2   /   *_\<    *_    *_N=  3  *`<     *b8  (7  *os=  0#  *q	  8  *r	  @G#  *s	  H,2  *tb  P'  *u
C2  X  *vb  `[3  *w
C2  h:-  *xb  p6  *y
C2  x[*  *z
m  @  *{	1   !  %i
-  #-  $  @,(.    ,U   3  ,U    ,U  1  ,U  /  ,U   )6  ,V  (v/  ,7V  0  ,U  8 9ANY %j
5.  xany %!/  O  %+    %-2  R1  %82  !  %C2    %I2    %O2    %U2  #  %b  B  %  O/  %
1    %
1  "  %	  }  %	  1  %
   &  %
[2    %2  1  %}2   ),  %{Z/  4  %|Z   1  %}     %~+   r  %l
g/  )+  0%/  9!  %Z   5  %    %  @  %Z  }   %Z   X  %Z  ( f  %m
/  )  (*b,0  ](  *cI2     *d  "  *ew2  4  *fw2    *gI2      %q
90  $  0{0  
  0     0&I    0'
1  ^)  0(
1   9PAD %r
%    %s
0  $V  (0+0    0,   I  0-(J    0.    0/I    00
1    	  %t
0  $'  00Lt1  7  0Mb   ,  0MO2    0M4J  j)  0M1  "&  0M1  d!  0M1   f3  0M|   $#  0M1  (  0M1  ) BI8 1V   BU8 10   #1  BI16 1i   #1  BU16 1<   #1  BI32 1|   #1  BU32 1H   #1  y1  "1  1  : #1   2  11    1<1  -2  +   2  "(  %w6  6  %y  E%  #-2  -2  #82  '  %  %  +  8  #[2  -w2  w2  +     g2  $5  21
4    23|    T  26	b    27	b  2/  28	b  (  29	b   $  2:	b  ((  2;	b  0  2<	b  8  2=	b  @;  2@	b  Ho  2A	b  P2  2B	b  X%  2D#4  `4  2F)4  h%  2H|   p  2I|   t !  2J   x+  2M<   {  2NV   <  2O/4  m.  2Q?4  /5  2Y   W  2[J4  &  2\U4  5  2])4    2^	+  5  2_
  4  2`|   D  2b[4   5  32  zA  2+'  4  2  "m  ?4  &O     4  'T  E4  '#  P4  "m  k4  &O    (|   z4  +   !(  44  
4  !&  44  !
  44  !$  5|   "R  4  : #4  !  54  !$  5|   !  54    6<4  '    6>5  4    6N5  '    77  `%  8c5  1  8	1     8b     8	U2  Y%  8	C2   %  8%5  2H   *5       F  ]  f0  S  \     ,  i  	`  
        J     d4  *o5  BHE *5  Che . /6  d-  .$
~8     .%V<    .)P   BHEK *;6  Chek .-p6  @&  ..1     ./1   -  .5/4   1*6    *b    *    *    *    *-2    *r8  2  *82    *x8    *8  
  *8   $8  9r8  ('  9O2   /   9\<    9    9>    9?   03  9>  (   9O2  0R3  91  8  9  @
  9  H  9  PJ1  9?  XQ!  91  `Z1  91  d)  9+  h  91  pp$  91  t8  9?  x>  9  Z  9b  c  9-2  |"  9  6  9  
  9  V  9  0]  9H   0V#  9H   		  9<=   6  ~8  5  &  4  1*9    *b    *    *    *    *-2    *r8  2  *82    *x8    *8  
  *8   G+  1*9    *b    *    *    *    *-2    *r8  2  *82    *x8    *8  
  *8   +  1*":    *b    *    *    *    *-2    *r8  2  *82    *x8    *8  
  *8   *  1*:    *b    *    *    *    *-2    *r8  2  *82    *x8    *8  
  *8   *  6*=;    *b    *    *    *    *-2    *r8  2  *82    *x8    *8  
  *8   ,  6*;    *b    *    *    *    *-2    *r8  2  *82    *x8    *8  
  *8   Y+#  *<  =  *  &,  *O2  q(  *1  26  *[2   Y4  *V<  "  *  (  *  5  *V<    *[2   /6  Y7  *<    *<  %  *   (  6*<    *    *b   6*<    *    *b   6*<    *    *b   6*5=    *5    *5b   )  *:1  -<=  w2  <=   1&  ,=  ,0  6*_s=    *_    *_b   6*l=  x   *m=  1  *n	+     "7   =  : #=  !G   :=  $   9=    91     9	1  (  9	1      9=  $
  (9&J>    9'   )  9(    9)	-2    9*	-2  {  9+    $  9-r>  n-  9.1   I  9/r>   "=  >  &O    $)  9:>  (  9;   3end 9<    9C   )  9D>  ~&  #>  19>    9    9b   $  h9?  2  9@     9Z@    9@  A0  9@  +  9@   a7  9@  (  9A  04  97A  8  9`A  @!  9A  H  9@  P0  9A  X2  9A  ` #>  ?  J>  >  8  96  $^  9?  +  9   	  9?     -&  9?  (>  @  w2  32  1   @  (1  Z@  w2  >  b  b  b    -2  +  1   #@  (b  @  w2  >  -2  R  b  b  1  @   ?  `@  (-2  @  w2  >   @  -@  w2  >   @  -@  w2  >  1  32   @  -A  w2  >  1  A   Q%  #A  @  (1  7A  w2  >  A  1   A  (-2  `A  w2  >  32  32  1   =A  (-2  A  w2  >  A  1   fA  (+  A  w2  >  A   /  A  (>  A  w2  >2  |   U2  ?  >  A  1  1   [2  A  4P9h	B  %rex 9iB   ,  9jB  c  9l-2  Z  9nb  |"  9o   6  9p  (
  9q  0   9r<  8%pos 9s  @  9t1  H ?  l  )  9uA  4 9|	B  )  9}B   U  9~"C  j  9dC  *  9b   B  )
  x9"C    9	|    F  9b  %u 9PH   B  R  9\dC  /  9]I     9^dC  x4  9^"dC   (C  &  9B    91  49C  2  9"C    49	C  2  9"C     9
1  p$  9
1  %cp 9wC   4 9/D  2  9"C     9
1  p$  9
1  %cp 9wC    9/D   =  4@9D  2  9"C     9
1  p$  9
1  %cp 9wC  P%  91    9[2  
  9D   %me 9/D  (  9D  0  91  8q  91  <
  91  > 1  1  4@9xE  2  9"C   d  9"C  %  9$"C  
  9>  %cp 9wC   Z5  9wC  $   91  (%B 9/D  09  9b  8 49E  2  9"C   >.  9
1  '  9
1  %me 9/D   4 9	E  2  9"C   \  9"C  W  9
-2  ^6  9b   49F  %val 9
|     489F  2  9"C   d  9"C  %me 9/D  %B 9/D  %cp 9wC   D	  9[2  $w	  9|   (  9"|   ,  9#b  0 4(9&G  2  9("C       9)"C  %cp 9*wC  Z5  9+wC    9,b  1.  9-1     9.1  $ 4`91G  2  93"C   %c1 94
|   %c2 94|   %cp 95wC    96
1  p$  97
1  E'  98
1    99
1   D	  9:[2  $%A 9;/D  (%B 9;/D  0%me 9</D  81  9=G  @Z
  9>G  N "1  G  &O    4h9AH     9B
1   %cp 9CwC    9D
1  p$  9E
1  %c1 9F
|   %c2 9F|   +  9Gb    9Hb     9I
|   (%min 9J
|   ,%max 9J|   0%A 9K/D  8%B 9K/D  @1  9LG  HZ
  9MG  V 6h9uI  &  9jC  )  9 B  Fyes 9C  	  9C    9C  #  95D  %  9D  $  9xE  $  9E  o   9E     9$F  3  9/F    9?G  Q  9NG   
  9QB  "uI  I  &O       9_(C    ;KO   '    0  >0!I  (  0"I     0#I    0$I   0  {0  10J  }1  0	J  i  0%"J   I  I  .J  0  10MVJ  )  0MO2  f  0M<=   1/xJ    /    /b   1/J  F%  /U2    /(.   1/J  I  /U2  h  /B=   1/J  %  /C2  /  /V<   1/ K    /H=    /+   1'	7K  ,5  'I  Qsv '-2  Qiv '  Quv '   h/  ' K  (U2  RK  w2   CK  7K  6'K  .  'U2  1  'I    'C2   6'
K  F  'U2  !  'I   $  0<1L  ?  <3	b      <4	b  E.  <6   2  <7   7*  <8	b    <9	b   .  <:	b  ( $D   =*`L  Y"  =,b     =-b    =.   .  =/   I)   >HL  "  >ML     >VL  I  >[L   '  >bL     >im  1  >nL    "m  L  JO    "m  L  JO    "m  L  JO    "m  M  JO   w $4  H?+M     ?-b   K	  ?.b  G  ?/     ?0   "  ?1      ?2   (U  ?4   0  ?6   86  ?8O   @ {P@h	OP    @jb   a  @k	    @qOP    @ub    @v	     @yL  (  @zb  HJ0  @{	  P  @}UP  X  @R  `
  @b  1  @	  l  @[P  ,  @|     @b  W  @	  (  @  %  @b    @	  "  @aP  v&  @|   2  @  3  @b     @	  h  @gP    @K    @b  H1  @	  P  @mP  X  @  `   @b  %  @	  6  @sP    @M    @b     @	    @yP    @P    @	      @P  $  @P  7  @	  W  @P   $  @b  (  @	  0I&  @b  85  @	  @%$  @	|   H `L  L  R      K    M       d  @M  U2  1.&P  {+  .'-2  U  .(	   $  ( Q  ~4  (!Q   0  ("  y  (#|   4  ($[2    (%1   P  	  ((P    (-Q  'g'    !Q  )   (('Q  	  ((
U2     (*I  %cv (+
<=  k%  (-
1  4  (.I2    )^  ((3Q  	  (4
U2     (6I  %cv (7
<=  %gv (9
C2  .  (:
C2    )  0(uGR  	  (v
U2     (x
-2  |!  (y
U2  7  (z
-2  %cv ({
<=   )  (|GR  ( Q  6(qR  Fsvp (82  Fgv (C2   4(R  %ary (
I2   %ix (
   4(R  6)  (
1   %ix (
   4(R  %cur (	   %end (	   4(S  %cur (-2   %end (-2   6(JS  Fary (qR  
  (R  +  (R  0  (R   )4  0(S    (S   e   (MR  $  (-2  )  (S  E  (
I  (   )t)  (S  $4  (U2   %  (-2   60(T  {  (>Q  -  (Q    (Q  '.  (JS  L"  (S     )3  X(T  0  ( 	1     (	1    (
1    (
1    (  J'  (  8  (b    (
-2   '  (	
-2  (  (
b  0  (b  8J  (b  @_  (+  Hy  (>  P 6`(@U    (AJ(  3  (B"T   )1(  0(U  
  (I2   U  (U    (U  .  (U  C  (1   *  (1  $  (1  (y  (1  ,  (  U  !  (U  (|   U  w2  -2  <   U  (1  U  w2  -2  <   U  (|   V  w2  -2  <  -2  L  1   U  (|   7V  w2  <  A   V  -  >A	V  3val Ac5     Ai   g  A1  t  A<=   
  ACV  $+  (AV     AV     A-2    Ab  <4  Ab    A-2    V  u  A V  I4  A"Z  (   A&Z   d*  A'c5  !  A(|   `  A+|   T  A-|   
  A.Z   v  A/Z  (3ps A0Z  0'  A4
1  8  A5
1  <  A6b  @  A7b  H'  A8	1  P$   A9	1  Q  A;	1  R$  A<
[2  S  A=
1  T  A>
U2  X)*  A?
U2  `  A@
-2  h  AA
1  p4  AB1  r6  AC
1  t   AD
-2  x"  AE
1    AF
1  3  AG	  m5  AH	   7  AI[2    AJ	1  n  AK
1     AL
1  R(  AM
U2  &  AN
-2    AOZ    AP
-2    AQb  3  ATb  3  AUb    AVb  7  AWb    AXb    AYb    A^1  (  A_
1    A`	1    Aa	1  #  Ab
O2     Ac8  6  Ad
I2    AfZ    Ag
Z  @1  Ah	1  T  Ai	1  UF(  Aj	1  V  Ak	1  W7,  AlT  X  Am
p  `~5  An1  `"  Ao1  ds.  Ar  h)7  As  p  Atm  x&  Av[2  ySB  AxH   xS\  AyH   xSu  AzH   xSH*  A{H   x   A}[2  {~  A~	1  | V  V  V  "c5  Z  &O    "1  Z  &O    4  AV  !/  Z  '<  Z  )"  %;[  i  %w2     %$;[  4  %$;[   [    %QS[  #A[  Y[  (|   h[  w2   K  %Ru[  {[  -[  w2  -2     %SS[  c1  %U[  [  ([2  [  w2  -2     %V[  [  -[  w2   "t  [  : #[   @/  %u[   {0  %w[     %y[   u  %{[     %}[   9  %[     %[   /  %[     %[   Q$  %[   ')  %[     %[  "t  \  &O    #\     %\     %[   /  %[     %[   Y!  %[   '1  %[      %[   #  %[   ?  %[   M
  %[     %[     %[     %1     %1     %1  "t  q]  &O   @ #a]     %q]   0  %[  "t  ]  &O    #]     %]     %]   f  %4  "   ]  : #]   ,  %]     %=   /  %=   {  %=   "  %=  "0   (^  :  P  %^     %=  "L  M^  :  2  %B^     %[  |  H   %^       1  67  *  &  .    D  %4  )J4  H%F^  %pad %G^    "E%  ^  &O      %P^  ^  -_  w2  U2   +  %a_  _  (1  ._  w2  32  32     %fRK    %gH_  N_  (U2  b_  w2  U2     %h^  1#  %i|_  _  (|   _  w2  b    P     %l[  )1  %s_  %fn %t}2   %ptr %u+   (-  %v_  (.  1  U  I  uI  Z  "b  `  &O    R  |   "  4`  &O    L  _  1  "+  V`  &O    "-2  f`  &O   	 "-2  v`  &O    "1  `  &O    Z/  O2  P  5  v)  +  "-2  `  &O   "  &  %1     %1  !  B4   =$  B&4  "._  `  :  -  B`  ";_  a  :  f	  Bca     B1  "1  5a  : #*a   \  B	5a  "1  Ra  : #Ga   &  B	Ra     B	[   	  B	5a  "1  a  : #~a   }'  B	a  !   C&2  !  C(w2  !  C- 2  !  C1[2  !{(  C4[2  !"  CK5  !V0  CL5  !  CX2  !m  C[`  !75  C\|   !.  C]|   !  Ca  !Y&  Ce2  !3   Cf2  !t  Cin  !  C2  !  C2  !5  C|   !  C|   !%  Co_  !(  CO2  !}  C  !  C2  !  CE%  !  C[2  "0   b  &O    !  Cb   2'  %4N[   )  %6N[  2H   D=c  h   l  
i  }  j  w  8U  b  ё  &x  	ԇ  
C    u    b  aN  (T  ʃ  Ec    =  m  .  p  q  I        Z     "R  c  &O    #c  !/  Dc  "-  c  &O    #c  !  Dc  "1  d  &O    #d     %Nd  "b2  ;d  : #0d     %b;d     %c;d   *  %d;d     %e;d   6"  %f;d   }.  %g;d  2H   Eef  E   	  gZ  n  AM    @  1s  ~p    	q{  
cf  }x  G[  Y  W  9s  Ѯ    n  M  e  a  Ю    n  M  e  a  )Y  jY  e  ^|   @v  !g  "R  #  $e  %x  &Ѣ  '̇  (R  )  *ti  +  ,?F  -i  .  /i  0  1y  2`  3x  4`  5R^  6z  7Q^  8z  9X  :#  ;  <  =|n  >/O  ?~N  @W  Ay  B  C  Dfl  Ez[  FU  G_M  H  IT  JJ  K 6%Zf  Fnv %Z  Fu8 %Zf   #ef  "1  f  &O     $#  %Zf  6%[f  Fnv %[  Fu8 %[f   #f     %[f  9  F0   #f  ݐ  G&f  $ܐ  @H}g    H~+   ]{  H2    H]  l]  Hބ  R&  Hpr   3raw Hpr  (`C  H	|   09  H	|   4n  HO   8 _t  Gg  f  g@  G!g  $f@  8Hh    H+   XD  Hi    H  l]  Hބ  R&  Hpr   W  Hpr  (B]  H	|   09  H	|   4   G h  g  Ш  G# 1h  $Ϩ  hI6i  3buf I8g   .  I:L  ׎  I;L  ;/  I<s  3cur I=s   3end I>s  (]  I?	|   0  I@	|   43col IA	|   8n  IGO   @/  IHz~  H  IIs  P  IJs  X  IK	|   `3id IL	|   d rY  G$i  %h  BB  G&i  IAB  In  3sax I   Z  I+    IVz  L  I|   |  I|     Is     Is  (  I|   07P  I|   4I  Ii  8  I|   @b  I|   Dv  I  Hey  I6z  PF  I|   XO  I|   \  I~  `
V  I	|   h?  I~  pN  I	|   ?  I|   \@  I|   7O  I|   '  I|   rr  I|   ul  I}  z  I    I|   ׎  Ib  
  Is   l  I|   (R  I|   ,>  I  0\  I   8[  I   @R{  I|   HH?  I|   Lz  I|   P  Is  X3  IYr  `mA  IYr  h3  I`  pN  I|   x>  I|   |͜  I`    I|   O  Ii  y<  I|    R  I|   Ǐ  I|     I|   0  I +    I|     I|   W  I+  \  I|     I|   u  IJx  ΁  I  ˁ  I	|   u  I
|   ߗ  Is  h  Is    Is    I|     I|   YM  I|      I  t  I`  P  I`  -  Iz   {  Iz  ("O  I|   0k  I|   4r  I$|   8'C  I%|   <J  I&6z  @  I'|   Hv  I(z  P+D  I-{  XQ  I.  g  I/O   Q  I0O   B  I3~  p~  I4|   k  I5|   ^Y  I6~  &  I8|   E  I9O    `  G'$n  i  D{  G)6n  )C{   IA}n  G  IB&   {  IC&    ID,  i  IE,   j  G*n  *n  L  G,n  RL   Ikp    I^     Iނ  N  I  ?  I  x  I2     I  (  I̀  0^  I  8W  I  @*  IL  H`  Iy  P|  I  X]  I΁  `  Iہ  hO  I  p  I  xF  IN  g  I[  ry  I     I"  Wt  I  SH  I  9  IĂ  h  Iт  ڥ  I    I  m  I    IH   0  I+  \  I    IK  PB  I|   >\  G-wp  n  I  G0p  $I  J+q  0  J,+     J-s  
  J.s  ,=  J/t  V*  J0t   {  J1u  (4  J2t  0  J3t  83doc J4w  @<  J6Yr  Hؒ  J7Yr  P]  J8|   X  J9A~  \+:  J:s  `=  J;s  hy  J=t~  p3URI J>s  xG
  J?|   H  J@|     JDh~   ]  G1q  }p  2H   GJq     K  D    se  z   V  GQq    GYq  $   G[Gr  ؒ  G\Yr   3use G]H   B  G^H   8  G_q  [  G`Yr   t  GZSr  q  f  r  Gikr  'r  IQ  Gr|r  _r  2H   Gs  ~>  x9  9  ;  d9  a=  e:  h>  8  	b<  
_;  V>  8  <  K:  };  8  <  9  :  =   6:  Gr  f  2H   Gls  B>  ';  O8  <  5=  =  >  J=  ;  	8  
 <  G!s  Bs  G s  $As  Gs  4  G s   
  Gs   ZF  Gs  xs  s  )$8  xGt  0  G+     Gs  
  Gs  ,=  Gt  V*  Gt   {  Gt  (4  Gt  0  Gt  8%doc Gw  @%ns G!y  Hؒ  GYr  P;  G#z  X9  G!y  `;  G+  h  G<   p=  G<   r #s  s  )=  Gu  0  G+     Gs  
  Gs  ,=  Gt  V*  Gt   {  Gw  (4  Gt  0  Gt  8%doc Gw  @<  G+  H;  G+  PC  G+  Xg  G+  `+:  Gs  h=  Gs  p>  G+  x t  )=  G'w  0  G(+     G)s  
  G*b  ,=  G+t  V*  G,t   {  G-t  (4  G.t  0  G/t  8%doc G0w  @@  G3|   H  G4|   L8  G:u  P9  G;u  X<  G<'y  `  G=s  h  G>s  p%ids G?+  xa@  G@+  %URL GAs  y<  GB|   u  GDiz  ;  GE+  T;  GF|   ;  GH|    u  ZH   G?w  |    KW       Gw  ZH   G"tw  {  U  TA  ib   =A  G'Lw  ކ  G0#w  )݆  0G2w    G3?w     G4tw  
  G5 s  %c1 G6 x  %c2 G7 x  {  G8 x     G9 s  (   G1
x  w  w  ߕ  K"x  'ޕ  :K  K3x  x  !<  L'Ex  ' <  fh  L Vx  9x  :  Khx  ':  ;  Kyx  \x  !)<  Kmx  !=  Kmx  c8  Gws  ;  Gx  );  0Gy  4  G'y     Gx  y>  Gs    Gs  0  G+     Gw  ( э  G!y  x  x  =  Gt  	T  GGy  -y  B<  GZy  )A<  `Gz  0  G+     Gs  
  Gs  ,=  Gt  V*  Gt   {  Gt  (4  G#z  0  G#z  8%doc Gw  @%ns G!y  H\<  Gls  P;  G+  X qs  Gz  My  Zy  %8  Gs  <  GCz  )z  =  G%u    G&cz  Iz  Ex  ڃ  M{z  'ك  w  Mz  oz  2H   Nz  P   ݘ  h  GK     Nz  2H   N${  ?   jE    E  m  N  zE  H    &y  	T  
a  ?    a  J    f  أ      P  v  :  D    D  v  h  l  p   !  NL{  $   XNNQ|  `L  NO
|    J  NP
|   e  NQb    NRz  Ҍ  NSb    NT
|    B  NUb  (B  NVb  0B  NWb  8?  NX
|   @D  NY
|   De  NZ+  Hey  N[+  P q  NM]|  {  =  NMp|  v|  -|  +  L  G F  NX|  |  -|  +  Q|   k  O|  'k  u  O|  |    O%"|  '    O&|  |  %  P|  '$  |    P*p|    P9p|  f  PP+}  $f  pPR~  Z  PS+   9  PT}  SH  PU}  ey  PX6z  F  PY|    O  PZ|   $  P[~  (^  P]H   03doc P^Vz  8'  P_|   @@  Pb}  H  Pc|   Pa  Pd|   TP  Pe}  X3am Ph|  `  Pi|  h 6z  2H   JA~  X  s  d  a  $  y   h\  J~  2H   J!h~  P   ަ   O  J$M~  p  E  I4~  ~  -~  Yr   Z  IV#~  $Z  (IY~  ey  IZ~     I\O   $A  I]O     I^O   M  I_O     ~  t  }m  Ib&
  $|m  Id?  jy  IeO    ]  IfO   R&  Ig~   2|   Ip  aN  #|   I  j  X  @  V    @k    Q  	  
͈    qh    XI  ׉   ?  I?  2H   I  u     O[  <    |J   wg  I  n  i  s  (s  &  +     k4  gn  I^?  E  (i  ^  +  s  s   H  Ijk  q  -  +  s  s  s   3Q  Iwk  2{  I    (q    +  s   ^  I  d  Iـ  ߀  -  +  s  |   s  s  Yr   s^  Ik  y  I  #  -L  +  s  s  |   |   s  s   r  IY  _  -y  +  s  |   w   q  I    -  +  s  s  s  s   3C  I    -΁  +  }n   Y  I2  k  I2  [H  I    -  +  s       I  #  -3  +  s   9  -N  +  s  s     I  ߤ  I)h  n  -  +  s  |    $L  I5h  qS  I@3  7  IJ  Tl  ITh  Ϧ  I`p|  ]  Ijp|  j  Ivp|  ӟ  I,  T  I,  P`  I,  C  I    -K  +  s  s  s  |     |   |      1u  Ik  iM  I"e  k  (i    L  L  n   p  Q+  2|   R:/  a9  _   S?  3y  n  qZ    ?    U    	Fu  
_u  xu  o  So  lo  o  o  o  Lh  >m  A  Hq   {  RS  K  ReG  M  (|   k  k  `  q  `   0   7   S  R{G  t  R(  $t  (Rބ  
  R!b   I  R ;  "  R w    R   ~  R       R!    Fn  H"    (|     L     H+  #  (+  2  L   `  H6>  D  (|   ]  +  b  |    {  H?,    Hdu  {  (|     +  L  |    j?  Hn,  ZH   IAW  k  Z  g  Qf    R   W  @z  @"   @j   @>S   @K   @]   @~    @@z   @@H   D/B     D{r     Dߑ     Dw     D     Dv      D\    @  <  S92  <  SB3o  u  (+       9  SM    (+    +     :  SW    (b  ˆ  L   !8  Tc  !8;  Tc  !m8  T  !=  TW  !<  T  wt  U"Vz  2H   Ug  M  \K     f  @c  @`i   @   @    D\     D         Vx  #g  $  V  3low V<    (&  V <    v  V#  #  $v  V%ه  3low V&H    (&  V'H    ,r  V*!  #ه  $+r  V,,  {  V-|    ]  V.|   W  V/,  |  V02   s    !C  VP!  !L  V|!  !o  V!  !{l  V!  !  V!  !Ӂ  V!  "7     &O    #  !  V  !\X  WH   "f    : #   
  W8   _  W9   a  W:  }  X'!  R}  `X &  %doc X!Vz   ey  X"6z  _e  X$	|   ŭ  X%	|   x  X&z  k  X(	|    jc  X)	|   $k  X*  (w  X,	|   0;h  X-	|   4c  X.z  8G  X0	|   @  X1	|   DG  X24  H  X5  P  X6	|   XȠ  X7+  `y  X:	|   h  X;	|   l1  X>	|   p  X?6z  xh|  X@6z  *  XCz  ?  XD R    XE+  =  XH+  xd  XKs  m  XLs    XO}    XP+  Ѕ  XS    XT	|   Z  XW+  9  XX|  +D  XY{  fD  XZ6z  @u  X]Jx  H  X_	|   Py%  Xb+  X o  X(2      X)'D  )   XXr  %cur Xss   ;/  Xts  9  Xv	|     Xx&  J  XyF     Xz|   (a  X{|   ,wO  X|ӎ  02  X~  81  X	|   @  X6z  Hє  X|   P   X*   8  T}  XO  $S}  XQN  F  XR	|    O  XS	|     XT~   k  XPZ    2H   Xc       x  Ҥ    o  g  W    (U  	   Xn`  r  Xp Ì  $r  HXrF    Xs   b  XtN  g  Xu	|   H  Xv)   zA  XwYr   Ƞ  Xx+  (.  Xy	|   0s  Xz+  8e  X{	|   @   XqR      Xd  j  (|   ~  F  |    ya  X  $xa  X  
  Xs   /  XX   _  X  ~  ʍ  -ڍ    |    Y  X    (F       F   LM  X  $KM  X4  
  Xs   /  Xڍ     X@     m  Xč  #S  X^  d  (F  }  +  s  s   n  X    (F    +  s  s   y  v  Xi"  'v    Xj͎    F   `  X)    .h  X)      X)   .f  Y  '-f     Y     4l  Z/  '3l  |  Z@  #    Z6&R  '  E  Z7c  F  &i  Z9%u  '%i  s  Z:  i  j  [T  'j  l  [U    &M  [_p|    [jp|  *m  [p%ӏ  ')m  `  [q  Ǐ    [s$  '  HR  [t    2H   \4  X  j  Q  L   [  \$  2H   \-s  ;t   O  A  ]  i  ]   2H   \=      n  5D   2H   \I  SP   Qb  P    H    4  e  d  x  	M  
Nv  Ð    j  `       l  \c!  'l  Z  \j2    @I  \+  K  \R  X  -r  +  L  4  8   M  ]?~  'M  \  ]@  r  $=  ^=ʑ  ey  ^>6z   G
  ^?6z    ^@	|    $S   ^C  ey  ^D6z   G
  ^E6z    ^F	|     ^G	|   Q  ^H	|    S  ^ʑ  =  ^  R  ^=  %  R  ^O    $   _  ey  _	-2     _	O2  ?  _	-2  n  _	-2     _"U  ,v  _    bE   X  	&     cl  -2  	&     coH  -2  	&     [PN  @ \     %/        	  @w2  ["  W"  cv @<=  #  "  8  @|   ax @1  p,  j,  	$  @82  sp @82  	  @1  /Ҍ  @L  
     `    _p D@	+  ,  ,     ړ  _p F@	+  ,  ,       _p H@	+  -  -       _p J@	+  *-  (-      4  _p M@	+  O-  M-   P  R  _p O@	+  t-  r-     p  _p _@	+  -  -       _p a@	+  -  -       _p d@	+  -  -     ʔ  _p f@	+  .  .   @    _p p@	+  -.  +.   p    _p r@	+  R.  P.     $  _p t@	+  w.  u.   Ь  B  _p w@	+  .  .      `  _p y@	+  .  .   0  ~  _p |@	+  .  .   `    _p ~@	+  /  	/       _p @	+  0/  ./     ؕ  _p @	+  U/  S/       _p @	+  z/  x/        _p @	+  /  /   P  2  _p @	+  /  /     P  _p @	+  /  /     n  _p @	+  0  0       _p @	+  30  10       _p @	+  X0  V0   @  Ȗ  _p @	+  }0  {0   p    _p @	+  0  0       _p @	+  0  0   Я  "  _p @	+  0  0      @  _p @	+  1  1   0  ^  _p @	+  61  41   `  |  _p @	+  [1  Y1       _p @	+  1  ~1       _p @	+  1  1     ֗  _p @	+  1  1        _p @	+  1  1   P    _p @	+  2  2     0  _p @	+  92  72     N  _p @	+  ^2  \2     l  _p @	+  2  2       _p @	+  2  2   @    _p @	+  2  2   p  Ƙ  _p @	+  2  2       _p @	+  3  3   в    _p @	+  <3  :3         _p @	+  a3  _3   0  >  _p @	+  3  3   `  \  _p @	+  3  3     z  _p @	+  3  3       _p @	+  3  3       _p @	+  4  4      ԙ  _p @	+  ?4  =4   P    _p @	+  d4  b4       _p @	+  4  4     .  _p @	+  4  4     L  _p @	+  4  4     j  _p @	+  4  4   @    _p @	+  5  5   p    _p @	+  B5  @5     Ě  _p @	+  g5  e5   е    _p @	+  5  5         _p @	+  5  5   0    _p @	+  5  5   `  <  _p @	+  5  5     Z  _p @	+   6  6     x  _p @	+  E6  C6       _p A	+  j6  h6        _p A	+  6  6   P  қ  _p A	+  6  6       _p 
A	+  6  6       _p A	+  6  6     ,  _p A	+  #7  !7     J  _p A	+  H7  F7   @  h  _p A	+  m7  k7   p    _p A	+  7  7       _p A	+  7  7   и    _p /A	+  7  7        _p 1A	+  8  7   0    _p 3A	+  &8  $8   `    _p 5A	+  K8  I8     :  _p 8A	+  p8  n8     X  _p :A	+  8  8     v  _p >A	+  8  8        _p @A	+  8  8   P    _p BA	+  9  9     Н  _p LA	+  )9  '9       _p NA	+  N9  L9       _p PA	+  s9  q9     *  _p RA	+  9  9   @  H  _p TA	+  9  9   p  f  _p VA	+  9  9       _p YA	+  :  :   л    _p [A	+  ,:  *:        _p aA	+  Q:  O:   0  ޞ  _p cA	+  v:  t:   `    _p eA	+  :  :       _p gA	+  :  :     8  _p iA	+  :  :     V  _p kA	+  
;  ;      t  _p mA	+  /;  -;   P    _p oA	+  T;  R;       _p qA	+  y;  w;     Ο  _p sA	+  ;  ;       _p uA	+  ;  ;     
  _p wA	+  ;  ;   @  (  _p {A	+  <  <   p  F  _p }A	+  2<  0<     d  _p A	+  W<  U<   о    _p A	+  |<  z<        _p A	+  <  <   0    _p A	+  <  <   `  ܠ  _p A	+  <  <       _p A	+  =  =       _p A	+  5=  3=   ܈            B  _p A	+  Z=  X=   6\     7	 Z\     D	   UQ	     R	e     X	e      d\     7	 k\     7	 r\     7	 \     Q	   T	(     Q	p      \     7	 \     Q	   T	<     Q	      \     7	 \     Q	 V  T	W     Q	      \     7	 \     Q	   T	     Q	`w      \     7	 \     Q	 Ȣ  T	s     Q	<      ]     7	 ]     Q	   T	      Q	 ;       ]     7	 6]     Q	 :  T	     Q	`<      =]     7	 S]     Q	 s  T	     Q	p<      Z]     7	 p]     Q	   T	      Q	9      w]     7	 ]     Q	   T	H     Q	      ]     7	 ]     Q	   T	     Q	       ]     7	 ]     Q	 W  T	p     Q	      ]     7	 ]     Q	   T	     Q	P      ]     7	 ^     Q	 ɤ  T	     Q	<      ^     7	 ^     Q	   T	     Q	9      %^     7	 ;^     Q	 ;  T	     Q	4      B^     7	 X^     Q	 t  T	     Q	`1      _^     7	 u^     Q	   T	      Q	 .      |^     7	 ^     Q	   T	9     Q	+      ^     7	 ^     Q	   T	     Q	p&      ^     7	 ^     Q	 X  T	V     Q	"      ^     7	 ^     Q	   T	t     Q	      ^     7	 _     Q	 ʦ  T	     Q	`      _     7	 #_     Q	   T	      Q	      *_     7	 @_     Q	 <  T	(     Q	      G_     7	 ]_     Q	 u  T	     Q	P      d_     7	 z_     Q	   T	     Q	       _     7	 _     Q	   T	     Q	       _     7	 _     Q	    T	     Q	 	      _     7	 _     Q	 Y  T	     Q	`      _     7	 _     Q	   T	&     Q	p      _     7	 `     Q	 ˨  T	@     Q	`      `     7	 (`     Q	   T	Z     Q	7      /`     7	 E`     Q	 =  T	H     Q	      L`     7	 b`     Q	 v  T	x     Q	      i`     7	 `     Q	   T	p     Q	p      `     7	 `     Q	   T	     Q	      `     7	 `     Q	 !  T	     Q	      `     7	 `     Q	 Z  T	     Q	n      `     7	 `     Q	   T	     Q	 i      `     7	 a     Q	 ̪  T	     Q	f      !a     7	 7a     Q	   T	     Q	f      Ha     7	 ^a     Q	 >  T	     Q	u      oa     7	 a     Q	 w  T	0     Q	u      a     7	 a     Q	   T	     Q	T      a     7	 a     Q	   T	X     Q	      a     7	 a     Q	 "  T	     Q	      b     7	 b     Q	 [  T	     Q	      b     7	 4b     Q	   T	     Q	p      ;b     7	 Qb     Q	 ͬ  T	     Q	      Xb     7	 nb     Q	   T	     Q	B      ub     7	 b     Q	 ?  T	8     Q	Z      b     7	 b     Q	 x  T	`     Q	`_      b     7	 b     Q	   T	     Q	V      b     7	 b     Q	   T	     Q	R      b     7	 b     Q	 #  T	     Q	      c     7	 c     Q	 \  T	     Q	      #c     7	 9c     Q	   T	0     Q	@E      @c     7	 Vc     Q	 ή  T	`     Q	      ]c     7	 sc     Q	   T	     Q	 P      zc     7	 c     Q	 @  T	     Q	L      c     7	 c     Q	 y  T	     Q	      c     7	 c     Q	   T	     Q	      c     7	 c     Q	   T	@     Q	0      d     7	 d     Q	 $  T	p     Q	`      )d     7	 ?d     Q	 ]  T	     Q	`      Pd     7	 fd     Q	   T	     Q	      md     7	 d     Q	 ϰ  T	     Q	P      d     7	 d     Q	   T	     Q	p      d     7	 d     Q	 A  T	H     Q	@      d     7	 d     Q	 z  T	x     Q	      d     7	 d     Q	   T	     Q	Ж      d     7	 e     Q	   T	     Q	m      e     7	 1e     Q	 %  T	      Q	j      8e     7	 Ne     Q	 ^  T	(     Q	s      _e     7	 ue     Q	   T	H     Q	s      e     7	 e     Q	 в  T	p     Q	s      e     7	 e     Q	 	  T	     Q	 R      e     7	 e     Q	 B  T	     Q	 P      e     7	 f     Q	 {  T	     Q	 P      f     7	 .f     Q	   T	     Q	PN      5f     7	 Kf     Q	   T	8     Q	 r      \f     7	 rf     Q	 &  T	`     Q	 r      f     7	 f     Q	 _  T	     Q	 r      f     7	 f     Q	   T	     Q	L      f     7	 f     Q	 Ѵ  T	     Q	      f     7	 f     Q	 
  T	     Q	0      g     7	 g     Q	 C  T	      Q	      g     7	 4g     Q	 |  T	@     Q	       ;g     7	 Qg     Q	   T	`     Q	      Xg     7	 ng     Q	   T	     Q	      g     7	 g     Q	 '  T	     Q	      g     7	 g     Q	 `  T	     Q	       g     7	 g     Q	   T	"     Q	@      g     7	 g     Q	 Ҷ  T	=     Q	      h     7	 h     Q	   T	[     Q	      .h     7	 Dh     Q	 D  T	v     Q	      Uh     7	 kh     Q	 }  T	     Q	 f      |h     7	 h     Q	   T	      Q	 f      h     7	 h     Q	   T	     Q	 f      h     7	 h     Q	 (  T	     Q	 f      h     7	 i     Q	 a  T	     Q	pd      i     7	 .i     Q	   T	     Q	pd      ?i     7	 Ui     Q	 Ӹ  T	      Q	b      fi     7	 |i     Q	   T	H     Q	b      i     7	 i     Q	 E  T	h     Q	2      i     7	 i     Q	 ~  T	     Q	7      i     7	 i     Q	   T	     Q	I      i     7	 j     Q	   T	     Q	I      j     7	 +j     Q	 )  T	6     Q	p      2j     7	 Hj     Q	 b  T	T     Q	H      Yj     7	 oj     Q	   T	p     Q	H      j     7	 j     Q	 Ժ  T	     Q	H      j     7	 j     Q	   T	     Q	H      j     7	 j     Q	 F  T	     Q	H      j     7	 k     Q	   T	     Q	H      k     7	 2k     Q	   T	     Q	J      Ck     7	 Yk     Q	   T	     Q	J      jk     7	 k     Q	 *  T	     Q	p      k     7	 k     Q	 c  T	     Q	p      k     7	 k     Q	   T	(     Q	p      k     7	 k     Q	 ռ  T	,     Q	p      l     7	 l     Q	   T	P     Q	      -l     7	 Cl     Q	 G  T	x     Q	      Tl     7	 jl     Q	   T	     Q	е      ql     7	 l     Q	   T	     Q	      l     7	 l     Q	   T	     Q	      l     7	 l     Q	 +  T	     Q	0      l     7	 l     Q	 d  T	@     Q	      m     7	 m     Q	   T	`     Q	      *m     7	 @m     Q	 ־  T	     Q	0      Gm     7	 ]m     Q	   T	J     Q	P      nm     7	 m     Q	 H  T	     Q	P      m     7	 m     Q	   T	     Q	@      m     7	 m     Q	   T	     Q	      m     7	 m     Q	   T	h     Q	       n     7	 n     Q	 ,  T	(     Q	      'n     7	 =n     Q	 e  T	H     Q	      Nn     7	 dn     Q	   T	p     Q	H      kn     7	 n     Q	   T	     Q	F      n     7	 n     Q	   T	     Q	      n     7	 n     Q	 I  T	     Q	      n     7	 n     Q	   T	     Q	       n     7	 o     Q	   T	     Q	       $o     7	 :o     Q	   T	     Q	       Ko     7	 ao     Q	 -  T	     Q	p      ho     7	 ~o     Q	 f  T	8     Q	0      o     7	 o     Q	   T	X     Q	      o     7	 o     Q	   T	x     Q	       o     7	 o     Q	   T	     Q	0      o     7	 o     Q	 J  T	     Q	      o     7	 p     Q	   T	     Q	`      p     7	 ,p     Q	   T	     Q	      =p     7	 Sp     Q	   T	     Q	      dp     7	 zp     Q	 .  T	     Q	      p     7	 p     Q	 g  T	      Q	      p     7	 p     Q	   T	1     Q	 h      p     7	 p     Q	   T	M     Q	`      p     7	 p     Q	   T	k     Q	      p     7	 q     Q	 K  T	     Q	PD      &q     7	 <q     Q	   T	     Q	PD      Mq     7	 cq     Q	   T	     Q	pB      jq     7	 q     Q	   T	     Q	      q     7	 q     Q	 /  T	     Q	      q     7	 q     Q	 h  T	     Q	       q     7	 q     Q	   T	5     Q	       q     7	 r     Q	   T	      Q	       r     7	 %r     Q	   T	H     Q	      6r     7	 Lr     Q	 L  T	h     Q	      ]r     7	 sr     Q	   T	Q     Q	      r     7	 r     Q	   T	o     Q	      r     7	 r     Q	   T	     Q	]      r     7	 r     Q	 0  T	     Q	pX      r     7	 r     Q	 i  T	     Q	      s     7	 s     Q	   T	     Q	      )s     7	 ?s     Q	   T	     Q	      Ps     7	 fs     Q	   T	     Q	      ws     7	 s     Q	 M  T	     Q	      s     7	 s     Q	   T	     Q	       s     7	 s     Q	   T	     Q	       s     7	 s     Q	   T	     Q	      s     7	 t     Q	 1  T	     Q	 .      t     7	 (t     Q	 j  T	@     Q	      /t     7	 Et     Q	   T	p     Q	 *      Lt     7	 bt     Q	   T	     Q	      it     7	 t     Q	   T	     Q	      t     7	 t     Q	 N  T	     Q	 u      t     7	 t     Q	   T	      Q	@      t     7	 t     Q	   T	H     Q	0H      t     7	 t     Q	   T	p     Q	P      t     7	 u     Q	 2  T	     Q	p      u     7	 -u     Q	 k  T	     Q	p      4u     7	 Ju     Q	   T	     Q	@~      Qu     7	 gu     Q	   T	     Q	D      nu     7	 u     Q	   T	8     Q	{      u     7	 u     Q	 O  T	`     Q	r      u     7	 u     Q	   T	     Q	x      u     7	 u     Q	   T	     Q	e      u     7	 u     Q	   T	     Q	0d      	v     7	 v     Q	 3  T	      Q	0d      0v     7	 Fv     Q	 l  T	P     Q	0d      Wv     7	 mv     Q	   T	x     Q	0d      ~v     7	 v     Q	   T	     Q	a      v     7	 v     Q	   T	     Q	 \      v     7	 v     Q	 P  T	     Q	 \      v     7	 v     Q	   T	2     Q	Z      w     7	 w     Q	   T	      Q	`K      #w     7	 9w     Q	   T	I     Q	W      Jw     7	 `w     Q	 4  T	e     Q	W      qw     7	 w     Q	 m  T	     Q	W      w     7	 w     Q	   T	     Q	PY      w     7	 w     Q	   T	     Q	T      w     7	 w     Q	   T	     Q	Q      w     7	 x     Q	 Q  T	H     Q	 N      x     7	 "x     Q	   T	     Q	@G      )x     7	 ?x     Q	   T	h     Q	C      Mx     7	 cx     Q	   T	     Q	A      jx     7	 x     Q	 5  T	     Q	p@      x     7	 x     Q	 n  T	     Q	      x     7	 x     Q	   T	     Q	      x     7	 x     Q	   T	      Q	      x     7	 y     Q	   T	(     Q	      #y     7	 9y     Q	 R  T	H     Q	      Jy     7	 `y     Q	   T	p     Q	      qy     7	 y     Q	   T	     Q	=      y     7	 y     Q	   T	%     Q	 :      y     7	 y     Q	 6  T	B     Q	 :      y     7	 y     Q	 o  T	     Q	4      y     7	 z     Q	   T	^     Q	0(      z     7	 ,z     Q	   T	v     Q	%      3z     7	 Iz     Q	   T	     Q	$      Pz     7	 fz     Q	 S  T	     Q	06      wz     7	 z     Q	   T	(     Q	06      z     7	 z     Q	   T	P     Q	a      z     7	 z     Q	   T	x     Q	a      z     7	 {     Q	 7  T	     Q	a      {     7	 ){     Q	 p  T	     Q	a      :{     7	 P{     Q	   T	     Q	a      a{     7	 w{     Q	   T	     Q	a      {     7	 {     Q	   T	     Q	a      {     7	 {     Q	 T  T	     Q	``      {     7	 {     Q	   T	0     Q	``      {     7	 |     Q	   T	X     Q	``      $|     7	 :|     Q	   T	     Q	#      A|     7	 W|     Q	 8  T	     Q	@!      ^|     7	 t|     Q	 q  T	     Q	 V      |     7	 |     Q	   T	     Q	 V      |     7	 |     Q	   T	     Q	^      |     7	 |     Q	   T	     Q	^      |     7	 }     Q	 U  T	8     Q	]      !}     7	 7}     Q	   T	V     Q	]      H}     7	 ^}     Q	   T	     Q	pR      e}     7	 {}     Q	    T	q     Q	      }     7	 }     Q	 9  T	     Q	 M      }     7	 }     Q	 r  T	     Q	`G      }     7	 }     Q	   T	@     Q	A      }     7	 }     Q	   T	h     Q	=      }     7	 ~     Q	   T	     Q	       ~     7	 )~     Q	 V  T	     Q	@8      0~     7	 F~     Q	   T	     Q	2      M~     7	 c~     Q	   T	     Q	 .      j~     7	 ~     Q	   T	     Q	      ~     7	 ~     Q	 :  T	     Q	      ~     7	 ~     Q	 s  T	      Q	      ~     7	 ~     Q	   T	P     Q	`4      ~     7	 ~     Q	   T	     Q	2      ~     7	      Q	   T	     Q	           7	 .     Q	 W  T	     Q	P      5     7	 K     Q	   T	     Q	      R     7	 h     Q	   T	@     Q	Џ      o     7	      Q	   T	h     Q	0           7	      Q	 ;  T	     Q	0           7	      Q	 t  T	     Q	           7	      Q	   T	     Q	            7	      Q	   T	(      Q	@            7	      Q	   T	X      Q	           7	 3     Q	 X  T	      Q	      :     7	 P     Q	   T	      Q	      W     7	 m     Q	   T	      Q	       t     7	      Q	   T	     Q	@           7	      Q	 <  T	@     Q		           7	 Ā     Q	 u  T	h     Q	      ˀ     7	      Q	   T	     Q	@           7	      Q	   T	     Q	           7	      Q	    T	     Q	0      "     7	 8     Q	 Y  T	     Q	      ?     7	 U     Q	   T	     Q	0      \     7	 r     Q	   T	     Q	      y     7	      Q	   T	     Q	z           7	      Q	 =  T	      Q	0           7	 Ɂ     Q	 v  T	@     Q	н      Ё     7	      Q	   T	!      Q	p           7	      Q	   T	`     Q	       
     7	       Q	 !  T	;      Q	      '     7	 =     Q	 Z  T	W      Q	      D     7	 Z     Q	   T	r      Q	      a     7	 w     Q	   T	     Q	       ~     7	      Q	   T	      Q	            7	      Q	 >  T	     Q	           7	 ΂     Q	 w  T	     Q	      Ղ     7	      Q	   T	     Q	p           7	      Q	   T	      Q	            7	 %     Q	 "  T	H     Q	      ,     7	 B     Q	 [  T	h     Q	P      I     7	 _     Q	   T	     Q	      f     7	 |     Q	   T	      Q	           7	      Q	   T	     Q	 +           7	      Q	 ?  T	     Q	0           7	 Ӄ     Q	 x  T	      Q	      ڃ     7	      Q	   T	(     Q	           7	      Q	   T	      Q	@           7	 *     Q	 #  T	P     Q	      1     7	 G     Q	 \  T	x     Q	      N     7	 d     Q	   T	     Q	      k     7	      Q	   T	     Q	p           7	      Q	   T	     Q	            7	      Q	 @  T	     Q	           7	 ؄     Q	 y  T	H     Q	      ߄     7	      Q	   T	      Q	p           7	      Q	   T	x     Q	'           7	 /     Q	 $  T	     Q	p"      6     7	 L     Q	 ]  T	     Q	       S     7	 i     Q	   T	     Q	@	      p     7	      Q	   T	     Q	           7	      Q	   T	      Q	е           7	      Q	 A  T	@     Q	      ǅ     7	 ݅     Q	 z  T	!     Q	            7	      Q	   T	`     Q	           7	      Q	   T	     Q	           7	 4     Q	 %  T	     Q	p      ;     7	 Q     Q	 ^  T	     Q	x      X     7	 n     Q	   T	     Q	а      |     7	      Q	   T	      Q	           7	      Q	 	  T	@     Q	            7	 ̆     Q	 B  T	`     Q	      ӆ     7	      Q	 {  T	     Q	            7	      Q	   T	7!     Q	           7	 #     Q	   T	8     Q	0      *     7	 @     Q	 &  T	     Q	      G     7	 ]     Q	 _  T	U!     Q	@      d     7	 z     Q	   T	     Q	`           7	      Q	   T	      Q	P           7	      Q	 
  T	(     Q	           7	 ч     Q	 C  T	q!     Q	      ؇     7	      Q	 |  T	!     Q	0}           7	      Q	   T	!     Q	P0           7	 (     Q	   T	!     Q	.      /     7	 E     Q	 '  T	!     Q	+      L     7	 b     Q	 `  T	"     Q	)      s     7	      Q	   T	"     Q	)           7	      Q	   T	:"     Q	P'           7	 ׈     Q	   T	V"     Q	P'           7	      Q	 D  T	r"     Q	%           7	      Q	 }  T	P     Q	 p      %     7	 ;     Q	   T	"     Q	m      B     7	 X     Q	   T	"     Q	k      _     7	 u     Q	 (  T	"     Q	i      |     7	      Q	 a  T	"     Q	g           7	      Q	   T	p     Q	X           7	 ̉     Q	   T	     Q	P      Ӊ     7	      Q	   T	     Q	U           7	      Q	 E  T	"     Q	@           7	 #     Q	 ~  T	#     Q	      *     7	 @     Q	   T	;#     Q	=      G     7	 ]     Q	   T	     Q	"      d     7	 z     Q	 )  T	X#     Q	            7	      Q	 b  T	     Q	           7	      Q	   T		     Q	           7	 ъ     Q	   T	@	     Q	      ؊     7	      Q	   T	h	     Q	           7	      7	      ^	 ?  Tv       k	 X  U
Q      w	 "     7	 *     	 /     	 6     7	 EE     	    ?           z  	  ?w2  =  }=  cv ?<=  =  =  8  ?|   sp ?82  h>  f>  ax ?1  >  >  $  ?82  :?  2?    ?1  ?  ?  @v      ?L  ?  ?  7  ?-2  l@  b@  /  %Yr  @  @  I  %Yr  A  A  enc %/  B  B  .len %  in %Gr  C  ~C  out %!Gr  !D  D  n]  %#ބ  D  D  3  %-2  E  {E  v;  ?-2  *F  F  
L  	9  %   *            w  9  %  F  F   
  	9  %   ]     7	      7	      7	      	   T~ Q0R2      7	      7	      	   T0      7	      	 )  T~  F     	 A  U  W     	 Y  U}  b     	 q  U  q     7	      	   T Q}         U       7	      	   T~       7	      7	 %     7	 ?     7	 T     	 -  T} QR2 e     7	      
 _  U~ T	           
   U~ T	           
   U       '
      '
      4
   U}       A
   Uw T Q}       M
   U      M
 %  U  "     Z
 >  Uw  +     
 Z  U0T0 4     
 v  U0T0 >        U~ T0 L     f
   U	      X     s
   U  j     
   U  u     
   T}       M
   U      M
 ,  U       Z
 E  Uw       
 a  U0T0      
 }  U0T0         U~ T0      7	      	   T} Q~         U}       7	       
 
  T	'     Q0 
     7	      7	 #     	 B  U} T~  7     
 \  Uw  b     f
 {  U	a      p     f
   U	      ~     f
 U	v                     9  ?  F  F       7	      7	          v  ?$   G  G        7	      7	 3     7	 E     
 T     
 U~ T	P       Q  6?     .       	  6?w2  7G  3G  cv 6?<=  ~G  pG  8  8?|   sp 8?82  H  H  ax 8?1  OH  AH  $  8?82  H  H    8?1  iI  gI  v     <?L  I  I  7  >?-2  5J  -J  I  E%Yr  J  J  /  F%Yr  \K  LK  enc G%/  L  	L  .len H%  in I%Gr  L  L  out I%!Gr  M  M  n]  J%#ބ  dN  VN  3  K%-2  O  N  v;  I?-2  O  {O  
  	9  N%   R            J  9  P%  O  O                 9  %  	P  P       7	      7	       7	 '     7	 6     7	 H     	   T~ Q0R2 Y     7	 q     7	 {     	 	  T0      7	      	 .  T}       	 F  U~       
 ^  U}  +     	 v  U  :     7	 H     	   T Q}  ^       U  e     7	 p     	   T}  z     7	      7	      	   T QR2      7	      7	 '     7	 1     7	 X     
 r  Uw T	      h     
   Uw T	           
   U~       
   U}       '
      
   U~ T} Q      	      M
 " U      M
 : U}       Z
 R U~       
 n U0T0      
  U0T0        Uw T0      7	 (     
  T	'     Q0 2     7	 <     7	 K     	  U} T~  h     
 ) U       f
 H U	           f
 g U	           f
 U	v       
 	9  ?           v  8?  CP  AP        7	      7	      7	      
  U~ T	P           
     ?            	  ?w2  jP  fP  cv ?<=  P  P  8  ?|   sp ?82  Q  
Q  ax ?1  ?Q  /Q  $  ?82  Q  Q    ?1  FR  DR   
  9 p  #?  ~R  |R              # 9  )?  R  R       7	      7	  T     7	 k     7	 v     
 U T|       7	      
  U	j           7	      7	      7	      7	         T| Q	
            7	 A      7	 T      7	 d        Tv Q2 l      "       7	  l             ~ 9  1?  R  R  s      7	 ~      7	          	  ?  R  R        7	      7	 -     7	       
 U} T	e
       E  >           	 	  >w2  S  S  cv ><=  YS  OS  8  >|   sp >82  S  S  ax >1  S  S  $  >82  T  T    >1  U  U   w  	 a  >-2  BU  <U  y  %%Yr  U  U  3  &%	-2  U  U  v;  ?  nV  hV  
 	9  )%        H        w@  ?-2  V  V       7	      /      7	      <  T| Q	
     R        7	       7	 1     I  U| T0 ;     7	 E     	  T0 O     7	 Z     	  Tv  u     
 ) Uv T	           
 N Uv T	           V f U~       z U~       
  U0T0      
  U0T0        Uv T0 B     7	 L     7	 v     f
 U	H                   J	 9  ?  V  V       7	      7	          v  >s	  W  W        7	      7	      7	 h     
 U~ T	       e  >             	  >w2  @W  <W  cv ><=  W  yW  8  >|   sp >82  W  W  ax >1  X  X  $  >82  X  X    >1  Y  Y  
   p  >'x  TY  RY  !            
 9  >  yY  wY  !     7	 !     7	  $!     7	 ;!     7	 F!     
 
 T|  Q!     7	 q!     
 $ U	j      x!     7	 !     7	 !     7	 !     7	 !      } T| Q	
      !     7	 "     7	 $"     7	 4"       Tv Q2 <"     c e"     7	  <"            ! 9  >  Y  Y  C"     7	 N"     7	           `
  >J  Y  Y         7	       7	       7	 "     
 U} T	e
       [  >"     ~       	  >w2  Y  Y  cv ><=  1Z  %Z  8  >|   sp >82  Z  Z  ax >1  [  [  $  >82  [  [    >1  [  [     d p  >'x  )\  '\  v;  >|   P\  L\  k  >32  \  \  #              9  >  \  \   0    \:  >  \  \  $     7	 $     7	 $     o T| Qv   "     7	 #     7	 #     / )#     7	 8#     7	 C#     
 Y T~  N#     7	 r#     
  U	 k      y#     7	 #     7	 #     7	 #     7	 #     7	 #     7	 $       T~ Q	
      $     7	 E$     7	 X$     7	 h$      < Tv Q2 p$     | z$     7	 $     7	  #             9  >  "]   ]  #     7	 #     7	   "       
  >  H]  F]   "     7	 "     7	 "     7	 %     
 U} T	e
       ȋ  >=           M 	  >w2  o]  k]  cv ><=  ]  ]  8  >|   sp >82  B^  <^  ax >1  ^  ^  $  >82  %_  _    >1  _  _     p  >'x  _  _  	R  >-2  J  %Yr  `  `  v;  >|   v`  r`  k  >32  `  `  >             W 9  >  `  `   h@             9  %  #a  !a       \:  >  Ka  Ga  @     7	 t@     7	 @     o Tv Q|   />     7	 >>     I  T0 H>     7	 ]>     7	 e>     / z>     7	 >     7	 >     
 R T  >     7	 >     
 ~ U	@m      >     7	 >     7	 ?     7	  ?     7	 ??     7	 N?     7	 `?       T Q	
      o?     7	 ?     7	 ?     7	 ?      5 T Q2 ?      M T}  ?     a U}  ?     7	 -@     7	 O@     7	 Y@     7	  >             9  >  a  a  >     7	 >     7	   =         >  a  a   =     7	 =     7	 >     7	 @     
 U~ T	"       V  {>            	  {>w2  a  a  cv {><=  b  	b  8  }>|   sp }>82  b  b  ax }>1  b  b  $  }>82  tc  lc    }>1  c  c  w  N 	^  >-2  8  $Yr  +d  #d  3  $-2  d  d  v;  >'x  e   e  
\ 	9  $         H        w@  >-2  he  de        7	       /       7	       <  T| Q	
            7	       7	      I  T0       7	       	 ( T0       7	 !      	 M T|  <      
 r U| T	      K      
  U| T	      S        Uv  b       Uv  k      
  U0T0 t      
  U0T0 ~        U| T0      7	      7	 6     f
 U	                     9  >  e  e        7	       7	          `w  }>  e  e        7	      7	      7	 (     
 U~ T	       q  ^>@            	  ^>w2  e  e  cv ^><=  .f  &f  8  `>|   sp `>82  f  f  ax `>1  f  f  $  `>82  vg  rg    `>1  g  g    % p  d>  h  g  qA             9  j>  &h  $h  xA     7	 A     7	  A     7	 A     7	 &A     
 A T|  1A     7	 QA     
 m U	m      XA     7	 bA     7	 A     7	 A     7	 A       T| Q	/      A     7	 A     7	 B     7	 B      
 Tv Q2 B      EB     7	  B            j 9  r>  Lh  Jh  #B     7	 .B     7	   @       P  `>  rh  ph   @     7	 @     7	 @     7	 iB     
 U} T	e
       0X  2>U           Z 	  2>w2  h  h  cv 2><=  h  h  8  4>|   sp 4>82  i  ~i  ax 4>1  i  i  $  4>82  j  j    4>1  <k  :k  0   p  8>  vk  rk  ey  9>6z  k  k  v;  :>|   k  k  k  ;>32  &l   l  V              9  A>  ql  ol   
 	9  I>   
1 	9  N>   
D 	9  $   p   \:  W>  l  l  QX     7	 X     7	 X     o T| Qv   :V     7	 OV     7	 WV     / lV     7	 {V     7	 V     
  T  V     7	 V     
  U	s      V     7	 V     7	 W     7	 W     7	 /W     7	 >W     7	 PW       T Q	/      _W     7	 W     7	 W     7	 W       Tv Q2 W     7	 W     7	 W     
  T  W     7	 W     7	 X      6 T1 %X      N Uv  /X     7	 X     7	 X     f
  U	`t      X     f
 U	 t       V             9  Y>  l  l  V     7	 V     7	   U          4>  l  l   U     7	 U     7	 V     7	 X     
 U~ T	       s  =P           r% 	  =w2  m  m  cv =<=  am  Wm  8  =|   sp =82  m  m  ax =1  n  m  	$  =82    =1  n  n    $ s  =-2  n  n  UK  =I2  5o  -o    =|   o  o  t  $Yr  o  o    $r% `p  Lp  aux $82  5q  3q  V*  $|   ^q  Xq  i $|   q  q  3  $-2  Mr  ?r  v;  =  r  r     X! V  >32  ?s  9s       7	      7	       "! Ts  C     f
 U	`     T	     Q	       
k! 	9  $        M       ! w@  '>-2  s  s       7	      /      7	      < ! T| Q	/     Rs  #     7	  <b                   $8"      f
 U		       ͷ     7	      7	      7	      7	 (      " T~ Q2 6     I " U} T0 A     7	 K     	 " T0 V     7	 a     	 " T}       
 # U~ T	           
 9# U~ T	            e# U T0QR|        }# U|  Ƹ     # U  ϸ     
 # U0T0 ظ     
 # U0T0       # U~ T0 m     7	 ֹ     7	       $ T}        <     7	 L      U$ T} Qs R0 j     7	 }     	 $ Tw Q0R2      7	      7	 Q     f
 U	+       8             % 9  ->  s  s  @     7	 L     7	            =)%  s  s   t     7	      7	      7	 '     
 U} T	x       Yr  v  =X           ) 	  =w2  t  t  cv =<=  Tt  Jt  8  =|   sp =82  t  t  ax =1  u  u  $  =82  yv  uv    =1  v  v    H) p  =Q|  w  w  I  q$i  Yw  Qw  cur r$s  w  w  ;/  r$s  ty  ly  TX  r$s  y  y  n s$H   Yz  Iz  col s$H   {  	{  /ؒ  t$) ~~  u$Yr  I{  C{  `L  v$|   {  {  e  w$n  |  |  Y            N' 9  =  |  |  Y     7	 Y     7	  
a' 	9  $   [Z     %       ' 9  $  |  |  bZ     7	 mZ     7	  ^Y     7	 uY     7	 Y     
 ' T}  Y     7	 Y     
 ( U	t      Y     7	 Y     7	 Z     7	 1Z     7	 DZ     7	 TZ      b( T| Q2 Z     7	 [     7	 [      ( Uw T0 \     7	 \     	 ( T}  \     7	 )\      ( T|  3\     7	 >\     	 ) T|  I\     7	 ]     7	 %]     ) Tv Qv R2   Y         =q)  |  |   Y     7	 Y     7	 1Y     7	 P]     
 _]     
 U~ T	e
       "f  ) &O   P B  {=g           - 	  {=w2  }  }  cv {=<=  Y}  M}  8  }=|   sp }=82  }  }  ax }=1  <~  0~  $  }=82  ~  ~    }=1         U, p  =Q|  Q  O  v;  =	b  v  t  k  =32      xh             * 9  =       g     7	 g     7	 g     / h     7	 "h     7	 -h     
 J+ T~  8h     7	 Xh     
 v+ U	w      _h     7	 ih     7	 h     7	 h     7	 h     7	 h     7	 i     7	 i      + Tv Q2 i     7	 -i     6 , T| Qv  4i     7	 Ui     7	 wi     7	 i     C T|   xh            , 9  =      h     7	 h     7	   g         }=,  !     g     7	 g     7	 g     7	 i     
 U} T	e
       B  `=i           A0 	  `=w2  H  D  cv `=<=      8  b=|   sp b=82      ax b=1  p  d  $  b=82        b=1  M  K    / p  f=Q|      v;  g=	b      k  h=32  т  ͂  j             &. 9  n=  	     j     7	 j     7	 j     / 3j     7	 Bj     7	 Mj     
 . T~  Xj     7	 xj     
 . U	w      j     7	 j     7	 j     7	 j     7	 j     7	 k     7	 $k     7	 4k      #/ Tv Q2 ?k     7	 Mk     6 N/ T| Qv  Tk     7	 uk     7	 k     7	 k     C T|   j            / 9  v=  /  -  j     7	 j     7	   i       P  b=/  U  S   i     7	 i     7	 i     7	 k     
 U} T	e
       B  E=k           v3 	  E=w2  |  x  cv E=<=      8  G=|   sp G=82  O  I  ax G=1      $  G=82  .  *    G=1        2 p  K=Q|      v;  L=	b  ޅ  ܅  k  M=32      l             [1 9  S=  =  ;   !l     7	 6l     7	 >l     / Sl     7	 bl     7	 ml     
 1 T~  xl     7	 l     
 1 U	 x      l     7	 l     7	 l     7	 l     7	 m     7	 1m     7	 Dm     7	 Tm      X2 Tv Q2 _m     7	 mm     6 2 T| Qv  tm     7	 m     7	 m     7	 m     C T|   l            3 9  [=  c  a  l     7	 l     7	   k         G=-3       k     7	 k     7	 k     7	 m     
 U} T	e
       ˖  *=m           6 	  *=w2      cv *=<=      8  ,=|   sp ,=82    }  ax ,=1  ؇  ̇  $  ,=82  b  ^    ,=1      @   5 p  0=Q|      v;  1=	b      k  2=32  9  5  n             4 9  8=  q  o   An     7	 Vn     7	 ^n     / sn     7	 n     7	 n     
 4 T~  n     7	 n     
 5 U	hx      n     7	 n     7	 o     7	 o     7	 /o     7	 Qo     7	 do     7	 to      5 Tv Q2 o     7	 o     6 5 T| Qv  o     7	 o     7	 o     7	 o     C T|   n            96 9  @=      n     7	 n     7	   n          ,=b6       m     7	 n     7	 n     7	 o     
 U} T	e
       e  = p           9 	  =w2      cv =<=  )    8  =|   sp =82      ax =1       $  =82        =1         )9 p  =Q|  !    v;  =	b  F  D  k  =32  m  i  p             7 9  =       ap     7	 vp     7	 ~p     / p     7	 p     7	 p     
 8 T~  p     7	 p     
 J8 U	x      p     7	 p     7	 %q     7	 0q     7	 Oq     7	 qq     7	 q     7	 q      8 Tv Q2 q     7	 q     6 8 T| Qv  q     7	 q     7	 q     7	 r     C T|   p            n9 9  %=  ˌ  Ɍ  p     7	 
q     7	   'p       p   =9       p     7	 'p     7	 =p     7	 r     
 U} T	e
         <%     >      = 	  <w2      cv <<=  ]  Q  8  <|   sp <82      ax <1  @  4  $  <82  ʎ  Ǝ    <1        e< p  <Q|  U  S  v;  <|   |  x  k  <32      &             : 9  =         M; \:  =      &     7	 /'     7	 ='     o T| Qv   w%     7	 %     7	 %     / %     7	 %     7	 %     
 ; T~  %     7	 %     
 ; U	pk      %     7	 &     7	 E&     7	 P&     7	 o&     7	 &     7	 &     7	 &      J< Tv Q2 &     7	 '     7	  &            < 9  
=  N  L  &     7	 $&     7	   =%         <<  t  r   3%     7	 =%     7	 S%     7	 N'     
 U} T	e
       ̩  <P'     >      ~@ 	  <w2      cv <<=    Ԑ  8  <|   sp <82  n  h  ax <1  Ñ    $  <82  M  I    <1      ix <1  ڒ  ֒  
= _p <+   P  ? p  <Q|      v;  <|   A  =  k  <32  {  w  R(             \> 9  <         > \:  <  ۓ  ד   )     7	 o)     7	 })     o T| Qv   '     7	 '     7	 '     / '     7	 '     7	 (     
 ? T~  (     7	 2(     
 4? U	k      9(     7	 C(     7	 (     7	 (     7	 (     7	 (     7	 (     7	 (      ? Tv Q2 (     7	 M)     7	  R(            @ 9  <      Y(     7	 d(     7	   }'          <5@  9  7   s'     7	 }'     7	 '     7	 )     
 U} T	e
         <)     >      C 	  <w2  `  \  cv <<=      8  <|   sp <82  3  -  ax <1    |  $  <82        <1  e  c  ix <1      
KA _p <+     )C p  <Q|  ߖ  ݖ  v;  <|       k  <32  @  <  *             A 9  <  x  v      B \:  <      `+     7	 +     7	 +     o T| Qv   )     7	 *     7	 *     / )*     7	 8*     7	 C*     
 jB T~  N*     7	 r*     
 B U	 l      y*     7	 *     7	 *     7	 *     7	 *     7	 +     7	 $+     7	 4+      C Tv Q2 ?+     7	 +     7	  *            nC 9  <  ؗ  ֗  *     7	 *     7	   )         <C       )     7	 )     7	 )     7	 +     
 U} T	e
         <+     >      G 	  <w2  %  !  cv <<=  j  ^  8  <|   sp <82      ax <1  M  A  $  <82  י  ә    <1  *  (    eF p  <Q|  b  `  v;  <|       k  <32  Ú    ,             D 9  <         ME \:  <  #    -     7	 -     7	 -     o T| Qv   7,     7	 L,     7	 T,     / i,     7	 x,     7	 ,     
 E T~  ,     7	 ,     
 E U	Hl      ,     7	 ,     7	 -     7	 -     7	 /-     7	 Q-     7	 d-     7	 t-      JF Tv Q2 -     7	 -     7	  ,            F 9  <  [  Y  ,     7	 ,     7	   +       `  <F       +     7	 +     7	 ,     7	 .     
 U} T	e
       ?  <.     >      XJ 	  <w2      cv <<=      8  <|   sp <82  {  u  ax <1  М  Ĝ  $  <82  Z  V    <1      0  I p  <Q|      v;  <|       k  <32  F  B  /             6H 9  <  ~  |   `  H \:  <      /     7	 /0     7	 =0     o T| Qv   w.     7	 .     7	 .     / .     7	 .     7	 .     
 H T~  .     7	 .     
 I U	l      .     7	 /     7	 E/     7	 P/     7	 o/     7	 /     7	 /     7	 /      I Tv Q2 /     7	 0     7	  /            I 9  <  ޞ  ܞ  /     7	 $/     7	   =.          <J       3.     7	 =.     7	 S.     7	 N0     
 U} T	e
       GL  i<P0     >      M 	  i<w2  +  '  cv i<<=  p  d  8  k<|   sp k<82      ax k<1  S  G  $  k<82  ݠ  ٠    k<1  0  .    L p  o<Q|  h  f  v;  p<|       k  q<32  ɡ  š  R1             rK 9  w<          K \:  }<  )  %  2     7	 o2     7	 }2     o T| Qv   0     7	 0     7	 0     / 0     7	 0     7	 1     
 L T~  1     7	 21     
 JL U	l      91     7	 C1     7	 1     7	 1     7	 1     7	 1     7	 1     7	 1      L Tv Q2 1     7	 M2     7	  R1            "M 9  <  a  _  Y1     7	 d1     7	   }0         k<KM       s0     7	 }0     7	 0     7	 2     
 U} T	e
       i  6<0}     =      SR 	  6<w2      cv 6<<=      8  8<|   sp 8<82  h  f  ax 8<1      $  8<82  O  K    8<1      $  Q   <<&  ܤ  ؤ  doc #Vz      z  #1  9  7  ~            N 9  H<  ^  \  ~     7	 )~     7	  ~ ~      P$  #
GP ~     KP$  *~ ¥    d~  ~      $  O       ;  9   b  `  ~     P Uw T Q1R X	     Y}   e~      c       O L~       7	 #     [ T~ Qv R XDY0  ~     7	 ~     h P T	 {     Q0 4     7	 W     [ T~ Qv R X8Y0   }     7	 }     7	 }     
 yP T}  }     7	 }     
 P U	H{      }     7	 ~     7	 _~     7	 ~     7	 ~     7	 ~      Q Tv Q2 g     u Q U}  t      3Q U}  |      KQ U}       7	 -      pQ U}  >      T       |     $       Q 9  `<           7	      7	   m}       #  8<Q       c}     7	 m}     7	 }     7	 h     
 ER U} T	      m     
    <           OV 	  <w2  Ԧ  Ц  cv <<=      8  <|   sp <82      ax <1      $  <82        <1       %  U   <&  T  P  @R  <      v;  <|       k  <32      
jS 	9   <                S 9  (<  )  '   P%  S \:  .<  Q  M  (     7	 q     7	      o T~ Qv        7	      7	      /      7	 +     7	 6     
 AT T  A     7	 e     
 l     7	 v     7	      7	      7	 ߂     7	      7	      7	 (      T T Q2 ;     7	 J     7	 U     
 U T  `     7	      7	      7	 ̓     7	      7	       cU Tv Q2       }U U      7	 U     7	              U 9  0<           7	      7	          $  <V            7	      7	 Á     7	      
 U~ T	       W  ;           Z 	  ;w2  ֪  Ҫ  cv ;<=      8  ;|   sp ;82      ax ;1      $  ;82        ;1      %  WY   ;&  =  ;  xsd ;b  h  `  v;  ;|   ȭ  ĭ  k  ;32                   ~W 9  <  :  8    &  W \:  
<  b  ^  Ն     7	 '     7	 5     o Tv Q|        7	 !     7	 0     7	 B     	 X Tv Q0R2 L     7	 a     7	 i     / ~     7	      7	      
 sX T       7	 ǅ     
 X U	 |      ΅     7	 ؅     7	      7	       7	 =     7	 W     7	 }     7	      7	       $Y T| Q2       <Y T}       7	      7	              Y 9  <           7	      7	          %  ;Y            7	      7	 ҄     7	 F     
 U~ T	       Z  ;P           
^ 	  ;w2      cv ;<=  ,     8  ;|   sp ;82      ax ;1      $  ;82        ;1  -  +  &  S]   ;&  g  c  f  ;4      v;  ;|   ʱ  Ʊ  k  ;32       
%[ 	9  ;   U             P[ 9  ;  <  :   &  [ \:  ;  d  `       7	 A     7	 O     o T~ Qv        7	 χ     7	 ׇ     /      7	      7	      
 [ T       7	 5     
 <     7	 F     7	      7	      7	      7	 Ո     7	      7	       \ T Q2      7	      7	 %     
 \ T  0     7	 U     7	 w     7	      7	      7	       ] Tv Q2 ͉      8] U ׉     7	 %     7	  U            ] 9  ;      \     7	 g     7	   }       P&  ;]  ²     s     7	 }     7	      7	 `     
 U~ T	         ;`           a 	  ;w2      cv ;<=  .  "  8  ;|   sp ;82      ax ;1      $  ;82        ;1      0'  a   ;&  P  N  rng ;b  {  s  v;  ;|   ۵  ׵  k  ;32                   9_ 9  ;  M  K   `'  _ \:  ;  u  q       7	      7	      o Tv Q|   ϊ     7	      7	       7	      	 _ Tv Q0R2      7	 1     7	 9     / N     7	 ]     7	 h     
 .` T  s     7	      
 Z` U	}           7	      7	      7	      7	      7	 '     7	 M     7	 `     7	 p      ` T| Q2 {      ` T}       7	 Ռ     7	              Wa 9  ;           7	 ɋ     7	           '  ;a  Ӷ  Ѷ        7	      7	      7	      
 U~ T	       ^  ;@           f 	  ;w2      cv ;<=  ?  3  8  ;|   sp ;82  ͷ  Ƿ  ax ;1  "    $  ;82        ;1       x  ce   ;&  7  5  3  #-2  b  Z  v;  ;|   ¹    k  ;32      g             b 9  ;  6  4   0x  Kc \:  ;  ^  Z       7	      7	      o T} Qv        7	      	 oc T0      7	      	 c T|       7	      7	      /      7	      7	      
 c T  '     7	 G     
 d U	p      N     7	 X     7	      7	      7	      7	      7	      7	       d Tv Q2      
 d U~ T	      )     
 d U~ T	      8      d U  K     
 e U0T0 W     
 +e U0T0 a      He U~ T0 h     7	      7	  g            e 9  ;      n     7	 y     7	   m       w  ;e       c     7	 m     7	      7	      
 U} T	       [  U;           j 	  U;w2    ߺ  cv U;<=  $    8  W;|   sp W;82      ax W;1      $  W;82  >  :    W;1      `y  Pj   [;&  ˼  Ǽ  ey  #6z      doc #Vz  ?  ;  z  #1  y  u  3  #-2      v;  b;-2      
[g 	9  h;   
ng 	9  #               g 9  #  d  b       7	      7	       7	       	 g T0 *     7	 @     	 J     7	 Y     7	 d     
 #h T|  o     7	      
 Oh U	            7	      7	      7	      7	       7	 0      h T| Q2 B     
 h U~ T	      Q     
 h U~ T	      Y      i U|  j           ~ 4i U|        Li U|       
 hi U0T0      
 i U0T0       i U~ T0       i U| T       7	      	 i T|       7	      7	 	     
 j U0T0 "	     
 6j U0T0 ,	      U~ T0  
cj 	9  ;           0y  W;j            7	      7	      7	 @	     
 U} T	       F  ;0           }p 	  ;w2      cv ;<=      8  ;|   sp ;82  o  i  ax ;1  ̿    $  ;82        ;1      +  o   ;&      t  ;	b      UK  ;I2  z  t    ~#r%     aux #82      V*  #|       i #|   /  #  v;  $;|       k  %;32                   kl 9  +;  B  @   p,  l V  3;32  l  f       7	 g     7	 r      l Tv       f
 U	`     T	8     Q	       0,  Dm \:  N;           7	 /     7	 =     o T Qv   <b H      H            #m ]     f
 U		            7	 Ǜ     7	 ֛     7	      	 m T~ Q0R2      7	 	     7	      / &     7	 :     7	 G     
 +n T R     7	 v     
 Wn U	      }     7	      7	 Ŝ     7	 М     7	      7	      7	 5     7	 H     7	 X      n Tv Q2 |      o UTQ|        o U|       7	      7	 K     7	 V      [o T}  }           7	 ͞      o T} Qv R0      7	      	 TQ0R2              p 9  P;           7	      7	   ]       +  ;4p       S     7	 ]     7	 s     7	      
 U~ T	         :           t 	  :w2  >  :  cv :<=    w  8  :|   sp :82      ax :1  )    $  :82        :1      ,  Ls   :&  U  O  doc f#Vz      v;  :-2  P  D  
q 	9  :   
q 	9  i#        7	 0     7	 ;     
 q T|  F     7	 f     
 q U	      m     7	 w     7	      7	 ݠ     7	      7	        Nr T| Q2       fr U|  !      r U~ T0 [     $ r U| T3 v     ~ r U|  }     7	      	 r T       7	      7	 ̡     7	 ޡ      #s TQ2      7	       TQ2              s 9  ;           7	      7	   ݟ       ,  :s       ӟ     7	 ݟ     7	      7	 6     
 U} T	       X  :      P      { 	  :w2  !    cv :<=  b  Z  8  :|   sp :82      ax :1      $  :82  i  c    :1      pz  _z   :&  e  [  !T  :|       ey  +#6z  &    i  ,#6z      doc -#Vz      z  .#1  _  [  3  0#-2      v;  :-2      
nu 	9  :   
u 	9  ?#   D            u 9  H#  _  ]  K     7	 V     7	  z  ~v   N#1      Z     0 v U} T|  b      v U|  v     ~ 3v Uw  ~     = Kv U|       I cv T}        U} T|        7	      	 v T0      7	      	      7	      7	      
 v Tw       7	      
 w U	@           7	      7	 _     7	      7	      7	       zw Tw Q2      
 w U T	           
 w U T	           V w Uw        w Uw       $ x Uw T3 9     c 5x U} T      
 Qx U0T0      
 mx U0T0       x U T0      7	      	 x T|       7	      7	      
 x U0T0      
 y U0T0 $      y U T0 >     7	 `     7	 o     7	       by T| Q2      
 y U T	           
 y U T	           p y Uw        y U} T0      7	      
 z U0T0      
 'z U0T0 $      Dz U T0 +     7	 5     7	  ,            z 9  :      3     7	 >     7	   M       @z  :z       C     7	 M     7	 c     7	 p     
 U~ T	       {  e:            	  e:w2  8  4  cv e:<=  }  q  8  g:|   sp g:82      ax g:1  `  T  $  g:82        g:1  g  e  -  :   k:&      o  l:  	    ey  #6z  G  ?  v;  p:|       k  q:32      
B| 	9  w:               | 9  :           7	 '     7	  
| 	9  #   `            | 9  #  B  @   0.  } \:  :  j  f       7	      7	      o T~ Qv   z     7	      7	      /      7	      7	 ƥ     
 q} T  ѥ     7	      
      7	      7	 E     7	 P     7	 o     7	      7	      7	       ~ T Q2 ʦ     7	 ٦     7	      
 5~ T       7	      7	 7     7	 K     7	 _      ~ TQ	/      j     7	      7	      7	       ~ T} Q2 ȧ     V ~ Uw  ا       U}       7	 G     7	 Q     7	 g     7	                 9  :      '     7	 2     7	   =       -  g:       3     7	 =     7	 S     7	      
 U~ T	         ::            , 	  ::w2      cv ::<=  0  (  8  <:|   sp <:82      ax <:1      $  <:82  J  F    <:1       /  u   @:&      ey  #6z         #Yr  i  _  v;  E:-2      
 	9  K:   
 	9  #   
. 	9  
#        7	      7	      
 ` T|       7	 Ы     
  U	@      ׫     7	      7	      7	 E     7	 X     7	 h       T| Q2 p     V      }       ! U| T0      5 U|       7	      	 Z T~  ¬     7	 լ     7	               9  ]:  A  ?       7	      7	   G       .  <:  g  e   =     7	 G     7	 ]     7	      
 U} T	       ˫  :     N      u 	  :w2      cv :<=      8  !:|   sp !:82  a  [  ax !:1      $  !:82  @  <    !:1      /     %:&      v;  &:|       k  ':32  ,  (               F 9  -:  d  b    0   \:  3:      \     7	      7	      o T| Qv        7	      7	      /      7	 (     7	 3     
  T~  >     7	 b     
  U	@      i     7	 s     7	      7	      7	 ߯     7	      7	      7	 (       Tv Q2 0      :     7	      7	               9  5:           7	      7	          /  !:,            7	      7	 î     7	 ΰ     
 U} T	          :а     6       	   :w2      cv  :<=  Z  J  8  :|   sp :82      ax :1  f  Z  $  :82        :1  m  k  0     :&      D  :|       J  	:|   2  ,  v;  :|       k  :32      x              9  :       0   \:  :           7	      7	      o T~ Qv   @     7	 b     7	 q     7	       P T} Q2      7	      7	 ±     7	 ұ       Tv Q2 ݱ     7	      7	      /      7	      7	 )     
  Tv  4     7	 X     
  U	      _     7	 i     7	      7	      7	 Ͳ     7	      7	      7	 5     7	 H     7	 X       T| Q2 g      ̉ T} Q q     7	 ų     7	  x            , 9  :  W  U       7	      7	          P0  :U  }  {        7	      7	      7	      
 U~ T	1       y  9x     N       	  9w2      cv 9<=      8  9|   sp 982  w  q  ax 91      $  982  V  R    91      "  0   9&      v;  9|       k  932  B  >  y              9  9  z  x   "   \:  9      lz     7	 z     7	 z     o T| Qv   x     7	 y     7	 y     / )y     7	 8y     7	 Cy     
 d T~  Ny     7	 ry     
  U	z      yy     7	 y     7	 y     7	 y     7	 y     7	 z     7	 (z     7	 8z       Tv Q2 @z     u Jz     7	 z     7	  y            u 9  9      y     7	 y     7	   x       "  9        x     7	 x     7	 x     7	 z     
 U} T	       -  9p     ,       	  9w2  '  #  cv 9<=  h  `  8  9|   sp 982      ax 91      $  982    ~    91       {  e   9&        "Yr  :  0  3  "-2      v;  9-2      
 	9  9   i            C 9  "  v  t  p     7	 {     7	       7	      	 g T0      7	      	      7	      7	      
  T|  )     7	 I     
 ߏ U	      P     7	 Z     7	      7	      7	      7	       = T| Q2      
 b U~ T	           
  U~ T	      	       U|       
  U0T0      
 א U0T0 (       U~ T0 ;       U| T0 J     % U|  Q     7	 \     	 J T~  f     7	 u     7	  
x 	9  9           z  9            7	      7	      7	      
 U} T	       0  9     ,       	  9w2      cv 9<=      8  9|   sp 982  e  c  ax 91      $  982        91  q  o  `{  6   9&        "Yr      3  "-2  P  H  v;  9-2      
 	9  9   
 	9  "         7	 
     	 8 T0      7	 *     	 4     7	 C     7	 N     
  T|  Y     7	 y     
  U	           7	      7	      7	      7	       7	        T| Q2 "     
 3 U~ T	      1     
 X U~ T	      9      p U|  E     
  U0T0 N     
  U0T0 X      Ŕ U~ T0 k       U| T0 z      U|       7	      	  T~       7	      7	              { 9  9           7	      7	          0{  9  8  6        7	      7	      7	      
 U} T	       )H  s9           > 	  s9w2  _  [  cv s9<=      8  u9|   sp u982  2  ,  ax u91    {  $  u982        u91  d  b  {     y9&      3  "-2      v;  }9|   '  #  k  ~932  a  ]                9  9       {  o \:  9      	     7	 _     7	 m     o T| Qv   7     7	 A     	  T0 K     7	 V     	  T|  `     7	 u     7	 }     /      7	      7	      
  T       7	      
 = U	0           7	      7	 %     7	 0     7	 O     7	 u     7	      7	        Tv Q2      
 ژ U~ T	           
  U~ T	             Uv       
 3 U0T0      
 O U0T0       l U~ T0      7	 =     7	              ̙ 9  9           7	 	     7	          {  u9            7	      7	      7	 ~     
 U} T	       I  R9             	  R9w2  F  B  cv R9<=      8  T9|   sp T982      ax T91  n  b  $  T982        T91  K  I  x  ؝   X9&      3  "-2      v;  \9|     
  k  ]932  H  D  '             m 9  c9    ~   x   \:  l9      9     7	      7	      o T| Qv   g     7	 q     	  T0 {     7	      	 	 T|       7	      7	      /      7	      7	      
 b T       7	      
  U	           7	      7	 U     7	 `     7	      7	      7	      7	        Tv Q2      
 + U~ T	           
 P U~ T	            h Uv       
  U0T0      
  U0T0        U~ T0      7	 m     7	  '             9  n9      .     7	 9     7	   -       x  T9F       #     7	 -     7	 C     7	      
 U} T	         29            	  29w2  -  )  cv 29<=  n  f  8  49|   sp 4982      ax 491       $  4982        491      01  ̠   89&  *  (  ret "|   Q  M  v;  <9-2      
 	9  B9   
 	9  "   s     7	      7	      
 ֟ T|       7	      
  U	      Ǵ     7	 Ѵ     7	      7	 1     7	 D     7	 T      ` T| Q2 \      u       U	E           7	      	  T|       7	      7	               9  M9           7	      7	   7        1  49:       -     7	 7     7	 M     7	 ɵ     
 U} T	       [  9е     N      ̤ 	  9w2  :  6  cv 9<=    s  8  9|   sp 982      ax 91  b  V  $  982        91  ?  =  1     9&  w  u  v;  9|       k  932      Ҷ              9  %9       1   \:  +9  8  4       7	      7	      o T| Qv   7     7	 L     7	 T     / i     7	 x     7	      
 I T~       7	      
 u U	0           7	 ö     7	      7	      7	 /     7	 U     7	 h     7	 x       Tv Q2            7	 ݷ     7	  Ҷ            Z 9  -9  p  n  ٶ     7	      7	          `1  9            7	      7	      7	      
 U} T	       t  8           r 	  8w2      cv 8<=      8  8|   sp 882      ax 81      $  882  o  k    81      p|     8&        y"|   #    3  {"-2  x  p  v;  8|       k  832  )  %                9  8  a  _   |  [ 	\:  9       7	 G     7	 U     o T~ Q|        7	      	  T0      7	      	  T|       7	 %     7	 -     / B     7	 Q     7	 \     
  T|  g     7	      
 ) U	           7	      7	      7	      7	      7	 %     7	 8     7	 H       Tv Q2 Z     
 Ƨ U T	      i     
  U T	      q       Uv         Uv        3 Uv        K Uv       
 g U0T0      
  U0T0        U T0      7	 %     7	                9  9           7	      7	          @|  8)            7	      7	      7	 f     
 U} T	       X  8@	           Ů 	  8w2      cv 8<=      8  8|   sp 882      ax 81      $  882        81  2 0 y     8&  p h o  8    3  d"-2    ey  e"6z  w m v;  8|     k  832  * $ 
 	9  8   p
             ު 9  8  u s   z  1 \:  8         7	      7	      o T~ Qv   	     7	 	     	 U T0 	     7	 	     	 z T}  	     7	 	     7	 	     / 
     7	 
     7	 !
     
 ӫ T  ,
     7	 P
     
 W
     7	 a
     7	 
     7	 
     7	 
     7	 
     7	      7	       g TQ2 0     7	 D     7	 Q     
  T \     7	      7	      7	      7	        TQ	/           7	       7	      7	 #      : Tv Q2 8      R U  C     V j U  S       U|  e     
  U0T0 n     
  U0T0 y      ح Uw T0      7	      7	      f
 U	       p
            S 9  8    w
     7	 
     7	   m	       y  8|     c	     7	 m	     7	 	     7	      
 U~ T	       \  8      K      v 	  8w2  "  cv 8<=  c [ 8  8|   sp 882    ax 81  #  $  882      81  ^ R }     8&    
  8L  3 / }B  8L  q m 3  Q"-2    v;  8|     k  832  b ^ Y              9  8      ~  q \:  8    !     7	 I"     7	 W"     o T~ Q|        7	      	  T0      7	      	  T}       7	      7	      /      7	      7	 
     
  T}       7	 9     
 ? U	H      @     7	 J     7	      7	      7	      7	      7	      7	          Tv Q2       7	 =      7	 L      7	 ^      	   T} Q0R2 z      7	       7	       7	       	 J T| Q} R2       
 o U T	            
  U T	              Uv  	!      Ĳ Uv  $!      ܲ Uv  /!       U}  C!       Uv  P!      & U a!     
 B U0T0 j!     
 ^ U0T0 v!      } UT0 }!     7	 !     7	 !     ) "     7	 ,"     7	  Y             9  8    `     7	 k     7	   M       }  8-   	 	  C     7	 M     7	 c     7	 k"     
 U} T	        4|  L8p"     K      - 	  L8w2  G	 C	 cv L8<=  	 	 8  N8|   sp N882  	 	 ax N81  H
 6
 $  N882      N81   w p~  v   R8&    
  S8L  X T }B  T8L    3  ="-2    v;  X8|   r b k  Y832  !  #             ϵ 9  _8  ] [  ~     A"|     &       Us  &       Us  &      5 Us  &      M Us  &      e Us  &      } Us  '       ~   \:  {8    $&     7	 '     7	 '     o TQ~   "     7	 "     	  T0 "     7	 #     	 ) T}  #     7	 %#     7	 -#     / =#     7	 Y#     7	 d#     
  T}  p#     7	 #     
  U	      #     7	 #     7	 #     7	 #     7	 $     7	 ?$     7	 S$     7	 c$      & Ts Q2 $     7	 $     7	 $     7	 $     	 o T} Q0R2 $     7	 %     7	 %     7	 &%     	  T| Q} R2 =%     
 ޸ U T	      L%     
  U T	      n%     5  Us  %      3 Us  %      K Us  %      c U}  %      { Us  %       U|  %     
  U0T0 %     
 ˹ U0T0 %       UT0 %     7	 ]&     7	 &       Us  '      4 Us  %'     ) 2'      [ U V'     7	 l'     7	  #             9  }8   
 #     7	 #     7	   "       @~  N8  2 0  "     7	 "     7	 "     7	 '     
 U} T	        O  +8'     9      E 	  +8w2  Y U cv +8<=    8  -8|   sp -882  , & ax -81   u $  -882  5 1   -81    `     18&    3  ."-2     v;  58|   h \ k  6832    (             \ 9  <8  ( &  P*            +   1"|   P L X*       U  d*       U  x*      μ U  *       U  *       U  *       U  *      U     v 	\:  E8  *     7	 *     7	 *     o T| Q}   '(     7	 1(     	  T0 ;(     7	 F(     	  T|  P(     7	 e(     7	 m(     / (     7	 (     7	 (     
  T  (     7	 (     
 D U	      (     7	 (     7	 )     7	  )     7	 ?)     7	 e)     7	 x)     7	 )       T} Q2 )     
  U~ T	      )     
  U~ T	      )     5  U  )     
 : U0T0 )     
 V U0T0 )      s U~ T0 )     7	 5*     7	  (            ӿ 9  G8    (     7	 (     7	   '       0  -8     '     7	 '     7	 (     7	 *     
 U} T	         7p            	  7w2    cv 7<=    8  7|   sp 782    ax 71    $  782      71     }     7&    3  "-2  ? 7 v;  8|     k  832                 t 9  	8     P}   \:  8  9 5      7	      7	      o T| Qv        7	      	  T0      7	      	  T|        7	      7	      / 2     7	 A     7	 L     
 i T  W     7	 w     
  U	      ~     7	      7	      7	      7	      7	      7	 (     7	 8       Tv Q2 J     
 2 U~ T	      Y     
 W U~ T	      a      o Uv  m     
  U0T0 v     
  U0T0        U~ T0      7	      7	              $ 9  8  q o      7	      7	          |  7M          7	      7	      7	      
 U} T	       f  7     N       	  7w2    cv 7<=    8  7|   sp 782    ax 71    $  782  p l   71    4  (   7&    v;  7|   "  k  732  \ X               9  7     @4   \:  7    \     7	      7	      o T| Qv        7	      7	      /      7	 (     7	 3     
 \ T~  >     7	 b     
  U	      i     7	 s     7	      7	      7	      7	      7	      7	 (        Tv Q2 0     B :     7	      7	              m 9  7         7	      7	          3  7          7	      7	 ÿ     7	      
 U} T	       H  7     N      ( 	  7w2  A = cv 7<=   z 8  7|   sp 782    ax 71  i ] $  782      71  F D 4  q   7&  ~ | v;  7|     k  732                  9  7     4  L \:  7  ? ;      7	      7	      o T| Qv   7     7	 L     7	 T     / i     7	 x     7	      
  T~       7	      
  U	            7	      7	      7	      7	 /     7	 U     7	 h     7	 x      I Tv Q2      N      7	      7	               9  7  w u      7	      7	          4  7          7	      7	      7	      
 U} T	       "[  7      N      q 	  7w2    cv 7<=  	  8  7|   sp 782    ax 71    $  782  v  r    71      p5     7&  !   v;  7|   (! $! k  732  b! ^! "             B 9  7  ! !  5   \:  7  ! !      7	 O     7	 ]     o T| Qv        7	      7	      /      7	      7	      
  T~       7	      
  U	X      	     7	      7	 U     7	 `     7	      7	      7	      7	        Tv Q2      Z      7	 -     7	  "             9  7  ! ! )     7	 4     7	   M       @5  7(   " "  C     7	 M     7	 c     7	 n     
 U} T	       Ϗ  7p            	  7w2  G" C" cv 7<=  " " 8  7|   sp 782  G# A# ax 71  # # $  782  *$ "$   71  $ $  6     7&  $ $ T  7	b  % $ }  7	b  [% S% v;  7|   % % k  732  % % 9              9  7  -& +&  P6   \:  7  U& Q&      7	      7	      o Tv Q|        7	      7	      7	 #     	 Q T} Q0R2 5     7	 Q     7	 s     7	      7	      	  Tv Q0R2      7	      7	      /      7	      7	      
   T}       7	      
 , U	ȉ            7	 *     7	 e     7	 p     7	      7	      7	      7	      7	      7	 =     7	 P     7	 `       T| Q2 p     f  TQ~  z     7	      7	  9            X 9  7  & & @     7	 K     7	          5  7  & &       7	      7	      7	      
 U~ T	         k7            	  k7w2  & & cv k7<=  ' ' 8  m7|   sp m782  ' ' ax m71  ( ' $  m782  ( (   m71  	) ) 6     q7&  A) ?) no r7|   l) d) v;  t7|   ) ) k  u732  * * d              9  {7  >* <*   7  K \:  7  f* b* U     7	      7	      o T} Qv        7	      7	      7	        Tv Q2      7	      7	      /      7	 
     7	      
  T        7	 D     
  U	       K     7	 U     7	      7	      7	      7	      7	      7	      7	         T| Q2 *     r  Tv  4     7	      7	  d             9  7  * * k     7	 v     7	   =       6  m7:  * *  3     7	 =     7	 R     7	      
 U~ T	H       ^j  N7           B 	  N7w2  * * cv N7<=  0+ $+ 8  P7|   sp P782  + + ax P71  , , $  P782  , ,   P71  - - 7     T7&  R- P- 
  U7	b  }- u- v;  W7|   - - k  X732  . . '              9  ^7  O. M.  7   \:  d7  w. s.      7	 g     7	 u     o Tv Q|   ?     7	 a     7	 p     7	      	 N Tv Q0R2      7	      7	      /      7	      7	      
  T       7	      
  U	x           7	      7	 U     7	 `     7	 }     7	      7	      7	      7	       X T| Q2      ~ p T}       7	 E     7	  '             9  f7  . . .     7	 9     7	          P7  P7  . .       7	      7	      7	      
 U~ T	S       U  -7            	  -7w2  . . cv -7<=  E/ 5/ 8  /7|   sp /782  / / ax /71  %0 0 $  /782  0 0   /71  1 1 08  M   37&  <1 :1   47	b  e1 _1   !Yr  1 1 v;  87-2  22 *2              9  >7  2 2      7	      7	       7	      7	 9     7	 H     7	 Z     	  Tv Q0R2 o     7	 ~     7	      
  T}       7	      
 ? U	Ȋ           7	      7	      7	       7	 O     7	 u     7	      7	        T} Q2        Tv         Uv T0        Uv       7	      	 % T}       7	      7	      7	              x 9  I7  2 2           8  /7  2 2       7	      7	      7	 <     
 U} T	`       )?  7@     N      3 	  7w2  3 2 cv 7<=  H3 <3 8  7|   sp 782  3 3 ax 71  +4 4 $  782  4 4   71  5 5 8  |   7&  @5 >5 v;  7|   g5 c5 k  732  5 5 B              9   7  5 5  8  W \:  &7  6 5      7	 o     7	 }     o T| Qv        7	      7	      /      7	      7	      
  T~       7	 "     
  U	      )     7	 3     7	 u     7	      7	      7	      7	      7	       T Tv Q2            7	 M     7	  B             9  (7  96 76 I     7	 T     7	   m       p8  7  _6 ]6  c     7	 m     7	      7	      
 U} T	       L  6     N      | 	  6w2  6 6 cv 6<=  6 6 8  6|   sp 682  Y7 S7 ax 61  7 7 $  682  88 48   61  8 8 P9     6&  8 8 v;  6|   8 8 k  632  $9  9              M 9  7  \9 Z9  9   \:  7  9 9 l     7	      7	      o T| Qv        7	      7	      / )     7	 8     7	 C     
  T~  N     7	 r     
 % U	`      y     7	      7	      7	      7	      7	      7	 (     7	 8       Tv Q2 @      J     7	      7	              
 9  7  9 9      7	      7	           9  63  9 9       7	      7	      7	      
 U} T	       ϛ  6     N       	  6w2  	: : cv 6<=  N: B: 8  6|   sp 682  : : ax 61  1; %; $  682  ; ;   61  < <  :     6&  F< D< v;  6|   m< i< k  632  < <               9  6  < <  0:   \:  6  = =      7	      7	      o T| Qv   G     7	 \     7	 d     / y     7	      7	      
 B T~       7	      
 n U	           7	      7	      7	       7	 ?     7	 e     7	 x     7	        Tv Q2            7	      7	              S 9  6  ?= ==      7	      7	          9  6|  e= c=       7	      7	 #     7	 .     
 U} T	       q  60     N       	  6w2  = = cv 6<=  = = 8  6|   sp 682  _> Y> ax 61  > > $  682  >? :?   61  ? ? :  W   6&  ? ? v;  6|   ? ? k  632  *@ &@ 2              9  6  b@ `@  :  2 \:  6  @ @      7	 _     7	 m     o T| Qv        7	      7	      /      7	      7	      
  T~       7	      
  U	            7	 #     7	 e     7	 p     7	      7	      7	      7	       / Tv Q2            7	 =     7	  2             9  6  @ @ 9     7	 D     7	   ]       :  6  @ @  S     7	 ]     7	 s     7	 ~     
 U} T	       +o  6 +            	  6w2  A A cv 6<=  PA HA 8  6|   sp 682  A A ax 61  A A $  682  UB QB   61  B B       6&  B B hv !O2  C C sv !-2  oC kC 
  !s  C C 3  !-2  C C v;  6-2  8D 0D 
M 	9  6   P   _p !+  D D ,     7	 ,      T<  
 _p !+   l -         !
  D D z E E f -            * 9E 1E .      T    j+     7	 t+     	 . T0 ~+     7	 +     	 +     7	 +     7	 +     
 z T~  +     7	 +     
  U	@      +     7	 +     7	 7,     7	 ],     7	 p,     7	 ,       T~ Q2 ,     
 ) U} T	      ,     
 N U} T	      ,      f U~  ,     7	 ,       T ,     
  U0T0 ,     
  U0T0 ,       U} T0  -     7	 -     	  T~  -     7	 %-     7	 H-     N 9 U~  `-     ) Q U~  m-      i U~  w-       T0 -     	  U -     7	 -     [  TQRX$Y  -     B  U~  -     Z  U~  -     7	   ,            a 9  6  E E ,     7	 ,     7	   -+         6  E E  #+     7	 -+     7	 C+     7	 .     
 U} T	         w6     N       	  w6w2  E E cv w6<=  ,F  F 8  y6|   sp y682  F F ax y61  G G $  y682  G G   y61  G G p<  e   }6&  $H "H v;  ~6|   KH GH k  632  H H               9  6  H H  <  @ \:  6  H H \     7	      7	      o T| Qv        7	      7	      /      7	 (     7	 3     
  T~  >     7	 b     
  U	      i     7	 s     7	      7	      7	      7	      7	      7	 (      = Tv Q2 0      :     7	      7	               9  6  I I      7	      7	          @<  y6  CI AI       7	      7	      7	      
 U} T	       /  \6     N      e 	  \6w2  jI fI cv \6<=  I I 8  ^6|   sp ^682  =J 7J ax ^61  J J $  ^682  K K   ^61  oK mK `;     b6&  K K v;  c6|   K K k  d632  L L              6 9  j6  @L >L  ;   \:  p6  hL dL \     7	      7	      o T| Qv        7	      7	      /      7	 (     7	 3     
  T~  >     7	 b     
  U	P      i     7	 s     7	      7	      7	      7	      7	      7	 (       Tv Q2 0      :     7	      7	               9  r6  L L      7	      7	          0;  ^6  L L       7	      7	      7	      
 U} T	       @O  ?6P            	  ?6w2  L L cv ?6<=  2M &M 8  A6|   sp A682  M M ax A61  N 	N $  A682  N N   A61  O O @-  h   E6&  TO RO D  F6|   O wO v;  H6|   O O k  I632  P P               9  O6  QP OP  p-   \:  U6  yP uP      7	      7	      o T} Qv        7	      7	      7	        + Tv Q2 	     7	      7	 &     / ;     7	 J     7	 U     
  T  `     7	      
  U	Ѓ           7	      7	 գ     7	      7	      7	      7	 =     7	 P     7	 `      5 T| Q2 j     $ M Tv  t     7	 Ť     7	               9  W6  P P      7	      7	   }       -  A6  P P  s     7	 }     7	      7	      
 U~ T	       ?  $6     N      h 	  $6w2  P P cv $6<=  CQ 7Q 8  &6|   sp &682  Q Q ax &61  &R R $  &682  R R   &61  S S  =     *6&  ;S 9S v;  +6|   bS ^S k  ,632  S S              9 9  26  S S  P=   \:  86  S S      7	      7	      o T| Qv   7     7	 L     7	 T     / i     7	 x     7	      
  T~       7	      
  U	0           7	      7	      7	      7	 /     7	 U     7	 h     7	 x       Tv Q2            7	      7	               9  :6  4T 2T      7	      7	          <  &6  ZT XT       7	      7	      7	      
 U} T	         	6      N       	  	6w2  T }T cv 	6<=  T T 8  6|   sp 682  TU NU ax 61  U U $  682  3V /V   61  V V =      6&  V V v;  6|   V V k  632  W W "              9  6  WW UW   >   \:  6  W {W      7	 O     7	 ]     o T| Qv        7	      7	      /      7	      7	      
 .  T~       7	      
 Z  U	      	     7	      7	 U     7	 `     7	      7	      7	      7	         Tv Q2            7	 -     7	  "            ? 9  6  W W )     7	 4     7	   M       =  6h  W W  C     7	 M     7	 c     7	 n     
 U} T	       }  5p     ,       	  5w2  X  X cv 5<=  MX =X 8  5|   sp 582   Y X ax 51  -Y #Y $  582  Y Y   51  !Z Z >  -   5&  YZ WZ T  5	b  Z |Z }  5	b  Z Z   Z!Yr  $[ [ v;  5-2  [ [              9  5  [ [      7	 "     7	       7	      7	      7	 #     	 X T} Q0R2 3     7	 O     7	 q     7	      7	      	  Tv Q0R2      7	      7	      
  T       7	      
  U	Ѝ           7	      7	 G     7	 `     7	      7	      7	      7	        T Q2      ,  T} Qv         Uv T0       Uv  	     7	      	  T}       7	 5     7	 W     7	 u     7	  &     
       X 9  6  "\  \          P>  5  H\ F\       7	      7	      7	      
 U~ T	       }  5     <      E	 	  5w2  o\ k\ cv 5<=  \ \ 8  5|   sp 582  >] <] ax 51  k] a] $  582  ] ]   51  _^ ]^ >     5&  ^ ^ no 5|   ^ ^   L!Yr  _ 	_ v;  5-2  _ _              9  5  _ _      7	      7	  	     7	 +     7	 :     7	 J      V Tv Q2 ^     7	 m     7	 x     
  T}       7	      
  U	            7	      7	      7	      7	 (     7	 8       T} Q2 B     8 * Tv  O      G Uv T0 ^     [ Uv  e     7	 p     	  T}  z     7	      7	      7	               9  5  ` `          >  5  7` 5`       7	      7	      7	      
 U~ T	H       3  5     <       	  5w2  ^` Z` cv 5<=  ` ` 8  5|   sp 582  -a +a ax 51  Za Pa $  582  a a   51  Nb Lb `?  )   5&  b b 
  5	b  b b   ?!Yr  c b v;  5-2  |c tc             
 9  5  c c      7	      7	  I     7	 k     7	 z     7	      	 
 Tv Q0R2      7	      7	      
 	 T}       7	      
 5 U	p           7	      7	 7     7	 ]     7	 p     7	        T} Q2      D  Tv         Uv T0       Uv       7	      	  T}       7	      7	      7	              T 9  5   d c          0?  5}  &d $d       7	      7	      7	      
 U~ T	S         5      N       	  5w2  Md Id cv 5<=  d d 8  5|   sp 582   e e ax 51  ue ie $  582  e e   51  Rf Pf @2  X   5&  f f v;  5|   f f k  532  f f "              9  5  #g !g  p2  3 \:  5  Kg Gg      7	 O     7	 ]     o T| Qv        7	      7	      /      7	 ȸ     7	 Ӹ     
  T~  ޸     7	      
  U	x      	     7	      7	 U     7	 `     7	      7	      7	      7	 ȹ      0 Tv Q2 й      ڹ     7	 -     7	  "             9  5  g g )     7	 4     7	   M       2  5  g g  C     7	 M     7	 c     7	 n     
 U} T	       Va  g5             	  g5w2  g g cv g5<=  h 	h 8  i5|   sp i582  rh ph ax i51  h h $  i582  Bi >i   i51  i i ?  c   m5&  i i   )!s  i i v;  q5-2  _j Wj             C 9  w5  j j      7	      7	       7	      7	      
 u T|       7	      
  U	           7	      7	      7	 A     7	 T     7	 d       T| Q2 l     P v      # T0      7	      	 H T|       7	      7	  
v 	9  5    G       ?  i5  j j  =     7	 G     7	 ]     7	      
 U} T	       P  H5            	  H5w2  
k k cv H5<=  Kk Ck 8  J5|   sp J582  k k ax J51  k k $  J582  |l xl   J51  l l 0@  <   N5&  m m   !s  2m *m v;  R5-2  m m              9  X5  m m      7	      7	  3     7	 J     7	 U     
 N T|  `     7	      
 z U	           7	      7	      7	      7	      7	        T| Q2      ] &       T0 0     7	 ;     	 ! T|  E     7	 U     7	  
O 	9  b5            @  J5x  n n       7	      7	      7	 y     
 U} T	       Ƨ  )5            	  )5w2  Dn @n cv )5<=  n }n 8  +5|   sp +582  n n ax +51  o 	o $  +582  o o   +51  	p p <     /5&  Ap ?p   !s  lp dp v;  35-2  p p              9  95  1q /q      7	      7	  3     7	 J     7	 U     
 ' T|  `     7	      
 S U	           7	      7	      7	      7	      7	        T| Q2       &       T0 0     7	 ;     	  T|  E     7	 U     7	  
( 	9  C5           ;  +5Q  Wq Uq       7	      7	      7	 y     
 U} T	       р  
5           s 	  
5w2  ~q zq cv 
5<=  q q 8  5|   sp 582   r r ax 51  Qr Cr $  582  r r   51  Cs As @     5&  {s ys   !s  s s v;  5-2  t t P             9  5  kt it W     7	 b     7	       7	      7	      
   T|       7	 0     
 , U	X      7     7	 A     7	      7	      7	      7	        T| Q2      i        T0      7	      	  T|       7	      7	  
 	9  $5           `@  5*  t t       7	      7	      7	 )     
 U} T	       -  4            L 	  4w2  t t cv 4<=  t t 8  4|   sp 482  Zu Xu ax 41  u }u $  482  *v &v   41  }v {v P3     4&  v v    s  v v v;  4-2  Gw ?w              9  4  w w      7	      7	       7	      7	      
  T|       7	 м     
  U	      ׼     7	      7	      7	 A     7	 T     7	 d      c T| Q2 l      v       T0      7	      	  T|       7	      7	  
 	9  5    G        3  4  w w  =     7	 G     7	 ]     7	 ɽ     
 U} T	         4p           %! 	  4w2  w w cv 4<=  3x +x 8  4|   sp 482  x x ax 41  x x $  482  dy `y   41  y y 2      4&  y y    s  z z v;  4-2  z yz @             9  4  z z G     7	 R     7	  Ӻ     7	      7	      
  T|        7	       
  U	      '     7	 1     7	 o     7	      7	      7	       <  T| Q2      ) ƻ      `  T0 л     7	 ۻ     	   T|       7	      7	  
  	9  4           2  4   { {       7	      7	      7	      
 U} T	       T  4н           # 	  4w2  ,{ ({ cv 4<=  m{ e{ 8  4|   sp 482  { { ax 41  { { $  482  | |   41  | | 3  y#   4&  )} '}    s  T} L} v;  4-2  } }             Y" 9  4  ~ ~      7	      7	  3     7	 J     7	 U     
 " T|  `     7	      
 " U	X           7	      7	 Ͼ     7	      7	      7	       # T| Q2       &      9# T0 0     7	 ;     	 ^# T|  E     7	 U     7	  
# 	9  4           3  4#  ?~ =~       7	      7	      7	 y     
 U} T	         40           & 	  4w2  f~ b~ cv 4<=  ~ ~ 8  4|   sp 482    ax 41  9 + $  482      41  + ) @  R&   4&  c a    s    v;  4-2                 2% 9  4  S Q      7	      7	       7	      7	      
 d% T|       7	      
 % U	           7	      7	 /     7	 Q     7	 d     7	 t      % T| Q2 |     u       & T0      7	      	 7& T|       7	      7	  
e& 	9  4    W       @  4&  y w  M     7	 W     7	 m     7	      
 U} T	       "I  s4z     N       * 	  s4w2    cv s4<=   ف 8  u4|   sp u482  s m ax u41  Ȃ  $  u482  R N   u41    `#  i)   y4&  ݃ ۃ v;  z4|      k  {432  > : {             ' 9  4  v t  #  D( \:  4    |     7	 }     7	 }     o T| Qv   G{     7	 \{     7	 d{     / y{     7	 {     7	 {     
 ( T~  {     7	 {     
 ( U	z      {     7	 {     7	 |     7	  |     7	 ?|     7	 e|     7	 x|     7	 |      A) Tv Q2 |      |     7	 |     7	  {            ) 9  4  ք Ԅ {     7	 {     7	   {       0#  u4)     {     7	 {     7	 #{     7	 .}     
 U} T	       A  X4     F      i- 	  X4w2  #  cv X4<=  h \ 8  Z4|   sp Z482    ax Z41  K ? $  Z482  Ն ц   Z41  ( & PA  ,   ^4&  ` ^ v;  _4     k  `432  և ҇              :+ 9  f4     A  + \:  l4  6 2      7	      7	      o T| Q~   G     7	 \     7	 d     / y     7	      7	      
 + T~       7	      
 , U	           7	      7	      7	       7	 ?     7	 e     7	 x     7	       , Tv Q2            7	      7	              , 9  n4  n l      7	      7	           A  Z4 -          7	      7	 #     7	 &     
 U} T	       y  940           B0 	  94w2    cv 94<=    8  ;4|   sp ;482  ] [ ax ;41    $  ;482  - )   ;41   ~ A  /   ?4&       s   ۊ v;  C4-2  J B              . 9  I4         7	      7	       7	      7	      
 . T|       7	      
 . U	8           7	      7	 /     7	 Q     7	 d     7	 t      Y/ T| Q2 |            }/ T0      7	      	 / T|       7	      7	  
/ 	9  S4    W       A  ;4/  ΋ ̋  M     7	 W     7	 m     7	      
 U} T	         4     N      3 	  4w2    cv 4<=  : . 8   4|   sp  482  Ȍ  ax  41    $   482       41    PB  2   $4&  2 0 v;  %4|   Y U k  &432                 \1 9  ,4  ˎ Ɏ  B  1 \:  24         7	      7	      o T| Qv   G     7	 \     7	 d     / y     7	      7	      
 2 T~       7	      
 42 U	           7	      7	      7	       7	 ?     7	 e     7	 x     7	       2 Tv Q2            7	      7	              3 9  44  + )      7	      7	           B   4B3  Q O       7	      7	 #     7	 .     
 U} T	       5g  40           `6 	  4w2  x t cv 4<=    8  4|   sp 482  G E ax 41  t j $  482      41  h f  C  5   	4L    V  4-2  ܑ ؑ v;  4&    0C  4 w@  4-2  P L A     7	 I     / S     7	 d     < 4 Tv Q~ R  k     7	       7	      7	      7	      	 :5 T~ Q0R2      7	 /      d5 Uv T1 7           7	       5 T Q2      7	  s            5 9  4    z     7	      7	   ]       B  46     S     7	 ]     7	 r     7	      
 U~ T	o         3     I      : 	  3w2  Ւ ђ cv 3<=    8  3|   sp 382    ax 31  ѓ Ǔ $  382  L D   31  Ŕ Ô C  F:   3L    fd 3|   h d url 3L      3L    k  3|   W U v;  3&  ~ z C  8 w@  3-2    c     7	 k     / u     7	      < 7 Tv Qw R~       7	  \     7	      7	      7	      	 N8 T~ Q0R2      7	      7	      7	       8 T~ Q2      7	 (     7	 J     7	 Y     7	 k     	 8 T~ Q0R2 |     7	      7	      7	      7	      	 >9 T Q0R2      7	      7	 )     7	 8     7	 H      9 Tv Q2 Y      9 UT~ Q       7	      7	       7	 (      7	 W      7	 p      7	       7	       7	       7	       7	      7	              : 9  3         7	      7	          `C  3:          7	      7	 2     7	 9     
 U~ T	А       k  3@     g      ? 	  3w2  = 9 cv 3<=   v 8  3|   sp 382   
 ax 31  9 / $  382      31  - +  D  >   3L  g c 7  3-2    url 3L      3L  E ? k  3|     v;  3&  ̚ Ț PD  < w@  3-2         7	      /      7	      < < Tv QR}       7	       7	      7	      7	      	 < T} Q0R2      7	 #     7	 ?     7	 a     7	 p     7	      	 P= T} Q0R2      7	      7	      7	      7	      	 = T} Q0R2      7	      7	 @     7	 O     7	 _      = Tv Q2       > T Q} Rv       7	       7	 z     7	      	 d> T~ Q0R2      7	      7	      7	      7	 -     7	 O     7	 o     7	      7	              ? 9  3  > <      7	      7	   m       C  3;?  d b  c     7	 m     7	      7	      
 U~ T	       s  3     
      <D 	  3w2    cv 3<=  Л ě 8  3|   sp 382  Z X ax 31   } $  382      31  { y D  C   3L    fh 3-2    url 3L  F >   3L    k  3|     v;  3&    
@ _p  +   D  <A w@  3-2  T P      7	 
     /      7	 '     < .A Tv QR}  .     7	  <            
        qA          7	 J     7	 Y     7	 k     	 A T} Q0R2 ~     7	      7	      7	      7	      7	      	 B T~ Q0R2      7	      7	 A     7	 P     7	 b     	 sB T Q0R2 r     7	      7	      7	      7	       B Tv Q2       C U	      T	`     Q} R~ X  g     7	      7	      7	      7	      7	 	     7	 =	     7	 _	     7	 w	     7	 	     7	  6            C 9  3    =     7	 H     7	          D  3C  ן ՟       7	      7	      7	 	     
 U~ T	        c  3	     y      EH 	  3w2    cv 3<=  C 7 8  3|   sp 382  ͠ ˠ ax 31    $  382  u m   31    PE  G   3L  ( $ .  3L  h b   3L    k  3|      v;  3&  ) % E  E w@  3-2  c _      7	      /      7	      < E Tv QR~       7	  ,
     7	 V
     7	 e
     7	 w
     	 F T~ Q0R2 
     7	 
     7	 
     7	 
     	 `F T~ Q0R2 
     7	 
     7	      7	 +     7	 =     	 F T~ Q0R2 M     7	 i     7	      7	      7	       G Tv Q2       %G U T~  '     7	 @     7	 o     7	      7	      7	      7	      7	      7	              G 9  3         7	      7	   	        E  3G     	     7	 	     7	 
     7	 9     
 U~ T	H       o|  p3@            I 	  p3w2    cv p3<=  ) ! 8  r3|   sp r382    ax r31    $  r382  0 ,   r31    E  %I 9  ~3         7	      7	   i       E  r3NI   ߥ  ^     7	 i     7	      7	             I U	       T	      Q	      R	           
 U} T	e
       @  `3             bK 	  `3w2    cv `3<=  I A 8  b3|   sp b382    ax b31  צ ͦ $  b382  P L   b31    b            J 9  k3  ۧ ٧ m     7	 y     7	   )       F  b3J          7	 )     7	 @     7	 Y      b           
 U} T	e
       F  2           W 	  2w2  ( $ cv 2<=  k a 8  2|   sp 282  ,  ax 21  .  $  282      21  Y W   V ř  2-2    a  2-2  ӭ ɭ q  2|   P B e  &    G
  1    >  F  | ^ [  N  ±  y  Yr    2    g W 3  	-2  -  X     (       )M 9    # ! _     7	 j     7	  
<M 	9        O i  !|   cls  *L  K G g   (6z    O   "-2    l  !|        R       JN kS  ! /y  y u       M U}       7	      	  N T0 '      N U}  1     7	 F     < TQ} R       0       sN n 3 46z     b      t                  N U}       7	      7	 ̃     	 N T}             7	 *     ) Tv Qv R1       7	      7	 Ā     7	      7	      7	       |O T} Q2      7	      	 O T0 #     7	 .     	 O T}  a     e O Uv  s     7	 ~     
 P T~       % P U~       	 2P U|       
 WP U} T	      ́     
 |P U} T	      Ӂ     7	      2 P Uv T| Q       P U|       7	      
 P U0T0      
 Q U0T0 *      #Q U} T1 U     7	 p     7	      
 aQ T	;     Q0      7	      	 Q T}       7	       Q T0 ؂     7	      7	      
 Q T	     Q0      7	      	 R T}  W     7	 i      ?R T~ Q	
           
 dR U} T	           
 R U} T	           7	 Ԅ     > R Uv T~ Q       7	       R Tv Q2      7	 *      S U} T0 1     7	 O     7	 j     7	 {     
 YS T	'     Q0      7	      	 ~S T}       7	      7	 ̅     J S a) ۅ     7	      	 S T}       W S U~       7	 "     7	 3     
 /T T	     Q0 =     7	 H     	 TT T}  S     7	 n     7	 y      T Tv       7	       T T~ Q2 ?     7	 I     7	      7	      ) T Tv Qv R1      7	      ) *U Tv Qv R1 ׇ     7	      ) ZU T| Q| R1      7	      ) U T| Q| R1 '     7	 :     ) U Tv Qv R1 O     7	 b     ) U T| Q| R1 w     7	      ) V Tv Qv R1      .V U|       f
 MV U	           f
 lV U	      ׈     f
 V U	8j           f
 U	P        =         2V  ض ֶ  3     7	 =     7	 S     7	 Ɉ     
 Uv T	       C  R2     ;      _ 	  R2w2    cv R2<=  B 8 8  T2|   sp T282  շ  ax T21    $  T282  ι ȹ   T21  4 2 p  ^ ř  Z2-2  t j y  \2-2    e  v&  S G G
  w1   ׻ >  xF  ~ j [  yN  i W O  z-2  B * y  {Yr  N > 2  |  	  3  }	-2    Ǎ            X 9    3 1 ΍     7	 ٍ     7	  
X 	9     Њ  Z i |   cls L  [ W g  6z    l |        N       Y kS  "y          ~Y U}       7	      	 Y T0       Y U}  ċ     7	 ׋     < TQ} R~   ،     0       Z n (6z                 (      7      RZ U}  A     7	 \     7	 g     	 Z T~        7     7	 J     ) Tv Qv R1  p     7	      7	      7	      	 Z T0      7	      	 ![ Tv       e 9[ Uv       7	 
     
 ^[ T       % v[ U  2     	 [ U}  I     
 [ U| T	      X     
 [ U| T	      _     7	 t     2 \ Uv T} Q0      \ U}       7	      
 E\ U0T0      
 a\ U0T0 ̊      ~\ U| T1      W \ U      7	      7	 1      \ T Q	
      p     
 \ U| T	           
 !] U| T	           7	      > Q] Uv T Q0      7	       {] Tv Q2 a     
 ] U0T0 j     
 ] U0T0 t     W ] U ~      ] U| T0      7	       ^ T Q2      7	      7	      f
 M^ U	           f
 l^ U	8j           ^ U}  +     f
 U	               @  T2^  A ?       7	      7	 2     7	      
 U| T	         22     *      2a 	  22w2  h d cv 22<=    8  42|   sp 4282  ; 5 ax 421    $  4282      421  [ Y   ` 	ř  :2-2  e  e&    
_ _p m+   l 0         mS`    z J F 5   *         T}         7	 0     7	 T     7	 g     7	 w      ` T| Q2      f
 U	8j                 42`          7	      7	      7	      
 U} T	[         1@           g 	  1w2    cv 1<=  < 2 8  1|   sp 182    ax 11  > . $  182      11  ^ \   g ř  1-2    
  1	b    uri 1-2  + # /  1-2    e  !&    P  "-2    key #-2    .len $  n  %b  b X p  b _p 2+         7	       T<     ,c _p O+       7	      [ T QRXDY0  
>c _p Q+   l (       0  Qc    z M I 5 @  *         Tv         7	      7	      7	      7	 &     	 c T} Q0R2 2     7	 P     7	      e 'd U|       
 Fd U	           7	      	 wd T	'     Q0 <     7	 N     d d Tv Q	v      U     7	 h     q d Tv Q~ R2 o     7	      d e Tv Q	x           7	      d 8e Tv Q (     7	      ~ ee U| T      7	      7	      	 e Tv QR2      7	       e T}       7	 C     [ f T QRX$Y      7	       1f Tv        Wf U| TRv  '     7	 7      f Tv Q2 G     7	 \     	 f T~ QR2 m     7	      f
 f U	8j           f
 f U	x           f
 U	0        }       P  1Bg     s     7	 }     7	      7	      
 g U} T	           
    1            k 	  1w2    cv 1<=  ? 5 8  1|   sp 182    ax 11    $  182      11    З  -k ř  1-2  + % څ  1-2  z t 7  1-2    e  &    I      
h _p +   
h _p +   l <       `  3i  N H z   5 p  *           l d         i  F @ z   5   *           u     7	      7	      7	      e i Uv  y     7	       i T}       7	       j T        Aj Uv T	      Qv       7	 (      pj Uv T0Q0 <     7	 d     7	      7	       j Tv Q2      f
 j U	P           f
 j U	(           f
 k U	           f
 U	8j        -         1Vk  : 8  #     7	 -     7	 B     7	      
 U~ T	       T  ~1     I      m 	  ~1w2  a ] cv ~1<=    8  1|   sp 182    ax 11  J > $  182      11  ) ' 0H  Em p  1-2  e _ v;  1-2    e  &    C     7	      7	       l Tv       7	      	 l Tv       7	      7	       m Tv Q2      7	 )     f
 U	8j                   m 9  1  W U      7	      7	           H  1m  } {       7	      7	      7	      
 U} T	e
         `10     I      Yp 	  `1w2    cv `1<=    8  b1|   sp b182  ^ \ ax b11    $  b182      b11  l j H  o p  f1-2    v;  h1-2    e  &  b ^      7	      7	       o Tv       7	      	 Bo Tv       7	 7     7	 G      yo Tv Q2 U     7	 y     f
 U	8j                   o 9  y1         7	      7	   W       pH  b1p     M     7	 W     7	 m     7	 m     
 U} T	e
       #  @10           s 	  @1w2    cv @1<=  *   8  B1|   sp B182    ax B11    $  B182  ^ V   B11    @  er ř  F1-2      H1-2  b \ e  &    v;  M1-2  . &      7	      7	      e q Uv        q Uv        q T0 %     7	 0     	 q Tv  :     7	 w     7	       r Tv Q2      7	      	 Ir T~ Q0R2 Ώ     f
 U	8j       B            r 9  [1    I     7	 T     7	   ]         B1r     S     7	 ]     7	 r     7	      
 U~ T	       a  1Џ     L      *v 	  1w2    cv 1<=    8  1|   sp 182    ax 11    $  182  f `   11      u ř  1-2      1-2  W Q   !1-2    e  &    E     7	 T     7	 o     7	      e _t Uv        |t Uv Q0      f
 t U	X      /      t Uv Q~  ?     7	 _     7	 q     	 t T~ Q0R2      7	      	 $u T} Q0R2      7	       Nu Tv Q2 ב     7	      	 }u T} Q0R2      f
 u U	8j           f
 U	(                 1u          7	      7	      7	       
 U~ T	       W  0           [x 	  0w2    cv 0<=    8  0|   sp 082  c ] ax 01    $  082  I C   01       w p  0-2    B  0|   %  e  &  v n %     7	 4     7	 V     7	 e     7	 u      jw Tv Q2      7	      7	       w T} Q2      7	 5     f
 w U	:
      A     f
 U	8j                 0x          7	      7	      7	 '     
 U~ T	/
       Ղ  0P     n      z 	  0w2    cv 0<=  < 4 8  0|   sp 082    ax 01    $  082      01      z p  0-2  ' # OD  0|   e ] e  &         7	      7	      7	      7	       y Tv Q2 L     7	 g     7	 w      y T} Q2      7	      f
 y U	`j           f
 U	8j        w       `  0Cz     m     7	 w     7	      7	      
 U~ T	V
         0           | 	  0w2  9 5 cv 0<=  z r 8  0|   sp 082    ax 01  3 ) $  082      01      | p  0-2  P J m  0-2    e  v&    
{ _p |+   l w         |{    z K G 5    *         T~    %     7	 4     7	 w     7	      7	       :| T}       7	      7	       q| Tv Q2 .     f
 U	8j               p  0|          7	      7	      7	 =     
 U~ T	j       ڝ  02            	  0w2    cv 0<=  ; 3 8  0|   sp 082    ax 01    $  082      01    p  ~ p  0-2    v;  0|   J F k  032    e  h&      V~ \:  0    3     7	 '4     7	 54     o Tv Q|   2     7	 3     7	 %3     7	 -3     / f3     7	 3     7	 3     7	 4     7	 4      ~ T| Q2 F4     f
 U	8j       3            < 9  0  0 . 3     7	 3     7	   2       @  0e  V T  2     7	 2     7	 2     7	 U4     
 U} T	e
       w  ~0`4           ] 	  ~0w2  } y cv ~0<=    8  0|   sp 082  #  ax 01  x l $  082      01  Y W    p  0-2    v;  0|     k  032    e  [&  A = @   \:  0  { w U5     7	 5     7	 6     o Tv Q|   4     7	 4     7	 4     7	 4     / 65     7	 5     7	 5     7	 5     7	 5       T| Q2 6     f
 U	8j       z5             9  0    5     7	 5     7	   4         0     4     7	 4     7	 4     7	 %6     
 U} T	e
       T  `0     I       	  `0w2     cv `0<=  C 9 8  b0|   sp b082    ax b01    $  b082  u q   b01    I   p  f0-2    v;  h0-2  ^ V e  J&         7	 *     7	 5      ~ Tv  ?     7	 J     	  Tv  T     7	      7	       ڃ Tv Q2      7	      f
 U	8j       \            H 9  y0    c     7	 n     7	          H  b0q          7	      7	      7	      
 U} T	e
       ,G  -0     K      5 	  -0w2  C ? cv -0<=   | 8  /0|   sp /082    ax /01    $  /082      /01      ~ p  30-2  / ) e  #&    
 _p *+   
 _p .+   
ʅ _p 2+   
܅ _p 6+   
 _p @+   l        p  .O    z   5   * 7 /       T|    l          *    z   5   *  
       T|    l          6  u q z   5    *         T|    l G       0  2r  P L z   5 @  *         T|    l o       p  @Ӈ  + ' z e a 5   *         T|    #     7	 (      e       Uv       7	       / Tv Q2      7	      7	      7	 6      G     7	 o     7	  e            È 9  [0    l     7	 w     7	          p  /0  * (       7	      7	      7	      
 U} T	e
       P  /     Y       	  /w2  Q M cv /<=    8  /|   sp /82    ax /1     $  /82      /1    J  Ӌ   /L  g a m  -2    v;  0-2  ;  /  e  &           7	 5     7	 D     7	 V     	  T~ Q0R2 `     7	 w       U0        U
       7	      7	        T  +     ~  Uv T	#      2     7	 <     	 : T0 F     7	 W     < k T Q~ Rv  a     7	 l     	  Tv  v     7	      7	      7	      f
 U	0       ~             9  (0         7	      7	          I  /A  4 2       7	      7	      7	      
 U} T	         / .     ]       	  /w2  [ W cv /<=    8  /|   sp /82    ax /1  p b $  /82   	   /1      Y p  /    ey  /6z  < ( ul     
 3  	-2    v;  /|   u m k  /32    
ˍ 	9  /   
ލ 	9  /   
 	9  /   T/              9    "    
/ 	9         \:  /  J F S1     7	 2     7	 2     o T Q|   .     7	 .     	  T0 .     7	 .     	 ˎ T}  .     7	 .     7	 .     / .     7	 .     7	 /     
 % Tw  /     7	 4/     
 Q U	      ;/     7	 E/     7	 /     7	 /     7	 /     7	 /     7	 /     7	 /      ʏ Tw Q2 0     7	 #0     7	 00     
  T ?0     7	 \0     7	 n0      / T1 0     
 T U~ T	      0     
 y U~ T	      0       Uw  0      ː Uw T	      Q	      R~  0       Uw T|  0     
 1     
  U0T0 1     
 / U0T0 1      L U~ T0 31     7	 1     7	 1      1     "  U|  72     f
  U	      E2     f
 ɑ U	       N2     
  U0T0 W2     
  U0T0 a2       U~ T0 o2     f
 = U	`      }2     f
 U	       T/             9  /    [/     7	 f/     7	   M.         /ǒ     C.     7	 M.     7	 c.     7	 )2     
 U~ T	       ~  T/2           ܙ 	  T/w2    cv T/<=    8  V/|   sp V/82  q o ax V/1    	$  V/82    V/1  	 	    V  Z/-2  	 	 k  \/|   	
 
    ]/[2  d
 X
   L  
 
 G   ؏  ,  E  !X  3 % 7  b    .len   3  	-2    v;  f/  %  '4     J        w@  /-2    .4     7	 64     / @4     7	 U4     <  T| Q	$     Rv  \4     7	   3     7	 3     7	 (3     	 A T0 23     7	 @3     	 3     
  U~ T	      3     
  U~ T	      3     /  Uv  3     ;  U T	      Q	      R~  3     G  U  3     S % U  4     
 A U0T0 4     
 ] U0T0 '4      ~ U~ T}  4     _ 4     7	 4     	  T QR2 5     7	 (5     7	 75     7	 G5        T} Q2 ^5     7	 p5     7	 5     7	 5     7	 5     7	 5     7	 5     7	 	6     7	 F6     G  U  W6     7	 s6     7	 6     7	 6     7	 6     7	 6     l 7     _ 7     G  U  57     7	 D7     7	 Q7     y * Tv Q0 g7     7	 7     7	 7     7	 7     7	 7     7	 7     y  Tv Q2 7     
  U0T0 8     
  U0T0 8      ݘ U~ T0 8     f
  U	      18     f
 U	
       q4            ] 9  /    x4     7	 4     7	   2       `  V/  4 2  2     7	 2     7	 2     7	 #8     
 @8     
 U} T	       m  /@8           b 	  /w2  [ W cv /<=    8  /|   sp /82    ax /1  *   $  /82      /1       url /	b    k  /|        /[2  G =   jL    G  k ؏    E  l!X  	  3  m	-2    v;  /   	 P   w@  I/-2    9     7	 9     / :     7	 :     <  T| Q	$     Rv   :     7	  8     7	 8     7	 8     7	 8     	  T} Q0R2 9     7	 9     	  T0 9     7	 $9     	 H9     
 ^ U T	      W9     
  U T	      `9       Uw  9     ; Ԝ U| T	      Q	      R  9     G  U|  9     S  U|  9     
   U0T0 9     
 < U0T0 9      T U  h:     _ u:     7	 :     7	 :     7	 :     7	 :       T} Q2 :     7	 ;     7	 !;     7	 9;     7	 N;     7	 w;     7	 ;     7	 ;     7	 ;     G 2 U|  ;     7	 <     7	 ,<     7	 E<     7	 u<     7	 <     l <     _ <     G  U|  <     7	 <     7	 <     y ܞ Tv Q0 =     7	 /=     7	 L=     7	 m=     7	 |=     7	 =     y : Tv Q2 =     
 V U0T0 =     
 r U0T0 =       U T0 =     f
 U	       (:             9  O/    /:     7	 ::     7	   m8         /     c8     7	 m8     7	 8     7	 =     
 U} T	       f  .             	  .w2     cv .<=  a Y 8  .|   sp .82    ax .1    $  .82      .1    pJ  C p  .  4 2             l 9  .  Y W      7	      7	  d     7	 {     7	      
  T|       7	      
 ʡ U	`           7	      7	      7	 !     7	 4     7	 D      ( Tv Q2 L      u     7	  L             9  /   } S     7	 ^     7	   '       @J  .          7	 '     7	 =     7	      
 U} T	e
       Zr  .=           F 	  .w2    cv .<=    8  .|   sp .82    ax .1     $  .82      .1  ( &    p  .4  f ^ doc .Vz    ul  0 z  f T 3  1	-2  2 ( v;  .|     k  .32    
; 	9  .   
N 	9  .   
a 	9  .   ?              9  Q  A ?  
 	9  U       \:  .  i e @     7	 _A     7	 mA     o T~ Q|   ;>     7	 E>     	  T0 O>     7	 Z>     	 ; T}  d>     7	 y>     7	 >     / >     7	 >     7	 >     
  Tw  >     7	 >     
  U	       >     7	 >     7	 5?     7	 @?     7	 _?     7	 ?     7	 ?     7	 ?      : Tw Q2 ?     7	 ?     7	 ?     
 n T ?     7	 @     7	 @       T1 9@     
 Ħ U T	      H@     
  U T	      }@       Uw  @      ! Uw T|  @      : Uw  @     
 V U0T0 @     
 r U0T0 @       U T0 @     7	 %A     7	 PA     "  U|  A     f
  U	      A     f
  U	h      A     f
  U	       A     
 : U0T0 A     
 V U0T0 A      s U T0 A     f
 U	`       ?            Ԩ 9  .    ?     7	 ?     7	   =         .     =     7	 =     7	 >     7	 ~A     
 U~ T	8         O.A     }       	  O.w2    cv O.<=  1 ' 8  Q.|   sp Q.82    ax Q.1    	$  Q.82    Q.1  P  H  p   doc U.Vz      k  V.|   j! d!    W.[2  ! !   L  6" 2" G  	!W  " ~" E  
!X  # # 3  	-2  k$ c$ v;  ^.4  $ $ 
 	9  d.   
 	9  i.   C     J       F w@  .-2  Y% U% C     7	 C     / C     7	 C     < 8 T| Q	B     Rv  C     7	  PB     7	 ZB     	 j T0 dB     7	 vB     	 B     7	 B     7	 B     
  T  B     7	 B     7	 B       T1 C     
  U~ T	      C     
 1 U~ T	      C      I U  EC      a U  [C      y U  dC     
  U0T0 mC     
  U0T0 C      Ҭ U~ T}  D     _ .D     7	 PD     7	 _D     7	 oD      # T} Q2 D     7	 D     7	 D     7	 D     7	 D     7	 E     7	 E     7	 1E     7	 nE       U  E     7	 E     7	 E     7	 E     7	 F     7	 %F     l 6F     _ >F       U  eF     7	 tF     7	 F     y M Tv Q0 F     7	 F     7	 F     7	 F     7	 G     7	 G     y  Tv Q2 2G     f
 ʮ U	`      @G     f
  U	      ]G     f
 U	        C            J 9  .  % % C     7	 C     7	   B       @  Q.s  % %  B     7	 B     7	 "B     7	 OG     
 U} T	       Y  -`G            	  -w2  % % cv -<=  & & 8  .|   sp .82  & ~& ax .1  & & 	$  .82    .1  *'  '   7 V  .-2  ' ' k  .|   ( (    .[2  s( g(   L  ( ( G  !W  ?) #) E  !X  l* ^* 7  b  + + .len   3  	-2  + + v;  .4  ^, R, H     J        w@  D.-2  , , H     7	 I     / I     7	  I     <  T| Q	B     Rv  'I     7	  G     7	 G     7	 H     	  T0 H     7	  H     	 qH     
 , U~ T	      H     
 Q U~ T	      H      i Uv  H       U  H       U  H     
  U0T0 H     
 Ѳ U0T0 H       U~ T}  I     _ I     7	 I     	 0 T QR2 I     7	 I     7	 J     7	 J      t T} Q2 .J     7	 @J     7	 YJ     7	 qJ     7	 J     7	 J     7	 J     7	 J     7	 K       U  'K     7	 CK     7	 \K     7	 uK     7	 K     7	 K     l K     _ K      g U  L     7	 L     7	 !L     y  Tv Q0 7L     7	 _L     7	 |L     7	 L     7	 L     7	 L     y  Tv Q2 L     f
  U	      L     f
 U	
       <I            | 9  J.  3- /- CI     7	 NI     7	   G         .  m- k-  G     7	 G     7	 G     7	 L     
 L     
 U} T	       S  - M     a       	  -w2  - - cv -<=  - - 8  -|   sp -82  6. 4. ax -1  c. Y. $  -82  . .   -1  J/ @/ p  = url -	b  / / k  -|   '0 !0    -[2  0 v0   L  0 0 G  !W  Q1 ;1 E  !X  B2 62 3  	-2  2 2 v;  -4  N3 B3   ѷ w@  --2  3 3 N     7	 N     / N     7	 N     < ÷ T| Q	B     Rv  N     7	  tM     7	 M     7	 M     7	 M     	  T} Q0R2 M     7	 M     	 > T0 M     7	 M     	 N     
 } U T	      N     
  U T	       N       Uw  EN      Ӹ U|  dN       U|  mN     
  U0T0 vN     
 # U0T0 N      ; U  O     _ %O     7	 NO     7	 pO     7	 O     7	 O       T} Q2 O     7	 O     7	 O     7	 O     7	 O     7	 'P     7	 <P     7	 QP     7	 P       U|  P     7	 P     7	 P     7	 P     7	 %Q     7	 EQ     l UQ     _ ]Q       U|  Q     7	 Q     7	 Q     y ú Tv Q0 Q     7	 Q     7	 Q     7	 R     7	 ,R     7	 <R     y ! Tv Q2 RR     f
 U	       N             9  -  4 
4 N     7	 N     7	   -M       @  -  24 04  #M     7	 -M     7	 BM     7	 aR     
 U} T	       zG  -            	  -w2  Y4 U4 cv -<=  4 4 8  -|   sp -82  4 4 ax -1  .5 5 $  -82  5 5   -1  56 36 J  ս p  -4  m6 k6 q              9  -  6 6 x      7	       7	        7	       7	 &      
 0 T|  1      7	 Q      
 \ U	      X      7	 b      7	       7	       7	       7	         Tv Q2        !     7	                9  -  6 6       7	       7	          J  -C  6 6       7	      7	      7	 9!     
 U} T	e
       c  \-pR           G 	  \-w2  7 7 cv \-<=  H7 >7 8  ^-|   sp ^-82  7 7 ax ^-1  7 7 $  ^-82  |8 t8   ^-1  8 8     str b-	b  _9 W9 res l:y  9 9 b  m-2  : 
: R&  n!g  c: Y: enc o/  : :   pYr  ; ; 3  q	-2  ; ; v;  l--2  s< k< < S      S            & 8 < < + < <  R     7	 S     7	 S     7	 %S     	 o T} Q0R2 /S     7	 9S     	  T0 CS     7	 NS     	  T}  `S     
  U} T	      oS     
  U} T	      S     
  Uv  S     	 2 U  S     	 J U  S      h U| Q  S     "  U0T| Qv  S      U  S     /  Uv  T     
  U0T0 T     
  U0T0 T       U} T0 )T      ) Uv T0 3T     7	 >T     	 N Tv  HT     7	 T     7	 T     	 T     
  U0T0 T     
  U0T0 T       U} T1 U     f
  U	g      U     7	 7U     7	 IU     	 % T| Q0R2 iU     
 A U0T0 rU     
 ] U0T0 |U      z U} T0 U     f
  U	      U     
  U0T0 U     
  U0T0 U       U} T1 U     f
  U	      U     
 ) U0T0 U     
 E U0T0 U     f
 d U	      U     7	 U     	 T| Q0R2  PT             9  -  = = WT     7	 bT     7	   R         ^-  B= @=  R     7	 R     7	 R     7	 `U     
 U} T	W       [k  6-]     o      8 	  6-w2  i= e= cv 6-<=  = = 8  8-|   sp 8-82  > 	> ax 8-1  <> .> $  8-82  > >   8-1  .? ,? ix 9-1  h? d? 
 _p 9-+      p  =-:y  ? ? v;  >--2  ? ? 
Z 	9  D-   
m 	9  I-   
 	9  a   ]     7	 ]     7	 ^     
  T}  ^     7	 1^     7	 C^       T1 \^       T0 f^     7	 q^     	  T}  {^     7	 ^     7	 ^     7	 ^     f
 e U	@u      ^     f
 U	u       ^             9  W-  [@ Y@ ^     7	 ^     7	   ]       P  8-  @ @  ]     7	 ]     7	 ]     7	 ^     
 U} T	e
       l  -^     o      ) 	  -w2  @ @ cv -<=  @ @ 8  -|   sp -82  JA HA ax -1  {A mA $  -82  B B   -1  mB kB ix -1  B B 
 _p -+     r p  -:y  B B v;  --2  <C 4C 
K 	9  -   
^ 	9  #-   
q 	9  R   S_     7	 j_     7	 u_     
  T}  _     7	 _     7	 _       T1 _       T0 _     7	 _     	  T}  _     7	 `     7	 )`     7	 D`     f
 V U	u      P`     f
 U	u       _             9  1-  C C _     7	 `     7	   _         -  C C  _     7	 _     7	 -_     7	 _`     
 U} T	e
       @d  , V     j       	  ,w2  C C cv ,<=  ,D  D 8  ,|   sp ,82  D D ax ,1  D D $  ,82  ^E VE   ,1  E E ix ,1  F F 
 _p ,+      7O  ,	b  SF OF r  ,	b  F F dtd 7:y  F F 3  8	-2  CG =G v;  ,-2  G G 
{ 	9  @   jV     7	 V     7	 V     7	 V     	  T| Q0R2 V     7	 V     7	 V     7	  W     	  Tv Q0R2 W     7	 W     	 1 T0 !W     7	 ,W     	 V Tv  >W     
 { Uv T	      MW     
  Uv T	      `W     <  U|  vW     0  U| T0 W       U| T0 W     
  U0T0 W     
 * U0T0 W      G Uv T0 W     7	 W     	 l T|  W     7	 W     7	 X     7	 'X     
  U0 0X     
  U0T0 :X       Uv T0 AX     7	 KX     7	  W            C 9  -  G G W     7	 W     7	   'V       `  ,l  H H  V     7	 'V     7	 <V     7	 jX     
 U~ T	       Q  ,@!     I       	  ,w2  ?H ;H cv ,<=  H xH 8  ,|   sp ,82  H H ax ,1  8I .I $  ,82  I I   ,1  .J ,J PK   p  ,-2  hJ dJ   ,-2  J J ns y  J J ons  y  BK <K v;  ,|   K K k  ,32  K K K  - 	\:  ,  "     7	 g#     7	 u#     o Tv Q   !     7	 !     7	 "     7	 +"     7	 3"     / Q"     I `"     7	 "     7	 "     7	 "     7	 #       Tv Q2 '#     7	 7#       Tv Q2 P#     I  "            I 9  ,  L L "     7	 "     7	   m!        K  ,r  )L 'L  c!     7	 m!     7	 !     7	 #     
 U~ T	         ,#     >      + 	  ,w2  PL LL cv ,<=  L L 8  ,|   sp ,82  M M ax ,1  LM BM $  ,82  M M   ,1  N N K  t p  ,-2  RN LN ns y  N N key Yr  N N v;  ,-2   O O #     7	 +$     	 :$     U  T	      F$     U P$       T0 Z$     7	 e$     	 @ Tv  o$     7	 $     7	 $      Tv Q2  w$             9  ,  ~O |O ~$     7	 $     7	   #       K  ,  O O  #     7	 #     7	 #     7	 $     
 U} T	e
       O  ,``     +       	  ,w2  O O cv ,<=  P P 8  ,|   sp ,82  mP kP ax ,1  P P $  ,82  Q Q   ,1  dQ bQ ix ,1  Q Q 
 _p ,+   @   p  ,-2  Q Q ns y  6R 4R   Yr  ]R YR v;  ,-2  R R `     7	 `     	 a       U} T0 a      U}  a     7	 %a     	  Tv  /a     7	 ga     7	 wa      Tv Q2  7a            = 9  ,  R R >a     7	 Ia     7	   `         ,f  S S  }`     7	 `     7	 `     7	 a     
 U} T	e
       #}  t,a     +      3 	  t,w2  FS BS cv t,<=  S S 8  v,|   sp v,82  S S ax v,1  T T $  v,82  T T   v,1  T T ix w,1  U U 
| _p w,+     | p  {,-2  ]U WU ns y  U U y>  Yr  U U v;  ,-2  V V a     7	 'b     	 4b       U} T0 Cb     # U}  Jb     7	 Ub     	 H Tv  _b     7	 b     7	 b      Tv Q2  gb             9  ,  tV rV nb     7	 yb     7	   a       p  v,  V V  a     7	 a     7	 a     7	 b     
 U} T	e
       WG  [,06            	  [,w2  V V cv [,<=  W V 8  ],|   sp ],82  gW aW ax ],1  W W $  ],82  JX FX   ],1  X X ix ^,1  X X 
  _p ^,+     1 p  b,-2  Y Y ns y  qY mY v;  g,|   Y Y k  h,32  Y Y    \:  m,  Z Z 7     7	 7     7	 7     o Tv Q|   6     7	 6     7	 6     7	 6     / 6     7	 u7     7	 7     7	 7     7	 7      Tv Q2  ?7            v 9  o,  WZ UZ F7     7	 Q7     7	   ]6         ],  }Z {Z  S6     7	 ]6     7	 s6     7	 7     
 U} T	e
       g  D,$             	  D,w2  Z Z cv D,<=  Z Z 8  F,|   sp F,82  F[ D[ ax F,1  u[ i[ $  F,82  \ [   F,1  T\ R\ PL   p  J,-2  \ \ ns y  \ \ 3%     7	 %     7	 %       Tv Q2 %     a  c%            K 9  V,  ] ] j%     7	 u%     7	   $        L  F,t  D] B]  $     7	 $     7	 %     7	 %     
 U} T	e
       {  ,%     `      } 	  ,w2  k] g] cv ,<=  ] ] 8  ,|   sp ,82  :^ 8^ ax ,1  g^ ]^ $  ,82  ^ ^   ,1  L_ D_ L     ,L  _ _ }  ,-2   ` _ 0k  ,-2  O` I` ns y  ` ` }B  Yr  3a )a I  Yr  a a v;  !,-2  b a 
 	9     A&     7	 k&     7	 z&     7	 &     	 [ T~ Q0R2 &     7	 &     7	 &     7	 &     I  U~ T0 &     I  U} T0 '     n  U0T| Q}  '     7	 '     	  T0 +'     7	 ?'     < 7 TQw R~  N'     K U|  _'     _ U}  f'     7	 q'     	  T~  {'     7	 '     7	 '     7	 (     7	 (     7	  '             9  ?,  b b '     7	 '     7	   %       L  ,4   c b  %     7	 %     7	 &     7	 0(     
 U~ T	       N  +0(            	  +w2  'c #c cv +<=  hc `c 8  +|   sp +82  c c ax +1   d d $  +82  d d   +1  d d M   p  +-2  $e  e Z  z  ie ce X$  6z  e e v;  +|   e e k  +32  f f 
 	9     )             9    bf `f  @M  ' \:  
,  f f 1)     7	 )     7	 )     o Tv Q|   (     7	 (      K T1 (     7	 (     7	 (     / )     {  Q}  )     7	 )     7	 )     7	 )     7	 )     7	  V)             9  ,  f f ])     7	 h)     7	   ](       L  +:  f f  S(     7	 ](     7	 s(     7	 )     
 U} T	e
       %^  +4            	  +w2  g g cv +<=  Pg Hg 8  +|   sp +82  g g ax +1  h g $  +82  h h   +1  i i pO  ; p  +-2  i i }  +-2  i i 0k  +-2  
j j ey  rz  nj fj }B  sYr  j j I  tYr  'k k ns uy  k k v;  +|   l l k  +32  l l 7             9    m m  O  g 	\:  +  6     7	 7     7	 7     o T~ Q  W5     7	 r5     7	 5       Uv T1 5     %  U~ Tv  5     7	 5     7	 5     / 5     7	 5     	  U  6      % Uv T0 6     % C U| Tv  -6      [ Q|  E6     I s T  a6       Uv T}  x6      U|  ~6      U  6     7	 7     7	 7     7	 .7     7	 X7       Q  w7     7	 7     7	 7     f
 U	       6             9  +  Dm Bm 6     7	 6     7	   5       @O  +  jm hm  5     7	 5     7	 #5     7	 7     
 U~ T	       j  c+ :            	  c+w2  m m cv c+<=  m m 8  e+|   sp e+82  3n 1n ax e+1  `n Vn $  e+82  n n   e+1  Eo =o ix f+1  o o 
 _p f++   P  ] 	p  j+-2  Y  l+-2  o o 	d  m+|   ey  Cz  %p p R&  DGr  p p ret Es  
q p v;  s+-2  q q ;             9  f  0r .r <     7	 <     7	  o:     7	 :       T1 :     7	 :     '
 :       Uv T	     Q1 :     	 :       Uv  
;      G Uv T	a)     Q1 ;     	 !;      l Uv  5;       Uv T	     Q2 @;       Uv T~  T;       Uv T	     Q1 \;     s
  Uv  l;     
  Uv  ;     7	 ;      8 U} T0 ;     M
 P Uv  ;     7	 ;     	 u T}  ;     7	 -<     7	 J<     7	 l<     7	 {<     7	 <       Tv Q2 <       U}  <     M
  Uv  <     7	 <     7	 5=     7	 G=     7	 T=     y O T  =     7	  
p 	9  +    -:       pP  e+  Vr Tr  #:     7	 -:     7	 C:     7	 =     
 U~ T	          0+=           S 	  0+w2  }r yr cv 0+<=  r r 8  2+|   sp 2+82  s s ax 2+1  Ls Bs $  2+82  s s   2+1  /t )t  Q   p  6+-2  |t xt Y  8+-2  t t R&  !Gr  'u u ret "s  u u ey  #z  :v 0v v;  >+-2  v v ?            U 9  6  $w "w ?     7	 #?     7	  >     7	 9>      y T1 L>     7	 `>     '
 n>       Uv T~  v>     s
  Uv  >     
  Uv  >     7	 >       T0 >     M
  Uv  >     7	 >     	 B T}  	?     7	 j?      ?     M
 t Uv  ?     7	 ?     7	 ?     7	 @     7	 @     y  T}  W@     7	  
 	9  ^+    =       P  2+
  Jw Hw  =     7	 =     7	 =     7	 m@     
 U~ T	          +            ' 	  +w2  qw mw cv +<=  w w 8  +|   sp +82  x x ax +1  >x 6x $  +82  x x   +1  x x ix +1  /y +y 
  _p ++        G        	v;  +-2  @             9  	  oy my G     7	 R     7	       7	 1     7	  
 	9  ++             +  y y       7	      7	      7	 p     
 U} T	e
       Q  *p@     E       	  *w2  y y cv *<=  y y 8  *|   sp *82  ^z \z ax *1  z z $  *82  { z   *1  { }{ `Q  = rW  *-2  { { R  *-2  { { Z  6z  | | 
  Yr  k| e| J  Yr  | | v;  +-2  | | 
h 	9     @     7	 @     7	 A     I  U| T0 A     I  Uv T0 *A       U0T|  <A       T0 FA     7	 QA     	  Tv  [A     7	 A     7	 A     7	  cA             9  +  T} R} jA     7	 uA     7	   @       0Q  *  z} x}  @     7	 @     7	 @     7	 A     
 U~ T	          *A             	  *w2  } } cv *<=  } } 8  *|   sp *82  C~ A~ ax *1  p~ f~ $  *82  ~ ~   *1  < : B     G       ; q  6z  v r v;  *-2    B       U0 1B       T0 ;B     7	 FB     	 - Tv  PB     7	  XB             9  *    _B     7	 jB     7	   A       Q  *  9 7  A     7	 A     7	 A     7	 B     
 U} T	5       L  *C     U       	  *w2  ` \ cv *<=    8  *|   sp *82     ax *1  / % $  *82      *1  # ! `R  O 	ؒ  *-2  >  Yr  _ Y G  6z      1    v;  *-2  e ] D            H 9    Ã  D     7	 D     7	  RD     7	 iD     I l T0 tD     	  Uv  D       U0Tv  D      Uv  D     =  U0 D     I  T|  D       U| T~  D     7	 D     	 ' Tv  D     7	 E     7	 E     7	  
b 	9  *    D       0R  *     D     7	 D     7	 "D     7	 5E     
 U~ T	;       Sx  *@G     =       	  *w2    cv *<=  Q I 8  *|   sp *82    ax *1  ߄ Մ $  *82  Z R   *1  Ӆ х 0S   	ؒ  *-2  >  Yr   	 G  6z  ^ X   1    v;  *-2    )H            * 9    s q 0H     7	 ;H     7	  G     7	 G     I N T0 G      f U|  G     z U|  G     =  U0 G     I  Tv  H       Uv T|  H     7	 H     	  Tv  !H     7	 WH     7	 aH     7	  
' 	9  *    gG        S  *P     ]G     7	 gG     7	 |G     7	 }H     
 U~ T	;       ,`q  >* N           H 	  >*w2    cv >*<=    8  @*|   sp @*82    ax @*1  ֈ ʈ $  @*82  d \   @*1  ݉ ۉ `T   p  D*6z  #  05  E*|   ݊ ˊ ]  G*|     J  I*-2  H B eS  }Yr    I  ~Yr  a O new Yr  N ( >  Yr  ۏ Ϗ len |   p ` dl1 |   ,  dl2 |    ّ 
C  	9  Y*   
V  	9  ^*   pN     7	 N     7	 N     7	 N        T} Q2 N     7	 N     7	 N     7	 O        T~ Q2 O     7	 -O     7	 <O     7	 GO     
  T~  VO     7	 sO     7	 O      N T1 O     I f Uv  O     	 ~ Uv  O     7	 P     7	 8P     
  U|  EP       U nP      Uv  P     "  Uw T0Q}  P     U  Tv  P     . 8 U| T}  P     L U}  P      f U Q     "  UT0Q}  Q     U  Tv  3Q     "  Uw T~  AQ     U  U} T~  OQ     .  U| T}  ]Q      U}  dQ     & U~  yQ     	 > Uv  Q     	 V Uv  Q     f
 u U	      Q     f
 U	       O             9  *  ے ْ O     7	 O     7	   -N       0T  @*     #N     7	 -N     7	 BN     7	 Q     
 U~ T	m         )Q            	  )w2  ( $ cv )<=  o a 8  )|   sp )82    ax )1  > 2 $  )82  ̔ Ĕ   )1  E C T   p  *6z   { 05  *|   ? 3 ]  *|   ǖ  I  TYr     eS  UYr  ߗ ˗ new VYr  ɘ  len W|     dl1 X|     dl2 Y|   U = 
 	9  *   
 	9  *   @R     7	 bR     7	 qR     7	 R       T} Q2 R     7	 R     7	 R     7	 R      c Tv Q2 R     7	 R     7	  S     
  T  S     7	 ,S     7	 >S       T1 S     
  U|  S       U  S     .  U| T}  S     ( U}  S     7	 T     7	 1T     " e U T0Q}  ^T     "  U Tv Qv  qT     U  U} T  T      U  T     "  U Tv  T     f
  U	h      T     f
 U	(       SS            _ 9  9*  k i ZS     7	 eS     7	   Q       T  )     Q     7	 Q     7	 R     7	 T     
 U~ T	X       w  )T            	  )w2    cv )<=    8  )|   sp )82    ax )1    $  )82  D <   )1    @U  [ p  )6z    05  )|     J  )-2  ? 9 eS  Yr    I  Yr  ~ p new  Yr  .  >  !Yr  4 * dl "|     
;
 	9  )   
N
 	9  )   PU     7	 rU     7	 U     7	 U      
 T} Q2 U     7	 U     7	 U     7	 U     
 
 Tv  U     7	 V     7	 V       T1 9V     I  U~  IV     	 2 U|  V     7	 V     
 W Uv  V     	 o U~  V     .  Uv T|  V      U|  V       U~  V     U  U~ T|  W     .  Uv T~  W     	 U~   W      ! U~  5W     " ? U~ T}  @W     	 W U|  PW     U o T}  _W     .  Uv Tw  pW      Uw  vW      U}  W     "  U~ T0Q}  W     "  U~ T} Q W     U   Uw T|  W     f
 ? U	      W     f
 U	       MV             9  )  f d TV     7	 _V     7	   U       U  )     U     7	 U     7	 "U     7	 W     
 U~ T	       Qs  )PY     o        	  )w2    cv )<=    8  )|   sp )82  m k ax )1    $  )82      )1    V  I p  )6z  ̦ Ħ J  )-2  . ( >  Yr   w M  |     
) 	9  )   
< 	9  )   Y     7	 Y     7	 Y     7	 Y     
 { T~  Y     7	 Z     7	 +Z       T1 HZ     I  Uv  XZ     	  Uv  eZ     :  U| Tv  qZ      Uv  Z     f
 - U	      Z     f
 U	       qZ             9  )  \ Z xZ     7	 Z     7	   wY       U  )     mY     7	 wY     7	 Y     7	 Z     
 U~ T	       ][  \)W     R       	  \)w2    cv \)<=    8  ^)|   sp ^)82  c a ax ^)1    $  ^)82       ^)1    ix _)1  Ӫ Ϫ 
 _p _)+   U  6 p  c)6z    J  d)-2  { u )   Yr  Ϋ ī 
( 	9  n)   
; 	9  s)   \X     7	 sX     7	 X     7	 X     
 z Tv  X     7	 X     7	 X       T1 X     %  U~ Tv  X     .  Uv T|  X      U|  %Y     f
  U	p      BY     f
 U	8       X            { 9  })  B @ X     7	 Y     7	   X       pU  ^)  h f  X     7	 X     7	 ,X     7	 4Y     
 U~ T	       bU  ')`K            	  ')w2    cv ')<=  ֬ Ȭ 8  ))|   sp ))82  v t ax ))1    $  ))82  3 +   ))1    S   p  -)6z    05  .)|   $  ]  0)|     I  Yr      Yr  W K v;  6)-2   ݰ 
. 	9  <)   
A 	9  A)   
T 	9     BM             9    C A IM     7	 TM     7	  K     7	 K     7	 L     7	 L       T} Q2 !L     7	 CL     7	 RL     7	 bL      ! Tv Q2 vL     7	 L     7	 L     
 S T  L     7	 L     7	 L       T1 L     
 M     "  T} Qv  M       Uv T0 M      Uv  %M     7	 0M     	  T}  :M     7	 wM     7	 M     7	 M     7	 M     7	 M     f
 e U	P      M     f
 U	       
 	9  W)    K       S  ))  i g  K     7	 K     7	 K     7	 M     
 U~ T	X       nX  )Z     =       	  )w2    cv )<=  ѱ ɱ 8  )|   sp )82  2 0 ax )1  _ U $  )82  ڲ Ҳ   )1  S Q V  F 	ؒ  
)-2  I  Yr    G  6z  ޳ س   1  / ' v;  )-2    [            \ 9      [     7	 [     7	  ,[     7	 C[     I  T0 N[     G  U|  ][      U|  i[     =  U0 w[     I  Tv  [       Uv T|  [     7	 [     	  Tv  [     7	 [     7	 [     7	  
Y 	9  ")    Z       PV  )     Z     7	 Z     7	 Z     7	 [     
 U~ T	;       ,g  ( \     _      7  	  (w2  @ < cv (<=   y 8  (|   sp (82    ax (1    $  (82      (1    ix (1  = 9 
 _p (+   V  s p  (6z   { }  (-2    t  (-2  \ X }B  Yr    
  Yr  ] Q   Yr    /  Yr  G  6z      6z  L F ns y    v;  (-2  0 ( 
 	9  (   
 	9  (   
 	9     ~\     7	 \     7	 \     7	 \     7	 \     
  T~  \     7	 ]     7	 ]      9 T1 0]     % W U| T~  @]     	 o U|  S]     %  U} T~  n]     	  U  ]      U  ]     T  T0Q| R0 ]      U|  ]       U  ]     7	 ]     	 , T|  ^     7	 l^     M U|  s^     7	 }^     7	 ^     a  U| T ^       T~ Q ^     T  T} Q |  0.( R0 ^      U ^       U "_     n   U T -_      8 U  =_     f
 W U	      K_     f
 U	@       ^             9  (    ^     7	 "^     7	   =\       V  (  ʼ ȼ  3\     7	 =\     7	 S\     7	 P_     
 __     
 U~ T	       U  [(a           $ 	  [(w2    cv [(<=  2 * 8  ](|   sp ](82    ax ](1  ½  $  ](82  L H   ](1    W  0$ p  a(6z      b(-2    Ւ  d(-2    	}B  e(-2  
  fYr  N F ؒ  gYr    )  hYr  m e 
! 	9  p(   
! 	9  u(   b            ! 9  m    b     7	 b     7	  a     7	 b     7	 #b     7	 .b     
 " T~  =b     7	 Zb     7	 lb      M" T1 b     7	 b     7	 b     % " UT~  b     	 " U|  b     " U|  b     7	 b     7	 c     7	 3c     % " U} T~  Gc     	 # Uv  Wc     n (# Tv  jc     <# Uv  c     z g# U~ T0Q| R c     }# U c     # U|  c     # Uv  c     z # U~ T0Q| R0 c     z # U~ T0Q| R0 d     f
 $ U	      d     f
 U	       c            u$ 9  (    c     7	 c     7	   a       pW  ]($     a     7	 a     7	 a     7	 #d     
 U~ T	h       .b  ,(0d           r( 	  ,(w2  B > cv ,(<=   { 8  .(|   sp .(82    ax .(1  -  $  .(82      .(1  G E ix /(1   } 
% _p /(+   X  ' p  3(6z    7  4(-2  > 8 ؒ  OYr    
& 	9  >(   
"& 	9  C(   
5& 	9  T   be            z& 9  X    ie     7	 te     7	  d     7	 d     7	 d     7	 d     
 & T}  d     7	 d     7	 e      & T1 "e     % ' Uv T}  2e     	  ' Uv  Be     4' Uv  Ie     7	 Se     7	 e      l' U} Tv  e     ' Uv  e     f
 ' U	      e     f
 U	@       e             ( 9  V(  @ > e     7	 e     7	   Wd       W  .()(  f d  Md     7	 Wd     7	 ld     7	 e     
 U~ T	         'e           ), 	  'w2    cv '<=    8  '|   sp '82  G E ax '1  v j $  '82      '1  } { X  r+ p  '6z    	Y  '-2  Z  2z  !  ret 3z    v;  (-2    
) 	9  (   
) 	9  (   
) 	9  :   
) 	9  =   \f     7	 vf      ) T1 f     7	 f     7	 f     
 %* T~  f     7	 f     7	 f      V* T1 f     7	 g     7	 Hg      * Uv  Rg      * Uv T0 wg      * T0 ~g     7	 g     	 * Tv  g     7	 g     7	 g      + T~ Q2 g     f
 7+ U	      g     f
 V+ U	      g     f
 U	О       g            + 9  '(    g     7	 (g     7	   f       `X  '+  A ?  f     7	 f     7	 ,f     7	 g     
 U~ T	       xk  'x     E       1 	  'w2  h d cv '<=    8  '|   sp '82  "   ax '1  Q E $  '82      '1  X V [  0 p  '6z    Y  '-2  L F Z  z    ns y  - # ret z    v;  '-2    
i- 	9  '   
|- 	9  '   
- 	9     
- 	9     nz            - 9  (     uz     7	 z     7	  y     7	 y      . U~ T1 !y     7	 =y     7	 Hy     
 C. T}  Wy     7	 ty     7	 y      t. T1 y      . Tv Q1R1 y      . U}   z     I . U} Tv  z      . T}  >z      . T}  Uz     7	 _z     7	 z      3/ U} T0 z     I Q/ U} Tv  z      i/ T}  z     7	 z      / Tv Q2 
{      / U T0 0{      / T0 7{     7	 B{     	 / Tv  L{     7	 l{      0 U Tv  {     7	 {      A0 T} Q2 {     f
 `0 U	      {     f
 0 U	      {     f
 U	8       
0 	9  '    x       p[  '0  & $  x     7	 x     7	 x     7	 {     
 U~ T	       x  e'r     s      g5 	  e'w2  M I cv e'<=    8  g'|   sp g'82    ax g'1    $  g'82      g'1    Z  4 p  k'6z  R F }  l'-2      n'-2    }B  Yr  N H 
  Yr    ret z  5 % v;  u'-2    
v2 	9  {'   
2 	9  '   
2 	9     t            2 9    G E t     7	 t     7	  s     7	 's     7	 6s     7	 Qs     7	 \s     
 -3 Tv  ks     7	 s     7	 s      ^3 T1 s     % |3 U} Tv  s     % 3 U~ Tv  s     	 3 U}  s      3 Uv T~  t     3 U~  t     3 U}  8t      4 U  Bt     7	 Mt     	 54 Tv  Wt     7	 lt     V4 U}  st     7	 }t     7	 t      4 Uv T~ Q0 t     4 U~  t     f
 4 U	P      u     f
 U	       
4 	9  '    r       pZ  g'5  m k  r     7	 r     7	 r     7	 u     
 U~ T	       `  ('{     X      9 	  ('w2    cv ('<=    8  *'|   sp *'82  N L ax *'1   q $  *'82       *'1    \  8 p  .'6z    }  /'-2  c ]   1'-2    }B  Yr    
  Yr  q _ Z  z  A / 
6 	9  ='   
6 	9  B'   }             7 9      }     7	 }     7	  L|     7	 o|     7	 ~|     7	 |     7	 |     
 L7 Tv  |     7	 |     7	 |      }7 T1 |     % 7 U} Tv  |     % 7 U~ Tv  }     	 7 U}  %}      7 Uv T~ Q0 =}     8 U}  C}     8 U~  ~}      @8 Uv T~ Q}  }      Z8 U }      q8 T0 }     8 U}  }     7	 }     7	 ~      8 U ~     f
 8 U	       8~     f
 U	إ       C}            99 9  `'  - + J}     7	 U}     7	   |       [  *'b9  S Q  |     7	 |     7	 "|     7	 *~     
 U~ T	       ,  &D           ? 	  &w2  z v cv &<=    8  &|   sp &82  4 2 ax &1  c W $  &82      &1  j h    > p  &6z    }  &-2  !    &-2   } _  &-2    }B  VYr    
  WYr    J  XYr    ns Yy      ZYr  \ P /  [Yr  Β  \    i ]|     
c; 	9  &   
v; 	9  &   D     7	 D     7	 D     7	 D     7	 D     7	 D     
 ; Tv  E     7	 +E     7	 =E       < T1 TE     % < U} Tv  _E     6 6< U  rE     % T< U| Tv  E     a s< U T E     < U  E     % < Uw Tv  E     	 < U~  E     	 < U~  E     < U~  E     < U}  E     = U  F     f
 1= U	      F      Z= Uv T0Q} R  -F     n= U}  4F     = U  F      = Uv Q} R  F      = Tv Q~  F     	 = U~  G      = Tv  CG     I > T~  G     	 G     n 7> Uv T~  G     	 O> U~  G     e> U G     f
 > U	      H     f
 > U	      H     > U  !H     f
 U	       4F            ? 9  #'  7 3 ;F     7	 FF     7	   MD       Ц  &A?  q o  CD     7	 MD     7	 bD     7	 G     
 ? U} T	x      &H     
  ,  c&@~     /      D 	  c&w2    cv c&<=    8  e&|   sp e&82  : 8 ax e&1  g ] $  e&82      e&1  J D \  D p  i&6z    }  j&-2  U K   l&-2    Y  n&|   6 0 
  ,Yr    }B  -Yr    ret .Yr   { v;  t&-2  V L 
A 	9  z&   
A 	9  &   
,A 	9  4               qA 9  J    &     7	 1     7	  ~     7	 ~     7	 ~     7	 ~     7	      
 A T|       7	 4     7	 F      A T1 o     % B U T|       % ,B UT|       	 FB U       dB U| T}       xB U}       B U       B U~ T|       B U~       7	      	 B T|       7	 Z      C U~ T0 n     7	      7	      7	       SC T} Q2 Ӏ     7	 ݀     7	       C U| T}       C U}        C U| T} Q -     7	 R     f
 C U	      `     f
 U	       
 D 	9  &    m~       `\  e&ID     c~     7	 m~     7	 ~     7	 o     
 U| T	p       Q  &p           <I 	  &w2    cv &<=  W M 8  &|   sp &82    ax &1    $  &82      &1    \  H p  "&6z  ] O Y  #&-2    Z  z  ` V ret z    v;  )&-2    
E 	9  /&   
E 	9  4&   
E 	9     
E 	9     ƃ            <F 9      ̓     7	 ؃     7	       7	       fF U~ T1      7	      7	 (     
 F T}  7     7	 T     7	 f      F T1       F Tv Q1R1      " G U}  ͂      !G U Tv        9G T}        VG U T0 <      mG T0 C     7	 N     	 G Tv  X     7	      I G U} Tv       7	      7	      7	       H T} Q2      7	 '      +H Tv Q2 =     f
 JH U	      Z     f
 iH U	      h     f
 U	@       `            H 9  ^&  + ) g     7	 r     7	          \  &H  Q O       7	      7	      7	 L     
 U~ T	       L  %p           L 	  %w2  x t cv %<=    8  %|   sp %82    ax %1  G = $  %82      %1  ; 9 p]  2L p  %6z  { q   %-2    
  Yr  * $ ret z  { s v;  %-2    
hJ 	9  %   
{J 	9  &   
J 	9     ׅ            J 9    ? = ޅ     7	      7	       7	      7	      7	      
 K Tv  "     7	 ?     7	 Q      CK T1 h     % aK U} Tv       " K Uv T}       K U}        K U       7	 Ņ     	 K Tv  υ     7	      7	      7	 ,     f
 L U	       :     f
 U	ا       
EL 	9  &           @]  %nL  e c       7	      7	      7	 I     
 U~ T	       O  %P           O 	  %w2    cv %<=    8  %|   sp %82  . , ax %1  [ Q $  %82      %1  O M ]  #O p  %6z      %-2    
  Yr  ) # Z  z  | r 
M 	9  %   
M 	9  %        7	 ӆ     7	      7	      
  N Tv       7	      7	 +      QN T1 B     % oN U~ Tv  U     " N Uv T|  e      N Uv  u      N T0      N U|        N Uv       f
 O U	      ·     f
 U	p                   hO 9  %         7	      7	   w       ]  %O     m     7	 w     7	      7	 ݇     
 U~ T	       l  l%0H           [S 	  l%w2  < 8 cv l%<=   u 8  n%|   sp n%82    ax n%1  %  $  n%82      n%1  , * p  R p  r%6z  l b   s%-2    _  u%-2  0 * 
  Yr   y J  Yr   
 
Q 	9  %   
Q 	9  %   H     7	 H     7	 H     7	 H     7	 H     
 eQ Tv  H     7	 I     7	 &I      Q T1 =I     % Q U} Tv  HI     6 Q U|  WI     % Q U~ Tv  hI     / R Uv T| Q}  uI     "R U|  {I     6R U}  I     f
 UR U	      I     iR U|  I     f
 R U	      I     f
 U	@       {I            R 9  %    I     7	 I     7	   ]H       @  n%S     SH     7	 ]H     7	 rH     7	 I     
 U~ T	       ,   %@           gX 	  %w2    cv %<=    8  %|   sp %82    ax %1    $  %82  J D   %1    ^  W p  !%6z  7  '    "%-2      Y  $%|   ` X 
  kYr    /  lYr    mYr  O = ret nYr  -  ns oy  L : v;  ,%-2    
T 	9  2%   
T 	9  7%   
T 	9  s   ߋ            AU 9    _ [      7	      7	       7	      7	      7	      
 U T~       7	 3     7	 E      U T1 n     % U U T~       < U U~ T}       V U}        V U T0      2V U       7	 ͋     	 WV T}  ׋     7	 +      V U T~  >     7	 `     7	 o     7	       V T| Q2      a V U} T       V T~       W U      'W U}       7	 	     7	 %     7	 L     bW U}  _      W U~ T      W U}       f
 W U	       ԍ     f
 U	       
W 	9  g%    }       ^  %X     s     7	 }     7	      7	      
 YX U~ T	      ƍ     
  ,}  $ u     e      9] 	  $w2    cv $<=    8  $|   sp $82  f ` ax $1    $  $82      $1     [  \ p  $6z  E 7 }  $-2      $-2  a	 [	 
  EYr  	 	 }B  FYr  
 	 Z  G6z  
 
 v;  $|   O G k  $32    
Y 	9  $   
Y 	9  $   )x            Z 9  P     0[  [Z 	\:  %  v     7	 Gx     7	 Ux     o T| Q}   u     7	 u     7	 u     7	 u     7	 u     / u     7	 u     7	 	v     
 Z T}  v     7	 5v     7	 Gv      Z T1 ^v     % [ U~ T}  nv     % =[ UT}  v     	 W[ U v     m[ U v      [ U} T~ Q0 v     [ U~  v     7	 Uw     7	 `w     7	 w      [ U} T~ Q w     \ U~  w     \ U~  x     7	 x     7	 9x     G\ U~  hx     f
 f\ U	      vx     f
 U	        w            \ 9  %  . , 'w     7	 2w     7	   Mu       Z  $\  T R  Cu     7	 Mu     7	 cu     7	 x     
 U~ T	       )E  $     ]      a 	  $w2  { w cv $<=    8  $|   sp $82  !  ax $1  v j $  $82      $1  } { 0^  Y` p  $6z      $-2  2 , 
  /Yr   { v;  $|     k  $32  - ' 
e^ 	9  $   
x^ 	9  $               ^ 9  3  x v  `^  ^ \:  $    V     7	      7	      o Tv Q}   O     7	 ^     7	 s     7	 {     /      7	      7	      
 \_ T}       7	 ֈ     7	       _ T1      % _ U~ T}       " _ U} T~  %     _ U~  ,     7	      7	      7	 ׉     7	      7	       f
 =` U	H      .     f
 U	       |            ` 9  $         7	      7	           ^  $`          7	      7	 "     7	 =     
 U~ T	       H  r$     <      d 	  r$w2  % ! cv r$<=  j ^ 8  t$|   sp t$82    ax t$1  #  $  t$82      t$1  * ( pF  c p  x$6z  j `   y$-2      Yr  0 ( ns y    v;  $-2    
;b 	9  $   
Nb 	9  $        7	 .     7	 >     7	 I     
 b Ts  Y     7	 w     7	       b T1      % b U| Ts       	 b U|       c U|       7	       -c T|        Ec T|  #      \c T0 7     pc U|  ?     7	 J     	 c T~  U     7	      7	      f
 c U	           f
 U	p       ]            /d 9  $  W U e     7	 q     7	          @F  t$Xd  } {       7	      7	      7	      
 U~ T	       ,3  $ *           j 	  $w2    cv $<=    8  $|   sp $82    ax $1    $  $82      $1     M  Vi p  #$6z  F 6 AZ  $$-2    J  &$-2  C =   Yr    I  Yr   q ns y  h X v;  -$|     k  .$32    
f 	9  4$   
f 	9  9$   M  if 	\:  k$  +     7	 7-     7	 E-     o T} Qv   i*     7	 *     7	 *     7	 *     7	 *     / *     7	 *     7	 *     
 f T *     7	 +     7	 $+      g T1 ;+     % -g U| Tv  I+     % Kg U~ Tv  Y+     	 cg U|  }+     	 {g U~  +     g U~  +      g U| T0 +     g U|  +     7	 5,     7	 @,     7	 b,      h U| T0 x,      !h Tv Q0 ,      9h T|  ,      Qh T|  	-     eh U~  -      h U| T~  _-     f
 h U	p      m-     f
 h U	(      -     h U~  -     h U|  -     f
 i U	Ȕ      -     i U|  -     f
 ;i U	      -      Tv Q~   ,            i 9  m$    ,     7	 ,     7	   -*       M  $i     #*     7	 -*     7	 B*     7	 |-     
 U} T	       ,F  #           n 	  #w2  D @ cv #<=   } 8  #|   sp #82    ax #1  ? 3 $  #82      #1  F D @_  m p  #6z   | AZ  #-2  %      #-2  t  n    Yr      }B  Yr  ! y! ns y  " " v;  #|   # # k  #32  # # 
wk 	9  #   
k 	9  #   p_  k 	\:  $  y     7	 7     7	 E     o T| Q}   J     7	 h     7	 w     7	      7	      /      7	      7	 ǎ     
 Hl T  ֎     7	      7	       yl T1      % l Uv T~  *     % l U} T~  :     	 l Uv  a     	 l U}        l Tv        m Tv       )m Uv       7	      7	 9     Wm Uv  J     km U}  T     7	 
     m Uv  U     I m U~ T  r     f
 m U	           f
 U	P                   *n 9  $  # #      7	      7	          _  #Sn  # #       7	      7	 #     7	      
 U} T	       ,t  u# .           s 	  u#w2   $ $ cv u#<=  a$ Y$ 8  w#|   sp w#82  $ $ ax w#1  !% % $  w#82  % %   w#1  Z& R& `N  s p  {#-2  & & }  }#-2  & & 0k  #-2  '  ' J  #|   p' h' ey  g6z  ' ' }B  hYr  B( 8( I  iYr  ( ( ns jy  ) ) v;  #|   + + k  #32  E+ =+ N  hp 	\:  #  K1     7	 /2     7	 =2     o T Q|   m.     7	 .     7	 .      p U} T1 .     % p U~ T}  .     7	 .     7	 .     / .     7	 /     % 	q T}  /     	 !q Uv  9/     	 9q U~  k/      Wq T} Qv  /     I oq T~  /      q U}  /     7	 /     7	 /     7	 0     7	 <0     7	 K0     7	 [0      q Tv Q2 0      r T} Q0 0     	 0     n @r U} T~ Qv  1     Tr Uv  1     hr U~  &1     7	 1      r U} T0 1     n r U} T~ Qv  2     7	 V2     n r U} T~ Qv  r2     f
 U	       q1            Hs 9  #  + + x1     7	 1     7	   -.       0N  w#qs  + +  #.     7	 -.     7	 C.     7	 2     
 U~ T	@       >  Y#     e      bv 	  Y#w2  + + cv Y#<=  1, ), 8  [#|   sp [#82  , , ax [#1  , , $  [#82  :- 2-   [#1  - - _  u 
  _#	b  - - G  U6z  . .   V1  P. H. v;  e#-2  . .      7	      7	 *     7	 <     	 u Tv Q0R2 I     = u U0 V     V ;u U0Tv  m     I Su Tv        ku Uv       7	      	 u Tv       7	 Ւ     7	              u 9  p#  / /      7	      7	          _  [#v  9/ 7/       7	      7	 ̑     7	      
 U~ T	       !]  9#            zy 	  9#w2  `/ \/ cv 9#<=  / / 8  ;#|   sp ;#82  K0 E0 ax ;#1  0 0 $  ;#82  ?1 ;1   ;#1  1 1 @`  x p  ?#6z  1 1 v;  @#|   2 2 k  A#32  B2 <2 
dw 	9  G#   
ww 	9  L#   `  w \:  R#  2 2 1     7	      7	      o T| Qv   g     7	 |     7	      /      7	      7	      
 #x T~       7	 ߓ     7	       Tx T1      c      7	      7	      7	 ͔     f
 x U	0           f
 U	       Q            y 9  T#  2 2 X     7	 c     7	   -       `  ;#1y  2 2  #     7	 -     7	 C     7	 ܔ     
 U} T	e
       خ  #      q      s| 	  #w2  3 3 cv #<=  W3 M3 8  #|   sp #82  3 3 ax #1  3 3 $  #82  4 4   #1  4 4 `/  { p  #6z  5 5   <Yr  X5 J5 v;  #-2  5 5 
|z 	9  !#   
z 	9  &#   c     7	 z     7	      
 z T|       7	      7	 í      z T1 ԭ     }       { U| T0      0{ U|       7	      	 U{ T~       7	 H     f
 { U	ȅ      e     f
 { U	      q     f
 U	                   | 9  4#  V6 T6       7	 +     7	   '       0/  #*|  |6 z6       7	 '     7	 =     7	 W     
 U} T	e
       Zm  "            	  "w2  6 6 cv "<=  6 6 8  "|   sp "82  ]7 [7 ax "1  7 7 $  "82  8 8   "1  i8 g8 ix "1  8 8 
@} _p "+   F   ey  "6z  8 8 ns y  89 09 kS  y  9 9 2  L  -: ): v;  "-2  : u: 
} 	9  "   
} 	9  "   
} 	9  +   
} 	9  /   1            B~ 9  2  ; ; 8     7	 C     7	  C     7	 Z     7	 e     
 t~ T}  t     7	      7	       ~ T1            7	      	 ~ T0      7	 
     <  T~ Q	     R}       7	      	 3 T}  )     7	 _     7	 i     7	      f
 y U	P           f
 U	       
 	9  #           F  "  +; );       7	      7	      7	      
 U} T	       Q  "            	  "w2  R; N; cv "<=  ; ; 8  "|   sp "82  -< < ax "1  < < $  "82  Y= U=   "1  = = ix "1  = = 
 _p "+   PG   m  "-2  *> $> ey  6z  y> s> ns y  > > kS  y  3? )? O  -2  ? ? 2  L  "@ @      7	 '     7	 4       Us T1 K     7	       Ɂ Us       7	      	  T0      7	      <  T Q~ R}       7	      7	      	 P T}        7	 3     )  T| Q| R1 S     f
 U	                G  "ł  l@ j@       7	      7	      7	 G     
 U~ T	p       "V  >"pX            	  >"w2  @ @ cv >"<=  @ @ 8  @"|   sp @"82  AA 3A ax @"1  A A $  @"82  B B   @"1  B B    m  F"-2  >C 4C y  H"-2  C C ey  6z  D D G
  1  D D [  N  (E E O  -2  "F F y  Yr  G F 2    G G 3  	-2  UH EH  ]     ,        9    H H ']     7	 2]     7	  
ӄ 	9     P   i |   %I #I len |   OI II cls L  I I g  6z  0J ,J Z     N       ܅ kS  "y  jJ fJ Z      p U~  Z     7	 Z     	  T0 Z       U~  Z     7	 Z     < TQ~ R   ]Z       U~ T gZ     7	 Z     7	 Z     	 . T  [     7	 [     ) ^ Tv Qv R1 ?\     7	 O\       T| Q2 u\     7	 \       T| Q2 \     7	 \      ܆ T| Q2 \     7	 \      T| Q2  X     7	 Y     7	 #Y      : U~ T1 -Y     7	 7Y     	 ^ T0 AY     7	 LY     	  T~  _Y     7	 jY     
  T  }Y     % Ƈ U T}  Y     	 އ U|  Y     
  U~ T	      Y     
 ( U~ T	      Y     p F U} T|  Y     Z U|  Y     
 v U0T0 Y     
  U0T0 Y       U~ T1 [     | ǈ U}  [     7	 7[     7	 I[       T Q	
      [     
 + U~ T	      [     
 P U~ T	      [      n U} T  [       U~ T0 [     7	 [       T Q2 ]     7	 ]     7	 X]      U|  f]     f
  U	      t]     f
 U	        X         @"G  J J  X     7	 X     7	 X     7	 ]     
 U~ T	       I  !]     	      b 	  !w2  J J cv !<=  K K 8  !|   sp !82  K K ax !1  N sN $  !82  5O /O   !1  O O І   m  !-2  O O a  !-2  P P q  !|   $Q Q ey  ,6z  Q Q G
  -1  R vR >  .F  S {S [  /N  T T y  0Yr  V V 2  1  V V 3  2	-2  zW ZW d             W 9  9  X X d     7	 "d     7	  
j 	9  A       i W!|   X X cls X*L  Y Y g  Y(6z  Y Y O  Z"-2  Z Z l [!|   Z Z Ta     Q        kS  i/y  
[ [ \a       U  la     7	 va     	 > T0 a      V U  a     7	 a     < TQ Rw   `       U T a     7	 #a     7	 /a     	 ڍ Tw  7d     7	 Gd       Tv Q2 sd     7	 d      . Tv Q2 d     7	 d      X Tv Q2 'e     7	 :e     )  Tv Qv R1 be     7	 re      Tv Q2  ^     7	 '^     7	 D^     7	 f^     7	 u^     7	 ^       T} Q2 ^      , UT1 ^     7	 ^     	 P T0 ^     7	 ^     	 u T}  ^     7	 ^     
  T  ^     %  U T~  _     	 Џ U|  _     
  U} T	      +_     
  U} T	      9_      @ U~ T| Qw  H_     T U|  Q_     
 p U0T0 Z_     
  U0T0 p_       U} T1 _     7	 _     7	 _     
  T	;     Q0 _     7	 _     	  T}  _     7	 `      0 T0  `     7	 ;`     7	 L`     
 n T	     Q0 V`     7	 a`     	  T}  a     7	 a      ő T Q	
      b     
  U} T	      b     
  U} T	      %b      5 U~ T Qw  5b     7	 Zb      _ U} T0 ab     7	 b     7	 b     7	 b     
  T	'     Q0 b     7	 b     	 ϒ T}  b     7	 b     7	 b     J  aw ) 	c     7	 c     	 ) T}  !c     W A U~  7c     7	 Rc     7	 cc     
  T	     Q0 mc     7	 xc     	  T}  c     7	 c     7	 c      ֓ Tv  c     7	 c        T Q2 c     |  U}  c     7	 d     7	 d     7	 d     ) b Tv Qv R1 d     7	 e     )  Tv Qv R1 e     7	 e     )  Tv Qv R1 e     7	 e     )  T| Q| R1 e     7	 e     ) " Tv Qv R1 e     7	 f     ) R T| Q| R1 'f     7	 :f     )  T| Q| R1 [f      U|  if     f
  U	      wf     f
 ԕ U	      f     f
 U	P        ]         !  C[ A[  ]     7	 ]     7	 ]     7	 f     
 U~ T	         !           } 	  !w2  j[ f[ cv !<=  [ [ 8  !|   sp !82  U\ O\ ax !1  \ \ $  !82  I] E]   !1  ] ]  a  Ƙ p  !6z  ] ] v;  !	)   ^ ^ k  !32  c^ ]^ 
d 	9  !   
w 	9  !   @a  ͗ l  !  ^ ^      7	      7	       T| aH)  U     7	 j     7	 r     /      7	      7	      
 & T~       7	 ͕     7	 ߕ      W T1            7	 u     7	      7	 Ɩ     f
  U	           f
 U	x       H             9  !  ^ ^ O     7	 Z     7	          `  !4  _ _       7	      7	 1     7	 Ֆ     
 U} T	e
       .  `!            	  `!w2  7_ 3_ cv `!<=  x_ p_ 8  b!|   sp b!82  _ _ ax b!1  ` _ $  b!82  ` y`   b!1  ` ` ix c!1  6a 2a 
J _p c!+   a  P p  g!6z  a ta Y  h!-2  b b 7  Yr  b {b v;  l!-2  Uc Kc 
 	9  r!   
͚ 	9  w!   a     7	 x     7	      
  T~       7	      7	       0 T1 ޗ     7	       U U~  0      r U} T0 ?      U}  F     7	 Q     	  T|  [     7	       ֛ U} T~       7	 ?     7	 L     y  T|  g     7	 |     f
 4 U	8           f
 U	       c             9  !  c c j     7	 u     7	          a  b!  c c       7	      7	 3     7	      
 U~ T	        ,i         .       	   w2  d d cv  <=  Vd Ld 8   |   sp  82  d d ax  1  d d $   82  e e    1  e e 0   p   6z  f f W   |   hg \g y   -2  h g :i   |   h h    	  i h ƙ   -2  i i /  Yr  J  Yr  j kj e  &  k nk @  F  l l [  N  m m ?L  6z  Rn :n 3  	-2  To Lo v;   -2  o o 
 	9      
 	9           7	 Ò     7	 ͒     	 0 T0 ג     7	      	 U T}       7	      7	      
  T}  "     7	 ?     7	 Q       T1 u     7	      7	 ʓ     I  U~ T0      	  U~        U~       
 @ U T	      &     
 e U T	      D       T0QRXY M     
  U0T0 V     
 ՠ U0T0 `       U T0 u      	 T0      7	      	 . Tv       7	 !     	 Z U	                 ۀ  Uv         UTv  ؕ       Uv       ͡ U      
  U T	           
  U T	      :      P Tv QRXY B     W h U~  U     7	      7	      7	        TQ2      7	      7	      7	 -     7	 ?       TQ2 Z     7	 g           ۀ 3 Uv        S UTv             7	        T~ Q2 E     7	 m     7	      	 ã U	           f
  U	            f
  U	           f
   U	p           f
 ? U	            f
 ^ U	8j           W v U~       f
  U	`      $     f
  U	8      2     ʤ U @     f
 U	                   + 9  [!  p p      7	      7	   ]           T  Rp Pp  S     7	 ]     7	 s     7	 ǘ     
 ֘     
 U} T	       d  X       |      ɫ 	  X w2  yp up cv X <=  p p 8  Z |   sp Z 82  3q 1q ax Z 1  `q Vq $  Z 82  q q   Z 1  Er =r ix [ 1  r r 
w _p [ +   b  D p  _ 6z  r r Y  ` -2  us qs d  a |   s s R&  _Gr  s s ret `s  t t qN  a-2  u u J  b|   w w v;  h -2  yw ow 
; 	9  n    
N 	9  s         9       ɧ n  r|   w w             &       U| Q R0X}  +       ֞             9    &x $x ݞ     7	      7	              7	      7	 Ü     
 M T~  Ҝ     7	      7	       ~ T1      7	 ;     7	 ]     7	 l     7	 |      Ϩ T| Q2      7	      -   T	x     Q0             '
 ;     
 2 U|  C       Y     7	       i U} T0      M
  U|       7	 Ğ     	  T}  Ξ     7	      7	       7	 1     -  T	x     Q}  B     '
 Y      ( U| Q R0X}        @ U}  \     7	 k     y l TQ0      7	      y  T~       M
  U|       7	      7	 ՠ     7	      7	 .     y  TQ2 g     7	      f
 ( U	0           f
 U	       
W 	9       M       b  Z   Lx Jx  C     7	 M     7	 c     7	      
 U~ T	         3      D      v 	  3 w2  sx ox cv 3 <=  x x 8  5 |   sp 5 82  -y +y ax 5 1  \y Py $  5 82  y y   5 1  cz az  c   p  9 6z  z z URI : -2  { z uri PYr  N{ L{ 
ˬ 	9  D    
ެ 	9  I         7	 #     7	 2     7	 =     
  Tv  H     7	 a     7	 s      N T1      % l U~ Tv       :  Uv  Ǣ     f
  U	ح           f
 U	                    9  S   s{ q{      7	      7	   ǡ       b  5 -  { {       7	 ǡ     7	 ܡ     7	 ֢     
 U~ T	       "        b      P 	   w2  { { cv  <=  | { 8   |   sp  82  z| x| ax  1  | | $   82  3} /}    1  } } c   p   6z  } } uri CYr  } } v;   -2  8~ 0~ 
x 	9      
 	9  #    S     7	 j     7	 u     
  T|       7	      7	        T1 ȣ     G գ       U| T0      , U|       7	      	 Q T~        7	 7     f
 } U	X      R     f
 U	                    ް 9  .   ~ ~      7	      7	          `c     ~ ~       7	      7	 -     7	 F     
 U} T	e
       e  pB           [ 	  w2  ~ ~ cv <=  *  8  |   sp 82    ax 1  #  $  82      1        p  6z  @ 6 v;      k  32    
R 	9     
e 	9       0   \:     Q M C     7	 D     7	 D     o T| Qv   B     7	 B     7	 B     / 	C     7	 C     7	 #C     
  T~  2C     7	 OC     7	 aC      B T1 tC     7	 C     7	 C     7	 -D     f
  U	n      JD     f
 U	m       C             9  	     C     7	 C     7	   B              B     7	 B     7	 B     7	 <D     
 U} T	e
       sR  PD     t      h 	  w2  ւ ҂ cv <=    8  |   sp 82    ax 1    
 $  82      1  y w ix 1    
( _p +      p  6z    d  6z  n j v;  |     k  32    
 	9     
 	9     
 	9     
ѵ 	9       $ \:    ; 7 E     7	 oF     7	 }F     o T| Qv   D     7	 D     7	 D     / D     7	 D     7	 E     
 } T  E     7	 3E     7	 EE       T1 ^E     7	 mE     7	 xE     
  T  E     7	 E     7	 E       T1 E     7	 EF     7	 PF     7	 F     f
 W U	 o      F     f
 v U	n      F     f
  U	Xn      F     f
 U	n       F             9    s q F     7	 $F     7	   }D       p       sD     7	 }D     7	 D     7	 F     
 U| T	D       _  ~     l      b 	  ~w2    cv ~<=    8  |   sp 82  b ` ax 1    $  82      1  t l .   p  6z  ܉ Љ   |   ` ^ ret 6z    doc Vz      1  j b v;  -2  ҋ ȋ 
 	9     
 	9     
Ϲ 	9     !     7	 8     7	 C     
  T~  R     7	 o     7	       2 T1      c J U~  ˩     0 h U| T}  ө     =  U}       I  T|         U| T}       7	      	 ۺ T|       7	 N     7	 l     7	 {     7	       , T| Q2       I U| T0      7	 ת     7	      7	      f
  U	           f
 U	                    9    C A      7	 %     7	   ݨ       p.    i g  Ө     7	 ݨ     7	      7	      
 U~ T	$       O  (`           ( 	  (w2    cv (<=  ӌ Ɍ 8  *|   sp *82  J H ax *1  y m $  *82      *1  k i   q p  .6z    S  /6z  P D ret 6z   ҏ G
  1    v;  4-2  1  
 	9  :   
 	9  ?   
 	9  G   
ǽ 	9  L   
ڽ 	9       $ i  6z    u            = 9    = ; |     7	      7	  <            '         c a       U~        T  U~ T0 Υ     a  U} T  ޥ      پ Tv         U~  U     n 	 U  \     7	 f     7	  
7 	9     Σ     7	      7	      
 i T}       7	 !     7	 3       T1 L     7	 [     7	 f     
 ̿ T  u     7	      7	        T1      a  U} T~         3 Tv  2      K Tv  9     7	 D     	 p T  N     7	      7	        T} Q2      7	 !     7	 H       T~       f
  U	           f
  U	           f
 6 U	      ̦     f
 U U	H           f
 U	X       V             9  y    ]     7	 h     7	          p  *          7	      7	      7	 ۦ     
 U} T	          h            	  w2  Ւ ђ cv <=    8  |   sp 82    ax 1    $  82  J D   1     Y  C p  6z    S  6z  ~ t X  6z    z  1    v;  -2    
T 	9     
g 	9     
z 	9     
 	9     
 	9     
 	9     
 	9     nh     7	 h     7	 h     
  T}  h     7	 h     7	 h      ) T1 h     7	 h     7	 i     
 [ T  i     7	 -i     7	 ?i       T1 i       Uv  i     I  U} Tv  i       U   j       T  j     7	 j     	  Tv  j     7	 Wj     7	 gj      N T} Q2 zj     f
 m U	      j     f
  U	(      j     f
  U	p      j     f
  U	      j     f
  U	      j     f
  U	Р      j     f
 ' U	p      j     f
 U	       $j             9  #  a _ +j     7	 6j     7	   -h       X       #h     7	 -h     7	 Bh     7	 j     
 U} T	         }            	  }w2    cv }<=    8  |   sp 82  h f ax 1    $  82  #    1       p  6z  ˙  S  6z  Y M d  6z  ݚ ۚ v;  -2     
 	9     
$ 	9     
7 	9     
J 	9     
] 	9     
p 	9     
 	9     
 	9          7	      7	       
  T}  /     7	 L     7	 ^       T1 w     7	      7	      
 + T       7	      7	 Ϛ      \ T1      
 { U	           7	      7	 C     
  U	      S     {  U} Tv  u       Uv         T}       7	      	 ' T  ś     7	      7	       ^ Tv Q2 &     
 } U	X      @       Tv  S     f
  U	      a     f
  U	      o     f
  U	           f
 U	@       ͛            S 9      ԛ     7	 ߛ     7	          p  |  ˛ ɛ       7	      7	 ҙ     7	 ~     
 U} T	       gT  W     J       	  Ww2    cv W<=  3 + 8  Y|   sp Y82    ax Y1    $  Y82  : 6   Y1    ix Z1  ǝ Ý 
 _p Z+   @   p  ^6z      r1    
 	9  g   
 	9  l   <                   x4    -      Uv   t     7	      7	      
 f T}       7	      7	 Т       T1        Uv  =     f
  U	       K     f
 U	                   / 9  x   ޞ      7	      7	   7         YX     -     7	 7     7	 M     7	 Z     
 U} T	e
         `            	  w2  - ) cv <=  n f 8  |   sp 82  ϟ ͟ ax 1    $  82      1  ۠ ٠  d   p  6z    X$  B6z    ܔ  B6z      C1  X R 
 	9  "   
 	9  '   0d  J 4  I6z           U Q0       $ U T}        < U       n  Ѥ     7	      7	      
 | Tv       7	 *     7	 <       T1 Q     = ?       U}  O     f
  U	      ]     f
 U	            #       R 9  R         7	      7	          c  {          7	      7	      7	 l     
 U} T	e
       ]       3       	  w2  ? ; cv <=   x 8  |   sp 82    ax 1  (  $  82      1    @  $ p  6z  ^ P ey  6z    ret 16z  7 - v;  -2    
 	9     
 	9     
 	9     
 	9     
' 	9  5    K        8d   
       Uv   ^     7	 u     7	      
  T}       7	      7	        T1 ק     7	      7	      
  T        7	      7	 /      * T1 C      B U}  b      _ Uv T0 l     7	 w     	  Tv       7	 Ǩ     7	 Ѩ     7	      f
  U	           f
  U	`           f
  U	      #     f
 U	                    i 9    [ Y      7	      7	                      7	      7	 2     7	      
 U} T	       r  0            	  w2    cv <=    8  |   sp 82  b ` ax 1    $  82      1       p  6z  ǩ  S  6z  f \ ret 6z   ժ G
  1  ߫ ѫ v;  -2   x 
 	9     
 	9     
- 	9     
@ 	9     
S 	9     
f 	9  '    ʪ             p      U}        7	      7	      
  T}  ϩ     7	      7	        T1      7	 &     7	 1     
 8 T  @     7	 ]     7	 o      i T1        U} Tv         Tv Q}         U}         T       7	 )     	  T}  3     7	       % U} Tv        = Tv       7	      7	 ׫     f
 v U	p           f
  U	           f
  U	0           f
  U	           f
 U	       ;            4 9    W U B     7	 M     7	   ]         ]  } {  S     7	 ]     7	 r     7	      
 U} T	       m  )            } 	  )w2    cv )<=   ݭ 8  +|   sp +82    ax +1    $  +82  H @   +1       p  /6z    S  06z    d  16z  I = ret 6z  ݱ ˱ v;  5-2    
 	9  ;   
 	9  @   
 	9  H   
 	9  M   
 	9  U   
1 	9  Z   
D 	9     
W 	9     
j 	9     
} 	9     <                     E A       Uv        7	      7	      
  T}       7	 ڬ     7	       ) T1      7	      7	 '     
 ] T 6     7	 S     7	 e       T1 ~     7	      7	      
  T      7	 ˭     7	 ݭ       T1 (     
  U	`      /     7	 9     7	 m      D U}  w     7	      	 i Tv       7	 Ӯ     
  U	             U~ T}  ,       Uv  \      v     
  U	              T}       f
 . U	           f
 M U	           f
 l U	      ʯ     f
  U	      د     f
  U	@           f
 U	                    9    } {      7	      7	   M       P  +4     C     7	 M     7	 b     7	      
 U~ T	       ]              	  w2  ʳ Ƴ cv <=    8  |   sp 82    ax 1    $  82  A 9   1      N p  6z    S  6z   ~ ?L  -2    d  6z  9 1 d  "6z    v;  -2    
 	9     
 	9      
 	9     
 	9                 < 9           7	      7	       7	      7	 (     7	 3     
 { T}  B     7	 _     7	 q       T1      7	      7	      
  T      7	 ם     7	        T1       . U~ T1       L U} Tv  9      d Uv  `      g     7	 r     	  T~  |     7	        Tv  Ϟ     7	 ٞ     7	      f
  U	`           f
  U	           f
 2 U	       -     f
 U	       
a 	9  $               Ǹ Ÿ       7	      7	 Ҝ     7	      
 U~ T	       ZJ  0           ) 	  w2    cv <=  1 ' 8  |   sp 82    ax 1  ׹ ˹ $  82  e ]   1  ޺ ܺ    p  6z     S  6z    ?L  -2    d  6z  ] U d   6z  Ƽ  v;  -2  A 5 
 	9     
' 	9     
: 	9     
M 	9     $             9    Ž ý +     7	 6     7	       7	      7	 ȟ     7	 ӟ     
  T}       7	      7	        T1 *     7	 >     7	 K     
 6 T Z     7	 w     7	       g T1        U~ T1        U} Tv  ٠       Uv              7	      	  T~       7	 `       Tv  o     7	 y     7	      f
 J U	p           f
 i U	           f
  U	0      ͡     f
 U	       
 	9      ]       P       S     7	 ]     7	 r     7	      
 U~ T	       {  p           v 	  w2    cv <=  U K 8  |   sp 82  ̾ ʾ ax 1    $  82      1  ڿ ؿ d   p  6z    
 	9     
 	9     Ԧ     7	      7	      
 F T}       7	      7	 ,      w T1 9      j     f
  U	h           f
 U	0       9             9    L J @     7	 K     7	          pd  -  r p       7	      7	      7	 y     
 U} T	e
       }G  h'  . 	  hw2    cv h<=    8  j|   sp j82    ax j1    $  j82  j f   j1    ix k1    
7 _p k+   (  w p  o6z  9 5 v;  p-2  w o 
} 	9  v   
 	9  {        7	      7	      
  T}       7	 э     7	        T1       
 T0      7	 #     	 / T}  -     7	 d     f
 [ U	}           f
 U	`}       5             9      <     7	 G     7	   G       '  j     =     7	 G     7	 ]     7	 s     
 U} T	e
       %q  ?     o       	  ?w2  "  cv ?<=  c [ 8  A|   sp A82    ax A1    $  A82      A1    ix B1  !  
 _p B+   (   p  F6z  e _ v;  G-2    
A 	9  M   
T 	9  R                9           7	      7	       7	      7	      
  T}       7	 1     7	 C       T1 \       T0 f     7	 q     	 8 T}  {     7	      7	      7	 ԏ     f
 ~ U	 ~           f
 U	}       
 	9  c           `(  A  : 8       7	      7	      7	      
 U} T	e
         F            " 	  w2  a ] cv <=    8  |   sp 82  L F ax 1    $  82  @ <   1    P  k p  6z    v;   |     k  !32  L F 
! 	9  '   
4 	9  ,      	\:  8  H     7	 H     7	 H     o T| Q~   7G     7	 LG     7	 TG     / iG     7	 xG     7	 G     
  T~  G     7	 G     7	 G      	 T1 G     7	 eH     7	 pH     7	 H     f
 O U	o      H     f
 U	ho       3H             9  :    :H     7	 EH     7	   F               F     7	 F     7	 G     7	 H     
 U} T	e
       ^  H           % 	  w2    cv <=  +  8  |   sp 82    ax 1  &  $  82      1       n p  6z  P L v;  |     k  32    
$ 	9     
7 	9     @   	\:    J     7	 J     7	 J     o T| Qv   7I     7	 LI     7	 TI     / iI     7	 xI     7	 I     
  T~  I     7	 I     7	 I       T1 I     7	 UJ     7	 `J     7	 J     f
 R U	8p      J     f
 U	o       %J             9      ,J     7	 7J     7	   H           * (  H     7	 H     7	 I     7	 J     
 U} T	e
       B              	  w2  Q M cv <=    8  |   sp 82  X 6 ax 1    $  82      1    ix 1    
 _p +   e  R p  6z  ^ R Z  ,z    ns -y   r O  .-2  &  len /|     Ŧ  0|     
 	9     
 	9     `e  |   BL    Ke  tns Oy  f ` (       U~  8     7	 @     / L     7	 d     7	      < N Tw Q	     R       7	      ) Ts Qs R1        7	      7	 #      2     7	 B     7	 M     
  T~  ]     7	 {     7	        T1        U       7	      7	      	 Q Tw  L     7	 e     7	      7	      7	       é     7	 Ω     	  T}       7	      )  Ts Qs R1 ª     7	 ժ     )  Ts Qs R1      f
 6 U	      +     f
 U	               d  {          7	      7	 ֧     7	      
 U} T	e
       h  |     V      ~ 	  |w2    cv |<=    8  ~|   sp ~82  z x ax ~1    $  ~82  J F   ~1    ix 1    
 _p +   (   p  6z    v;  -2  W O 
 	9     
 	9     S     7	 j     7	 u     
  T}       7	      7	       M T1 Ր      ߐ     7	      	  T}       7	 +     f
  U	~      7     f
 U	p~                    9           7	      7	          (  ~5          7	      7	 -     7	 F     
 U} T	e
         U@           J 	  Uw2    cv U<=  C ; 8  W|   sp W82    ax W1    $  W82  H D   W1    f    p  [6z    u  6z  N J v;  _-2    
 	9  e   
 	9  j        7	      7	 ʯ     
  Ts  گ     7	      7	 
       T1 9        Us  Y      &  Us  d     7	 o     	 K  Ts  z     7	      f
 w  U	       Ȱ     f
 U	ذ                     9  w         7	      7	   i       `f  W     ^     7	 i     7	      7	 װ     
 U} T	e
       g  2P     V       	  2w2  7 3 cv 2<=  x p 8  4|   sp 482    ax 41  
  $  482      41    ix 51  6 2 
 _p 5+   P)  M p  96z  x t v;  :-2    
] 	9  @   
p 	9  E        7	 ʑ     7	 Ց     
  T}       7	      7	        T1 5      ?     7	 J     	  T}  T     7	      f
 1 U	0           f
 U	~       \             9  P    c     7	 n     7	   w        )  4  : 8  m     7	 w     7	      7	      
 U} T	e
         0           E	 	  w2  a ] cv <=    8  |   sp 82  /  ax 1    $  82      1    f   p  6z  S G }  -2    D  -2  ? 9 
  Yr    }B  Yr    cld 6z    O  -2    len |   \ L   |     \  |     Ŧ  |   j d 
 	9     
 	9           7	 «     7	 ѫ     7	      7	            7	      7	      
 4 T  (     7	 E     7	 W      e T1 n     %  U| T~  |     %  U} T~       	  U        U  Ӭ       U| T	;             Uw  I      # U|  x      ; U}       7	      7	      	 o T ޭ      U|        Uw       7	      7	 W     7	 r     7	        T $ &      7	      	  T        8 Uw T	;      ׮     7	      ) h Tv Qv R1      7	      )  Tv Qv R1 1     f
  U	      ?     f
 U	8        ]       e       S     7	 ]     7	 s     7	 #     
 U} T	       v       K      q 	  w2    cv <=  )  8  |   sp 82    ax 1    $  82      1    ix 1  U Q 

 _p +    g   p  6z    B  |   ' ! cld 6z  v p O  -2    len |   "  Ŧ  |     

 	9     

 	9     [     7	 p     7	 x           7	      7	      
  T       7	 ϱ     7	       I T1 C      a U}  O     7	 f     7	 |     	  T        U}  ²     7	 ݲ     7	      7	 (     7	 7     7	 G       T| Q2 W     7	 j     ) ; Tv Qv R1 }     7	      7	            7	      	  T}  ͳ     7	      7	      )  Tv Qv R1      f
  U	      +     f
 U	p               f  (  % #       7	      7	 &     7	      
 U T	=       c  x0           = 	  xw2  L H cv x<=    8  z|   sp z82    ax z1    $  z82      z1    g   p  ~6z  %    6z    v;  -2    
s 	9     
 	9          7	      7	      
  Ts  ʴ     7	      7	        T1 )       Us  I       Us  T     7	 _     	 > Ts  j     7	      f
 j U	@           f
 U	       r             9    4 2 z     7	      7	   Y       Pg  z  Z X  N     7	 Y     7	 p     7	 ǵ     
 U} T	e
       h  U     V       	  Uw2   } cv U<=    8  W|   sp W82  # ! ax W1  T F $  W82      W1  F D ix X1   | 

 _p X+   )  @ p  \6z    v;  ]-2     
P 	9  c   
c 	9  h        7	 *     7	 5     
  T}  D     7	 a     7	 s       T1            7	      	  T}       7	      f
 $ U	           f
 U	x                    9  s  ^ \ Ó     7	 Γ     7	   ג       )  W     ͒     7	 ג     7	      7	      
 U} T	e
       i  .е            	  .w2    cv .<=    8  0|   sp 082  M K ax 01  z p $  082      01  D B g   p  46z   z 4  6z    v;  8-2  5 - 
 	9  >   
 	9  C   7     7	 O     7	 Z     
 > Ts  j     7	      7	       o T1 ɶ       Us         Us       7	      	  Ts  
     7	 J     f
  U	      X     f
 U	                   Q 9  P         7	 &     7	          g  0z          7	      7	      7	 g     
 U} T	e
              V      } 	  w2    cv <=  !  8  |   sp 82    ax 1    $  82  R N   1    ix 1    
 _p +   *   p  6z  !  v;  -2  _ W 
 	9     
 	9     s     7	      7	      
  T}       7	      7	 Ӕ      L T1            7	 
     	 ~ T}       7	 K     f
  U	H      W     f
 U	                    9  )    #     7	 .     7	   7       )  4     -     7	 7     7	 M     7	 f     
 U} T	e
       0`  p     V      7 	  w2  
  cv <=  K C 8  |   sp 82    ax 1    $  82  | x   1    ix 1  	  
J _p +   p*   p  6z  K G v;  -2    
 	9     
 	9     ӕ     7	      7	      
  T}       7	 !     7	 3       T1 U      _     7	 j     	 8 T}  t     7	      f
 d U	Ѐ           f
 U	       |             9           7	      7	          @*            7	      7	      7	 Ɩ     
 U} T	e
       <r  J           h 	  w2  4 0 cv <=  { m 8  |   sp 82      ax 1  v  h  $  82      1  f d ix 1    
 _p +      p  6z    v;  |     k  32  X R 
_ 	9     
r 	9        \:      K     7	 _L     7	 mL     o T| Qv   'K     7	 <K     7	 DK     / YK     7	 hK     7	 sK     
  T~  K     7	 K     7	 K      O T1 K     7	 5L     7	 @L     7	 }L     f
  U	p      L     f
 U	p       L             9      L     7	 L     7	   J              J     7	 J     7	 K     7	 L     
 U} T	e
         H           " 	  w2  * & cv <=  k c 8  |   sp 82    ax 1    $  82  r l   1    ix 1  ) % 
5 _p +   S  ! p  6z  u g Y  -2   
 ؒ  HYr    v;  -2  ] S 
 	9     
 	9     I             9  W    J     7	 J     7	  H     7	 I     7	 I     
 /  T~  "I     7	 ?I     7	 QI      `  T1 nI     7	 I     
   U~  I        U} T0 I       U}  I     7	 I     	   T|  I     7	 OJ      ! U} T~  J     7	 J     7	 J     y 8! T|  J     7	 J     7	 'K     7	 <K     f
 ~! U	Ș      JK     f
 U	       
! 	9      H       `S  !     H     7	 H     7	 H     7	 YK     
 U~ T	        ,0N  Wp     6      % 	  Ww2    cv W<=  ^ T 8  Y|   sp Y82    ax Y1  	  $  Y82  	 	   Y1  
 	
 @h  /% p  ]6z  M
 A
 J  ^-2  
 
 7  %Yr   	   &Yr  q m /  'Yr  @
F# 	9  j   
Y# 	9  o   \            # 9  ,    c     7	 n     7	       7	      7	      7	 !     
 # Tv  0     7	 M     7	 _      $ T1 v     % ,$ U} Tv       	 D$ U}       a b$ U} Tw  ¸      $ Uv T|  ϸ     $ U|        $ Uv T}       $ U}  <     $ U}  C     7	 M     7	      f
 % U	p           f
 U	0                   t% 9           7	 
     7	          h  Y%          7	      7	      7	      
 % U~ T	           
  ,  I           ) 	  w2    cv <=  _ U 8  |   sp 82    ax 1    $  82  ~ v   1    ix 1  1 - 
& _p +     ) p  #6z  } o J  $-2    7  Yr  ~ v   Yr    /  Yr  @
D' 	9  0   
W' 	9  5   pJ     7	 J     7	 J     7	 J     
 ' Tv  J     7	 J     7	 J      ' T1 J     % ' U~ Tv  K     6 ' U|  +K     a ( U| Tw  >K      9( Uv T~  KK     M( U~  cK      k( Uv T|  pK     ( U|  K     	 ( U|  K     f
 ( U	      K     f
 ( U	      K     ( U|  L     f
 U	       pK            J) 9  R  B > wK     7	 K     7	   +J         s)  | z  !J     7	 +J     7	 @J     7	 K     
 ) U~ T	      
L     
  p  7           - 	  w2    cv <=    8  |   sp 82  E C ax 1  r h $  82      1  f d P  - p  6z      -2     p  Yr  > : y>  Yr   t v;  -2    
* 	9     
+ 	9     @P  + ns y   } 
<+ 	9     8      Z+ Tv Q}  9     n+ U}  &9     	 39      + Uv T0 <9     + Uv  9     7	 9     
 T	'     Q0  
+ 	9     R8     7	 i8     7	 x8     7	 8     
 ,, Tv  8     7	 8     7	 8      ], T1 8     % {, U} Tv  8     	 , U}  C9     7	 N9     	 , T}  X9     7	 g9     7	 q9     7	 9     f
 , U	      9     f
 U	P       9            _- 9      9     7	 9     7	   8       O  -     8     7	 8     7	 "8     7	 9     
 U~ T	       D  2     D      1 	  w2    cv <=  ^ T 8  |   sp 82    ax 1    $  82  { u   1     O  >1 p  6z  '  AZ  -2    }B  Yr      Yr  > 0 ns y    v;  -2  C ; 
/ 	9     
$/ 	9     !4            i/ 9      (4     7	 34     7	  3     7	 3     7	 #3     
 / T~  23     7	 O3     7	 a3      / T1 ~3     7	 3     % / T~  3     	 	0 U|  3      '0 T~ Q|  3     ;0 U|  3     	 3      e0 U| T0 3     y0 U|  4     7	 4     	 0 T}  4     7	 \4     0 U|  j4      0 T~ Q0 }4     7	 4     7	 4     7	 4     f
 "1 U	ȕ      4     f
 U	       
Q1 	9      2       N  z1     2     7	 2     7	 2     7	 4     
 U~ T	       h  vb           4 	  vw2    cv v<=  / ' 8  x|   sp x82    ax x1    $  x82  I E   x1    ix y1    
2 _p y+      k4 p  }6z    }B  Yr  R N v;  -2    
2 	9     
2 	9     d            C3 9      d     7	 *d     7	  #c     7	 :c     7	 Ec     
 u3 T}  Tc     7	 qc     7	 c      3 T1 c     	 c      3 U} T0 c     3 U}  c     7	 c     	 	4 T~  c     7	 c     7	 	d     7	 Gd     f
 O4 U	Hv      Sd     f
 U	v       
~4 	9      b         x4     b     7	 b     7	 b     7	 bd     
 U} T	e
       u  Kpd           7 	  Kw2  ; 7 cv K<=  | t 8  M|   sp M82    ax M1     $  M82      M1     ix N1  : 6 
5 _p N+   `  \7 p  R6z  | x v;  S-2    
6 	9  Y   
6 	9  ^   e            [6 9        e     7	 e     7	  d     7	 d     7	 d     
 6 T}  e     7	 !e     7	 3e      6 T1 ee      6 T0 oe     7	 ze     	 6 T}  e     7	 e     7	 e     7	 e     f
 @7 U	v      e     f
 U	v       
o7 	9  q    d       0  M7  >  <   d     7	 d     7	 d     7	 e     
 U} T	e
         ! f           : 	  !w2  e  a  cv !<=      8  #|   sp #82  ! ! ax #1  8! *! $  #82  ! !   #1  *" (" ix $1  d" `" 
8 _p $+     M: p  (6z  " " v;  )-2  " " 
8 	9  /   
9 	9  4   g            L9 9    W# U# g     7	 #g     7	  cf     7	 zf     7	 f     
 ~9 T}  f     7	 f     7	 f      9 T1 f      9 T0 f     7	 f     	 9 T}  	g     7	 ?g     7	 Ig     7	 dg     f
 1: U	Hw      pg     f
 U	w       
`: 	9  F    'f         #:  }# {#  f     7	 'f     7	 =f     7	 g     
 U} T	e
                    = 	  w2  # # cv <=  # # 8  |   sp 82  F$ D$ ax 1  u$ i$ $  82  $ $   1  R% P% ix 1  % % 
; _p +   h  z= p  6z  % % 
  pYr  & & v;   -2  & & 
; 	9     
< 	9     ɺ            R< 9  y  & & к     7	 ۺ     7	       7	 *     7	 5     
 < T|  D     7	 a     7	 s      < T1             < U| T0      < U|       7	      	 = T~       7	      7	      7	      f
 ^= U	      (     f
 U	       
= 	9      ׹       ph  =   ' '  ͹     7	 ׹     7	      7	 7     
 U} T	e
       ڍ  @           :C 	  w2  G' C' cv <=  ' ' 8  |   sp 82  ( ' ax 1  2( $( $  82  ( (   1  ")  )  i  B ey  -2  ^) X)   D|   ) ) A  E-2  * ) @i  A sp L	82  A+ /+ i  k? \  O	_  ,  , 3     7	 F     7	 Z     7	 ǿ     7	 Ͽ       9     '       ? 9  [  Q, O, @     7	 K     7	       7	      7	      ( $     7	 ,     5 r     7	      7	      7	      B <@ T	s     Q2      7	 ս     7	 ߽     7	      7	      7	      O 
     7	       7	 *     7	      7	 '     \      7	      ) @ Tv Qv R1      f
 U	8            7	      7	 ѻ     - UA T	U     Q0 %     7	 7     7	 g@     | A T  f     i            7	      7	 g     | A Tv       7	       A T| Q2 Ǿ     7	 ׾      %B T| Q2 7     7	 W     7	 d     y \B Tv Q0      7	      y Tv Q2              B 9    w, u,      7	 Ǽ     7	   m       h  B  , ,  c     7	 m     7	      7	      
 U} T	                     RF 	  w2  , , cv <=  - , 8  |   sp 82  - - ax 1  . - $  82  . .   1  . . i  E p  Vz  0/ ,/ v;  |   j/ f/ k  32  / / 
<D 	9     
OD 	9     0j  D \:    / / 1     7	      7	      o T| Qv   g     7	 |     7	      /      7	      7	      
 D T~       7	      7	       ,E T1      u      7	      7	      7	      f
 E U	           f
 U	p       Q            E 9    +0 )0 X     7	 c     7	   -       i  	F  Q0 O0  #     7	 -     7	 C     7	      
 U} T	e
         a           I 	  aw2  x0 t0 cv a<=  0 0 8  c|   sp c82  _1 ]1 ax c1  1 1 $  c82  2 2   c1  2 2 ix d1  2 2 
G _p d+   j  yI p  hVz  3 3 id iL  3 3 X$  6z  3 3 Z  z  4 4 v;  o-2  Q4 I4 
G 	9  u   
G 	9  z   
G 	9  )               H 9  -  4 4      7	      7	  Y     7	 {     7	      7	      	 WH Tv Q0R2      7	      7	      
 H Tv       7	      7	 	      H T1 %      H Uv T}  C      M     7	 X     	 
I Tv  b     7	      7	      7	      7	      f
 ]I U	H           f
 U	        
I 	9             j  cI  4 4       7	      7	 ,     7	      
 U~ T	         2           tM 	  2w2  4 4 cv 2<=  ?5 55 8  4|   sp 482  5 5 ax 41  5 5 $  482  s6 m6   41  6 6  k  L p  8Vz  27 &7   9|   7 7 ret Vz  7 7 v;  =-2  8 8 
K 	9  C   
(K 	9  H   
;K 	9  
        7	      7	      
 mK T       7	      7	       K T1       K U        K T0      7	 %     	 K T|  /     7	 n     7	      7	      7	       CL T| Q2       [L U       7	      7	      7	      f
 L U	ص      #     f
 U	       7            M 9  \  8 8 >     7	 I     7	   =       j  4+M  9 
9  3     7	 =     7	 S     7	      
 U} T	$       J]              S 	  w2  39 /9 cv <=  t9 l9 8  |   sp 82  9 9 ax 1  6: ": $  82  ; ;   1  ; ;   CR p  Vz  1< #< .cvp }  ~dtd :y  < < )W  -2  < < 3  	-2  -= %= v;   |   = = k  32  = = 
N 	9     
N 	9     P  ,O \:  +  > =      7	 7     7	 E     o T} Qv   H h         	oO q 9> 7> e `> ^> Y > >       7	      	 O T0      7	      	 O T}       7	 °     7	 ʰ     / ߰     7	      7	       
 P T~      7	 ,     7	 >      DP T1 Y     
 iP U~ T	      h     
 P U~ T	           7	      7	      
 P T|         P U| T1 2      P Uw Tv  >     
 Q U0T0 G     
 4Q U0T0 W      ZQ U~ T
v  $0. ^     7	      7	       7	 #      Q Tv  ]     " Q Uv  u     f
 Q U	      ~     
 Q U0T0      
 R U0T0      f
 'R U	           f
 U	@                   R 9  -  > >      7	      7	   C         R  > >  9     7	 C     7	 Y     7	      
      
 U~ T	!       r             X 	  w2  &? "? cv <=  i? _? 8  |   sp 82  ? ? ax 1  A@ -@ $  82  #A A   1  A A Б  RW p  Vz  NB BB .cvp }  ~dtd :y  B B )W  -2  QC MC 3  	-2  C C v;  |   D  D k  32  @D :D 
YT 	9     
lT 	9     @  T \:    D D      7	 ϶     7	 ݶ     o T} Qv   H (        	U q D D e D D Y E E  D     7	 N     	 &U T0 X     7	 c     	 KU T}  m     7	      7	      /      7	      7	      
 U T~ ϴ     7	      7	       U T1      
 U U~ T	      (     
 !V U~ T	           7	      7	      
 SV T|        kV Tv       
 V U0T0      
 V U0T0      7	      7	      7	       V Tv       " V Uv        W U| T1 '     f
 6W U	0      I     f
 U	       D            W 9    QE ME K     7	 V     7	            W  E E       7	      7	      7	 ,     
 ;     
 U~ T	!       6Y  0           Z 	  w2  E E cv <=  E E 8  |   sp 82  F F ax 1  F F $  82  VG NG   1  G G k  Z p  Vz  	H H I  |   EH ?H 
Y 	9     
Y 	9          7	      7	      7	       ZY Tv Q2      7	      7	      
 Y T~       7	 ,     7	 >      Y T1 M      Y Tv  u     7	      f
 Z U	p           f
 U	(       M            bZ 9    H H T     7	 _     7	   W       `k  Z  H H  M     7	 W     7	 l     7	      
 U~ T	       @  z           ] 	  zw2  H H cv z<=  $I I 8  ||   sp |82  I I ax |1  J J $  |82  J J   |1  K K  l  5] p  Vz  IK EK v;  |   K K k  32  K K 
[ 	9     
[ 	9     @l  <\ \:    L L      7	 g     7	 u     o T| Qv   '     7	 <     7	 D     / Y     7	 h     7	 s     
 \ T~       7	      7	       \ T1            7	 =     7	 H     7	      f
 ] U	            f
 U	                   z] 9    DL BL      7	       7	          k  |]  jL hL       7	      7	      7	      
 U} T	e
       ,l  XL           ` 	  Xw2  L L cv X<=  L L 8  Z|   sp Z82  xM vM ax Z1  M M $  Z82  5N -N   Z1  N N `  _ p  ^Vz  N N   _	b  NO HO 
^ 	9  f   
^ 	9  k   	M     7	 +M     7	 :M     7	 LM     	 5_ Tv Q0R2 aM     7	 pM     7	 {M     
 g_ Tv  M     7	 M     7	 M      _ T1 M     	 _ U}  N     7	 $N     f
 _ U	Hq      AN     f
 U	q         1` 9  u  O O M     7	 M     7	   L       0  ZZ`  O O  L     7	 L     7	 L     7	 3N     
 U~ T	P         6 r           c 	  6w2  O O cv 6<=  -P P 8  8|   sp 882  P P ax 81  (Q Q $  882  Q Q   81  R R ix 91  RR NR 
pa _p 9+    !  c p  =Vz  R R v;  >	b  R R k  ?32  R R 
a 	9  E   
a 	9  J   r     7	 r     7	 r     / r     7	 r     7	 r     
 7b T~  r     7	 r     7	 s      hb T1 s     7	 -s     6 b T| Qv  4s     7	 us     7	 s     7	 s     7	 s     C b T|  s     f
 b U	8y      s     f
 U	x       Is            _c 9  S  @S >S Ps     7	 [s     7	   Gr          8c  fS dS  =r     7	 Gr     7	 ]r     7	 s     
 U} T	e
       *  	PN           wf 	  	w2  S S cv 	<=  S S 8  |   sp 82  /T -T ax 1  `T RT $  82  U T   1  mU gU   e p  Vz  U U J  |   FV DV 
d 	9     
d 	9     N     7	 N     7	 N     
 e T  N     7	 O     7	 O      4e T1 mO     7	 O     7	 O     7	 O      xe Tv Q2 O     7	 P     f
 e U	q      P     f
 U	q       ;O            f 9  1  kV iV @O     7	 KO     7	   }N         .f  V V  sN     7	 }N     7	 N     7	  P     
 U} T	^       {~   P           i 	  w2  V V cv <=  V V 8  |   sp 82  W W ax 1  W W $  82  X X   1  X X ix 1  $Y  Y 
Dg _p +   p  h p  Vz  fY bY v;  |   Y Y k  32  Y Y 
g 	9     
g 	9       h \:    )Z %Z FQ     7	 Q     7	 Q     o T| Qv   P     7	 P     7	 P     / P     7	 P     7	 P     
 ^h T~  P     7	 P     7	 Q      h T1 %Q     7	 Q     7	 Q     7	 Q     f
 h U	hr      Q     f
 U	(r       fQ            6i 9    aZ _Z mQ     7	 xQ     7	   MP       @  _i  Z Z  CP     7	 MP     7	 cP     7	 Q     
 U} T	e
       ,   R           l 	  w2  Z Z cv <=  Z Z 8  |   sp 82  P[ N[ ax 1  [ s[ $  82  $\ \   1  \ \    k p  Vz  \ \   	b  i] e] y<  h|   ] ] 
j 	9     
j 	9     oR     7	 R     7	 R     
 j T  R     7	 R     7	 R       k T1 >S     7	 \S     7	 kS     7	 }S     	 ik Tv Q0R2 S     	 k Uv  S     	 S     7	 S     f
 k U	r      S     f
 U	r       `  l 9    7^ 5^ S     7	 S     7	   -R         8l  ]^ [^  #R     7	 -R     7	 CR     7	 T     
 U} T	n       7  s           o 	  w2  ^ ^ cv <=  ^ ^ 8  |   sp 82  o_ i_ ax 1  _ _ $  82  c` _`   1  ` ` ix 1  ` ` 
Nm _p +   p!  n p  Vz  2a .a v;  	b  ja ha k  32  a a 
m 	9     
m 	9     At     7	 Vt     7	 ^t     / st     7	 t     7	 t     
 n T~  t     7	 t     7	 t      Fn T1 t     7	 t     6 qn T| Qv  t     7	 5u     7	 @u     7	 _u     7	 ju     C n T|  zu     f
 n U	y      u     f
 U	y       	u            =o 9    a a u     7	 u     7	   t       @!  fo  b b  s     7	 t     7	 t     7	 u     
 U} T	e
       |  Kj           rt 	  Kw2  +b 'b cv K<=  nb db 8  M|   sp M82  b b ax M1  c c $  M82  c c   M1  d d pY  s p  QVz  Hd <d ey  R6z  d d ret =6z  {e me   >1  f f v;  W-2  f f 
p 	9  ]   
p 	9  b   
q 	9  j   
q 	9  o   
'q 	9  C   l            lq 9  R  g g l     7	 l     7	  ^k     7	 uk     7	 k     
 q T}  k     7	 k     7	 k      q T1 k     7	 k     7	 k     
 r T   l     7	 l     7	 /l      2r T1 jl      Zr U} Tv Q1R1 ~l     = rr U}  l      r Uv T}  l     I r T  l      r T}  l     7	 l     	 r Tv  l     7	 m     7	 'm      s T Q2 7m     7	 Am     7	 \m     f
 Us U	      jm     f
 ts U	h      xm     f
 s U	      m     f
 s U	      m     f
 s U	(      m     f
 U	.       
 t 	9      k       @Y  M)t  Eg Cg  k     7	 k     7	 2k     7	 m     
 U} T	       ]z   m           Ry 	   w2  lg hg cv  <=  g g 8  |   sp 82  h h ax 1  ;h 1h $  82  h h   1   i i Y  x p  Vz  i |i ey  6z  j 
j 	%$  |   ret  6z  j j   !1  [k Sk v;  -2  k k 
u 	9     
u 	9     
u 	9      
u 	9  %   
u 	9  &   o            <v 9  3  l l o     7	 o     7	  1n     7	 Mn     7	 Xn     
 nv T}  gn     7	 n     7	 n      v T1 n     7	 n     7	 n     
 v Tw  n     7	 n     7	 o      w T1 Po      +w U T} Q0R1 do     = Cw U  ro     I [w T|  }o      yw U| T}  o     7	 o     	 w T|  o     7	 o     7	 o     7	 p     7	 p      w T| Q2 'p     7	 1p     7	 Mp     7	 `p     f
 5x U	      np     f
 Tx U	      |p     f
 sx U	آ      p     f
 x U	H      p     f
 x U	p      p     f
 U	X       
x 	9  F    m       Y  	y  El Cl  m     7	 m     7	 n     7	 p     
 U} T	D       C  Ж     w      (| 	  w2  ll hl cv <=  l l 8  |   sp 82  m m ax 1  ?m 1m $  82  m m   1  1n /n *  q{ p  Vz  mn gn dtd :y  n n v;  -2  ;o 3o 
Tz 	9     
gz 	9     
zz 	9     3     7	 J     7	 U     
 z T}  d     7	      7	       z T1            7	 ʗ     	 { T}  ԗ     7	      7	      7	 ,     f
 U{ U	`      8     f
 U	       ܗ            { 9    o o      7	      7	          *  {  o o       7	      7	      7	 G     
 U} T	e
       @             9 	  w2  o o cv <=  'p p 8  |   sp 82  p p ax 1  p p $  82  Aq =q   1  q q l  ~ p  Vz  q q dtd :y  Or Cr v;  -2  r r 
*} 	9     
=} 	9     
P} 	9          7	      7	 %     
 } T|  4     7	 Q     7	 c      } T1 w      } U|        } U}        } U}       7	      	  ~ T|       7	      7	      7	      f
 f~ U	      "     f
 U	P                   ~ 9    9s 7s      7	      7	          l  ~  _s ]s       7	      7	      7	 1     
 U} T	e
         n@            	  nw2  s s cv n<=  s s 8  p|   sp p82  @t >t ax p1  mt ct $  p82  t t   p1  au _u  m   p  tVz  u u j  u-2  -v %v dtd :y  v v Q  :y  w w 
P 	9     
c 	9          7	      7	      7	      
  Tv       7	 	     7	       Ӏ T1 4       U} T1 ^       Uv  q      & U} T|        > T|       I V Uv       / n U}       f
  U	8           f
  U	           f
 ˁ U	      )     f
 U	       |            , 9    x x      7	      7	   g       l  pU  x x  ]     7	 g     7	 |     7	      
 U~ T	         4p           х 	  4w2  x x cv 4<=  7y /y 8  6|   sp 682  y y ax 61  y y $  682  Uz Mz   61  z z @Z   p  :Vz  { { j  ;-2  { { dtd :y  { { Q  :y  | | 
 	9  F   
ȃ 	9  K   ,q     7	 Cq     7	 Rq     7	 ]q     
  Tv  lq     7	 q     7	 q      8 T1 q      U U~ T1 q      } Uv T| Q1R1 -r     / ;r     0  U| Tv  Pr       U|  hr     f
 ߄ U	      vr     f
  U	      r     f
 U	h       r            _ 9  i  | | 	r     7	 r     7	   p       Z  6  } }  p     7	 p     7	 p     7	 r     
 U~ T	         P     o       	  w2  <} 8} cv <=  }} u} 8  |   sp 82  } } ax 1  ~ ~ $  82  ~ ~   1   ~ 0+   p  Vz  = 7 dtd :y    v;  -2    
ӆ 	9     
 	9  !   
 	9          7	 ʘ     7	 ՘     
 + T}       7	      7	       \ T1 -      7     7	 B     	  T}  L     7	      7	      7	      f
 ԇ U	            f
 U	       T            5 9  /    [     7	 f     7	   w        +  ^  7 5  m     7	 w     7	      7	      
 U} T	e
       m       o      } 	  w2  ^ Z cv <=    8  |   sp 82     ax 1  1 # $  82  Ё ́   1  # ! +  Ɗ p  Vz  _ Y dtd :y    v;  -2  Ղ ͂ 
 	9     
 	9     
ω 	9     #     7	 :     7	 E     
  T}  T     7	 q     7	       2 T1            7	      	 d T}       7	      7	      7	      f
  U	            f
 U	P       Ě             9    3 1 ˚     7	 ֚     7	          `+  4  Y W  ݙ     7	      7	      7	 /     
 U} T	e
       b  `     y       	  w2   | cv <=    8  |   sp 82  "   ax 1  S E $  82      1  E C ix 1   { 
J _p +   G   p  Vz  ǅ  X$  6z  : 6 v;  -2  x p 
 	9     
 	9     o             9    ֆ Ԇ v     7	      7	       7	      7	      
 / T|       7	      7	 #      ` T1 7      x U|  H      R     7	 ]     	  T|  g     7	      7	      7	      f
  U	           f
 U	       
 	9             G  H     }     7	      7	      7	      
 U} T	e
         y0            	  yw2  #  cv y<=  f \ 8  {|   sp {82  ݇ ۇ ax {1     $  {82      {1    m  0 p  Vz  U I z  -2  ݉ ׉ X$  b6z  4 & #Y  b6z  ъ Ɋ 
 	9     
 	9     `              9  f  / - g     7	 r     7	  q     6          v1  U S y     = B U}        ` U| Tv       I x T|        T       7	      7	      7	      
 ΐ Tv       7	      7	        T1 *       U~ T1 [      D U} Tv Q1R1 c      \ U}        z U} Tv         T|  '     7	 7       Tv Q2 G     7	 Q     7	      f
  U	ظ           f
  U	0           f
 U	                   u 9    | z      7	      7	   ]       `m  {     S     7	 ]     7	 r     7	      
 U~ T	       D  7     I      E 	  7w2  ɋ ŋ cv 7<=  
  8  9|   sp 982  k i ax 91    $  982      91  { u ix :1  ȍ č 
 _p :+    n   p  >Vz    
  ?-2    J  A-2    n CYr  )  v DYr    G  E6z  4 *   F1    v;  H-2    
t 	9  N   
 	9  S   
 	9  K   y            ߔ 9  X  r p      7	      7	  1     7	 G     7	 c     7	 n     
  T~  }     7	      7	       O T1      7	      % z U T~       %  U| T~         U T}       ʕ U}  #     ޕ U  4     =  U~  G     I  T|  R      , U| T}  \     7	 g     	 Q T|  q     7	      7	      7	      7	      f
  U	й           f
 U	       
Ӗ 	9  t           m  9          7	      7	      7	 	     
 U~ T	`       ,K  L           p 	  w2    cv <=    8  |   sp 82  y w ax 1    $  82  4 .   1    P   p  Vz    URI -2  Ӕ ɔ rW  -2  P J R  -2    
  Yr   ӕ J  Yr    /  Yr  Z  s  -    Yr  ӗ Ǘ }B  Yr  j \ ,  z    ns y  ә  v;  -2    
 	9     
' 	9     
: 	9       Q h  6z  1 ' 
k 	9     
~ 	9  )   M     7	 M     7	 N       U~  N      Ι U| T: N     a  U| T N       U~ TQ  O      9 U~ TQ}   O      S U 0O      m U BO      U  HO      U|  ]O      U O     n ˚ UT  O     ߚ U  O      U O     	 U|  O      U}  O     	 5 U|   P     f
 U	        .N     J        R&  -Yr    9N     n  U~ T}  JN       U~ T| Q  UN      gN     ޛ U|  mN      U  hxN     U}   L     7	 L     7	 L     7	 L     7	 L     
 O T~  M     7	  M     7	 2M       T1 OM     7	 iM     %  U T~  tM     6 Ü U|  M     ל U|  M     7	 N     I  UT0 N     % ! U} T~  *N     	 9 U  N     7	 N     	 ` T N     7	 O     f
  U	      O     f
 U	       M             9  2    M     7	 M     7	   ML               CL     7	 ML     7	 cL     7	 P     
 b U~ T	X      P     
    x P     Y       	  xw2  E A cv x<=   ~ 8  z|   sp z82    ax z1   
 $  z82      z1        p  ~Vz  L @ rW  -2  Ԟ Ξ R  -2  !  
  Yr  c W J  Yr    ,  z  l d R&  Yr  ՠ ˠ v;  -2  O G 
۟ 	9     
 	9     
 	9     P     7	 P     7	 P     7	 P     
 @ T~  P     7	 P     7	 Q      q T1 )Q     7	 CQ     %  U T~  NQ     6  U}  ^Q     Ƞ U}  eQ     7	 oQ     7	 Q     7	 Q     %  U| T~  Q     n + U~ T  Q      O U~ T} Q|  Q      R     p U}  R      U|  )R      U  0R     7	 ;R     	  T~  ER     7	 \R     f
  U	      jR     f
 U	x       ~Q            J 9      Q     7	 Q     7	   MP       Ш  zs  ӡ ѡ  CP     7	 MP     7	 cP     7	 yR     
 U~ T	P       8T  G           s 	  Gw2    cv G<=  ; 3 8  I|   sp I82    ax I1  ɢ  $  I82  D <   I1    `n   p  MVz    	rW  N-2  G  6z  p l 
  Yr      1   
 v;  U-2  x p 
 	9  [   
 	9  `   
 	9     
. 	9          7	      I R T0      7	      7	      
  T}       7	      7	        T1       Ӥ U} Tv  *      Uv  7     =  U}  E     I  T~  P      5 U~ Tv  Z     7	 e     	 Z Tv  o     7	      7	      7	      f
  U	x           f
 U	0       w             9  s  ֥ ԥ ~     7	      7	   =       0n  I*     3     7	 =     7	 R     7	      
 U~ T	         @E            h 	  w2  #  cv <=  h \ 8  |   sp 82    ax 1  !  $  82      1  ( & R   p  Vz  h ^ ؒ  -2  ݨ ר G  6z  * & 9z  Yr  n `   1    v;  -2    
 	9  "   
ǧ 	9  '   
ڧ 	9     F             9      F     7	 F     7	  E     7	 E     7	 E     7	 E     
 ^ Tv  E     7	 F     7	 !F       T1 8F     %  U} Tv  LF     	 Ũ U}  YF       Uv T}  hF      U}  yF     =  Uv  F     I ' T~  F      E U~ T}  F     7	 F     	 j Tv  F     7	 F     	  U0 F     7	 G     7	 #G     f
 ǩ U	8      @G     f
 U	       
 	9  B    mE       R       cE     7	 mE     7	 E     7	 2G     
 U~ T	J       Q             E 	  w2  5 1 cv <=  v n 8  |   sp 82  ׫ ի ax 1    $  82      1    n   p  Vz  M C ؒ  -2  ĭ  G  o6z  $   9z  pYr  h Z   q1  
   v;  -2   | 
 	9     
 	9     
ϫ 	9     c             9      j     7	 u     7	  b     7	 y     7	      7	      
 S Tv       7	      7	        T1      %  U} Tv       *  Uv T~       Ԭ U~       =  Uv  1     I  T}  <      " U} T~  F     7	 Q     	 G Tv  [     7	      	 k U0      7	      7	      f
  U	           f
 U	к       
ӭ 	9  	           n            7	      7	 2     7	      
 U~ T	J       	u             " 	  w2  / + cv <=  p h 8  |   sp 82  Ѱ ϰ ax 1     $  82      1    0o   p  Vz  G = ؒ  -2    G  Q6z    9z  RYr  b T   S1    v;  -2  ~ v 
 	9     
 	9     
 	9  a   c             9  e  ܴ ڴ j     7	 u     7	  b     7	 y     7	      7	      
 0 Tv       7	      7	       a T1      %  U} Tv       7  Uv T~        U~       = ɰ Uv  1     I  T}  <       U} T~  F     7	 Q     	 $ Tv  [     7	      	 H U0      7	      7	      f
  U	           f
 U	`       
 	9              o  ٱ           7	      7	 2     7	      
 U~ T	J       ,u  :R             	  :w2  ) % cv :<=  l b 8  <|   sp <82    ax <1    $  <82      <1    `  8 p  @Vz  a O }B  A-2     
  C-2  \ V t  
Yr    /  Yr    Yr  v ` D  Yr  o _ ns y  )    1   ׻ G  6z  Ӽ  v;  N-2  Ƚ  
ǳ 	9  T   
ڳ 	9  Y   
 	9  0   R     7	 S     7	 4S     7	 PS     7	 [S     
 9 T|  jS     7	 S     7	 S      j T1 S     %  U} T|  S     6  U}  S     I  U~ T0 S     	 մ U~  S     T  U| T0Q} R0 T       U T0 T     = 2 U|  T     I J T  &T      h U T|  IT     | U}  PT     7	 [T     	  T|  eT     7	 T     a ͵ U} T T     T  U| T0QR0 T       U| TQ~  "U      ? UT *U     = W U|  :U     I q T GU       UT|  oU     T  U| T0Q} R0 |U      ֶ U~ T0 U     =  U|  U     I  T~  U      $ U~ T|  U     n B U T~  U     n Z U  U     n U~  V      U V      U}  "V     7	 ,V     7	 HV     	 ʷ U}  ^V     f
  U	X      jV      U}  xV     f
  U	      V     f
 U	       mT            } 9    N J tT     7	 T     7	   R       0  <     R     7	 R     7	 R     7	 V     
  U~ T	      V     
  ,X  V     l       	  w2    cv <=    8  |   sp 82  Q O ax 1  ~ t $  82      1  r p   ' p  Vz    }B  -2  f ` 
  -2    t  Yr    /  Yr    Yr    D  Yr    ns y   t   1  3  G  6z  /  v;  -2  %  
 	9     
 	9     W     7	 <W     7	 TW     7	 pW     7	 {W     
  T|  W     7	 W     7	 W      5 T1 W     % S U} T|  W     6 k U}  W     I  U~ T0 X     	  U~  X     T Ȼ U| T0Q} R0 #X     =  U|  1X     I  T  <X       U T|  _X     * U}  fX     7	 qX     	 O T|  {X     7	 X     a { U} T X     n  U0T~  X     T ü U| T QR0 Y     ټ U Y     =  U|  /Y     I  T <Y      + UT|  gY     T S U| T0Q} R0 rY     = k U|  Y     I  T~  Y       U~ T|  Y     	  U}  Y     f
 ؽ U	      Y      U}  Y     f
  U	      Y     f
 U	       X            l 9  5    X     7	 X     7	   V              V     7	 V     7	 V     7	 Y     
 Z     
 U~ T	       C  `_            	  w2    cv <=  ` X 8  |   sp 82    ax 1    $  82  i a   1    @W  n p  Vz  $  
  -2    G  6z    9z  Yr  R D   1    v;  -2  X P 
, 	9     
? 	9     `             9      `     7	 `     7	  _     7	 _     7	 _     7	 `     
  T}  `     7	 /`     7	 A`       T1 X`     %  Uv T}  l`     	 * Uv  `     T R U} T0Qv R0 `     f Uv  `     = ~ U}  `     I  T~  `       U~ Tv  `     7	 `     	  Tv  `     7	 a     7	 !a     7	 <a     f
  U	      Ha     3 Uv  Va     f
 R U	      da     f
 U	М       
 	9      _       W       _     7	 _     7	 _     7	 sa     
 U~ T	         xZ            	  xw2    cv x<=  H < 8  z|   sp z82    ax z1    $  z82  z r   z1    0  k p  ~Vz  5 ) 
  -2    G  6z    9z  Yr  N @   1    v;  -2  T L 
4 	9     
G 	9     [             9      [     7	 [     7	  Z     7	 Z     7	 Z     7	 Z     
  Tv  Z     7	 Z     7	 Z       T1 [     %  U} Tv  [     6 2 U~  %[     V O U0T~  4[     c U~  A[     = { Uv  S[     I  T}  ^[       U} T~  h[     7	 s[     	  Tv  }[     7	 [     7	 [     7	 [     f
  U	      [     0 U~  [     f
 O U	      \     f
 U	H       
~ 	9      =Z          z     3Z     7	 =Z     7	 RZ     7	 \     
 U~ T	       ?  XB     K       	  Xw2    cv X<=  B 8 8  Z|   sp Z82    ax Z1    $  Z82      Z1    Q   p  ^Vz    v;  _-2  T L 
 	9  e   
 	9  j   B     7	 
C     7	 C     
 " T}  $C     7	 =C     7	 OC      S T1 _C      jC      x T}  tC     7	 C     	  T}  C     7	 C     f
  U	      C     f
 U	H       C            * 9  s    C     7	 C     7	   B       Q  ZS     B     7	 B     7	 B     7	 C     
 U} T	e
       BV       t      + 	  w2    cv <=  @ 8 8  |   sp 82    ax 1    $  82  ^ V   1    o  t p  Vz    	   -2    ~w  "-2    @  $-2  , $ dtd m:y    
  nYr    Rz  oYr    2  pYr    v;  ,-2  \ T 
 	9  2   
/ 	9  7               t 9  t         7	 "     7	  
 	9     ^     7	 u     7	      7	      7	      7	      
  T|       7	      7	        T1 "     I . U} T0 8     I K U T0 G     I j UT0 \     D  U0T~ Q} R r      U}  }      U       U~         U      7	      	  T|       7	      7	      7	 G     f
 X U	8      U     f
 U	                    9  S         7	      7	          po            7	      7	 3     7	 d     
 U~ T	         p            	  w2  - ) cv <=  n f 8  |   sp 82    ax 1     $  82      1    p  P p  Vz  \ P 	  -2    ~w  -2  J B @  -2    dtd K:y  5 ' 
  LYr    Rz  MYr    2  NYr  B 4 v;  -2    
 	9     
 	9                  9  R  E C      7	      7	  A            H 9  a  k i H     7	 S     7	       7	      7	      7	 '     7	 C     7	 N     
  T|  ]     7	 z     7	        T1      I  U} T0      I  U T0      I + UT0      D W U| T~ Q} R      k U}        U        U~         U $     7	 /     	  T|  9     7	 w     7	      7	      7	      7	      f
 4 U	м           f
 U	       
c 	9             o            7	      7	      7	      
 U~ T	                     	  w2    cv <=    8  |   sp 82  Z X ax 1   } $  82  , $   1    p   p  Vz    	  -2  q i ~w  -2    @  -2  ; 1 dtd *:y    
  +Yr  m ] Rz  ,Yr  &  2  -Yr    v;  -2  r j 
U 	9     
h 	9     0             9  1    7     7	 B     7	               9  ?         7	      7	  ~     7	      7	      7	      7	      7	      
 K T|       7	      7	 ,      | T1 B     I  U} T0 X     I  U T0 g     I  UT0 }     Q  U| T~ Q} R       U}       + U      ? U~        Y U      7	      	 ~ T|       7	      7	 !     7	 g     7	 q     7	      f
  U	p           f
 U	(       
 	9      =       `p  6     3     7	 =     7	 S     7	      
 U~ T	       }  s            	  sw2  C ? cv s<=   | 8  u|   sp u82    ax u1    $  u82      u1    ix v1  F > 
L _p v+   q     z	b      {	b    doc Vz  L > v;  -2    $     ^  U~  4       Uv T0 F     7	 Q     	  Tv  [     7	      7	      7	      7	      	 Y T~ Q0R2      7	      7	 %     7	 7     	  Tv Q0R2 B     ^  U~  a     	  U|  u     7	      7	  c            2 9    J H j     7	 u     7	          p  u[  p n       7	      7	      7	      
 U~ T	Ƚ       ,Wg  QT           g 	  Qw2    cv Q<=    8  S|   sp S82  ~ | ax S1    $  S82  ; 3   S1       p  WVz    {  X	b  T N 
 	9  _   
 	9  d   yT     7	 T     7	 T     7	 T     	  Tv Q0R2 T     7	 T     7	 T     
  Tv  T     7	 U     7	 )U      P T1 RU     	 h U}  U     7	 U     f
  U	s      U     f
 U	Hs       YU             9  n    `U     7	 kU     7	   7T         S     -T     7	 7T     7	 LT     7	 U     
 U~ T	       /  /u            	  /w2    cv /<=  3 % 8  1|   sp 182    ax 11  .   $  182      11    ix 21  X T 
4 _p 2+   !   p  6Vz    v;  7L    k  832   
 
 	9  >   
 	9  C   v     7	 v     7	 v     / 3v     7	 Bv     7	 Mv     
  T~  \v     7	 yv     7	 v      , T1 v     	 v     7	 v     6 d T| Qv  v     7	 v     7	 w     7	 'w     7	 2w     C  T|  Bw     f
  U	@z      ]w     f
 U	z       v            0 9  L  [ Y v     7	 v     7	   u       !  1Y     u     7	 u     7	 u     7	 Qw     
 U} T	e
       ,tc  f     N       	  w2    cv <=    8  |   sp 82  b ` ax 1    $  82  0 ,   1    ix 1    
o _p +     ( p  Vz    /  Yr  @.len |   3  	-2  g _ v;  	-2    
 	9     
 	9     
 	9     5g     7	 ?g     	 5 T0 Ig     7	 _g     	 ig     7	 xg     7	 g     
  T|  g     7	 g     7	 g       T1 g     
  U} T	      g     
  U} T	      g     k ! U| T@Q h     
 = U0T0 h     
 Y U0T0 h      v U} T0 3h     7	 Ah     	  T| Q}  Yh     7	 dh     	  T|  nh     7	 h     7	 h     7	 h     f
  U	@      h     f
 U	        vh            m 9  *  + ' }h     7	 h     7	   f       p    e c  f     7	 f     7	 g     7	 h     
  U} T	e
      h     
     i            	  w2    cv <=    8  |   sp 82  _ Y ax 1    $  82  @ :   1      D p  Vz    .  	b  T N d  |     qN  -2    J  |   ; 3 3  	-2    v;  |       k  32      
[ 	9     
n 	9     >k     4        n  |       Ck      Nk      dk     w  UT Q|  lk       nm     
        9       @  c \:    F B k     7	 n     7	 n     o T} Q1  }i     7	 i     7	 i     7	 i     	  T} Q0R2 i       i     7	 i     	  T0 i     7	 i     	  T}   j     7	 j     7	 j     / *j     7	 Ej     7	 Pj     
 [ T  _j     7	 |j     7	 j       T1 j     7	 j     -  T	x     Q|  k       &k     
  U~ T	      5k     
  U~ T	      wk       k     
 > U0T0 k     
 Z U0T0 k      w U~ T0 k     7	 %l     7	 0l     7	 l     
  U~ T	      l     
  U~ T	      l       UT  l     7	 l     7	 l     7	 m     7	 m      Y T| Q2 'm     7	 8m     -  T	x     Q0 Um     7	 _m     7	 m     7	 m     y  TQ0 m     7	 Tn     7	 fn     y 	 TQ2 |n     f
 ( U	      n     f
 U	       k             9     ~ k     7	 	l     7	   -i              #i     7	 -i     7	 Ci     7	 n     
 U~ T	j       u  Fn            	  Fw2    cv F<=    8  H|   sp H82    ax H1    $  H82      H1  W A    p  LVz  X H .K  M-2     d  O|     R&  rh  3 '   ss    Ǜ  t#ބ    qN  u-2  L	 "	 J  v|   
 
 8  w:y  D 0 n  x|   #  3  y	-2  c [ v;  Z|     k  [32    
 	9  a   
 	9  f     5 \:    L H q     7	 t     7	 t     o Tv Q}   o     7	 ,o       7o      Do     7	 No     	  T0 Xo     7	 co     	  Tv  mo     7	 o     7	 o     / o     7	 o     7	 o     
  T}  o     7	 o     7	 o      / T1 p     7	 -p     - ` T	x     Q0 up       p     7	 p     -  T	     Q0 p      p     	  U  q     
  U   q       U	`u     T	      Q 3q      Hq     
 A U~ T	      Wq     
 f U~ T	      jq       UT| Q R}  q       T q      q       q     
  U0T0 q     
  U0T0 q       U~ T0 q     7	 Er     7	 Pr     7	 r      Z U|  r      t U s      s     7	 Fs     7	 Us     7	 es       T} Q2 t     I  U|  t     7	 $t     y  T Q0 Dt     7	 St     y 3 TQ0 et     7	 t     7	 t     y j T Q2 u     7	 u     y  TQ2 5u     f
  U	P      Cu     f
 U	       r             9      r     7	 !r     7	   n         H?     n     7	 n     7	 n     7	 Ru     
 U} T	       ,              	  w2    cv <=   
 8  |   sp 82    ax 1    $  82  1 +   1    pq   p  Vz    d  |     /  1Yr  .len 2|   qN  3-2  9  J  4|     8  5:y  ,  v;  -2  h ` 
 	9     
 	9          0       | n  L|                       n U~ TQR  !       
 	9  b   P       ]     7	 y     7	      
  T~       7	      7	        T1      7	      7	      - = T	x     Q0 J       T     7	 e     - { T	     Q0        U~         U|       7	      y  T| Q0 >       T|  C       c     7	 q     	 % T| Q}       7	      	 J T|       7	 0            I | U~       7	      7	      7	        T| Q2        U~ TQ g     7	 t     y  T} Q0      7	      7	      7	      7	      y a T} Q2 7     7	 G     y  T| Q2 Z     f
  U	0      w     f
 U	                    9  A         7	      7	          @q  4  ' %       7	      7	      7	 i     
  U~ T	      |     
  T              K 	  w2  N J cv <=    8  |   sp 82    ax 1    $  82      1    q   p  -2  : 4      7	       G     7	 W      Tv Q2               9           7	 %     7	          q            7	      7	      7	 k     
 U} T	e
         p            	  w2    cv <=    8  |   sp 82  } { ax 1    $  82  d `   1    @r  , >2  z    A            U 9      H     7	 S     7	       7	      7	      
  T|       7	 !     
  U	      (     7	 2     7	 o     7	      7	      7	        Tv Q2            7	              q 9    : 8      7	      7	          r    ` ^       7	      7	      7	 	     
 U} T	       l       M      Y  	  w2    cv <=    8  |   sp 82  ) ' ax 1  V L $  82      1     r     L  X V v;  z   { r  4 w@  -2         7	      /      7	      < & T} Q R~       7	  z     7	      7	      7	      	 } T} Q0R2        U8 =     7	               9           7	       7	   =       r        3     7	 =     7	 S     7	 ]     
 U} T	5       N       ,      w 	  w2  > : cv <=   w 8  |   sp 82    ax 1    $  82      1    I   E  -2    v;  -2  Y Q 9     7	 a     7	 l     	 e T}  v     7	      7	        Tv       l      _ U	0       ~             9           7	      7	          PI  .          7	      7	      7	      
 U} T	         d7           < 	  dw2       cv d<=  I  =  8  f|   sp f82      ax f1  *!  ! $  f82  ! !   f1  " " P   	bE  j-2    
  Z" T" v;  q|   " " k  r32  " "    \:  |  # # 8     7	 9     7	 9     o Tv Q0  Y8     7	 8     7	 8     7	 8     / 8     
  U	 m      8     7	 =9     7	 H9     7	 g9     7	 w9      i Tv Q2 9     f
 U	       9             9  ~  W# U# 9     7	 #9     7	   8          f  }# {#  8     7	 8     7	 ,8     7	 9     
 U~ T	       NE  D`            	  Dw2  # # cv D<=  # # 8  F|   sp F82  w$ q$ ax F1  $ $ $  F82  E% =%   F1  % % @s  H 	.  J-2  fn 
L  % % v;  O|   \& X& k  P32  & & ps   \:  ]  & & V     7	      7	      o Tv Q|        7	      I  T0      7	      7	      /      	  U|  ,       U|  6     7	      7	      7	      f
 U	%       s             9  _  ' ' z     7	      7	          s  F  .' ,'       7	      7	      7	      
 U~ T	         p            
 	  w2  U' Q' cv <=  ' ' 8  |   sp 82  ' ' ax 1  ' ' $  82  ]( W(   1  ( (      z       	 	b  -2  	  |   \ey  
6z   \g  
"6z   	v;  -2       7	      7	      f
 7	 U	
           7	 ,     7	 <     7	 L      {	 Ts Q2 S     7	  
	 	9  ?            	  	  ) )       7	      7	      7	      
 U| T	j
       _}  `            " 	  w2  9) 5) cv <=  v) r) 8  |   sp 82  ) ) ax 1  ) ) $  82  A* ;*   1  * *      z        	  -2  	  |   \ey  
6z   	v;  -2  
 	  
L        7	      7	      f
 K U	
           7	      7	 ,     7	 <       Ts Q2 C     7	  
 	9             P	    * *       7	      7	      7	      
 U| T	
       ,p   	            	  w2  + + cv <=  ^+ V+ 8  |   sp 82  + + ax 1  + + $  82  i, a,   1  , ,    p  -2  - - 	  -2  V- R- 	i  u
O2  e  v
n  - - 3  w
	-2  . . 	     7	 	     7	 	     7	 	     	 q T0 	     7	 	     	  Tv  	       U  	     
  U~ T	      
     
  U~ T	      
     m  U} T0 ,
      D Uv T	'     Q0R1 I
      \ Uv  Q
     ' t Uv  z
     c 
     
  U0T0 
     
  U0T0 
       U~ T0 
     7	 
        Tv Q2 
     f
 U	       
            a 9    W. U. 
     7	 
     7	   M	           }. {.  C	     7	 M	     7	 b	     7	 
     
 U~ T	       k  e            < 	  ew2  . . cv e<=  . . 8  g|   sp g82  F/ D/ ax g1  s/ i/ $  g82  / /   g1  g0 e0 p   p  k-2  0 0 	  m-2  0 0 |{  o|   1 1 i  C
O2  S1 O1 U  D
|   1 1 e  E
n  1 1 q  F
Vz  s2 m2 3  G
	-2  2 2 v;  x-2  +3 #3 
S 	9  L
   
f 	9  k
   n     7	      7	      7	      7	      7	        T| Q2      7	      	  T0      7	      	  T}        % U~  1     7	 @     
 W U} T	      O     
 | U} T	      Y     m  U T0 t       U| T	'     Q0R1      '  U|       4  U       c      
 ! U0T0      
 = U0T0       ^ U} T      f
 } U	           C  UT  '     c 0     
  U0T0 9     
  U0T0 D        U} T|  K     7	 V     	 % T~  `     7	      7	       \ T~ Q2      7	      f
 U	       h             9    3 3 o     7	 z     7	   -       @  g  3 3  #     7	 -     7	 C     7	      
 U~ T	       	N  '      L       	  'w2  3 3 cv '<=  4 4 8  )|   sp )82  4 4 ax )1  4 4 $  )82  w5 o5   )1  5 5 Н   p  --2  06 &6 	  /-2  6 6 I  1-2  6 6 i  
O2  27 07    
|   a7 U7 e  
n  7 7 .len 
  v  
b  8 8 3  
	-2  99 19 v;  ;|   9 9 k  <32  : 9 
 	9  
   
 	9  "
                 9  '
  N: L:  
3 	9  7
      \:  ^  v: r:      7	      7	      o T} Q1  ~     7	      7	      7	      7	      	  T0      7	      	  T}       7	      7	      / %      4 U~  8     7	      
 f U T	           
  U T	           m  UT0      Q        U~ T| R0      c      
  U0T0      
  U0T0       = U Tv       7	      7	      7	      7	      	  T| QR2      7	      7	 *     f
  U	      L     f
 U	H       @            / 9  `  : : G     7	 R     7	   =         )X  : :  3     7	 =     7	 S     7	 /     
 >     
 U~ T	(       pv  P     s      } 	  w2  ; ; cv <=  T; L; 8  |   sp 82  ; ; ax 1  ; ; $  82  p< j<   1  < <    p  -2  T= P= å  |   = = i  	O2  = =    	|   > > e  	n  > > 3  		-2  n? f? v;  -2  ? ?      7	      7	      	 " T0      7	      	 G T|       7	 "     
 y U| T	      1     
  U| T	      A     A  U0T0Q0R0X0 O     m  U} T~  W     Q b     N  U~  l     c u     
 5 U0T0 ~     
 Q U0T0       q U| Tw       7	      	  T}       7	      7	      7	      7	 %       T~ Q2 0     7	 ?     
  U| T	      N     
 > U| T	      ^     A i U0T0Q0R0X0 l     m  U} T~  t     Q      [  U~ T} Q|       7	               9  "  0@ .@      7	      7	   }       P  4  V@ T@  s     7	 }     7	      7	      
 U} T	:       #             h$ 	  w2  }@ y@ cv <=  @ @ 8  |   sp 82  ;A 5A ax 1  A A $  82  7B 1B   1  B B   # p  -2  C B doc -2  XC RC k  |   C C q  	Vz  D C i  	O2  `D ^D    	|   D D 3  		-2  E E v;  |   E E k  32  E E 
  	9  	   
! 	9  	      [! 	\:         7	      7	      o T} Q|   =     7	 \     7	 x     7	      	 ! T0      7	      	 ! T}       7	      7	      /       " UT1      
 )" U~ T	           
 N" U~ T	           m m" UT0      Q -     g " U| T 7     c @     
 " U0T0 I     
 " U0T0 S      " U~ Tv  l     7	      7	      7	      7	 :     7	 I     7	 Y      i# Tv Q2 m     7	      f
 # U	p           f
 U	`                   # 9    CF AF      7	      7	            $  iF gF       7	      7	      7	      
 U~ T	K         a           * 	  aw2  F F cv a<=  F F 8  c|   sp c82  LG HG ax c1  G G $  c82  5H /H   c1  H H   ) p  g-2  I I   i-2  hI dI enc k-2  I I .len 	  ptr 	b  I I   	L  MJ ?J i  	O2  J J    	|   0K "K v  	Yr  K K g  	|   RL FL /K  	6z  Ǜ  	kp  L L 3  		-2  {M qM П  ' e  	n  M M z     s X& Uw       m v& U~ Tv       Q      [ & Uv T~ Q|              & U0T~ Qv R0X} Y      & U~        ' Uv       ' -' Uv       A' U}  3     
 ]' U0T0 <     
 y' U0T0 I      ' U| T1 W     f
 U	       S     7	 m     7	      7	      	 ' T0      7	      	 ( T|       7	 G     
 G( U| T	      V     
 l( U| T	      a     I ( Uv T}       c      
 ( U0T0      
 ( U0T0       ( U| Tw  m     7	      7	      	 -) Tv QR2      7	      	 ^) T} QR2      f
 }) U	y           c      
 ) U0T0      
 ) U0T0       ) U| T0      f
 U	       &            @* 9    RN NN -     7	 8     7	          `  ci*  N N       7	      7	 #     7	      
 *     
 U~ T	       v  `     P      0 	  w2  N N cv <=  N N 8  |   sp 82  oO kO ax 1  O O $  82  =P 7P   1  P P 0  / p  
-2  $Q  Q   -2  ^Q ZQ enc -2  Q Q .len G	    H	L  Q Q i  I	O2  cR YR    J	|   R R v  K	Yr  S ~S rv L	6z  T S 3  M		-2  &U U v;  -2  U U p  , ܔ  b	6z  V V j{  c	6z  V wV       , U0      C Uv T       7	      7	      7	 !     	 , T0 +     7	 6     	 - T}  N     7	      7	      
 Z- U} T	           
 - U} T	           m - U T0      I - U~ Tv       Q - U        - U0T~ Q _     . U~  f     c o     
 5. U0T0 x     
 Q. U0T0       r. U} T      7	      	 . Tv       7	      7	      7	      	 . Tv QR2 S     c \     
 / U0T0 e     
 '/ U0T0 o      D/ U} T0 }     f
 c/ U	(           w/ U~       c      
 / U0T0      
 / U0T0       U} T              0 9  \  
W W      7	      7	             H0  DW BW       7	      7	      7	 =     
 L     
 U~ T	       ,(n  
     Q      U6 	  
w2  kW gW cv 
<=  W W 8  
|   sp 
82  X X ax 
1  OX EX $  
82  X X   
1  6Y ,Y   5 p  
-2  Y Y fh 
-2  Y Y F  
-2  -Z #Z |f  
-2  Z Z k  
|   
[ [ i  O2  J[ D[ q    [ [    |   \ [ URL b  \ w\ 3  	-2  h] ^]   b  ] ] v;  
-2  J^ >^ X!     x       2   4	-2  ^ ^ i!      2 U	     T  s!     7	 ~!     	 2 Tv  !     	 !     7	 !     	 Tv Q0R2  &     7	 G     7	 a     7	 v     7	      7	      	 N3 T0      7	      	 -     7	 A     
 3 U~ T	      P     
 3 U~ T	      \     m 3 UT0       4 U	      T0QRv X Y      	 74 Uv       C W4 UT       c      
 4 U0T0      
 4 U0T0       4 U~ T}        7	       	 4 Tv        7	       7	       	 5 T Q0R2       7	       	 L5 TQ0R2       7	 !     7	 !     7	 .!      5 Tv Q2 !     7	  #             5 9  
  _ _ *      7	 5      7	            
6  ?_ =_       7	      7	      7	 "     
 U~ T	P       ,~  :
"     Y      ; 	  :
w2  f_ b_ cv :
<=  _ _ 8  <
|   sp <
82  "` ` ax <
1  d` X` $  <
82  ` `   <
1  `a Ta @  ; p  @
-2  a a P  B
-2  Eb =b F  D
-2  b b |f  F
-2  Tc Jc k  H
|   c c .len   .  b  $d d URL b  d d   	b  e e i  O2  Nf Ff q    f f    |   "g g 3  	-2  g g v;  S
-2  Uh Ih 
:8 	9     "     7	 "     7	 "     7	 "     7	 "     7	 	#     	 8 T0 #     7	 !#     	 #     7	 #     
 8 U~ T	      #     
 9 U~ T	       $     m "9 UT0 )$      I9 UTw Q}  W$     	 a9 Uv  k$     C 9 UT}  w$     
 9 U0T0 $     
 9 U0T0 $     c $      9 U~ T  $     7	 $     	 	: Tv  $     7	 E%     7	 X%     	 F: Tw Q0R2 o%     7	 %     	 w: T QR2 %     7	 %     	 : TQ0R2 %     7	 %     7	 %     7	 
&      : Tv Q2 5&     7	 i&     f
 U	       $            Z; 9  
  h h $     7	 $     7	   M"         <
;  &i $i  C"     7	 M"     7	 b"     7	 N&     
 ]&     
 U~ T	       /e  	p&     .      \B 	  	w2  Mi Ii cv 	<=  i i 8  	|   sp 	82  i i ax 	1  1j 'j $  	82  j j   	1  k k   A p  	-2  k k 7  	-2  k k F  	-2  Pl Dl |f  	-2  l l k  	|   um om .len i  ptr jb  m m URL kb  >n *n   lL  "o o i  mO2  o o q  n  Zp Pp    o|   p p 3  p	-2  zq pq v;  	-2  q q 
= 	9  {     _>   -2  r r +      > U	     T~  +     7	 +     	 &> Tv  1+     	 g+     7	 y+     	 Tv Q0R2  &     7	 '     7	 ,'     7	 E'     7	 _'     7	 i'     	 > T0 s'     7	 '     	 0(     7	 I(     
 ? U T	      X(     
 (? U T	      d(     m G? UT0 (      m? UTv R~  (     C ? UT~  (     c (     
 ? U0T0 (     
 ? U0T0 (      ? U T}  (     7	 (     	 @ Tw  )     7	 )     7	 )     
 U@ U T	      )     
 z@ U T	      )     m @ UT0 *     7	 2*     	 @ T} QR2 M*     7	 `*     	 @ Tw Q0R2 u*     7	 *     	 +A TQ0R2 *     7	 *     7	 *     7	 *      oA Tv Q2 E+     7	 +     f
 U	y       )            A 9  5
  r r )     7	 !)     7	   &         	B  2s 0s  &     7	 &     7	 &     7	 +     
 +     
 U~ T	       M  	+     U      =G 	  	w2  Ys Us cv 	<=  s s 8  	|   sp 	82  t t ax 	1  Bt 6t $  	82  t t   	1  Ku Iu P  uF p  	-2  u u P  	-2  u u .len 6  .  7b  #v v i  8O2  [v Yv    9|   v ~v 3  :	-2  w w 
C 	9  ?     E e  En  {w sw ,      C U  ,     m D U| Tv  ,     Q ,      ,     [ @D Uv T| Q~  ,      XD Uv  -      pD Uv  -     ' D Uv  -     
 D U0T0 -     
 D U0T0 -      D U~ T1 -      -      -     f
 U	     T   ,     7	 9,     7	 H,     7	 R,     	 WE T0 \,     7	 g,     	 |E T~  ,     
 E U~ T	      ,     
 E U~ T	      -     c -     
 E U0T0 (-     
 F U0T0 3-      )F U~ T  w-     7	 -     	 YF Tv Qw R2 -     f
 U	       3-            F 9  	  w w :-     7	 E-     7	   +          	F  x x  +     7	 +     7	 +     7	 -     
 /G U~ T	      -     
    K	 .     \      L 	  K	w2  <x 8x cv K	<=  x ux 8  M	|   sp M	82  x x ax M	1  %y y $  M	82  y y   M	1  ,z *z   3L p  Q	-2  hz bz P  S	-2  z z .len   .  b  {  { i  O2  @{ :{ U  |   { { '  |   { { rr  |   f| `| q  Vz  | |    |   } } 3  	-2  } } v;  `	-2  ~ ~ 
H 	9     0  'J e  n  ~ ~ 8/      .I U  O/     m LI U~ T}  \/     Q fI U n/      ~I U}  /     ' I U}  1     
 I U0T0 #1     
 I U0T0 01      I U| T1 51      <1      P1     f
 U	     T    /      `  ]J 8 ` Z +    .     7	 .     7	 .     7	 .     	 J T0 .     7	 .     	 J T|  /     7	 !/     
 J U| T	      0/     
 K U| T	      0     4 /K U~  0     c (0     
 XK U0T0 10     
 tK U0T0 <0      K U| T  C0     7	 P0     	 K T Z0     7	 0     C K UT~  0     7	 0     	 L T} QR2 \1     f
 U	       b0            xL 9  	    i0     7	 t0     7	   =.         M	L  6 4  3.     7	 =.     7	 S.     7	 1     
 1     
 U~ T	       ,kC  `1     d      S 	  w2  ] Y cv <=    8  |   sp 82    ax 1  0 " $  82  Ձ ρ   1  ? 9   TR p  -2    fh -2    dir -2  . * .len   w׎  b  n d i  O2   ߃    |     3  	-2      P ]  |     /R&  S wsax kp  { u e  n  Ѕ ȅ 83     9       :O ret |   . , G3      N Uv Ts R0 [3      O U| Ts Q
  q3      Uv Ts Q0R1  2      ]O U| Ts Q4 2      2     A O UwT0Qs Rv X0 3     m O Uw Tv  3     Q 33     [ O Uv Tw Q~  3     P Uw 3      P Uv  3     ' 1P Uv  l4     
 MP U0T0 u4     
 iP U0T0 4     f
 P U	      4     
 P U0T0 4     
 P U0T0 4      P U~ T1 4     f
 U	        1     7	 2     7	 %2     7	 /2     	 7Q T0 ;2     7	 F2     	 \Q T~  [2     7	 2     
 Q U~ T	      2     
 Q U~ T	      3     
 Q U0T0 3     
 Q U0T0 3     c 3      R U~ Tw %4     7	 A4     7	 V4     	 Ts QwR2  3     #       R 9  F	  U Q 3     7	 3     7	   1         R     1     7	 1     7	 1     7	 4     
 4     
 U~ T	       "m  )S JO    d  q4           Z 	  qw2    cv q<=    8  s|   sp s82  p n ax s1    $  s82  / )   s1    `  Y p  w-2    fh y-2  | t dir {-2   ؉ .len C  w׎  Db  N < i  EO2    U  F|     '  G|     rr  H|     q  IVz  %     J|     3  K	-2  f Z v;  -2      #W ]  X|     /R&  YS we  Zn    6     @       U ret u|   r p 6      vU Us Tv R0 6      U U} Tv Q
  6      Us Tv Q0R1  V6      U U} Tv Q4 o6     A 
V U0T0Qv X0 6     m )V Uw Ts  6     Q CV Uw /7     ' [V Us  ;9     
 wV U0T0 D9     
 V U0T0 R9     f
 V U	      [9     
 V U0T0 d9     
 V U0T0 q9      W U~ T1 9     f
 U	        8     k       W   -2    8      rW U	     Tv  8     7	 8     	 W Ts  8     7	 9     	 Ts Q0R2   P7        W 8 Ր ϐ + * $  Y5     7	 5     7	 5     7	 5     	 7X T0 5     7	 5     	 \X Tv  5     7	 6     7	 76     
 X U~ T	      F6     
 X U~ T	      I7     	 7     4 X Uv  7     7	 7     C Y UwTv  7     c 7     
 ;Y U0T0 7     
 WY U0T0 7      xY U~ Tw 8     7	 8     	 Y Tv !8     7	 8     7	 8     	 Ts QwR2  .8            Z 9    w s 78     7	 D8     7	   5       0  sHZ     5     7	 5     7	 .5     7	 29     
 Z U} T	      9     
  @  29     	      !` 	  2w2  ؑ ԑ cv 2<=    8  4|   sp 482    ax 41   ߒ $  482  O G   41  ȓ Ɠ @  ]_ p  8-2    7  :-2  f b .len   ptr b    i  O2  ؔ ֔    |     3  	-2   z v;  C|     k  D32  v n 
\ 	9       \] e  "n  ږ Җ :     s T\ Uv  :     m r\ U Tv  :     Q 	;     [ \ Uv T Q}  ;      \ Uv  ;      \ Uv  $;     ' \ Uv  S<     
 ] U0T0 \<     
 #] U0T0 i<      @] U} T1 w<     f
 U	         ] \:  j  < 6 q;     7	 7<     7	 E<     o T| Q   :     7	 ):     7	 8:     7	 B:     	 ] T0 L:     7	 W:     	 ^ T|  a:     7	 v:     7	 ~:     / :     
 ^^ U} T	      :     
 ^ U} T	      +;     c 4;     
 ^ U0T0 =;     
 ^ U0T0 I;      ^ U} T P;     7	 ;     7	 ;     7	 <     7	 #<     	 A_ Tv QR2 <     f
 U	y       ;            _ 9  l    ;     7	 ;     7	   9         4_  ×   9     7	 9     7	 9     7	 |<     
 <     
 U~ T	       ,!  <           g 	  w2    cv <=  - # 8  |   sp 82    ax 1  Ә ǘ $  82  _ Y   1  ͙ Ù    Tf p  -2  H < 7  -2  ޚ Ԛ dir -2  S M ׎  b    .len   ptr L  p l i  O2    U  |     '  |    z rr  |     q  Vz       |   	  3  -2  ٟ ͟ v;  -2  k [ 
b 	9     `  Lc e  n  )  O>     s <b U  k>     m Zb U} T  x>     Q tb U >     	 b U~  >      b U  >     ' b U  @     	 b U	'      A     
 b U0T0 A     
 c U0T0 A      0c U| T1 A     f
 U	       @     p       c   -2  ¡  @      c U	     T}  @     7	 A     	 c T~  /A     7	 AA     	 T~ Q0R2   .?        "d 8   + S M   =     7	 A=     7	 W=     7	 a=     	 `d T0 k=     7	 v=     	 d T|  =     7	 >     7	 4>     
 d U| T	      C>     
 d U| T	      '?     	 ?     4 e U}  ?     7	 ?     C ;e UT}  ?     c ?     
 de U0T0 ?     
 e U0T0 ?      e U| T ?     7	 ?     	 e T @     7	 W@     7	 l@     	 f T} QR" @     7	 @     	 8f T~ QR2 {A     f
 U	y       @            f 9  -    @     7	 @     7	   <         f  ڢ آ  <     7	 <     7	 <     7	 oA     
 g U| T	P      A     
  )  P            nh 	  w2    cv <=  B : 8  |   sp 82    ax 1  У ƣ $  82  I E   1    	  g 9    Ԥ Ҥ      7	      7	   y       	  %h     n     7	 y     7	      7	      
 U} T	'       ?       }      hk 	  w2  !  cv <=  f Z 8  |   sp 82    ax 1  G = $  82      1    b  j v;  |   K G k  32    kR  -2  ŧ  @b  i \:    % ! ݚ     7	      7	      o Tv Q1       7	      7	      / &     7	 7     - j T	     Q0      7	      - 8j T	     Q0      7	 5     7	 @     7	      f
 ~j U	           7	 ̛     y j T}       7	              j 9    _ ]      7	      7	   Ǚ       a  k          7	 Ǚ     7	 ݙ     7	      
 U} T	'       K  t             l 	  tw2    cv t<=    8  v|   sp v82  N L ax v1  { q $  v82      v1  G E s  Hl 9  ~   }      7	      7	   I       s  vql     >     7	 I     7	 `     7	 x           
 U} T	'       S  b     +       o 	  bw2  ̪ Ȫ cv b<=    8  d|   sp d82    ax d1    $  d82   |   d1  Ӭ Ѭ Pt  In v;  hL   	 k  i32  2 .      7	 0     7	 8     / @     	 M     7	 [     6  n Tv Q}  b     7	      7	      7	      7	      C Tv   u            n 9  o  j h |     7	      7	           t  dn          7	      7	      7	      
 U} T	'       g  L9     ^      3q 	  Lw2    cv L<=    8  N|   sp N82    ax N1  ݮ Ӯ $  N82  T P   N1      |p v;  R|    ݯ k  S32  % !    -p \:  [  _ [ :     7	 :     7	 ;     o Tv Q}   %:     7	 ::     7	 B:     / ^:     7	 :     7	 :     7	  :            p 9  ]    :     7	 :     7	   9         Np     9     7	 9     7	 :     7	 ;     
 U} T	'       i  6q ;	  6w2  Mcv 6<=  8  8|   sp 882  ax 81  	$  882  	  81  
q 	v;  <|   	k  =32  =	\:  E    =	9  G    i  {r ;	  w2  Mcv <=  8  |   sp 82  ax 1  	$  82  	  1  
kr 	v;  "|   	k  #32  =	\:  /    =	9  1    B   ;     @      t 	  w2    cv <=  )  8  |   sp 82    ax 1  
   $  82   }   1  Բ Ҳ   s v;  |    
 k  32  J F   s \:      ;     7	 ?<     7	 O<     o Tv Q1  ;     7	 ;     7	 ;     / ;     7	 <     7	  <     7	  ;            ;t 9      ;     7	 ;     7	   G;       `  dt     =;     7	 G;     7	 ];     7	 `<     
 U} T	'       ]  <     @      v 	  w2    cv <=  P D 8  |   sp 82  ޴ ش ax 1  1 ' $  82      1    0  *v v;  |   5 1 k  32  u q `  u \:      (=     7	 =     7	 =     o Tv Q
Q  <     7	 <     7	 <     / 	=     7	 u=     7	 =     7	  I=            ov 9      P=     7	 [=     7	   <          v     <     7	 <     7	 <     7	 =     
 U} T	'       $  `w     #      y 	  w2  : 6 cv <=   s 8  |   sp 82    ax 1  b V $  82      1  A ? P"  ]x v;  L  { w k  32  ǹ ù w     7	 w     7	 w     / w     7	 w     6 x Tv Q	      w     7	 =x     7	 Hx     7	 gx     7	 rx     C Tv   x            x 9      x     7	 #x     7	   w        "  x  % #  }w     7	 w     7	 w     7	 x     
 U} T	'       1             { 	  w2  L H cv <=    8  |   sp 82    ax 1  B < $  82      1            t  y          7	      7	 /     7	 `     7	 q     - <z T	о     Q0      7	      - mz T	о     Q0      7	       z Tv Q2            7	      7	      - z T	о     Q0 
     
 U} T	'       4       ^      <} 	  w2  E A cv <=   ~ 8  |   sp 82    ax 1  k a $  82   ޽   1  5 3 t  | v;  |   o k k  32    u  )| 	\:         7	 O     7	 ]     o Tv Q}   u     7	      7	      /      "      7	 %     7	 0     7	              | 9           7	      7	   =       t  |     3     7	 =     7	 S     7	 n     
 U} T	'         p            ~ 	  w2  / + cv <=  p h 8  |   sp 82  ѿ Ͽ ax 1    $  82  w s   1                (~ 9            7	      7	          `u  Q~  ( &       7	      7	      7	      .      
 U} T	J       ]/  |   ~ ;  3&  	D&  	O2  key 
$  =_p +    z  p           e   3&  S K D&  	O2    .key 
$   ɀ      $          C A      P Uv T Q1R X	     YU       7	      h  T	 {     Q0      7	      	  T0 8     7	 Z     [ W T} Qv Rs X$Y~  ~     
  _       0       ۀ e  3&  n f ey  6z          ŀ T1 j     ۀ UU  Tي   ;e  1&  	ey  6z  =cur |   ns y      @     z      	 e  <    X  F|   T > obj F  b N ret F  6 4 [  N  o Y   	|   k U   
-2  P L i  	|     .len !  G
  "1    key #	-2  4 * n  $b    xd  %L    uri %L   s sd  &
82  &  		  'w2  sp (82    I  )
-2    i  *&  &   
Ђ _p F+     0 \  J_  s o      7	      7	      7	      7	        @   j Y|   cls Z"L    g  [ 6z    O  \-2  > 4 l ]|           Uv       7	 -     7	 8     	 ؃ Tv  k      }                 7	      	 # T0       ; Uv        S Uv       7	      <  TQRv  	      I     7	 \     ) Ts Qs R1  l        Й  F#    z   5   * ) #       T|    }     7	      7	      7	      	 n T	'     Q0      7	      d  T| Q~ J     7	 j     [ ׅ Tv Q R~ X Y0      7	      7	      (      7	      5 3     7	 i     : > Uw       7	      7	      
 | T	;     Q0      7	      	  T~       7	            7	 "     	  T~  2     W  Us  I      U     7	 a     7	 r     
 C T	h     Q0 ~     7	      	 h Ts       7	      G  Ts Q:      7	      +  T|       7	      7	      7	 "     7	 C     7	 a     7	      7	      7	      7	      7	      7	      7	 >     7	 \     7	      7	      T  T0      7	      7	      
 ψ T	'     Q0      7	      	  T~       7	      7	      J * a) 1     7	 N     7	 _     
 h T	     Q0 k     7	 v     	  T~       7	      7	        T~       7	      7	      
  T	     Q0      7	      	 $ T      7	 9     7	 H      V     7	 c     	 r T      
  U	      QR~      7	      7	      
 ߊ T	;     Q0      7	      	  T~       7	      a ) Us  -     7	 K     7	 o     7	      7	      7	      y  T| Q0        U       n  U       7	      7	      7	      7	      O j     f
  U	      u     7	      d I T| Q	v           7	      d v T| Q      7	      d  T| Q	x           7	      7	      { ߌ T| Q0      7	      	  T| QR2 -     7	 J     7	 [     
 N T	     Q0 g     7	 r     	 s T~       7	      7	        T0      7	      	 ɍ T~  )     7	 1     \ m     7	 }     7	      {  T| Q0      7	      7	      { Q T| Q0      7	      7	      {  T| Q0      7	      7	 M     7	 k     7	      7	      7	      7	      7	 
     7	 (     7	 a     7	 t     ) : T Q R1      7	      ) j T| Q| R1      7	      )  T Q R1      7	      ) ʏ T| Q| R1      7	      )  T Q R1 )     7	 <     ) * T| Q| R1 Q     7	 d     ) Z T Q R1 y     7	      )  T| Q| R1      7	      7	      {  T| Q0      7	      )  T~ Q~ R1      7	      ) ! T Q R1      7	 -     7	 :     { X T| Q0 M     7	 ]     7	 j     {  T| Q0      7	      )  Ts Qs R1      7	      7	      7	      y  T| Q2      7	 -     7	 :     { : T| Q0 H     7	 X     7	 e     { q T| Q0 s     7	      7	      {  T| Q0      7	      7	      { ߒ T| Q0      7	      )  T Q R1      7	      ) ? T| Q| R1      7	 3     7	 X     7	 v     7	      7	      7	      {  T| Q0      7	      7	      {  T| Q0      7	      7	      {  T| Q0      7	 -     7	 :     { O T| Q0 H     7	 X     7	 e     {  T| Q0 s     7	      7	      {  T| Q0      f
 ܔ U	           f
  U	           
  NWB  F        
      +   &+   s 
  /s   y   /s    ret F    e  &  3  i  &    I        	1    		  w2  sp 82    @  U \  _         7	      7	      7	 7     7	 ?       +     7	 2     7	 x     7	      (      7	      5      7	      7	       ږ U T0 )     7	 4     	  T  ?     7	 _      + UT0 i     7	 t     	 P T~        h U|       7	      7	      G  Tv Q:      7	      + ʗ U| T~       7	      7	      7	      7	 :     7	 V     7	 t     7	      7	      7	      7	      7	      7	 %     7	 A     7	 d     7	 p     T  T0 u     7	      7	      7	      7	      7	      y  T| Q0        U0      7	 &     7	 1     7	 >     7	 F     O e     7	 s     7	      {  T| Q0      7	      \      7	      7	      {  T| Q0      7	      7	      {  T| Q0      7	      7	 (     { P T| Q0 =     7	 Y     7	      7	      7	      7	      7	      7	      7	 >     7	 Z     7	      7	      7	      7	      {  T| Q0      7	      7	      { M T| Q0      7	      7	       {  T| Q0 W     7	 j     )  Tv Qv R1      7	      )  Tv Qv R1      7	      )  T~ Q~ R1      7	      7	      7	      y X T| Q2      7	 +     7	 8     {  T| Q0 M     7	 [     7	 h     { Ɯ T| Q0 }     7	      7	      {  T| Q0      7	      7	      { 4 T| Q0      7	      7	      7	 :     7	 g     7	 u     7	      {  T| Q0      7	      7	      { ֝ T| Q0      7	      7	      {  T| Q0      7	      7	      { D T| Q0 %     7	 3     7	 @     { { T| Q0 N     7	 \     7	 i     {  T| Q0      f
 ў U	h           f
  U	0           f
  U	           f
 U	       ,       P       e  +&    i  D&  &  		  w2  
 _p +   ~ 6        ֟           <~ a      a     4       %  6 4  ^ \     l               z   5   * : 2       T|         7	 ~      UT      7	  N-  &                e  (&    i  &    <~            6       R  < :  d b     ~ n      I                   U
` he     U   NI  YF  н           ( e  Y8  H 4   Z#-2  B " 		  [w2             գ i c|     ]  d|     m  e82    |D  fI2  _ ] ret gF           U0 ǿ     7	 ҿ      ͢ T}       
  U	      
     7	       " T} Qv  $ &R0 ,     7	 7     
 G T~  J     7	 ^      { TQ	I      o       T1              UT1      X Q       N        `  6z    ret #F          + U0       H Uv T1             r Uv T1      X Qv        7	 /     7	 :     
  Tv  E|      E           7	 ɾ       Tv Q	I      ؾ     7	       7 Tv Q	           7	       i Tv Q	;      7     7	 I     	  Tv Q0R2 _     7	 q      ʥ Tv Q	'           7	        Tv Q2 EU      _     7	 o      Tv Q2  ]Ej  7-2  զ ;e  7/&  ;X  7<+  ;m  7J-2  	J  882  key 9
-2  len :  	n  ;b  		  <w2  
 _p C,+   
Ʀ _p J+   =_p N+    T   Mdoc !Vz  Mdtd 16z  	  6z   TMy  6 ;ey  )6z  =	  1    AD  |   A     \      c 
  "Yr  +  cur Yr    tc 	|   G - .len 	|   TB       T|  MB      ݧ Uv T|  B       Us  0C       Us  FC      % Us  \C      = Us  C      U Us  D     
    At  O2              p  -2  Z V e  1n    i  	O2    q/  
82    pw  	|    x $     7	 J     [ ; Tv Q	     RIX Y0      7	       e T Q2        Us T}         U0      7	      [ ܩ Tv Q	     RFX Y0      7	      [  Tv Q		     R?X Y0 *     l =     _ R      O U1      l      _ { U	0      )     7	 6     y  T~       7	      7	      y Ҫ Ts       7	  AO  &i  0     |      J URL 'L  P 6 ID (L    e  )n  G ? /  +82      ,	|   < 4   -
-2    /f  .  f  /	|     G  0L  ' ! W  1g  z p @     ;       N p  F-2    i  GO2    R     7	 x     [ T| Q		     R?X Y0  P   		  O	w2  sp P	82  Q 3   ج \  U	_         7	 $     7	 B     7	      7	             7	      7	      7	      (      7	      5 ^     7	 u     7	      
 q TU'     U0.( Q0      7	      	  T      7	      7	      
 ϭ T} Q0      7	      	  T}       7	       7	      G + Tv Q:      7	 -     7	 I     7	 e     7	      7	      7	      7	      7	      7	      7	 1     7	 P     7	 l     7	      7	      7	      7	      T  T0      7	 1     7	 S     7	 o     7	      7	      y p T| Q0      
  U0        U| Tv Q~       7	      7	 &     7	 3     7	 ;     O H       U T| Q0 W     7	 l     	 @ T| QR2      7	      \      7	      7	      {  T| Q0      7	      7	      { Ȱ T| Q0 5     7	 C     7	 P     {  T| Q0 e     7	 s     7	      { 6 T| Q0      7	      7	      7	      7	      7	 '     7	 F     7	 b     7	      7	      7	      7	      7	       {  T| Q0      7	 #     7	 0     { & T| Q0 E     7	 S     7	 `     { ] T| Q0 w     7	      )  Tv Qv R1      7	      )  T~ Q~ R1      7	      7	      7	 &     y  T| Q2 5     7	 C     7	 P     { 8 T| Q0 e     7	 s     7	      { o T| Q0      7	      7	      {  T| Q0      7	      7	      { ݳ T| Q0      7	      7	 6     7	 R     7	 v     7	      7	      { H T| Q0      7	      7	      {  T| Q0      7	      7	      {  T| Q0      7	      7	      {  T| Q0      7	 (     7	 5     { $ T| Q0 C     7	 Q     7	 ^     { [ T| Q0 z     f
 z U		           f
  U	
           "  U|       f
 е U	j           f
 U	i            . 
 U Tv       7	      y / T~  &     7	 l     
  A   |         
       ~ Ǜ   %+  U _  |    ;
  $+  ;R&  2b  Mlen >|   =		  	w2  sp 	82  	  -2  	  -2  =	\  	_     [       "	      :   +    e  
-2  r j K  		  	w2  sp 	82    @  ̷ \  	_  ~ v ^     7	 q     7	      7	 o     7	 w       
޷ _p 	+   l        p  	?    z   5   * T N       T}    /     7	 6     7	 @     7	 H     ( O     7	 W     5      7	      7	      7	      B ظ T	     Q>      7	      7	      7	 :     7	 V     7	 u     7	      7	      7	      7	      7	      7	 %     7	 A     7	 \     7	 x     7	      7	      T  T0      7	      7	      7	 E     O      7	      7	      { * Tv Q0       7	 <     7	 ^     7	 z     7	      7	      7	      7	      7	      7	 +     7	 g     7	 o     \ }     7	      7	      {  Tv Q0      7	      7	      { 4 Tv Q0      7	      7	      { k Tv Q0      7	 )     7	 ]     7	 y     7	      7	      y ɻ Tv Q0      7	      7	      {   Tv Q0      7	      7	       { 7 Tv Q0      7	 #     7	 0     { n Tv Q0 G     7	 Z     )  Tv Qv R1      7	      7	      7	      y  Tv Q2      7	      7	       {  Tv Q0      7	 #     7	 0     { P Tv Q0 E     7	 S     7	 `     {  Tv Q0 u     7	      7	      {  Tv Q0      7	      7	      7	       7	 %     7	 3     7	 @     { ) Tv Q0 U     7	 c     7	 p     { ` Tv Q0      7	      7	      {  Tv Q0      7	      7	      { ξ Tv Q0      7	      7	       {  Tv Q0      7	      7	 )     { Tv Q0   A  |         	         +    R&  *b    len 6|    l ]      "  L  H D e  
-2   ~ I}  
-2    K    |   < 4 		  	w2  sp 	82       \  	_    8      7	 K      7	 _      7	       7	         < (       (              ; < 8 / t r #   6      ; U} T~ Qv   	      7	       7	       7	 "      ( )      7	 1      5 x      7	       7	         T~  $ &       7	       	  T|        7	       7	       B  T	(i     Q:       7	       7	       7	 7      7	 S      7	 r      7	       7	       7	       7	       7	       7	 "      7	 >      7	 ]      7	 y      7	       7	       T  T0       7	       7	       7	       7	 $      7	 1      y ( T| Q0 f      7	 p      7	 {      7	       7	       O       F  U~        7	       	  Tv Q0R2       7	       7	        {  T| Q0 7      7	 ?      \ M      7	 [      7	 h      { 8 T| Q0 }      7	       7	       { o T| Q0       7	       7	       {  T| Q0       7	       7	 -      7	 I      7	 d      7	       7	       7	       7	       7	       7	 E      7	 S      7	 `      { _ T| Q0 u      7	       7	       {  T| Q0       7	       7	       {  T| Q0       7	 
      )  Tv Qv R2       7	 9      7	 N      7	 ^      y A T| Q2 m      7	 {      7	       { x T| Q0       7	       7	       {  T| Q0       7	       7	       {  T| Q0       7	       7	       {  T| Q0 /      7	 K      7	 n      7	       7	       7	       7	       {  T| Q0       7	       7	        {  T| Q0       7	 #      7	 0      {  T| Q0 E      7	 S      7	 `      { - T| Q0 u      7	       7	       { d T| Q0       7	       7	       {  T| Q0       f
 U	Xi        AT  r+        `	      W .  r L      t
-2  ) #   u	|   z r 		  ww2  sp x82       \  }_          7	       7	       7	       7	 '        
 _p +   < J       J      	                  7	       7	       7	       (       7	       5       7	 )      7	 6      
 g T} Q0 @      7	 K      	  T|  V      7	 `      7	 t      B  T	h     Q: ~      7	       7	       7	       7	       7	       7	 !      7	 ?      7	 [      7	 z      7	       7	       7	       7	       7	       7	 +      7	 7      T  T0 X      7	 b      7	 m      7	 ~      7	       O       7	       7	       { ) T| Q0       7	       7	       7	 *      7	 E      7	 a      7	       7	       7	       7	       7	       7	       \ -      7	 ;      7	 H      {  T| Q0 ]      7	 k      7	 x      { 3 T| Q0       7	       7	       { j T| Q0       7	       7	       7	 )      7	 >      7	 K      y  T| Q0 e      7	 s      7	       {  T| Q0       7	       7	       { 6 T| Q0       7	       7	       { m T| Q0       7	 
      )  Tv Qv R1 5      7	 Q      7	 f      7	 v      y  T| Q2       7	       7	       {  T| Q0       7	       7	       { O T| Q0       7	       7	        {  T| Q0       7	 #      7	 0      {  T| Q0 E      7	 a      7	       7	       7	       7	       7	       { ( T| Q0       7	       7	       { _ T| Q0 %      7	 3      7	 @      {  T| Q0 U      7	 c      7	 p      {  T| Q0       7	       7	       {  T| Q0       7	       7	       { ; T| Q0       f
 U	h       A  B|          `
       .  B!L  L 0   D	|    x   E	|    	 res F
-2  y m Kp  		  K	w2  sp L	82  !    T \  Q	_    n      7	       7	       7	       7	         ?      7	 F      7	 P      7	 X      ( _      7	 g      5       7	       7	       
  T} Q0       7	       	  T|        7	        7	       B < T	 h     Q:       7	 2      7	 N      7	 j      7	       7	       7	       7	       7	       7	       7	 6      7	 U      7	 q      7	       7	       7	       7	       T # T0 %      7	 /      7	 :      7	 K      7	 S      O       7	       7	       {  T| Q0       7	 $      7	 F      7	 b      7	 }      7	       7	       7	       7	       7	       7	 G      7	 O      \ ]      7	 k      7	 x      { n T| Q0       7	       7	       {  T| Q0       7	       7	       {  T| Q0       7	 	      7	 =      7	 Y      7	 n      7	 {      y : T| Q0       7	       7	       { q T| Q0       7	 
      y  Tv        7	 +      7	 8      {  T| Q0 M      7	 [      7	 h      {  T| Q0       7	       ) 4 Tv Qv R1       7	       7	       7	       y x T| Q2       7	 %      7	 3      7	 @      {  T| Q0 U      7	 c      7	 p      {  T| Q0       7	       7	       { * T| Q0       7	       7	       { a T| Q0       7	       7	 $      7	 @      7	 e      7	 s      7	       {  T| Q0       7	       7	       {  T| Q0       7	       7	       { : T| Q0       7	       7	       { q T| Q0 %      7	 3      7	 @      {  T| Q0 N      7	 \      7	 i      {  T| Q0       f
 U	Ph        A˘  ;|   `     =        
  ;-2  
    
F _p =+   l v       @  =  m  i  z     5 p  *           Ts    v     7	  A  |         
      C 
  -2  ; - R&  &b    len 2|     		  w2  sp 82   g cnt 	|       
-2  "  b    s k /]      b      
-2   	   
-2  ` X    ' \  _    e      7	 x      7	       7	      7	        <            
       0 ;   / 8 6 # ] [      ; U        7	       7	       7	 '      	  T|  1      7	 <        T|  G      7	 O      ( V      7	 ^      5       7	       7	       	 V T}        7	       	 | Tw        7	       7	      
  T~       7	 )     S  T	2!     Q: 2     7	 E     7	 a     7	 }     7	      7	      7	      7	      7	      7	 -     7	 I     7	 h     7	      7	      7	      7	      7	      T  T0      7	      7	 3     7	 O     7	 d     7	 q     y $ Tv Q0      7	      7	      7	      7	      O r     f
  U		      }     7	      7	      {  Tv Q0      7	      B  T		     Q:      7	      	  T} QR2      7	       G T~ Q2 '     7	 /     \ =     7	 K     7	 X     {  Tv Q0 m     7	 {     7	      {  Tv Q0      7	      7	      {  Tv Q0      7	      7	      7	 9     7	 T     7	 p     7	      7	      7	      7	      7	      7	 +     7	 8     {  Tv Q0 M     7	 [     7	 h     {  Tv Q0 }     7	      7	      { - Tv Q0      7	      ) ] Tv Qv R3      7	      7	 &     7	 6     y  Tv Q2 E     7	 S     7	 `     {  Tv Q0 u     7	      7	      {  Tv Q0      7	      7	      { F Tv Q0      7	      7	      { } Tv Q0 	     7	 #	     7	 F	     7	 b	     7	 	     7	 	     7	 	     {  Tv Q0 	     7	 	     7	 	     {  Tv Q0 	     7	 	     7	  
     { V Tv Q0 
     7	 #
     7	 0
     {  Tv Q0 E
     7	 S
     7	 `
     {  Tv Q0 n
     7	 |
     7	 
     {  Tv Q0 
     f
  U	i      
     
 
     f
 U		       NI  -2              Q i  O2    q  +6z    q/  
82         7	 ?     [  Ts Q	9     R@X Y0 k     `   UT k       UTT0      7	      y C Ts       7	  N @  |   
     p      = i  O2    q/  
82   	 
     7	 
     [  Ts Q		     RBX Y0      7	      y  Ts       7	       / Ts Q2 )     7	  Aap  -2       X          /&    /3  -2  X.f E  `     m  UUT`QX      
  Tt  i ;3  i-2  ;   i/|   =		  nw2  sp o82  =	\  s_     ]xW  U|   F ;3  U-2  ;   U+|    >J  >      <      h e  >$+    msg >6L  y	 k	 G//  @
  ~3  A-2  
 
 .len B	  }P   sv F-2  
 
 +      7	 5      	  T0 A      7	 L      	 - Ts        7	       z j T| Qv Rs X~Y0       f
  U	h            7	       	 T| Q0R2  q      F  Uv        7	        
 Ts Qv R} X~Y0       
 ) U		            7	       	 Z Ts Q}R2       
  i  )             ) e  )"+    msg )4L    G//  +
  ~3  ,-2  Y I    sv 0-2   
       7	       	  T0 %      7	 0      	 > Tv  w      7	       z { T| Qs Rv X~Y0       f
  U		            7	       	 T| Q0R2        F  Us        7	         Tv Qs R| X~Y0       
  [               e  !+  i Y msg 4L  $  G//  
  ~3  -2        sv -2  ] W       7	       	  T0       7	       	  Tv  W      7	 t      z < T| Qs Rv X~Y0       f
 [ U		            7	       	 T| Q0R2        F  Us        7	         Tv Qs R| X~Y0       
  ^|              O3  -2    msg 4L    Gsv 	-2  z t //    ~     7	      
  T	'     Q0 G     7	 X       Ts Q} Rw  c       U| Ts       
  ^^       b        O3  "-2    O9  ;Q|  0 * b  L  
     lb  	-2   | 3     7	 =     	 z T0 H     7	 ]     <  Ts Q	     R}  jr      UU  ^V       	      b O3  #-2    Ob  5-2  : 2 	  w2  sp 82       l\  _    h     7	 {     7	      7	      7	         0     7	 7     7	 J     7	 R     ( Y     7	 a     5      7	      7	      	  T~       7	      7	 )     B L T	     Q: 0     7	 :     7	 V     7	 r     7	      7	      7	      7	      7	      7	 "     7	 >     7	 ]     7	 y     7	      7	      7	      7	      T 3 T0      7	      7	 1     7	 S     7	 o     7	      7	      y  T|       7	        T} Q| R2      7	      7	      7	      7	 E     O      7	      \      7	 #     7	 0     { [ T| Q0 G     7	 Q     7	 e     B  T	     Q2 u     7	      7	      {  T| Q0      7	      7	      {  T| Q0      7	      7	      { > T| Q0      7	 !     7	 <     7	 X     7	 {     7	      7	      7	      7	      7	 !     7	 ^     
  U	z      m     7	 {     7	      {  T| Q0      7	      7	      { M T| Q0      7	      7	      {  T| Q0       7	 *      )  T| Q| R1 =      7	 Y      7	 n      7	       7	       7	       {  T| Q0       7	       7	       { I T| Q0       7	       7	       {  T| Q0      7	 #     7	 0     {  T| Q0 G     7	 Z     )  Tv Qv R1 m     7	      7	      7	      7	      7	      7	      { R T| Q0 %     7	 3     7	 @     {  T| Q0 U     7	 c     7	 p     {  T| Q0      7	      7	      {  T| Q0      7	      7	      { . T| Q0      7	      7	      { T| Q0  Ba  5   ?	  w2  Usv -2  =rc 1    m  -2   Usv -2   m:  1   ?	  w2   V[^  A|    U__s Ah  U__n A  ?Y  AW  G V8  kb  H ?'  kh  ?  kW  ?r  k   VvB  >+  ~ ?'  >+  ?H  >|   ?r  >   VR  +   ?'  -  ?    ?r     H                x     Z       u  i y s    5 u  L * T D n u   *	        7	      7	      7	      7	        b     7	 j     7	 u     7	 }     (      7	      5      7	      7	      7	      B + T	      Q6 $     7	 /     7	 :     7	 F     7	 T     7	 Ed     O m     7	      B  T	     Q6      7	      \      7	      ) T} Q} R1    H~ `u     f	        U M     ? 5 o~ u      u     .	               5    L *ƶ @ 4 *Ҷ   *߶    n P   * B < v     7	 v     7	 3v     7	 |     7	 |       u     7	 u     7	 u     7	 u     
 W TQ~  u     7	 u      | T~  u     7	 u     ( u     7	 v     5 Kv     7	 kv     7	 vv     	  T  v     7	 v     	 	 T v     7	 v     7	 v     B G T	     Q> v     7	 v     7	 v     7	 w     7	 1w     7	 Mw     7	 ow     7	 w     7	 w     7	 w     7	 w     7	 w     7	 	x     7	 x     O %x     7	 3x     7	 @x     { 4 Tv Q0 Ux     7	 qx     7	 x     7	 x     7	 x     7	 x     7	 
y     7	 y     T  T0 %y     7	 Ay     7	 cy     7	 y     7	 y     7	 y     7	 y     7	 y     7	 z     7	 0z     7	 gz     7	 oz     \ }z     7	 z     7	 z     { y  Tv Q0 z     7	 z     7	 z     {   Tv Q0 z     7	 z     7	 z     {   Tv Q0 {     7	 1{     7	 F{     7	 S{     y + Tv Q0 m{     7	 {{     7	 {     { b Tv Q0 {     7	 {     7	 {     {  Tv Q0 {     7	 {     7	 {     {  Tv Q0 {     7	 |     7	 |     {  Tv Q0 -|     7	 ;|     7	 H|     { > Tv Q0 ]|     7	 k|     7	 x|     { u Tv Q0 |     7	 |     7	 |     {  Tv Q0 |     7	 |     )  Tv Qv R3 }     7	 !}     7	 6}     7	 F}     y   Tv Q2 U}     7	 q}     7	 }     7	 }     7	 }     7	 }     7	 }     {  Tv Q0 }     7	 ~     7	 ~     {  Tv Q0 '~     7	 5~     7	 B~     {  Tv Q0 P~     7	 ^~     7	 k~     { 0 Tv Q0 y~     7	 ~     7	 ~     { g Tv Q0 ~     7	 ~     7	 ~     { Tv Q0    ۀ ~     
          *   ۀ .            L _ .            L f .            * 0 , * k g }               d Tv               Hզ P     :           _ *   o       U|       / U|   H С     1       X  H B 5&   *'        =      I I Ts  E        H(      %       G   T j b _: *a   *n "  d{ *   L l          N(    z   5   * Z T       Tv    e /            o *   4     7	 A      T<  < h      h            J     ջ     7	      7	        Tv  8     7	 Z     [  TQ R} X8Y0      7	      [ T TQ RX Y0      7	      7	      	  Tv QR2 W     7	      7	      [  T| Q R} X$Y~  Ž     
  Hc      )       7	 oc 	      	            E	     _       ``:  :  a9  9  a/	=  =  Bp  Bp  b    I7    c ֜  ֜  ]p8  8  a0  0  a    a2>  2>  a~  ~  R      F)xQ  xQ  FUW  W  a	KU  KU  N_w  w  Ne0W  0W  R^  ^  G    GN  N  R    G    Rk  k  aK  K  Ga  a  GƂ  Ƃ  F.    a 	    RP  P  =  =  ab\n  \n  F+L  L  G    RB  B  a`    a1D  D  a]>  >  a    XJ<  J<  az1  1  aJ  J  ^l    Xkf  kf  K5q=  q=  a^  ^  K=	~  	~  K7i`  i`  K4ߨ  ߨ  Y/9  9  ^o  o  Y:    a.  .  Y5
  
  a
6  6  a    a
    a    ^\h  h  aJ  J  anw  w  aY  Y  ap  {   eV  eV  apD  pD  aG  G  \a  a  \f  f  \v(R  (R  \k  k  ^;  ;  ^z  z  \/1  1  \(jI  jI  \%    \F  F  \e  e  \
;  ;  ^JZ  JZ  \6  6  \@  @  Gz  z  ^    G    \t]  t]  ^'    \cW  cW  G|V  |V  \5a  a  \n  n  \7w  7w  \    \'J  'J  \T  T  a    \/p  /p  \%  %  \N  N  \_  _  F@    \>  >  \m  m  \M  M  \z  z  \0  0  \S  S  \R  R  \O  O  \|s  |s  \ڭ  ڭ  \+_  +_  \Di  Di  \^  ^  \    a    aF"  "  \    a~  ~  \Z~  Z~  \Ƭ  Ƭ  \[  [  \w  w  \_  _  \    \    \3b  b  \>  >  \    \    \<K  K  \U  U  \'  '  \B    \S$  $  \D0  0  \XfO  fO  \Ix  x  H=G  =G  Hŕ  ŕ  Hr  r  G~  ~  ^DJ  J  ^r؞  ؞  d    dl  l  a]  ]  XQ  Q  a    aq  q  eq  q  a	
  
  eQw  Qw  eO    e:@  :@  eq  q  Xc  c  Xu  u  [w  w  [gL  gL  [5  5  [?l  ?l  [    f;  ;  [    [r  r  [ʚ  ʚ  [f  f  I*
  
  I,    a~V  V  [    [    Z    ZH  H  Z8x  8x  ZM  M  Zp  p  ZXd  Xd  Z    Zb  b  Z    H}  }  H1  1  I0t  0t  Gf  f  INF  NF  FNT  T  FW    G.~  .~  GSk  Sk  P    Gs  s  Gt  t  G{  {  G`Q  `Q  f    ^o    GA  A  Gd  d  GjQ  Q  GhR  R  fpK  pK  F	K  K  F~	|  |  f}  }  G@  @  GUf  f  G;M@  M@  GM  M  J~]  ]  GL    G-o  o  GH;  H;  ^    f*  *  Gy  y  GzU  U  GH_  H_  G'D  D  Gk  k  G{  {  GR  R  G\  \  fJ  J  G    Go  o  fz  z  GE^R  ^R  GQ  Q  dQS  QS  XL  L  d    dI  I  dZ  Z  aK  K  X%\  %\  XI  I  gLe  e  X    h	A  A  GW  W  Tn  n  G͠  ͠  TO  O  a>  >  GNA  A  GJE  E  Gt/A  /A  GuF  uF  G2Z  2Z  fi  i  fd  d  ^r  r  f~  ~  fkY  Y  fY  Y  f`  `  f    fp  p  aH  H  G~  ~  Ga  a  f|  |  am  m  a
v\  v\  aB'c  'c  a    a	I  I  aq  q  ^~  ~  X    PY  Y  G4f  f  PX c   c  P_    G׌  ׌  G    Gb  b  G?  ?  G    G[[  [  F7̥  ̥  GJ  J  Gq4  4  GeQe  Qe  GRK  K  GN  N  GC  C  G9f  9f  iKXc  Xc  G    G    H*a  *a  HI  I  G<P  <P  G!Z  !Z  GG  G  ^I~  I~  ^F  F  Mkd^  d^  ]r>  >  ^ox  ox  I	  	  c&_  _  I    G(d  (d  I!h  !h  ^7~  7~  c#hP  hP  j_    WJRp  Rp  c)    Ix  x  fZs  s  USQ  SQ  U    U    WEA  A  Im     %H^  H^  k    I9~K  ~K  T"U  U  ^O\  O\  ^    ^lF  lF  ee  e  a$B  $B  aI    X    er  r  aMC  MC  eJ  J  aZ  Z  e    e    ez`  z`  aЄ  Є  ep  p  fW    V7@  @  If    ITÎ  Î  I    H    Wvp8  .   M  M  kJ  J  a.  .  ^8T_  T_  \    a4c  4c  aq_  q_  a{ԙ  ԙ  a(    M      k*  `  H  P           t   -     9   0  0    	  %-   $    '9   int y     )E      a2  L     E   L  E   |  L   b
  L   6  E   /!  L        w-     @*  y        '          g     &     4  !   `  %  `  N  @     O   &  lB  '      L   	  	:3      
L     L    a,      	  	D,     	  N   3  R+  	  T#+   	4  U#+     
  V  ~/  (v  	l.  xy    	  yE   	E
  zy   	  |E   	i2  y   	_  f   	8  f   	#  1   0    	1E   (	C	    	E=  )  	F    	G    
`    L   ' m#  	H       
Z     
m     
       	     	#  "  h	  #  p	#  $  x	1%  '   
    L        @      
    L    g      *!  ;      -    
     L      !;  	N2  '   	  (	y   @	v  )  H 
  K  L     #  S;    }  *  y   >6  	(   6  W  8  	0  :   	   ;    ?  	=  A
y    	  B
y   	  C}   G  	0  I   	   J   	  K}    OZ  	0  Q   	   R   	  S
y   	g6  T  	H$  U   a~  	  c(   	"  d(   ^    eZ    g     Y  	%0  [(   	  ]f   	%  h
~   l  	7  n    	K!  o
y    t&  	p  v(   	/  w
y   		  xE    p3  j  5  >  <  L.  D  _rt L  .  V  *  i  7  p  J3  y   
y     L    $	  	%  &	y    	f   (	y   	R  *	y   	v   0	y   	+  {	&     |    y     (       
  (  L   @     (    (  M    [  Z    ![  	"  $Z  6  2y   .  7y   b  ;y   {  l
  9   W'    	+     	6  
     
`    L        (        "        f+  #  #  -    8  8  B  -    	0     	(  8
  	-  
  	S  
   M  M    "!         2  8
    /  5  
    /         x
  	  	  	  "  	  	  #	  `#  .	  .	  8	  0  C	  C	  M	  }2  X	  X	  b	    m	  m	  w	    	    	    	  (  	  =  	    	    	  		  	  	  	  3	  	  H	  	  ]	  	  r	  
  k  /  -  8
  	  !
    H  {#  r
    
r
  3  
  r4  
   
  
  L    
#  
  L    
/  
  L    5  
  	1  	D
    
  (  
    
  
-   
  L    y5  .  	k4  0    	0*  5   	  =   	4  >   	  @   	!  A    	v   C	y   $	D  E   (	  J   0	,  N*  8	  P6  @	"  [  H	'  \  X	  ]  h	'  j  x 
N    L    
Z    L    6    '  y        6    '  y        4  y     4X  	3  6	y    	  7	y    0  X  	  -Z  ,  .Z  0,    	/	  	Z   	@3  
[  	  y   	1  /       b  	  d	Z   	'  e
[  	  fy   	  gy   	#  h
[      R  2  	Z   P5  
[  *  y   '  	Z     D    F	Z   (  G
[  !6  Hy    -0    	4      	&2     	  9   	'   -   	  !
   
`    L    5   %;  	4  '    	&2  (   	  )9   	'  *-   	  +
   DIR G  -  IV v   UV wL   NV Ep         y   *  /
  OP 1
  op (!  	n  !0   	u  !0  	?  !I  	h  !rG  a"  !E   	 S
  !E    ,  !E    5  !E    !  !E    2  !E      !E     *  !E    	a  !0  "	  !0  # COP 2
   cop P"y  n  "z0   u  "z0  ?  "zI  h  "zrG  !a"  "zE   	 !S
  "zE    !,  "zE    !5  "zE    !!  "zE    !2  "zE    !  "zE    ! *  "zE    a  "z0  "  "z0  #  "}0  $s  "rG  (p3  "Z  0  "
]0  8  "
]0  <O  "N  @%  "N  H   8
    `!"  	n  !0   	u  !0  	?  !I  	h  !rG  a"  !E   	 S
  !E    ,  !E    5  !E    !  !E    2  !E      !E     *  !E    	a  !0  "	  !0  #	  !
0  (	S*  !
0  0!  ! rG  8,  !]0  @%  !	I  H3  !QI  P$  !
0  X L  <
/  5  P!`  n  !0   u  !0  ?  !I  h  !rG  !a"  !E   	 !S
  !E    !,  !E    !5  !E    !!  !E    !2  !E    !  !E    ! *  !E    a  !0  "  !0  #  !
0  (S*  !
0  0  !
0  8  !
0  @  !
0  H   G
m  "i  $  	&  ##0   #Iop #$0  	u'  #%0  	  #'0  	Y4  #(0   	A  #*]  (	f  #,L0  0	:  #-L0  4	5  #/]  8	  #0L0  @	)  #1L0  D	  #30  H	41  #4  P	  #5  X	!  #6  `	  #8]0  h	  #:]  p	2  #<]  x	  #=]  	X  #A0  	(  #CX  	V)  #E0  	O  #HI  	,  #KP@  	  #LP@  	&  #N0  	3  #O0  	2  #^;0  	  #`0  	6  #a0  	-  #b0  	!  #n0  	t%  #u0  	3  #z0  	  #{0  	&  #}Q  	  #~0  	-(  #]  	t,  #0  $3  #L   $W  #0  $  #0  $@  #P@  $  #]   $
  #]  ($   #G  0$`  #$  8$  #$  P$o	  #$  h$"  #/  $	  #/  %ISv #0  $a  #]  $e(  #0  %Ina #  $  #
   $	  #
  $  #0   $  #0  (%Irs #0  0$4  #0  8$  #0  @$  #0  H$4  #  P$ 5  #0  X$3  #0  `$0  #0  h$  #0  p$  #P  x$  #P  $;(  #N  $	  #0  `$W/  #6  h$  #0  p$r0  #0  x$p  #0  $!  #0  $  #0  $1  #Z  $  #  $$  #;0  $1  #0  $-
  #0  $   #0  $)  #0  $  #0  &  # ]  &  #\  &=  #/\  &\  #=#]  &-  #?[   &5  #@Z  &  #B]0  &0  #D]0  &:  #Fy   &R   #Iy   &\   #J[   &	  #K0  (&r  #L0  0&-  #M0  8&  #NZ  @&.  #O  H&0  #P0  P&7  #Q0  X&  #T0  `&I  #U]  h&/  #V  p&J  #X0  x&\  #Y0  y&e  #Z0  z&S  #[0  {&9  #\0  |&  #]0  }&  #^0  ~&z  #_0  &  #aZ  &  #b0  &  #d  &  #fL0  &  #hL0  &  #lL0  &=1  #oy   &  #p]  &  #s0  &  #t0  &  #u0  &-  #v0  &n  #w0  &6  #z0  &0  #}0  &%  #0  &  #0  &4  #0  &  #0   &M  #0  &-  #0  &,  #0  &$  #]   &
  #0  8&t  #0  @&y3  #0  H&p  #0  P&  #0  X&v  #0  `&  #0  h&  #0  p&v1  #0  x&  #Z  &8  #:  &d  #0  &	  #0  &q!  #0  &  #0  &   #Q  &W2  #y   &e  #y   &$  #Z  &.  #]  &(  #Z  &  #0  &k  #0  &^  #0  &'  #y   &  #L0  &F7  #0  &.  #0  &#  #;0  &    #y   &Z  #L0   &p2  #L0  &/  #]  &(  #0  &T,  #^  &!  #   &s  #:  p&  #G  x&  #rG  &7  #rG  &"  #:  &=)  #y   &r  #]0  &  #0  &I  # 0  &   #0  &  #0  &7  #x  &  #x  &0  #l  &+  #l  'Ian #	]0  &6  #]0  &t  #]0  &t  #]0  &@'  #]0  &+  #[  &  #Z  &  #3  &  #!^  &`'  ##n0  `&  #%]0  d&  #'Y  h&)/  #)0  p&,  #+L0  x&  #,rG  &  #.rG  &%  #/rG  &a5  #1rG  &  #3rG  &1  #6Z  &  #7  &I  #8  &  #9]0  &S.  #:0  &  #;0  &0  #=0  &&  #>0  &-  #F0  &D2  #G0  &M  #L(\  &}#  #N0  &.  #SS   &  #Wy   &@  #Y0  &+  #[Z  &/  #\0  &  #a0  &  #b0  &$  #c0   	&&3  #d0  	&L  #f0  	&  #g0  	&$  #j0   	&7  #k0  (	&  #l0  0	&'  #m0  8	&<  #n0  @	&-  #o0  H	&#  #p0  P	&"  #r^  X	&5  #s'^  	&4  #t'^  (
&I)  #u0  
&Q  #v0  
&R  #w0  
&_%  #x0  
&  #y0  
&=  #z0  
&   #|0  
& %  #}B  
&)  #~  
&  #7^  
&7  #0  
&.  #0  
&v6  #0  
&,  #0   &j  #0  &92  #G^  &  #0  &40  #(   &	  #0  (&-  #0  0&	  #M^  8&  #rG  @&  #rG  H&R-  #S^  P&%  #0  X&  #0  `&	  #3  h&h&  #Y^  p&f  #Y^  x&4  #0  &  #0  &-4  #0  &i"  #0  &  #0  &G  #0  &  #\  &V  #0  &+$  #0  &4  #   &J  #)Y  &
#  #)Y  &}  #)Y  &*"  #LY  &  #YY  &9
  #Y  &%
  #0   &   #0  &o  #0  &S	  #0  &  #0   &  #0  (&-  #_^  0&7  #]  8&d  #s\  @&2  # a]  &5  #	e^  &D  #
y   &  #X  &  #"k^  &u7  #-`G  &  #/   SV O
$  $  sv $%  	9%  $(   	!  $]0  	  $]0  	  ${4   AV P
%  av $Q%  	9%  $-8   	!  $]0  	  $]0  	  $7   HV Q
]%  hv $%  	9%  $8   	!  $]0  	  $]0  	  $38   CV R
%  cv $%  	9%  $7   	!  $]0  	  $]0  	  $#7   #a  S
%  i  $?&  9%  $}6   !  $]0    $]0    $N9   GP T
K&  gp P%&  	2  %
0   	I  %lG  	 ,  %
:  	>   %
]0  	R  %
]0  	.  %
0   	+  %
0  (	J-  %
:  0	  %
0  8l,  %E   @o   %E    @	!  %a:  H GV U
'  gv $G'  	9%  $7   	!  $]0  	  $]0  	  $6    io $ '  9%  $H9   !  $]0    $]0    $8     W
'    `"?'  "  "CR    2  `"`(  {  "	0      "	0  K,  "
;0  C   "
L0  =  "
L0  "  "
L0  (  "Q  8  "P@  Q  "     "
L0  (@%  "Q  0 !  Z
m(    0&(  	!  &:   	K  &S  	0  &
;0  	S7  &
`  	  &	0  	  &  	  &
0   	+  &Z  ( XPV [
(   xpv  $7)  ('  $0   /   $g:    $    $:   $  b
D)  p6  (')  	('  '
0   	/   'g:  	r+  '  	3  '  	A!  '
0      c
)     ()  	('  (
0   	/   (g:  	$  (  	|  (     d
)     0$4R*  ('  $50   /   $5g:    $5    $5:  3  $6:     $79  (   e
_*  [7  h)#+  	('  )0   	/   )g:  	  )  	  )H  	%  )0   	)  )9H  (	  )[H  0	@  )}H  8	S   )Z  @	6	  )H  H	o  ):  P	/  )]0  X	  ):  \	.  )L0  `   h
0+  /  $^;,  ('  $_0   /   $_g:    $_    $_;  3  $`:     $b6  (7  $o4;  0#  $q	L  8  $r	L  @G#  $s	L  H,2  $tZ  P'  $u
0  X  $vZ  `[3  $w
0  h:-  $xZ  p6  $y
0  x[*  $z
`  @  ${	0   !  i
M,  ;,    @&,  	  &S   	3  &S  	  &S  	1  &S  	/  &S   	)6  &S  (	v/  &S  0	  &S  8 ANY j
,  (any -  )O  (  )  0  )R1  0  )!  0  )  0  )  0  )  0  )#  Z  )B  [  )O/  
L0  )  
]0  )"  	L  )}  	X  )1  
   )&  
0  )  0  )1  1   ,  {-  4  |X   1  }G     ~(   r  l
.  +  0e.  9!  X   5  X    X  @  X  }   X   X  X  ( f  m
r.    ($b.  ](  $c0     $dX  "  $e1  4  $f1    $g0      q
.    */  	
  *   	  *&G  	  *'
]0  	^)  *(
]0   PAD r
%    s
0/  V  (*+/  	  *,   	I  *-G  	  *.  	  */rG  	  *0
]0    	  t
/  '  0*L0  	7  *MZ   	,  *M0  	  *MG  	j)  *M]0  	"&  *M]0  	d!  *M]0   	f3  *My   $	#  *M0  (	  *M0  ) I8 +S   U8 +-   0  I16 +f   *0  U16 +9   ;0  I32 +y   L0  U32 +E   ]0  *]0  
i0  ~0  + s0  2  +~0    +<]0  0  (   0  "(  w6  6  y  $  0  0  0  &  %  Q%      0  1  1  (   `  1  5  ,12  	  ,3y    	T  ,6	Z  	  ,7	Z  	2/  ,8	Z  	(  ,9	Z   	$  ,:	Z  (	(  ,;	Z  0	  ,<	Z  8	  ,=	Z  @	;  ,@	Z  H	o  ,A	Z  P	2  ,B	Z  X	%  ,D2  `	4  ,F2  h	%  ,Hy   p	  ,Iy   t	 !  ,J   x	+  ,M9   	{  ,NS   	<  ,O2  	m.  ,Q2  	/5  ,Y   	W  ,[2  	&  ,\2  	5  ,]2  	  ,^	(  	5  ,_
  	4  ,`y   	D  ,b2   5  -1  ,A  ,+  2  1  
`  2  L     2  T  2  #  2  
`  3  L    (  .3  2  &  .3  
  .3  $  /y   
  G3  + <3    /G3  $  /y     /G3    0<|3      0>3  p3    0N3      17  %  23  1  2	L0     2Z     2	0  Y%  2	0   %  23  HE $4  he ( :4  	d-  ($
6   	  (%a:  	  ()_N   HEK $F4  hek (-{4  	@&  (.]0   	  (/L0  	 -  (52   $4    $Z    $L    $X    $d    $0    $}6  2  $0    $6    $6  
  $6   8  3}6  	('  30   	/   3g:  	  3  	  3<  	  3m=   	03  3<  (	   30  0	R3  3]0  8	  3  @	
  3  H	  3  P	J1  3s=  X	Q!  3]0  `	Z1  3]0  d	)  3(  h	  3]0  p	p$  3]0  t	8  3y=  x	>  3[  	Z  3Z  	c  30  	|"  3  	6  3  	
  3  	V  3  ]  3E   V#  3E   			  3:   4  6  3  ?&  3  $7    $Z    $L    $X    $d    $0    $}6  2  $0    $6    $6  
  $6   )  $7    $Z    $L    $X    $d    $0    $}6  2  $0    $6    $6  
  $6   R*  $-8    $Z    $L    $X    $d    $0    $}6  2  $0    $6    $6  
  $6   7)  $8    $Z    $L    $X    $d    $0    $}6  2  $0    $6    $6  
  $6   )  -$H9  )  $Z  )  $L  )  $X  )  $d  )  $0  )  $}6  )2  $0  )  $6  )  $6  )
  $6   #+  -$9  )  $Z  )  $L  )  $X  )  $d  )  $0  )  $}6  )2  $0  )  $6  )  $6  )
  $6   .+#  $:  )=  $d  )&,  $0  )q(  $0  )26  $0   .4  $a:  )"  $L  )(  $X  )5  $a:  )  $0   :4  .7  $:  )  $:  )%  $   `(  -$:  )  $  )  $Z   -$5:  )  $5  )  $5Z   )  $:]0  :  1  :   %  :  .  -$_4;  )  $_  )  $_Z   -$lY;  )x   $mY;  )1  $n	(   ;  
4   j;  + _;  G   4j;     3;  	  30   	  3	0  	(  3	;0      3{;  
  (3&<  	  3'   	)  3(  	  3)	0  	  3*	0  	{  3+      3-3<  	n-  3.0   	I  3/3<   
;  C<  L    )  3:x<  	(  3;   #end 3<  	  3C   )  3DC<  %  <  3<    3    3Z     h3h=  	2  3=   	  3>  	  3Y>  	A0  3s>  	+  3>   	a7  3>  (	  3>  0	4  3>  8	  3!?  @	!  3E?  H	  3s>  P	0  3j?  X	2  3?  ` <  h=  <  x<  8  34  ^  3=  	+  3[   		  3=     -&  3=  /<  =  1  0  ]0   =  /L0  >  1  <  Z  Z  Z    0  (  ]0   =  /Z  S>  1  <  0    Z  Z  i0  S>   =  !>  /0  s>  1  <   _>  >  1  <   y>  >  1  <  X0  0   >  >  1  <  X0  >   $  >  >  /L0  >  1  <  >  X0   >  /0  !?  1  <  0  0  i0   >  /0  E?  1  <  >  i0   '?  /(  d?  1  <  d?   e.  K?  /<  ?  1  0  y   0  m=  <  ?  ]0  ]0   0  p?  0P3h	J@  1rex 3iJ@   ,  3jP@  c  3l0  Z  3nZ  |"  3o   6  3p  (
  3q  0   3r:  81pos 3s  @  3t0  H =    )  3u?  0 3|	@  )  3}@   U  3~@  j  3%A  *  3Z   V@  
  x3@    3	y    F  3Z  1u 3PuF   @  "  3\%A  /  3]CG   &  3^%A  x&4  3^"%A   @  &  3c@    3L0  03^A  2  3@    03	A  2  3@     3
]0  p$  3
]0  1cp 38A   0 3A  2  3@     3
]0  p$  3
]0  1cp 38A    3A   ;  0@3B  2  3@     3
]0  p$  3
]0  1cp 38A  P%  3]0    30  
  3B   1me 3A  (  3B  0  3]0  8q  3;0  <
  3;0  > ;0  0  0@39C  2  3@   d  3@  %  3$@  
  3<  1cp 38A   Z5  38A  $   3]0  (1B 3A  09  3Z  8 03{C  2  3@   >.  3
L0  '  3
L0  1me 3A   0 3	C  2  3@   \  3@  W  3
0  ^6  3Z   03C  1val 3
y     083\D  2  3@   d  3@  1me 3A  1B 3A  1cp 38A   D	  30  $w	  3y   (  3"y   ,  3#Z  0 0(3&D  2  3(@       3)@  1cp 3*8A  Z5  3+8A    3,Z  1.  3-L0     3.L0  $ 0`31E  2  33@   1c1 34
y   1c2 34y   1cp 358A    36
]0  p$  37
]0  E'  38
L0    39
L0   D	  3:0  $1A 3;A  (1B 3;A  01me 3<A  81  3=E  @Z
  3>E  N 
0  E  L    0h3AuF     3B
]0   1cp 3C8A    3D
]0  p$  3E
]0  1c1 3F
y   1c2 3Fy   +  3GZ    3HZ     3I
y   (1min 3J
y   ,1max 3Jy   01A 3KA  81B 3KA  @1  3LE  HZ
  3ME  V -h36G  )&  3+A  ))  3 V@  2yes 3EA  )	  3^A  )  3A  )#  3A  )%  3B  )$  39C  )$  3{C  )o   3C  )   3$C  )3  3/\D  )  3?D  )Q  3NE   
  3Q@  
6G  SG  L       3_@    5KL   G'    *  *!G  	(  *"G   	  *#G  	  *$G   #/  /  *G  }1  *	G  i  *%G   G  ~G  G  /  *MH  )  *M0  f  *M:   )9H    )    )Z   )[H  F%  )0    ),   )}H  I  )0  h  );   )H  %  )0  /  )a:   )H    )	;    )(   !	H  ,5  !rG  sv !0  iv !L  uv !X   h/  !H  /0  I  1   I  H  -!QI  ).  !0  )1  !rG  )  !0   -!
vI  )F  !0  )!  !rG     061I  	?  63	Z   	   64	Z  	E.  66   	2  67   	7*  68	Z  	  69	Z   	.  6:	Z  ( D   7*!J  	Y"  7,Z   	  7-Z  	  7.   	.  7/[   )   8HJ  	"  8MJ   $  8VJ  $I  8[J   $'  8bJ   $  8i`  $1  8nJ    
`  J  3L    
`  J  3L    
`  J  3L    
`  J  3L   w 4  H9+JK  	   9-Z   	K	  9.Z  	G  9/   	  90   	"  91    	  92   (	U  94   0	  96   8	6  98L   @ 4P:h	N    :jZ   a  :k	    :qN    :uZ    :v	     :yI  (  :zZ  HJ0  :{	  P  :}N  X  :  `
  :Z  1  :	  l  :N  ,  :y     :Z  W  :	  (  :{  %  :Z    :	  "  :"N  v&  :y   2  :R  &3  :Z   &  :	  &h  :(N  &  :vI  &  :Z  H&1  :	  P&  :.N  X&  :  `&   :Z  &%  :	  &6  :4N  &  :J  &  :Z  &   :	  &  ::N  &  :@N  &  :	   &   :@N  &$  :FN  &7  :	  &W  :FN   &$  :Z  (&  :	  0&I&  :Z  8&5  :	  @&%$  :	y   H !J  I    {  R  vI    J      d  :JK  0  (&N  {+  ('0  U  ((	     " N  	~4  "!N   	0  ""K  	y  "#y   	4  "$0  	  "%;0   N  	  "(N    "N  g'    N     ("'SO  	  "(
0     "*G  1cv "+
:  k%  "-
L0  4  ".0    ^  ("3O  	  "4
0     "6G  1cv "7
:  1gv "9
0  .  ":
0      0"uP  	  "v
0     "x
0  |!  "y
0  7  "z
0  1cv "{
:   )  "|P  ( N  -"2P  2svp "0  2gv "0   0"XP  1ary "
0   1ix "
L   0"~P  6)  "
L0   1ix "
L   0"P  1cur "	L   1end "	L   0"P  1cur "0   1end "0   -"Q  2ary "2P  )
  "XP  )+  "~P  )0  "P   4  0"`Q    "`Q   e   "P  $  "0  )  "P  E  "
G  ( "  t)  "Q  $4  "0   %  "0   -0"Q  ){  "N  )-  "SO  )  "O  )'.  "Q  )L"  "fQ     3  X"R  0  " 	0     "	0    "
;0    "
L0    "  J'  "  8  "Z    "
0   '  "	
0  (  "
Z  0  "Z  8J  "Z  @_  "(  Hy  "<  P -`"@R  )  "A'  )3  "BQ   1(  0"ZS  
  "0   U  "ZS    "`S  .  "`S  C  "L0   *  "L0  $  "L0  (y  "L0  , '  R  !  "R  /y   S  1  0  :   sS  /]0  S  1  0  :   S  /y   S  1  0  :  0    L0   S  /y   S  1  :  d?   S  ;,  ;	BT  #val ;3   	  ;f   	g  ;L0  	t  ;:   
  ;T  +  (;T  	   ;T   	  ;0  	  ;Z  	<4  ;Z  	  ;0    NT  u  ; NT  4  ;"nX  	(   ;&nX   	d*  ;'3  	!  ;(y   	`  ;+y   	T  ;-y   	
  ;.tX   	v  ;/tX  (#ps ;0tX  0	'  ;4
L0  8	  ;5
L0  <	  ;6Z  @	  ;7Z  H	'  ;8	0  P	$   ;9	0  Q	  ;;	0  R	$  ;<
0  S	  ;=
L0  T	  ;>
0  X	)*  ;?
0  `	  ;@
0  h	  ;A
;0  p	4  ;B;0  r	6  ;C
L0  t	   ;D
0  x	"  ;E
L0  	  ;F
L0  	3  ;G	X  	m5  ;H	X  	 7  ;I0  	  ;J	0  	n  ;K
;0  	   ;L
L0  	R(  ;M
0  	&  ;N
0  	  ;OzX  	  ;P
0  	  ;QZ  	3  ;TZ  	3  ;UZ  	  ;VZ  	7  ;WZ  	  ;XZ  	  ;YZ  	  ;^0  	(  ;_
;0  	  ;`	0  	  ;a	0  $#  ;b
0   $  ;c6  $6  ;d
0  $  ;fX  $  ;g
X  @$1  ;h	0  T$  ;i	0  U$F(  ;j	0  V$  ;k	0  W$7,  ;lQ  X$  ;m
  `$~5  ;n0  `$"  ;o0  d$s.  ;rL  h$)7  ;sL  p$  ;t`  x$&  ;v0  y5B  ;xE   x5\  ;yE   x5u  ;zE   x5H*  ;{E   x$   ;}0  {$~  ;~	0  | T  BT  T  
3  X  L    
L0  X  L    4  ;T  -  X  <  X  "  X  i  1     $X  4  $X   X    QY  Y  Y  /y   )Y  1   K  R6Y  <Y  LY  1  0     SY  c1  UfY  lY  /0  Y  1  0     VY  Y  Y  1   
g  Y  + Y  @/  uY  {0  wY    yY  u  {Y    }Y  9  Y    Y  /  Y    Y  Q$  Y  ')  Y    Y  
g  ZZ  L    JZ    ZZ    Y  /  Y    Y  Y!  Y  '1  Y     Y  #  Y  ?  Y  M
  Y    Y    Y    %0    %0    %0  
g  2[  L   @ "[    2[  0  Y  
g  a[  L    Q[    a[    a[  f  G3  
   [  + [  ,  [    j;  /  j;  {  j;  "  j;  
-   [  + P  [    j;  
  \  + 2  \    Y  6  E   f\  7   7  71  767  7*  7&  7.   D  G3  J4  HF\  1pad G\    
$  \  L      P\  \  \  1  0   +  a\  \  /L0  \  1  0  0     fI    g	]  ]  /0  #]  1  0     h\  1#  i=]  C]  /y   a]  1  Z    YN     lY  1  s]  1fn t1   1ptr u(   (-  vn]  ,  L0  fS  SG  6G  X  
Z  ]  L      y   
L  ]  L      ]  ]0  
(  ^  L    
0  '^  L   	 
0  7^  L    
0  G^  L    -  0  LN  3  (  (  
0  {^  L   " &  G0    G0    <G3  =$  <&G3  
\  ^  + -  <^  
\  ^  + f	  <c^    <~0  
60  ^  + ^  \  <	^  
G0  _  + _  &  <	_    <	Y  	  <	^  
%0  J_  + ?_  }'  <	J_     =&0    =(1    =-0    =10  {(  =40  "  =K3  V0  =L3    =X0  m  =[]  75  =\y   .  =]y     =aL  Y&  =e0  3   =f0  t  =i    =0    =0  5  =y     =y   %  =0]  (  =0  }  =X    =0    =$    =0  
-   `  L      =`  2'  4Y  )  6Y  
  `  L    `  /  >`  
H,  `  L    `    >`  
%0  a  L     a    Na  
0  -a  + "a    b-a    c-a  *  d-a    e-a  6"  f-a  }.  g-a  -Za  2nv Zd  2u8 Za   a  
0  a  L    $#  Za  -[a  2nv [d  2u8 [a   a    [a  9  ?-   a  8E   @J>b  7   7K  7D  7  7se  7z   V  @Qb    @YVb     @[b  	ؒ  @\b   #use @]E   	B  @^E   	8  @_>b  	[  @`b   t  @Zb  Jb  a  8E   @Jc  7~>  7x9  79  7;  7d9  7a=  7e:  7h>  78  	7b<  
7_;  7V>  78  7<  7K:  7};  78  7<  79  7:  7=   6:  @b  b  8E   @c  7B>  7';  7O8  7<  75=  7=  7>  7J=  7;  	78  
 <  @\c  8E   @c  7  7  7  7     @c  Bs  @ c  As  @d  	4  @ ,d   	
  @Vc   ZF  @&d  c  c    @>d    x@*e  	0  @(   	  @Jc  
  @ Vc  ,=  @*f  V*  @*f   {  @g  (4  @*f  0  @*f  81doc @h  @  @h  H\<  @	c  P1def @
c  Tű  @Vc  X  @d  `  @Vc  hX$  @Vc  p 7  @6e  2d  $8  x@*f  0  @(     @Jc  
  @Vc  ,=  @*f  V*  @*f   {  @*f  (4  @*f  0  @*f  81doc @h  @1ns @k  Hؒ  @b  P;  @l  X9  @k  `;  @(  h  @9   p=  @9   r <e  =  @g  0  @(     @Jc  
  @Vc  ,=  @*f  V*  @*f   {  @h  (4  @*f  0  @*f  81doc @h  @<  @(  H;  @(  PC  @(  Xg  @(  `+:  @Vc  h=  @Vc  p>  @(  x 0f  =  @'h  0  @((     @)Jc  
  @*Z  ,=  @+*f  V*  @,*f   {  @-*f  (4  @.*f  0  @/*f  81doc @0h  @@  @3y   H  @4y   L8  @:g  P9  @;g  X<  @<k  `  @=Vc  h  @>Vc  p1ids @?(  xa@  @@(  1URL @AVc  y<  @By   u  @Dl  ;  @E(  T;  @Fy   ;  @Hy    %g  >d  9E   @h  7|  7  7KW  7     @h  9E   @"h  7{  7U  7TA  7ib   =A  @'h  ކ  @0#i  ݆  0@2vi    @3h     @4h  
  @5 Vc  1c1 @6 i  1c2 @7 i  {  @8 i     @9 Vc  (   @1i  h  i  9E   @Bi  7<   7n  7'  7  7     @Hi  ߕ  Ai  ޕ  :K  Ai  i   <  :  Ai  :  ;  Aj  i  )<  Aj  =  Aj  H  @X:j  G  p@Zk  0  @[(     @\Jc  
  @]Vc  ,=  @^*f  V*  @_*f   {  @`g  (4  @a*f  0  @b*f  81doc @ch  @  @ei  Hؒ  @fvi  PC  @g*e  X  @hVc  `  @ji  h   @Yk  -j  c8  @wJc  ;  @:k  ;  0@k  4  @k     @ k  y>  @Vc    @Vc  0  @(     @h  ( э  @k  -k  :k  =  @0f  	T  @k  k  B<  @k  A<  `@l  0  @(     @Jc  
  @Vc  ,=  @*f  V*  @*f   {  @*f  (4  @l  0  @l  81doc @h  @1ns @k  H\<  @c  P;  @(  X qs  @l  k  k  %8  @<e  <  @l  l  =  @%%g    @&l  l  i  <  B90  <  BB3m  m  /(  %m     9  BM1m  7m  /(  Km  (     :  BWWm  ]m  /Z  lm     l  8  Cm  8;  Cm  m8  C%m  =  Cl  <  CKm  T}  DOm  S}  DQm  	F  DR	y    	O  DS	y   	  DTlm   k  DPm  m  k  `  Dp  .h  Dp    Dp    E?n  .n    Egn  #low E9    	(&  E 9    v  E#xn  gn  v  E%n  #low E&E    	(&  E'E    ,r  E*!n  n  +r  E,n  	{  E-y    	]  E.y   	W  E/n  	|  E0n   :n  sn  C  EP!n  L  E|!n  o  E!n  {l  E!n    E!n  Ӂ  E!n  
4   Wo  L    Go    EWo  \X  FE   
b  o  + to  
  F8o  _  F9o  a  F:o  S   GCo  	ey  GDl   	G
  GEl  	  GF	y   	  GG	y   	Q  GH	y    S  Go  R  Gp  o  :o   y               p  ;   l  U<ns  +k  T=Z  l    =ey  l  %     >  y   p  ?ey  l  @4  l   :]  y   `     =       p  A[  "l      B     p  CUs   D`Q               q  AR&  &b  J! D! AZ  9l  ! ! =,=  l  ! ! EE       ~q  CUv CT} CQ1 FN       E\       q  CUv  Ep       q  CUv CT	#     CQ1 B       CUv CQ|   :S  l  P            r  Aey  !l  " " AZ  2l  " " G            `r  =  l  5# 3#  E     m}  r  CTTCQ1CR1 B     )  CUh  H\  ql  @           s  Aey  ql  f# X# A  q0Vc  $ $ I  rb  P=  sb  $ $ Jret tl  $ $ Jns uk  % % E|     6  Ws  CUv CTs CQ0 E     C  us  CUs CTP E֡     P  s  CTv  E     6  s  CUv CTs  K     s  CUs  K?     s  CUs  FN     ]   :.  ]k       x       t  AX$  ]l  *& & A  ]'b  & & Ay>  ]8b  g' [' Jns ^k  ' ' E     P  ut  CTs CQ|  E     f  t  CU}  L8     r  CUUCTQCQT  :g  Am              u  Mn A'l  G( ?( A}B  A3b  ( ( A
  ACb  I) =) Jrv Bm  ) ) N  u  Jcld Il  g* a* E,       [u  CUv  EE       su  CU|  EY       u  CU} CTs  B       CUs   L     u  CTQ  :  )m  `     {       {v  Mn )%l  * * A
  )1b  
+ + Jrv *m  u+ i+ Jcld +l  + + E       Nv  CU| CTs  E       fv  CUv  B       CUs   D|  О            v  Mn l  W, I, Mval *b   - , F       F       OJ        :R  b              x  Mn l  - - =X  b  . . Gd     _       w  =  l  . . P`  =R&  "b  / / Ex     ̍  w  CU}  E     ؍  w  CU|  F       E       w  CU| CQv CR0CX0 F         O*       O?        :B  l       Y      y  A  l  o/ ]/ AG  0l  60 *0 =  l  0 0 =4  l  )1 !1 Jpar *l  1 1 =ܔ  6l  1 1 EԜ       x  CU} CTv  E     ~  x  CUv  E     g|  x  CU CT}  EJ     U  !y  CU} CT~ CQ|  E`     ?  9y  CUs  Fu     )  E     U  jy  CU} CT~ CQ|  E     ?  y  CU}  E     g|  y  CU CT}  Bٝ       CU	$       :Y  l  `            ,z  Ap  l  2 2 Aw  l  2 2 A  l  2 2 Or     ,z   >`  Xl  sz  ?p  Xl  ?w  Yl  ?  Zl  @ܔ  [l   :Y  l       N      :|  Ap  l  F3 63 Mnew .l  4 3 Mold >l  4 4 Qܔ  l   =  l  5 5 E     ~  {  CU| CTs  E-     ~  4{  CU| CTs  ER     m}  V{  CTs CQ1CR1 E}     U  n{  CUs  E     ?  {  CUs  E     ~  {  CUs  Eљ     :|  {  CU| CTv  Eܙ     g|  {  CU| CTs  R     :|  {  CTQ F     g|  E     :|  |  CU| CTv  B.       CU	H$       >r  l  g|  ?p  l  Sold -l   >2Z  l  |  ?p  l  ?w  l  @ܔ  l  TUc1 l    :a  kb             m}  Aey  kl  6 5 =  lVc  6 {6 =
  mVc  Z7 87 =  nb  8 8 O        Fu       E     ̍  _}  CT	a)      O     ̍   :  Al              ~  Mdoc Al  P9 89 Aey  A*l  Y: M: Ar  A4y   : : A6  A>y   ; x; =Q  Bl  < x< E     %  ~  CUs CT| CQ1 E[     2  :~  CUv CT|  E     ?  R~  CUs  E     ~  j~  CUs  B     ?  CUv   D              ~  Aey  l  x= r= O     )   >  y   ~  Scur l  ??L  ,l   >  y     Scur l  ??L  -l   >~  y   U  Scur l  ??L  )l  @  l   :i  y                 Mcur l  = = ;  -l  T;e  @l  QJc1 l  i> [> Jc2 l  ? > Jp %l  ? ?  :x  Zl  `            Հ  Mdoc Z&l  ?@ 5@ A2  Z4b  @ @ A  Z?y   A A =g  [	y   A A @K  \l  E     L    CUv CTs CQs CRs CXTCYw  F       Eܑ     Y  ǀ  CTv  F     ]   :p  y         4      ?  <cur b  U<len "]  TJc -   A A Jval E   iB QB  V'  Џ     P         W  l  C C Xw  k  `E         CUUCTw  F     f  F      ]   V&       K      F  W  l  @D 6D Ww  -n  D D N    Yns k  6E .E F     P  F       E       N  CU|  Ex       f  CU|  E       ~  CU|  F     s  E         CU|  F     o   G9     7       	  Yele k  E E ZZ  l  E E B[     F  CUs CTv   [            Zu  l  E E \     CUs CTv    V  @     6      o  WZ   l  F F Ww  1n  F F Z  l  1G )G PP  Yns k  G G E     f  ׃  CT	#      F     P  Fō       EՍ       	  CUs  E        !  CUs  O       F)     s  ES       `  CTs CQ	#      Fm     o    ]  kk    ^c kk  ^ns k%k  T_i qk    `  R`       g         a  Rl  Ubns R*k  TYi Tk  :H 0H  V  E@     8       >  a  El  Ubns E'k  TYi Gk  H H  cϯ  .d  d#  .l  _cur /l   V              Ņ  W  l  H H ZD  l  I I O     >  F     >   e>  P     )       D  fK  I I gW  h>  `            .iK  [`            jW  DJ BJ Bh     d  CUs     eo       D         f  qJ gJ k  Tlo     ki  i  m     j  J J    e       v         k-  Uk:  TnG   o         f:  1K /K f-  VK TK P  jG  }K yK    e~  p     c         f   K K f  L L o~          f  [L WL f   L L B       CUUCTT   e~       ,          k~  Uk~  Tp~                   f~  L L f~  L L   eg|       f        fy|  -M M f|  N M n|   qg|  '     `  J  f|  N N fy|  O O P`  j|  _P UP r|  ȗ     =         j|  P P  E@     m}  ʈ  CTs CQ1CR0 Ed     U    CUs CQ0 E     ~    CUs  E     ?    CUs  E      ?  /  CUs  BF     U  CUs CQ0   E     ~  h  CUv CTs  E     ~    CUv CTs  BV       CU	 $       e:|  `     t       6  fL|  (Q  Q fY|  Q Q o:|         fL|  R R fY|  eR [R E     ~    CUs  B͘     ?  CUh   e,z  0     +      L  f>z  R R fKz  _T CT fXz  U U nez   q,z  {       X  fXz  V V fKz  W W f>z  mX [X P  jez  ;Y 1Y E     ~    CU| CTs  E     ~    CU| CTs  E˚     m}  /  CTs CQ1CR0 E     U  M  CUs CQv  O_     g|  Eh     ?  r  CUs  E     U    CUs CQv  Eț     ?    CUs  E     ~    CUs  E'     U  ݋  CUs CQ0 E?     U    CUs CQ0 B[       CU	p$        F        F+       s9     s CT	#       ep                fp  Y Y np   tp      ip  P  jp  Z Z E         CUv  E
     )  Ҍ  CUs  BX       CUs    F6     p  OE     p   u{  {  @vxQ  xQ  ?Uu    @ouo  o  @u*  *  @uM@  M@  @us  s  @wP  P  vNF  NF  ?Nu.~  .~  @v_  _  ?@uZ  Z  Hu    Du    @u@  @  @Uuұ  ұ  @$vT  T  ?Wu    @u^  ^  @un  n  @v      ?)u%\  %\  Duk  k  IuQ  Q  @wu@  @  @u    @0u    JuW  W  @u    @
ur  r  @ut  t  @uհ  հ  CV)uf  f  Cfu    @-uuF  uF  @    5  k*    H  p           1 0  0  ;     -   int N              	      	#  "   h	  #   p	#  $   x	1%  '    
      -                 U   
      -         %      *!  h         /    	  %/  $    '     )4   a2  -     4   L  4   |  -   b
  -   6  4   /!  -     Z   w-  Z   @*  N     Z   '  Z     Z   g  Z   &  Z   4  !Z     N  @    Oy  &  l  '    		z  	:3  	z    
-     -    a,  	c    
	  	D,  
   	  
!   3  R  	  T#   	4  U#     
  V  ~/  (vn  	l.  xN    	  y4   	E
  zN   	  |4   	i2  N   	_  N  	8  N  	#     0    14   (C	    E  )  F    GZ    
    -   ' m#  H        B    U    a  -    
Z     -      !L  	N2  '   	  (	N   @	v  )  H 
  \  -     #  SL      *  N   >6  	;    6  h  8  	0  :   	   ;y   ?  	=  A
N    	  B
N   	  C   G   	0  I   	   Jy  	  K    Ok  	0  Q   	   Ry  	  S
N   	g6  T  	H$  U   a  	  c;    	"  d;    ^    ek    ga    Y  	%0  [;    	  ]N  	%  h
   l  	7  nZ    	K!  o
N    t7  	p  v;    	/  w
N   		  x4    p3  j  5  >  <  L.  D  _rt L  .  V   *  i  7  p  J3  y   
N     -    $	  	%  &	N    	f   (	N   	R  *	N   	v   0	N   	+  {	7     |    N     ;        
   9  -   @ )    9    9    e  -    !e  	"  $-  6  2N   .  7N   b  ;N   {  l
     W'    	+     	6  
     
    -        (        "      "  f+  -  -  7    B  B  L  -    	0     	(  B
  	-  '
  	S  
   W  W    "!         2  B
      5  
           	  x
  	  	  	  "  #	  #	  -	  `#  8	  8	  B	  0  M	  M	  W	  }2  b	  b	  l	    w	  w	  	    	    	    	  2  	  G  	    	    	  	  	  (	  	  =	  	  R	  	  g	  
  |	  
  k    -  B
  	  !
    H  {  |
    
|
  3  
  r4  
   
  
  -    
  
  -    
  
  -    5  
  	1  	N
    
  (  
    
  
/  
  -    y5  .  	k4  0m   	0*  5  	  =  	4  >  	  @y  	!  A   	v   C	N   $	D  Em  (	  J  0	,  N  8	  P	  @	"  [  H	'  \  X	  ]  h	'  j  x 
!    -    
-    -    6    '  N     Z   6    '  N     Z   4  N     4b  	3  6	N    	  7	N    :  b  	  --  ,  .-  0,    	/	  	-   	@3  
e  	  N   	1         b  	  d	-   	'  e
e  	  fN   	  gN   	#  h
e      \  2  	-   P5  
e  *  N   '  	-     D    F	-   (  G
e  !6  HN    -0    	4     	&2    	     	'   /  	  !
   
    -    5   %E  	4  '   	&2  (  	  )   	'  */  	  +
   DIR Q  -  IV  vZ   UV  w-   NV  Ez        !N   *   /
B   OP  1
  op ("  	n  "\1   	u  "\1  	?  "4J  	h  "H  a"  "4   	 S
  "4    ,  "4    5  "4    !  "4    2  "4      "4     *  "4    	a  "0  "	  "0  # COP  2
   cop P#y  n  #z\1   u  #z\1  ?  #z4J  h  #zH  !a"  #z4   	 !S
  #z4    !,  #z4    !5  #z4    !!  #z4    !2  #z4    !  #z4    ! *  #z4    a  #z0  "  #z0  #  #}0  $s  #H  (p3  #-  0  #
0  8  #
0  <O  #P  @%  #P  H    8
    `",  	n  "\1   	u  "\1  	?  "4J  	h  "H  a"  "4   	 S
  "4    ,  "4    5  "4    !  "4    2  "4      "4     *  "4    	a  "0  "	  "0  #	  "
\1  (	S*  "
\1  0!  " H  8,  "0  @%  "	@J  H3  "rJ  P$  "
\1  X L   <
9  5  P"j  n  "\1   u  "\1  ?  "4J  h  "H  !a"  "4   	 !S
  "4    !,  "4    !5  "4    !!  "4    !2  "4    !  "4    ! *  "4    a  "0  "  "0  #  "
\1  (S*  "
\1  0  "
\1  8  "
\1  @  "
\1  H    G
w  "i   $  	&  $#?1   #Iop $$\1  	u'  $%?1  	  $'?1  	Y4  $(?1   	A  $*^  (	f  $,0  0	:  $-0  4	5  $/^  8	  $00  @	)  $10  D	  $3?1  H	41  $4K  P	  $5K  X	!  $6K  `	  $80  h	  $:^  p	2  $<^  x	  $=^  	X  $A0  	(  $Cb  	V)  $EV1  	O  $H:J  	,  $KqA  	  $LqA  	&  $Nb1  	3  $Ob1  	2  $^0  	  $`0  	6  $a0  	-  $bJ1  	!  $n0  	t%  $u{0  	3  $zV1  	  ${V1  	&  $}R  	  $~P1  	-(  $^  	t,  $P1  $3  $V   $W  $41  $  $41  $@  $qA  $  $^   $
  $^  ($   $H  0$`  $$  8$  $$  P$o	  $$  h$"  $/  $	  $/  %ISv $41  $a  $^  $e(  $V1  %Ina $  $  $
   $	  $
  $  $J1   $  $41  (%Irs $41  0$4  $J1  8$  $J1  @$  $J1  H$4  $   P$ 5  $41  X$3  $41  `$0  $41  h$  $\1  p$  $)Q  x$  $)Q  $;(  $O  $	  $41  `$W/  $7  h$  $\1  p$r0  $\1  x$p  $V1  $!  $J1  $  $J1  $1  $-  $  $  $$  $0  $1  $0  $-
  $b1  $   $b1  $)  $b1  $  $41  &  $ ^  &  $]  &=  $/]  &\  $=D^  &-  $?e   &5  $@-  &  $B0  &0  $D0  &:  $FN   &R   $IN   &\   $Je   &	  $KJ1  (&r  $LJ1  0&-  $MJ1  8&  $N-  @&.  $O   H&0  $P41  P&7  $Q41  X&  $T41  `&I  $U^  h&/  $V   p&J  $Xb1  x&\  $Yb1  y&e  $Zb1  z&S  $[b1  {&9  $\b1  |&  $]b1  }&  $^b1  ~&z  $_b1  &  $a-  &  $b41  &  $dW  &  $f0  &  $h0  &  $l0  &=1  $oN   &  $p _  &  $sJ1  &  $tJ1  &  $uJ1  &-  $vJ1  &n  $wP1  &6  $zJ1  &0  $}J1  &%  $J1  &  $J1  &4  $J1  &  $41   &M  $41  &-  $41  &,  $P1  &$  $_   &
  $V1  8&t  $V1  @&y3  $41  H&p  $P1  P&  $P1  X&v  $P1  `&  $P1  h&  $P1  p&v1  $P1  x&  $-  &8  $<  &d  $\1  &	  $\1  &q!  $\1  &  $\1  &   $R  &W2  $N   &e  $N   &$  $-  &.  $_  &(  $-  &  $P1  &k  $41  &^  $41  &'  $N   &  $0  &F7  $b1  &.  $b1  &#  $0  &    $N   &Z  $0   &p2  $0  &/  $_  &(  $V1  &T,  $"_  &!  $   &s  $<  p&  $H  x&  $H  &7  $H  &"  $<  &=)  $N   &r  $0  &  $b1  &I  $ b1  &   $b1  &  $b1  &7  $?  &  $?  &0  $3  &+  $3  'Ian $	0  &6  $0  &t  $0  &t  $0  &@'  $0  &+  $e  &  $-  &  $ 4  &  $!(_  &`'  $#0  `&  $%0  d&  $'#Z  h&)/  $)41  p&,  $+0  x&  $,H  &  $.H  &%  $/H  &a5  $1H  &  $3H  &1  $6-  &  $7B   &I  $8B   &  $90  &S.  $:0  &  $;b1  &0  $=0  &&  $>b1  &-  $Fb1  &D2  $Gb1  &M  $LI]  &}#  $Nb1  &.  $S;  &  $WN   &@  $Yb1  &+  $[-  &/  $\41  &  $a41  &  $b41  &$  $c41   	&&3  $d41  	&L  $f41  	&  $g41  	&$  $j41   	&7  $k41  (	&  $l41  0	&'  $m41  8	&<  $n41  @	&-  $o41  H	&#  $p41  P	&"  $r8_  X	&5  $sH_  	&4  $tH_  (
&I)  $u41  
&Q  $v41  
&R  $w41  
&_%  $x41  
&  $y41  
&=  $zV1  
&   $|V1  
& %  $}C  
&)  $~  
&  $X_  
&7  $0  
&.  $b1  
&v6  $b1  
&,  $?1   &j  $?1  &92  $h_  &  $P1  &40  $;    &	  $?1  (&-  $P1  0&	  $n_  8&  $H  @&  $H  H&R-  $t_  P&%  $V1  X&  $V1  `&	  $4  h&h&  $z_  p&f  $z_  x&4  $41  &  $41  &-4  $41  &i"  $41  &  $41  &G  $41  &  $]  &V  $P1  &+$  $P1  &4  $Z   &J  $JZ  &
#  $JZ  &}  $JZ  &*"  $mZ  &  $zZ  &9
  $Z  &%
  $V1   &   $V1  &o  $P1  &S	  $V1  &  $41   &  $V1  (&-  $_  0&7  $_  8&d  $]  @&2  $ ^  &5  $	_  &D  $
N   &  $Y  &  $"_  &u7  $-H  &  $/   SV  O
$  $  sv %%  	9%  %;    	!  %0  	  %0  	  %w5   AV  P
%  av %[%  	9%  %)9   	!  %0  	  %0  	  %8   HV  Q
g%  hv %%  	9%  %9   	!  %0  	  %0  	  %/9   CV  R
%  cv %%  	9%  %8   	!  %0  	  %0  	  %8   #a   S
&  i  %I&  9%  %y7   !  %0    %0    %J:   GP  T
U&  gp P&'  	2  &
41   	I  &H  	 ,  &
<  	>   &
0  	R  &
0  	.  &
V1   	+  &
P1  (	J-  &
<  0	  &
J1  8l,  &4   @o   &4    @	!  &];  H GV  U
'  gv %Q'  	9%  %8   	!  %0  	  %0  	  %7    io % '  9%  %D:   !  %0    %0    %9      W
'    `#?'  "  #CS    2  `#j(  {  #	0      #	0  K,  #
0  C   #
0  =  #
0  "  #
0  (  #R  8  #qA  Q  #K     #
0  (@%  #R  0 !   Z
w(    0'(  	!  ';   	K  'U  	0  '
0  	S7  '
  	  '	0  	  'K  	  '
41   	+  '-  ( XPV  [
(   xpv  %A)  ('  %V1   /   %c;    %    %;   E:   \
N)  ;8  (%)  ('  %V1   /   %c;    %    %;  3  %;    $   b
)  p6  (()  	('  (
V1   	/   (c;  	r+  (K  	3  (K  	A!  (
?1       c
*     )N*  	('  )
V1   	/   )c;  	$  )  	|  )      d
[*     0%4*  ('  %5V1   /   %5c;    %5    %5;  3  %6;     %7:  (    e
*  [7  h*+  	('  *V1   	/   *c;  	  *  	  *8I  	%  *V1   	)  *ZI  (	  *|I  0	@  *I  8	S   *-  @	6	  *I  H	o  *<  P	/  *0  X	  *<  \	.  *0  `    h
+  /  %^,  ('  %_V1   /   %_c;    %_    %_0<  3  %`;     %b7  (7  %oU<  0#  %q	V  8  %r	V  @G#  %s	V  H,2  %t-  P'  %u
J1  X  %v-  `[3  %w
J1  h:-  %x-  p6  %y
J1  x[*  %z
  @  %{	0   !   i
,  ,    @'/-  	  'T   	3  'T  	  'T  	1  'T  	/  'T   	)6  'T  (	v/  'U  0	  'T  8 ANY  j
<-  (any  (.  )O   ;   )   41  )R1   ?1  )!   J1  )   P1  )   V1  )   \1  )#   -  )B   e  )O/   
0  )   
0  )"   	V  )}   	b  )1   
Z   )&   
b1  )   1  )1   1   ,   {a.  4   |Y   1   }      ~;    r   l
n.  +  0 .  9!   Y   5   b     b  @   Y  }    Y   X   Y  ( f   m
.    (%b3/  ](  %cP1     %db  "  %e~1  4  %f~1    %gP1       q
@/    +/  	
  +K   	  +&H  	  +'
0  	^)  +(
0   PAD  r
%     s
/  V  (++/  	  +,K   	I  +-
I  	  +.K  	  +/H  	  +0
0    	   t
/  '  0+L{0  	7  +M-   	,  +MV1  	  +MI  	j)  +M0  	"&  +M0  	d!  +M0   	f3  +MN   $	#  +M0  (	  +M0  ) I8 ,;  U8 ,/  0  I16 ,N  0  U16 ,   0  I32 ,N   0  U32 ,4   0  *0  
0  0  + 0  2  ,0    ,<0  1  ;    	1  "(   w6  6   yu  $  41  41  ?1  '  %  [%      b1  ~1  ~1  ;    j  n1  5  -13  	  -3N    	T  -6	-  	  -7	-  	2/  -8	-  	(  -9	-   	$  -:	-  (	(  -;	-  0	  -<	-  8	  -=	-  @	;  -@	-  H	o  -A	-  P	2  -B	-  X	%  -D*3  `	4  -F03  h	%  -HN   p	  -IN   t	 !  -J  x	+  -M   	{  -N;  	<  -O63  	m.  -QF3  	/5  -Y  	W  -[Q3  	&  -\\3  	5  -]03  	  -^	;   	5  -_
B   	4  -`N   	D  -bb3   5  .1  ,A  -+  %3  1  
  F3  -     3  T  L3  #  W3  
  r3  -    -N   3  ;    (  /3  3  &  /3  
  /3  $  0N   
   3  + 3    03  $  0N     03    1<3      1>4  3    1N4      27#  %  3j4  1  3	0     3-     3	\1  Y%  3	J1   %  3,4  .4   %4  /   /  /F  /]  /f0  /S  /\   /  /,  /i  	/`  
/  /  /  /  /J  /   d4  %v4  HE %5  he ) 65  	d-  )$
7   	  )%];  	  ))O   HEK %B5  hek )-w5  	@&  ).0   	  )/0  	 -  )563   %5    %-    %V    %b    %n    %41    %y7  2  %?1    %7    %7  
  %7   8  4y7  	('  4V1   	/   4c;  	  4  	  4=  	  4>   	03  4=  (	   4V1  0	R3  40  8	  4K  @	
  4K  H	  4  P	J1  4>  X	Q!  40  `	Z1  40  d	)  4;   h	  40  p	p$  40  t	8  4>  x	>  4e  	Z  4-  	c  441  	|"  4K  	6  4K  	
  4K  	V  4K  ]  44   V#  44   			  4<   5  7  4  I&  3  %8    %-    %V    %b    %n    %41    %y7  2  %?1    %7    %7  
  %7   N*  %8    %-    %V    %b    %n    %41    %y7  2  %?1    %7    %7  
  %7   *  %)9    %-    %V    %b    %n    %41    %y7  2  %?1    %7    %7  
  %7   )  %9    %-    %V    %b    %n    %41    %y7  2  %?1    %7    %7  
  %7   )  0%D:  )  %-  )  %V  )  %b  )  %n  )  %41  )  %y7  )2  %?1  )  %7  )  %7  )
  %7   +  0%:  )  %-  )  %V  )  %b  )  %n  )  %41  )  %y7  )2  %?1  )  %7  )  %7  )
  %7   1+#  %;  )=  %n  )&,  %V1  )q(  %0  )26  %b1   14  %];  )"  %V  )(  %b  )5  %];  )  %b1   65  17  %;  )  %;  )%  %   j(  0%;  )  %  )  %-   0%;  )  %  )  %-   0%5<  )  %5  )  %5-   )  %:0  <  ~1  <   %  <  3/  0%_U<  )  %_  )  %_-   0%lz<  )x   %mz<  )1  %n	;    E  
6  <  + <  G   5<     4<  	  40   	  4	0  	(  4	0      4<  
  (4&,=  	  4'K   	)  4(K  	  4)	41  	  4*	41  	{  4+K      4-T=  	n-  4.0   	I  4/T=   
<  d=  -    )  4:=  	(  4;K   #end 4<K  	  4CK   )  4Dd=  %  =  4=    4    4-     h4>  	2  4>   	  4<?  	  4z?  	A0  4?  	+  4?   	a7  4?  (	  4?  0	4  4@  8	  4B@  @	!  4f@  H	  4?  P	0  4@  X	2  4@  ` =  >  ,=  =  8  45  ^  4>  	+  4e   		  4>   K  -&  4>  -=  >  ~1  :1  0   >  -0  <?  ~1  =  -  -  -  K  41  ;   0   ?  --  t?  ~1  =  41     -  -  0  t?   >  B?  -41  ?  ~1  =   ?  ?  ~1  =   ?  ?  ~1  =  0  :1   ?  ?  ~1  =  0  ?   $  ?  ?  -0  @  ~1  =  ?  0   ?  -41  B@  ~1  =  :1  :1  0   @  -41  f@  ~1  =  ?  0   H@  -;   @  ~1  =  @   .  l@  -=  @  ~1  E1  N   \1  >  =  @  0  0   b1  @  2P4h	kA  3rex 4ikA   ,  4jqA  c  4l41  Z  4n-  |"  4o   6  4p  (
  4q  0   4r;  83pos 4sK  @  4t0  H >    )  4u@  2 4|	A  )  4}A   U  4~B  j  4FB  *  4-   wA  
  x4B    4	N    F  4-  3u 4PG   A  "  4\FB  /  4]dH   &  4^FB  x&4  4^"FB   
B  &  4A    40  24B  2  4B    24	B  2  4B     4
0  p$  4
0  3cp 4YB   2 4C  2  4B     4
0  p$  4
0  3cp 4YB    4C   <  2@4C  2  4B     4
0  p$  4
0  3cp 4YB  P%  40    4b1  
  4C   3me 4C  (  4C  0  40  8q  40  <
  40  > 0  0  2@4ZD  2  4B   d  4B  %  4$B  
  4=  3cp 4YB   Z5  4YB  $   40  (3B 4C  09  4-  8 24D  2  4B   >.  4
0  '  4
0  3me 4C   2 4	D  2  4B   \  4B  W  4
41  ^6  4-   24D  3val 4
N     284}E  2  4B   d  4B  3me 4C  3B 4C  3cp 4YB   D	  4b1  $w	  4N   (  4"N   ,  4#-  0 2(4&E  2  4(B       4)B  3cp 4*YB  Z5  4+YB    4,-  1.  4-0     4.0  $ 2`41F  2  43B   3c1 44
N   3c2 44N   3cp 45YB    46
0  p$  47
0  E'  48
0    49
0   D	  4:b1  $3A 4;C  (3B 4;C  03me 4<C  81  4=F  @Z
  4>F  N 
0  F  -    2h4AG     4B
0   3cp 4CYB    4D
0  p$  4E
0  3c1 4F
N   3c2 4FN   +  4G-    4H-     4I
N   (3min 4J
N   ,3max 4JN   03A 4KC  83B 4KC  @1  4LF  HZ
  4MF  V 0h4WH  )&  4LB  ))  4 wA  4yes 4fB  )	  4B  )  4B  )#  4C  )%  4C  )$  4ZD  )$  4D  )o   4D  )   4$D  )3  4/}E  )  4?E  )Q  4NF   
  4QA  
WH  tH  -       4_
B    6K-   Q'    +K  +!H  	(  +"H   	  +#H  	  +$H   /  /  +H  }1  +	H  i  +%I   H  H  I  /  +M8I  )  +MV1  f  +M<   *ZI    *    *-   *|I  F%  *\1    */-   *I  I  *\1  h  *$<   *I  %  *J1  /  *];   *I    **<    *;    "	J  ,5  "H  sv "41  iv "V  uv "b   h/  "I  -\1  4J  ~1   %J  J  0"rJ  ).  "\1  )1  "H  )  "J1   0"
J  )F  "\1  )!  "H     071 K  	?  73	-   	   74	-  	E.  76y  	2  77  	7*  78	-  	  79	-   	.  7:	-  ( D   8*BK  	Y"  8,-   	  8--  	  8.  	.  8/e   )   9HK  	"  9MK   $  9VK  $I  9[K   $'  9bK   $  9i  $1  9nK    
  K  5-    
  K  5-    
  K  5-    
  K  5-   w 4  H:+kL  	   :--   	K	  :.-  	G  :/Z   	  :0Z   	"  :1Z    	  :2Z   (	U  :4Z   0	  :6Z   8	6  :8-   @ 6P;h	1O    ;j-   a  ;k	B     ;q1O    ;u-    ;v	B      ;y K  (  ;z-  HJ0  ;{	B   P  ;}7O  X  ;  `
  ;-  1  ;	B   l  ;=O  ,  ;N     ;-  W  ;	B   (  ;  %  ;-    ;	B   "  ;CO  v&  ;N   2  ;\  &3  ;-   &  ;	B   &h  ;IO  &  ;J  &  ;-  H&1  ;	B   P&  ;OO  X&  ;  `&   ;-  &%  ;	B   &6  ;UO  &  ;K  &  ;-  &   ;	B   &  ;[O  &  ;aO  &  ;	B    &   ;aO  &$  ;gO  &7  ;	B   &W  ;gO   &$  ;-  (&  ;	B   0&I&  ;-  8&5  ;	B   @&%$  ;	N   H BK   K      \  J    K      d  ;kL  \1  )&O  {+  )'41  U  )(	B      # O  	~4  #!O   	0  #"\  	y  ##N   	4  #$b1  	  #%0   O  	  #(O    #P  g'    P     (#'tP  	  #(
\1     #*H  3cv #+
<  k%  #-
0  4  #.P1    ^  (#3P  	  #4
\1     #6H  3cv #7
<  3gv #9
J1  .  #:
J1      0#u)Q  	  #v
\1     #x
41  |!  #y
\1  7  #z
41  3cv #{
<   )  #|)Q  ( O  0#SQ  4svp #?1  4gv #J1   2#yQ  3ary #
P1   3ix #
V   2#Q  6)  #
0   3ix #
V   2#Q  3cur #	V   3end #	V   2#Q  3cur #41   3end #41   0#,R  4ary #SQ  )
  #yQ  )+  #Q  )0  #Q   4  0#R    #R   e   #/Q  $  #41  )  #Q  E  #
H  ( ,  t)  #R  $4  #\1   %  #41   00#R  ){  # P  )-  #tP  )  #P  )'.  #,R  )L"  #R     3  X#S  0  # 	0     #	0    #
0    #
0    #K  J'  #K  8  #-    #
41   '  #	
41  (  #
-  0  #-  8J  #-  @_  #;   Hy  #=  P 0`#@S  )  #A'  )3  #BS   1(  0#{T  
  #P1   U  #{T    #T  .  #T  C  #0   *  #0  $  #0  (y  #0  , '  S  !  #S  -N   T  ~1  41  ;   T  -0  T  ~1  41  ;   T  -N   T  ~1  41  ;  41     0   T  -N   U  ~1  ;  @    U  ,  <	cU  #val <j4   	  <N  	g  <0  	t  <<   
  <%U  +  (<U  	   <U   	  <41  	  <-  	<4  <-  	  <41    oU  u  < oU  4  <"Y  	(   <&Y   	d*  <'j4  	!  <(N   	`  <+N   	T  <-N   	
  <.Y   	v  </Y  (#ps <0Y  0	'  <4
0  8	  <5
0  <	  <6-  @	  <7-  H	'  <8	0  P	$   <9	0  Q	  <;	0  R	$  <<
b1  S	  <=
0  T	  <>
\1  X	)*  <?
\1  `	  <@
41  h	  <A
0  p	4  <B0  r	6  <C
0  t	   <D
41  x	"  <E
0  	  <F
0  	3  <G	b  	m5  <H	b  	 7  <Ib1  	  <J	0  	n  <K
0  	   <L
0  	R(  <M
\1  	&  <N
41  	  <OY  	  <P
41  	  <Q-  	3  <T-  	3  <U-  	  <V-  	7  <W-  	  <X-  	  <Y-  	  <^0  	(  <_
0  	  <`	0  	  <a	0  $#  <b
V1   $  <c7  $6  <d
P1  $  <fY  $  <g
Y  @$1  <h	0  T$  <i	0  U$F(  <j	0  V$  <k	0  W$7,  <lR  X$  <m
  `$~5  <n0  `$"  <o0  d$s.  <rV  h$)7  <sV  p$  <t  x$&  <vb1  y7B  <x4   x7\  <y4   x7u  <z4   x7H*  <{4   x$   <}b1  {$~  <~	0  | U  cU  U  
j4  Y  -    
0  Y  -    4  <U  (.  Y  <  Y  "   Z  i   ~1      $Z  4   $Z   Y     Q5Z  #Z  ;Z  -N   JZ  ~1   K   RWZ  ]Z  mZ  ~1  41      S5Z  c1   UZ  Z  -b1  Z  ~1  41      VZ  Z  Z  ~1   
  Z  + Z  @/   uZ  {0   wZ     yZ  u   {Z     }Z  9   Z     Z  /   Z     Z  Q$   Z  ')   Z     Z  
  {[  -    k[     {[     Z  /   Z     Z  Y!   Z  '1   Z      Z  #   Z  ?   Z  M
   Z     Z     Z     0     0     0  
  S\  -   @ C\     S\  0   Z  
  \  -    r\     \     \  f   3  
U   \  + \  ,   \     <  /   <  {   <  "   <  
/  
]  + P   \     <  
   /]  + 2   $]     Z  8  4    ]  /   /  /1  /67  /*  /&  /.   D   3  J4  H F]  3pad  G]    
$  ]  -       P]  ]  ]  ~1  \1   +   a]  ]  -0  ^  ~1  :1  :1      f4J     g*^  0^  -\1  D^  ~1  \1      h]  1#   i^^  d^  -N   ^  ~1  -    zO      lZ  1   s^  3fn  t1   3ptr  u;    (-   v^  /-  0  T  tH  WH  Y  
-  ^  -       N   
V  _  -       ^  0  
;   8_  -    
41  H_  -   	 
41  X_  -    
0  h_  -    a.  V1  mO  4  (  ;   
41  _  -   " &   0     0    =3  =$  =&3  
^  _  + -  =_  
^  _  + f	  =c_    =0  
0  `  + `  \  =	`  
0  4`  + )`  &  =	4`    =	Z  	  =	`  
0  k`  + ``  }'  =	k`     >&1    >(~1    >-'1    >1b1  {(  >4b1  "  >K 4  V0  >L 4    >X1  m  >[ _  75  >\N   .  >]N     >aV  Y&  >e1  3   >f1  t  >i#    >1    >1  5  >N     >N   %  >Q^  (  >V1  }  >b    >1    >$    >b1  
/  a  -      >a  2'   40Z  )   60Z  
   a  -    a  /  ?a  
,  b  -     b    ?b  
0  1b  -    !b     N1b  
i1  Nb  + Cb     bNb     cNb  *   dNb     eNb  6"   fNb  }.   gNb  0 Zb  4nv  Zn  4u8  Zb   b  
0  b  -    $#   Zb  0 [	c  4nv  [n  4u8  [b   b     [	c  9  @/  c  ݐ  A&8c  ܐ  @B}c  	  B~;    	]{  BU  	  B  	l]  BC  	R&  Bm   #raw Bm  (	`C  B	N   0	9  B	N   4	n  B-   8 _t  Ac  ,c  Ш  A# c  Ϩ  hC6d  #buf C8c   	.  C:   	׎  C;   	;/  C<n  #cur C=n   #end C>n  (	]  C?	N   0	  C@	N   4#col CA	N   8	n  CG-   @	/  CHy  H	  CIn  P	  CJn  X	  CK	N   `#id CL	N   d rY  A$d  c  BB  A&d  AB  Ci  #sax Cz   	Z  C;   	  Cu  	L  CN   	|  CN   	  Cn   	  Cn  (	  CN   0	7P  CN   4	I  Cd  8	  CN   @	b  CN   D	v  Cz  H	ey  Cu  P	F  CN   X	O  CN   \	  Cx  `	
V  C	N   h	?  Cy  p	N  C	N   	?  CN   	\@  CN   	7O  CN   	'  CN   	rr  CN   	ul  Cw  $z  CKz  $  CN   $׎  C-  $
  Cn   $l  CN   ($R  CN   ,$>  Cz  0$\  CZ   8$[  CZ   @$R{  CN   H$H?  CN   L$z  CN   P$  Cn  X$3  Cm  `$mA  Cm  h$3  C _  p$N  CN   x$>  CN   |$͜  C _  $  CN   $O  Cd  $y<  CN   $ R  CN   $Ǐ  CN   $  CN   &0  C ;   &  CN   &  CN   &W  C;   &\  CN   &  CN   &u  Cs  &΁  Cz  &ˁ  C	N   &u  C
N   &ߗ  Cn  &h  Cn  &  Cn  &  CN   &  CN   &YM  CN    &  Cz  &t  C _  &P  C_  &-  Cu   &{  Cu  (&"O  CN   0&k  CN   4&r  C$N   8&'C  C%N   <&J  C&u  @&  C'N   H&v  C(wu  P&+D  C-,v  X&Q  C.z  &g  C/-   &Q  C0-   &B  C3y  &p~  C4N   &k  C5N   &^Y  C6y  &&  C8N   &E  C9-    `  A'i  d  D{  A)i  C{   CA%j  G  CBz   {  CCz    CDz  i  CEz   j  A*1j  i  "L   Cl    Cz     Co}  N  C|}  ?  C}  x  Cz     C){  (  C]{  0^  C{  8W  C{  @*  C{  H`  C
|  P|  C<|  X]  C_|  `  Cl|  hO  Cy|  p  C|  xF  C|  g  C|  ry  C }    C"!}  Wt  C.}  SH  CH}  9  CU}  h  Cb}  ڥ  CP{    C;}  m  C{    C4   0  C;   \  C}    C}  PB  Cw   I  A0l  I  D+%m  	0  D,;    	  D-n  	
  D.n  	,=  D/Ap  	V*  D0Ap   	{  D16q  (	4  D2Ap  0	  D3Ap  8#doc D4r  @	<  D6m  H	ؒ  D7m  P	]  D8N   X	  D9x  \	+:  D:n  `	=  D;n  h	y  D=y  p#URI D>n  x	G
  D?N   	H  D@N   	  DDx   ]  A11m  l  .4   AJjm  /   /K  /D  /  /se  /z   V  AQ7m    AYm     A[m  	ؒ  A\m   #use A]4   	B  A^4   	8  A_jm  	[  A`m   t  AZm  vm  c  r  Aim  r  IQ  Arn  m  .4   An  /~>  /x9  /9  /;  /d9  /a=  /e:  /h>  /8  	/b<  
/_;  /V>  /8  /<  /K:  /};  /8  /<  /9  /:  /=   6:  An  'c  .4   An  /B>  /';  /O8  /<  /5=  /=  />  /J=  /;  	/8  
 <  An  Bs  A o  As  A6o  	4  A Ho   	
  An   ZF  ABo  o  o  $8  xA<p  0  A;      An  
  An  ,=  AAp  V*  AAp   {  AAp  (4  AAp  0  AAp  83doc Ar  @3ns At  Hؒ  Am  P;  Au  X9  At  `;  A;   h  A   p=  A   r No  No  =  A6q  0  A;      An  
  An  ,=  AAp  V*  AAp   {  Ar  (4  AAp  0  AAp  83doc Ar  @<  A;   H;  A;   PC  A;   Xg  A;   `+:  An  h=  An  p>  A;   x Gp  =  A'r  0  A(;      A)n  
  A*-  ,=  A+Ap  V*  A,Ap   {  A-Ap  (4  A.Ap  0  A/Ap  83doc A0r  @@  A3N   H  A4N   L8  A:6q  P9  A;6q  X<  A<t  `  A=n  h  A>n  p3ids A?;   xa@  A@;   3URL AAn  y<  ABN   u  ADu  ;  AE;   T;  AFN   ;  AHN    <q  94   Ar  /|  /  /KW  /     Ar  94   A"r  /{  /U  /TA  /ib   =A  A'r  ކ  A0#s  ݆  0A2s    A3r     A4r  
  A5 n  3c1 A6 s  3c2 A7 s  {  A8 s     A9 n  (   A1s  s  s  !<  E's   <  fh  E s  s  :  Fs  :  ;  Fs  s  )<  Fs  =  Fs  c8  Awn  ;  At  ;  0A{t  4  At     As  y>  An    An  0  A;      Ar  ( э  At  t  t  =  AGp  	T  At  t  B<  At  A<  `Awu  0  A;      An  
  An  ,=  AAp  V*  AAp   {  AAp  (4  Au  0  Au  83doc Ar  @3ns At  H\<  An  P;  A;   X qs  Au  t  t  %8  ANo  <  Au  u  =  A%<q    A&u  u  s  ڃ  Gu  ك  w  Gu  u  .4   H v  /P   /ݘ  /h  /GK     Hu  !  HL8v     XHNv  	`L  HO
N    	J  HP
N   	e  HQ-  	  HR v  	Ҍ  HS-  	  HT
N    	B  HU-  (	B  HV-  0	B  HW-  8	?  HX
N   @	D  HY
N   D	e  HZ;   H	ey  H[;   P q  HMv  ,v  w  w  ;      : F  HX%w  +w  ;w  ;   v   k  IGw  k  u  IXw  ;w    I%"jw      I&{w  ^w  %  Jw  $  w    J*w    J9w  f  JPw  f  pJRx  	Z  JS;    	9  JTw  	SH  JUw  	ey  JXu  	F  JYN    	O  JZN   $	  J[x  (	^  J]4   0#doc J^u  8	'  J_N   @	@  Jbw  H	  JcN   P	a  JdN   T	P  Jew  X#am JhLw  `	  Jiow  h u  .4   Dx  /X  /s  /d  /a  /$  /y   h\  Dx  .4   D!x  /P   /ަ   O  D$x  l  E  C4y  y  (y  m   Z  CV#4y  Z  (CYy  	ey  CZy   	  C\-   	$A  C]-   	  C^-   	M  C_-     (y  <p  }m  Cb&y  |m  Cdy  	jy  Ce-    	]  Cf-   	R&  Cgy   .N   CpKz  ;N  /#|   /I  /j  /X  /@  /V  /  /@k  /  /Q  	/  
/͈  /  /qh  /  /XI  /׉   ?  Cy  .4   Cz  /u   /  /O[  /<  /  /|J   wg  CWz  7j  d  n  -n  z  ;    z  r3  gn  C^z  z  -d  z  ;   n  n   H  Cjz  {  {  ;   n  n  n   3Q  Cwz  2{  C6{  <{  -%m  P{  ;   n   ^  C6{  d  Cj{  p{  {  ;   n  N   n  n  m   s^  Cz  y  C{  {  {  ;   n  n  N   N   n  6o   r  C{  {  
|  ;   n  N   s   q  C|  |  <|  ;   n  n  n  n   3C  CI|  O|  _|  ;   %j   Y  C1  k  C1  [H  C|  |  |  ;   n  z     C|  |  |  ;   n   |  |  ;   n  n     C|  ߤ  C)|  |  }  ;   n  N    $L  C5|  qS  C@|  7  CJ|  Tl  CT|  Ϧ  C`w  ]  Cjw  j  Cvw  ӟ  Cz  T  Cz  P`  Cz  C  C}  }  }  ;   n  n  n  N   z  N   N   z   1u  Cz  p  K;   .N   L:~  ;9  /_   /S?  /3y  /n  /qZ  /  /?  /  /U  /  	/Fu  
/_u  /xu  /o  /So  /lo  /o  /o  /o  /Lh  />m  /A  /Hq   {  LS}  K  Le~  ~  -N   ~  ~   _  ~   _   /  6  S  L{~  t  L(~  t  (LC  	
  L!-   	I  L ~  	"  L ~  	  L }  	~  L }      L!O  ~  `  B6a  g  -N     ;   -  N    {  B?z  <  M91  <  MB3    -;     B    9  MM    -;     ;   B    :  MW    --         8  N  8;  N  m8  N  =  N  <  N  =  O=q  	ey  O>u   	G
  O?u  	  O@	N    S   OC  	ey  ODu   	G
  OEu  	  OF	N   	  OG	N   	Q  OH	N    S  Oq  =  O<  R  O  ̀  R  O      O$  	z  O؀   	  ON      O   3  O<  $  oH  y41  <.  41       "       Á  =ey  u  Z Z >	  ~1  ?X  
41  [ [ @       @        <J  m  `           8  =U  41  S[ K[ =+  #u  [ [ A    ?n  u   \ \ B   >	  ~1  AP    Clen   @?  -  Z\ V\ ?7  m  \ \ D9     A    ET}  DP         EU}  @       D         ETs EQw ER2 @        @       @         Db       *  EUs ET0 @     Ȫ   <  41  `              =7  n  \ \ =+  /u  f] `] >	  ~1  ?X  	41  ] ] Clen   @?J  m  ] ] F            P  ?q  u  V^ T^ D     Ǉ    ET| ER@ @       D     Ѫ  ?  ET| EQ}  G     EU|   @       @       D:     H    EU| ET0 @Z     Ȫ   HJ  [m             H  =U  [41  ^ y^ =  ["n   _ ^ ?X  ]m  g_ __ >	  ^~1  A    Clen c  @?  d-  _ _ Its em  _ _ ?7  fm  q` e` @S     ު  D^         EUs  D     s    EU} ETs  D     ު    EUs  J     ʅ  EUs  @       D         ETv EQw ER2 @        @       @1       D<       :  ETv  @U     Ȫ   <  ;41              s  =7  ;n  ` ` =  ;-n  |a ra ?X  =	41  a a Ienc >~  `b Xb @3       DK         EU|  DZ         EUs  @e       Ds     Ѫ  -  ETs EQ|  $ & D       E  EUs  @       K     Ѫ  ETs EQ|  $ &  LE  'm  Ǉ  M  '   M7  '7n  Nlen 'F  Oenc (~  Oret )m   <  m  @     u      A  =y<  N   b b =7  %n  c c =  %n  d d Plen P  e e ?n]  C  f f ?X  m  :g *g Iin m  g g Iout m  Sh Kh @       D         EUv  D       ψ  EUT @     (  D     5     EU| ET} EQ~  D˻     A    EU}  Dڻ     N  0  EU}  D       H  ETv  D     [  `  EU~  D     [  x  EU}  D     h    EU|  D     t    EU	((      DD       Չ  EUHET	7&      De         EUHET	@&      D     ު    EUv  D       +  EUv  K       EUH  <  m  `             =y<  N   h h =7  %n  i i =  %n  j qj Plen   Sk Gk ?n]  C  k k ?X  m  l l Iin m  *m "m Iout m  m m Ii 	N   m m Q     ު  7  EUT D       O  EU|  D       m  EUv ETs  @&     (  D7         EU| ETs EQv  @C     ު  DN     [  Ë  EUv  DV     [  ۋ  EUs  D^     h    EU|  D         EUv  Dź       0  EU} ET	7&      Dܺ       U  EU} ET	@&      D       m  EU}  D         EU3 K1       EU2  <>  i       M        =U  41  In ?n ?X  i  n n >	  ~1  @*       @;       @N       D`       >  ETs EQ	&      @       D       p  ETs EQ	&      @ظ       D         ETs EQ2 @       @       D       э  ET| EQ2 @<       KL       ETs EQ2  <!h  i41              
  =e  i i  /o %o ?  k؀  o o >	  l~1  ?X  m
41  p 
p R  n   
&     @       @       D         EUv  @Ƿ       Dѷ       Վ  ET0 @۷       K     ̫  ETv EQ	&     ER|   HG  KN                 =ey  K$؀  p p ?  Mi  q q ?X  N	N   \q Vq J       EUs  DA     ٫    EU}  Kb       EU}   <Դ  :؀       X       )  =ey  : i  q q ?z  <؀  +r #r J       EUH Kζ     t  EU	&       Sd  +@     1         =ey  +u  r r ={  +0؀  r r Q^     ѐ    ETT Tq        U  	ѐ  M#  	u  M{  	0؀  V>"  u    LH;  N     M%  ؀  M{  3؀  >  ؀   <R  41               =˴  41  ds \s ==  "41  s s >	  ~1  @       @       @       D         ET} EQ2 @       Dȴ       ӑ  ET| EQ2 @ش       K       ET} EQ2  <  u                =˴  41  bt Tt >	  ~1  ?X  u  u  u @*       @7       @       D         ET| EQ2 @       Kȳ       ETs EQ2  <9  ju  P              =˴  j41  Wu Qu =i  j!N   u u ?X  lu  u u ?z  m؀  Mv Gv >	  n~1  @l       @y       @       D         ETs EQ	I      @       K        ETs EQ2  <t]  @u       m       z  =ey  @u  v v =  @$N   w w WX  Bu   T       Q*       A  ETT $0)# Q:       _  EU0ETU TE     &  TM     3   <;  41  P           b  =ey  u  x x =G
  ,؀  Ay 5y ?  ؀  y y >	  ~1  ?X  
41  z z ?     &{ { @v       @}       @       @       X     } ^  ET  D       v  EUv  DҰ         EUv  @ܰ       D         ET0 @       D     ̫    ET| EQ ER}  D         EU}  @8       @I       XQ     v ,  ET}  @m       @       Kѱ     @  EU	'       <;  N   p            =  =ey  ؀  { { ?  u  m| a| ?G
  ؀  | | ?X  	N   x} n} Jկ       EU|  J       EUs  @#     =  @-     =  KA     t  EU	'     ETs   Uw  Y  Mey  u   <z  h؀       ,         Pdoc hu  } } ?X  j؀  >~ :~ ?  ku  y~ u~ Dͮ     M  ӗ  EUs  @ծ        Lk  A؀    Mey  Au  >z  C؀   YO\  6N               	  @       D     Z  b  ET	о     EQ0 @í       Dԭ     Z    ET	о     EQ0 @߭       D         ETv EQ2 T     g  @       D     Z    ET	о     EQ0 T,     g   Z  (P     #        ?  *41  ~ ~ ?  +u   ~ @j       D{     Z    ET	о     EQ0 @       @       X     }   ET~  @       D     Z    ET	о     EQ0 @٬       D     Z    ET	о     EQ0 @       D       @  ET} EQ2 D     s  _  ET	      @'       @9       @U       Kf     Z  ET	о     EQ0  <  ;        -       s  =  ;   * $ =
  5n  z v ?z  ؀    Ilp 0    [          _  \    \  % # \  J H  K       EU@  Sq        )         =z  $؀  y m Ilp 0    D-       ӛ  EUs  ]I     q  EUU  U˳     Mz   $؀  Olp 0   ^\  0  0            q  _z   ؀  * & `
  m  i c alp 0    D=         EUU @N       D_     Z    ET	о     EQ0 @y       D     Z    ET	о     EQ0 @       D         ET| EQ2 D       +  ETv  D       C  EUv  @ͫ       Kޫ     Z  ET	о     EQ0  b        !      1  _z  %؀    `
  m  D > D       Н  EUU @"       @;       XD     }   ET~  @K       D\     Z  2  ET	о     EQ0 @v       D     Z  c  ET	о     EQ0 @       D         ET} EQ2 D         ET| EQ	p      D       ʞ  EU|  @Ǫ       @٪       @       D     Z    ET	о     EQ0 K!     @  EU	x'       c/  p     	         _  ";     _
  :n  ΂ ʂ ]y       EUU  ^  0  0           U  _z  #؀    `
  m  _ Y alp 0    DJ         EUs  DU     U    EUs  @f       @       X     ~ K  ET  @       D     Z  |  ET	о     EQ0 @       DϨ     Z    ET	о     EQ0 @ڨ       D       נ  ET~ EQ2 D         ET| EQv  @       @       X     ~ &  ET}  D&       >  EU|  @E       DV     Z  o  ET	о     EQ0 @h       Dy     Z    ET	о     EQ0 @       D     Z  ѡ  ET	о     EQ0 @       D         ETv EQ2 @ǩ     g  Dש     @  '  EU	0'      @ܩ       K     Z  ET	о     EQ0  ^  0                _z  #؀  ' ! alp 0  s q K"       EU@  ^Ȳ  m  Ч     ;       A  dptr ;     av -     eز  N   	`
  m  9 7 ai N   ` \ K       EU:  ^&                  _z  &؀    KƧ     @  EU	'       u  bU               v  dr !u   م @'       @A       XJ     }   ET~  DR     g    EUs  Db     t  1  EU	%      Ds       [  EUs ET	     EQ0 @{       @        f`  |     9       4  _  |(;   F @ _I  |8;     _
  |Nn  ӆ φ alp ~0    `ey  ؀  b ^ `       @       ]ɦ     t  EU	&       fI~  fЦ     *         _>2  f"u  ڇ ҇ Dݦ     g  ~  EUs  D     t    EU	%      ]     ɬ  EUUET0  g~  5     hX$  5u  i
  6    jR  ;     h'  =   h    hr  B    k                lɥ  Umե  
I     n       P  5\ɥ  = 9 BP  oե   s    k       .         \    o    [            \  9 5 B  p  K       EUs    K       EUs   k  0              \  ~ r q    r  S        A\    B  o   t p Ju       EU  G     EUH    k=       u       A  \K    [=           \K    Q*     լ    EUU TU     լ   TE       TM       ]e       EUU  k       i         \    \  a W s    	t  t  u    o  ׍ Ӎ D      ѐ    ETv  DF       Ө  ETv  KR       ETv     kѐ  `              \    \    q   rѐ       @  \  '  \    B@  o    @ѵ     b  D         ETv  K       ETv     ks       C         \  0 " \  ِ ː \   t p  o    [s  ۼ      p  '  \  K C \    \    Bp  o  z x p  D       g  EUs  ]     A  ETTEQUERQ   ]      ު  EUT  v    P`w\n  \n  @+v0  0  QxP  P  vW  W  Q	w      @)wxQ  xQ  @Uv    Qw~  ~  Lw    LvL  L  Av^  ^  AwN  N  LvK  K  Ava  a  Av    Aw    Lv    Q1w_  _  @@w0W  0W  Lw    LvD  D  Q]v>  >  Qv    Qv1  1  Qw	  	  R&v_  _  CvJ  J  Qvr  r  AvE  E  Atv    A)vY  Y  A4v    A0vk  k  QvA  A  AvO  O  Qw    Gw    Gv    Q
w    Gv
  
  Q
w    Gw    Gww{  {  Gw    Gpv0t  0t  AvuF  uF  Av    AvH_  H_  A'   !  gk*  ͵  H             Y -  -   -  9   -0  -0  -  		  %-   -$  	  '9   hint y   	  )E   -   	a2  L   	  E   	L  E   	|  L   	b
  L   	6  E   	/!  L   	     	w-     	@*  y   	     	'     i(  	     	g     	&     	4  !   e  -%  e  	N  @   	  O   	&  lG  	'    	  	L   0
	  :3  
    L     L    	a,  
    	  D,       S   3  R0    T#0   4  U#0     	
  V  ~/  (v  l.  xy      yE   E
  zy     |E   i2  y   _  f   8  f   #  6   -0  	  1E   %(C	    EB  )  F    G    e  	  L   ' 	m#  H  -   	  ((  j^  1  A  A  L     kF   ~  H   E    H{}   E   Hm   (  H   (   	  c  	  Z   	  m   	              #  "  h  #  p#  $  x1%  '$       L      "  @      4  4  L    l  4  4  	  *!P    	  D  	-  n     ~  L      !  N2  'b     (	y   @v  )  H ~    L     	#  S  ]    *  y   >6  	(   	6    08%  0  :      ;    0?V  =  A
y      B
y     C   0G  0  I      J     K   0 O  0  Q      R     S
y   g6  T  H$  U   0a    c(   "  d(   %^    e    g    0 YI  %0  [(     ]f   %  h
   0lm  7  n    K!  o
y    0t  p  v(   /  w
y   	  xE    %p3  j  5  >  <  L.  D%  I_rt LV  .  V  *  i  7  pI  J3  ym   y     L    0$	c  %  &	y    f   (	y   R  *	y   v   0	y   +  {	   	  |  #  y     (   c  o  :    L   @               l    _    !  	"  $_  6  2y   .  7y   b  ;y   -{  	l
  9   W'  V  +  "   6  
[   .  e  k  L    .  k  "(  v  v    ""        "f+        "        -  	  0  "   (  
  -  
  S  W       	   "!  q	    "   2  
      5         	  	  v	  "x
  	  	  	  ""  	  	  	  "`#  	  	  	  "0  	  	  	  "}2  	  	  	  "  	  	  	  V  	  {  

    
     
    +
  	  6
  q	  A
  	  L
  	  W
  	  b
  	  m
  	  x
  	  
  	k    -  
    !
    	H  {  %
    

  3  
  r4       
  L        L        L    5  :  1  	
      (  :    :  -   g  L    y5  .8  k4  0    0*  5     =   4  >     @   !  A    v   C	y   $D  E   (  J   0,  N/  8  P;  @"  [  H'  \  X  ]  h'  j8  x S  H  L    _  X  L    6  H  '  y        6  H  '  y        4  y     4  3  6	y      7	y        	   -_  ,   ._  0,  !:  /	  !	_   @3  !
    !y   1  !       "b    "d	_   '  "e
    "fy     "gy   #  "h
      "  2  "	_   P5  "
  *  "y   '  "	_      "D    "F	_   (  "G
  !6  "Hy    B-0  #X  4  #    &2  #     #9   '  # -     #!
X   e  h  L    B5   #%  4  #'    &2  #(     #)9   '  #*-     #+
X   3DIR $  "-  .IV %v   .UV %wL   .NV %E  -  -    &y   *  %/
    .OP %1
&  7op ('  n  'P2   u  'P2  ?  'RK  h  'I  $a"  'E   	 $S
  'E    $,  'E    $5  'E    $!  'E    $2  'E    $  'E    $ *  'E    a  'n1  "  'n1  # .COP %2
  Ocop P(y[  n  (zP2   u  (zP2  ?  (zRK  h  (zI  *a"  (zE   	 *S
  (zE    *,  (zE    *5  (zE    *!  (zE    *2  (zE    *  (zE    * *  (zE    a  (zn1  "  (zn1  #  (}1  $s  (I  (p3  (_  0  (
1  8  (
1  <O  (2Q  @%  (8Q  H   %8
h    `'  n  'P2   u  'P2  ?  'RK  h  'I  $a"  'E   	 $S
  'E    $,  'E    $5  'E    $!  'E    $2  'E    $  'E    $ *  'E    a  'n1  "  'n1  #  '
P2  (S*  '
P2  0!  ' I  8,  '1  @%  '	^K  H3  'K  P$  '
P2  X L  %<
   5  P'  n  'P2   u  'P2  ?  'RK  h  'I  *a"  'E   	 *S
  'E    *,  'E    *5  'E    *!  'E    *2  'E    *  'E    * *  'E    a  'n1  "  'n1  #  '
P2  (S*  '
P2  0  '
P2  8  '
P2  @  '
P2  H   %G
  Pi  %4%  &  )#32   'Iop )$P2  u'  )%32    )'32  Y4  )(32   A  )*_  (f  ),1  0:  )-1  45  )/_  8  )01  @)  )11  D  )332  H41  )4  P  )5  X!  )6  `  )81  h  ):_  p2  )<_  x  )=_  X  )An1  (  )C  V)  )EJ2  O  )HXK  ,  )KB    )LB  &  )NV2  3  )OV2  2  )^1    )`n1  6  )an1  -  )b>2  !  )nn1  t%  )uc1  3  )zJ2    ){J2  &  )}T    )~D2  -(  )_  t,  )D2  3  )   W  )(2    )(2  @  )B    )_   
  )_  (   )I  0`  )4%  8  )4%  Po	  )4%  h"  )0  	  )0  QISv )(2  a  )`  e(  )J2  QIna )    )g   	  )g    )>2     )(2  (QIrs )(2  04  )>2  8  )>2  @  )>2  H4  )4  P 5  )(2  X3  )(2  `0  )(2  h  )P2  p  )GR  x  )GR  ;(  )Q  	  )(2  `W/  )~8  h  )P2  pr0  )P2  xp  )J2  !  )>2    )>2  1  )_    )  $  )1  1  )n1  -
  )V2     )V2  )  )V2    )(2    ) `    )^  =  )/^  \  )=b_  -  )?   5  )@_    )B1  0  )D1  :  )Fy   R   )Iy   \   )J   	  )K>2  (r  )L>2  0-  )M>2  8  )N_  @.  )O4  H0  )P(2  P7  )Q(2  X  )T(2  `I  )U`  h/  )V4  pJ  )XV2  x\  )YV2  ye  )ZV2  zS  )[V2  {9  )\V2  |  )]V2  }  )^V2  ~z  )_V2    )a_    )b(2    )d    )f1    )h1    )l1  =1  )oy     )p`    )s>2    )t>2    )u>2  -  )v>2  n  )wD2  6  )z>2  0  )}>2  %  )>2    )>2  4  )>2    )(2   M  )(2  -  )(2  ,  )D2  $  )$`   
  )J2  8t  )J2  @y3  )(2  Hp  )D2  P  )D2  Xv  )D2  `  )D2  h  )D2  pv1  )D2  x  )_  8  )<=  d  )P2  	  )P2  q!  )P2    )P2     )T  W2  )y   e  )y   $  )_  .  )4`  (  )_    )D2  k  )(2  ^  )(2  '  )y     )1  F7  )V2  .  )V2  #  )1      )y   Z  )1   p2  )1  /  ):`  (  )J2  T,  )@`  !  )   s  )<=  p  )I  x  )I  7  )I  "  )<=  =)  )y   r  )1    )V2  I  ) V2     )V2    )V2  7  )}    )}  0  )q  +  )q  mIan )	1  6  )1  t  )1  t  )1  @'  )1  +  )    )_    )5    )!F`  `'  )#1  `  )%1  d  )'A[  h)/  ))(2  p,  )+1  x  ),I    ).I  %  )/I  a5  )1I    )3I  1  )6_    )7  I  )8    )91  S.  ):n1    );V2  0  )=n1  &  )>V2  -  )FV2  D2  )GV2  M  )Lg^  }#  )NV2  .  )SS     )Wy   @  )YV2  +  )[_  /  )\(2    )a(2    )b(2  $  )c(2   	&3  )d(2  	L  )f(2  	  )g(2  	$  )j(2   	7  )k(2  (	  )l(2  0	'  )m(2  8	<  )n(2  @	-  )o(2  H	#  )p(2  P	"  )rV`  X	5  )sf`  	4  )tf`  (
I)  )u(2  
Q  )v(2  
R  )w(2  
_%  )x(2  
  )y(2  
=  )zJ2  
   )|J2  
 %  )}D  
)  )~  
  )v`  
7  )n1  
.  )V2  
v6  )V2  
,  )32   j  )32  92  )`    )D2  40  )(   	  )32  (-  )D2  0	  )`  8  )I  @  )I  HR-  )`  P%  )J2  X  )J2  `	  )5  hh&  )`  pf  )`  x4  )(2    )(2  -4  )(2  i"  )(2    )(2  G  )(2    )_  V  )D2  +$  )D2  4  )   J  )h[  
#  )h[  }  )h[  *"  )[    )[  9
  )[  %
  )J2      )J2  o  )D2  S	  )J2    )(2     )J2  (-  )`  07  )4`  8d  )^  @2  ) _  5  )	`  D  )
y     )[    )"`  u7  )-I    )/   .SV %O
E%  4%  7sv *%  9%  *(   !  *1    *1    *p6   .AV %P
%  7av *%  9%  *":   !  *1    *1    *9   .HV %Q
%  7hv * &  9%  *:   !  *1    *1    *(:   .CV %R
,&  7cv *m&  9%  *9   !  *1    *1    *9   #a  %S
z&   i  *&  9%  *r8   !  *1    *1    *C;   .GP %T
&  7gp P+|'  2  +
(2   I  +I   ,  +
<=  >   +
1  R  +
1  .  +
J2   +  +
D2  (J-  +
<=  0  +
>2  8$l,  +E   @$o   +E    @!  +V<  H .GV %U
'  7gv *'  9%  *9   !  *1    *1    *8   Oio * (  9%  *=;   !  *1    *1    *:     %W
(     `(?9(  "  (CT     2  `((  {  (	n1      (	n1  K,  (
1  C   (
1  =  (
1  "  (
1  (  (T  8  (B  Q  (     (
1  (@%  (S  0 !  %Z
(    0,e)  !  ,<   K  ,=V  0  ,
1  S7  ,
e    ,	n1    ,    ,
(2   +  ,_  ( .XPV %[
r)  Oxpv  *)  ('  *J2   /   *\<    *    *<   E:  %\
)   ;8  (**  ('  *J2   /   *\<    *    *<  3  *<    Kf  %^
(*   G  0**  ('  *J2   /   *\<    *    *<  3  *	<     *
;  ( $  %b
*  p6  (-*  ('  -
J2   /   -\<  r+  -  3  -  A!  -
32      %c
*     .6+  ('  .
J2   /   .\<  $  .  |  .     %d
C+      0*4+  ('  *5J2   /   *5\<    *5    *5<  3  *6<     *7;  (   %e
+  [7  h/w,  ('  /J2   /   /\<    /    /VJ  %  /J2   )  /xJ  (  /J  0@  /J  8S   /_  @6	  /J  Ho  /<=  P/  /1  X  /=  \.  /1  `   %h
,   /  *^-  ('  *_J2   /   *_\<    *_    *_N=  3  *`<     *b8  (7  *os=  0#  *q	  8  *r	  @G#  *s	  H,2  *t_  P'  *u
>2  X  *v_  `[3  *w
>2  h:-  *x_  p6  *y
>2  x[*  *z
e  @  *{	n1   !  %i
-  -    @,.    ,U   3  ,U    ,U  1  ,U  /  ,U   )6  ,V  (v/  ,7V  0  ,U  8 .ANY %j
$.  nany %/  O  %(    %(2  R1  %32  !  %>2    %D2    %J2    %P2  #  %_  B  %  O/  %
1    %
1  "  %	  }  %	  1  %
   &  %
V2    %2  1  %x2    ,  %{I/  4  %|Z   1  %}     %~(   r  %l
V/   +  0%/  9!  %Z   5  %    %  @  %Z  }   %Z   X  %Z  ( f  %m
/     (*b0  ](  *cD2     *d  "  *er2  4  *fr2    *gD2      %q
(0    0j0  
  0     0&I    0'
1  ^)  0(
1   .PAD %r
%    %s
0  V  (0+0    0,   I  0-(J    0.    0/I    00
1    	  %t
0  '  00Lc1  7  0M_   ,  0MJ2    0M4J  j)  0M1  "&  0M1  d!  0M1   f3  0My   $#  0Mn1  (  0Mn1  ) 3I8 1S   3U8 1-   n1  3I16 1f   ~1  3U16 19   1  3I32 1y   1  3U32 1E   1  o1  3U64 1L   1  1  / 1  2  11    1<1  #2  (   1  "(  %w6	  6  %y  4%  (2  (2  32  |'  %  %    -  V2  #r2  r2  (     b2  5  214    23y    T  26	_    27	_  2/  28	_  (  29	_   $  2:	_  ((  2;	_  0  2<	_  8  2=	_  @;  2@	_  Ho  2A	_  P2  2B	_  X%  2D4  `4  2F$4  h%  2Hy   p  2Iy   t !  2J   x+  2M9   {  2NS   <  2O*4  m.  2Q:4  /5  2Y   W  2[E4  &  2\P4  5  2]$4    2^	(  5  2_
  4  2`y   D  2bV4   	5  3~2  pA  2+"  4  ~2  e  :4  L     4  "T  @4  "#  K4  e  f4  L    !y   u4  (   (  44  4  4  &  44  
  44  $  5y   :  4  / 4    54  $  5y     54  	  6<4  "  	  6>5  4    6N5  "  	  77  ]%  8c5  1  8	1     8_     8	P2  Y%  8	>2   	%  8%5  4E   *5       F  ]  f0  S  \     ,  i  	`  
        J     	d4  *o5  3HE *5  7he . /6  d-  .$
~8     .%V<    .)P   3HEK *;6  7hek .-p6  @&  ..1     ./1   -  .5*4   %*6    *_    *    *    *    *(2    *r8  2  *32    *x8    *8  
  *8   8  9r8  ('  9J2   /   9\<    9    9>    9?   03  9>  (   9J2  0R3  91  8  9  @
  9  H  9  PJ1  9?  XQ!  91  `Z1  91  d)  9(  h  91  pp$  91  t8  9?  x>  9  Z  9_  c  9(2  |"  9  6  9  
  9  V  9  $]  9E   $V#  9E   		  9<=   6  ~8  5  &  4  %*9    *_    *    *    *    *(2    *r8  2  *32    *x8    *8  
  *8   6+  %*9    *_    *    *    *    *(2    *r8  2  *32    *x8    *8  
  *8   +  %*":    *_    *    *    *    *(2    *r8  2  *32    *x8    *8  
  *8   *  %*:    *_    *    *    *    *(2    *r8  2  *32    *x8    *8  
  *8   *  )*=;    *_    *    *    *    *(2    *r8  2  *32    *x8    *8  
  *8   w,  )*;    *_    *    *    *    *(2    *r8  2  *32    *x8    *8  
  *8   R+#  *<  =  *  &,  *J2  q(  *1  26  *V2   R4  *V<  "  *  (  *  5  *V<    *V2   /6  R7  *<    *<  %  *   (  )*<    *    *_   )*<    *    *_   )*<    *    *_   )*5=    *5    *5_   )  *:1  #<=  r2  <=    &  ,=  0  )*_s=    *_    *__   )*l=  x   *m=  1  *n	(     4   =  / =  G   :=     9=    9n1     9	n1  (  9	1   	   9=  
  (9&J>    9'   )  9(    9)	(2    9*	(2  {  9+      9-r>  n-  9.n1   I  9/r>   =  >  L    )  9:>  (  9;   'end 9<    9C   	)  9D>  m&  >  %9>    9    9_     h9?  2  9@     9Z@    9@  A0  9@  +  9@   a7  9@  (  9A  04  97A  8  9`A  @!  9A  H  9@  P0  9A  X2  9A  ` >  ?  J>  >  	8  96  ^  9?  +  9   	  9?     	-&  9?  !>  @  r2  .2  1   @  !1  Z@  r2  >  _  _  _    (2  (  1   #@  !_  @  r2  >  (2  :  _  _  1  @   ?  `@  !(2  @  r2  >   @  #@  r2  >   @  #@  r2  >  1  .2   @  #A  r2  >  1  A   @%  A  @  !1  7A  r2  >  A  1   A  !(2  `A  r2  >  .2  .2  1   =A  !(2  A  r2  >  A  1   fA  !(  A  r2  >  A   /  A  !>  A  r2  92  y   P2  ?  >  A  1  1   V2  A  (P9h	B  rex 9iB   ,  9jB  c  9l(2  Z  9n_  |"  9o   6  9p  (
  9q  0   9r<  8pos 9s  @  9tn1  H ?  [  )  9uA  ( 9|	B  )  9}B   U  9~"C  j  9dC  *  9_   B   
  x9"C    9	y    F  9_  u 9PH   B  P  9\dC  /  9]I     9^dC  x4  9^"dC   (C  &  9B    91  (9C  2  9"C    (9	C  2  9"C     9
1  p$  9
1  cp 9wC   ( 9/D  2  9"C     9
1  p$  9
1  cp 9wC    9/D   =  (@9D  2  9"C     9
1  p$  9
1  cp 9wC  P%  91    9V2  
  9D   me 9/D  (  9D  0  91  8q  91  <
  91  > 1  n1  (@9xE  2  9"C   d  9"C  %  9$"C  
  9>  cp 9wC   Z5  9wC  $   91  (B 9/D  09  9_  8 (9E  2  9"C   >.  9
1  '  9
1  me 9/D   ( 9	E  2  9"C   \  9"C  W  9
(2  ^6  9_   (9F  val 9
y     (89F  2  9"C   d  9"C  me 9/D  B 9/D  cp 9wC   D	  9V2  $w	  9y   (  9"y   ,  9#_  0 ((9&G  2  9("C       9)"C  cp 9*wC  Z5  9+wC    9,_  1.  9-1     9.1  $ (`91G  2  93"C   c1 94
y   c2 94y   cp 95wC    96
1  p$  97
1  E'  98
1    99
1   D	  9:V2  $A 9;/D  (B 9;/D  0me 9</D  81  9=G  @Z
  9>G  N n1  G  L    (h9AH     9B
1   cp 9CwC    9D
1  p$  9E
1  c1 9F
y   c2 9Fy   +  9G_    9H_     9I
y   (min 9J
y   ,max 9Jy   0A 9K/D  8B 9K/D  @1  9LG  HZ
  9MG  V )h9uI  &  9jC  )  9 B  9yes 9C  	  9C    9C  #  95D  %  9D  $  9xE  $  9E  o   9E     9$F  3  9/F    9?G  Q  9NG   
  9QB  uI  I  L       9_(C  	  ;KL   '  	  0  00!I  (  0"I     0#I    0$I   w0  j0  %0J  }1  0	J  i  0%"J   I  I  .J  0  %0MVJ  )  0MJ2  f  0M<=   %/xJ    /    /_   %/J  F%  /P2    /.   %/J  I  /P2  h  /B=   %/J  %  />2  /  /V<   %/ K    /H=    /(   %'	7K  ,5  'I  Isv '(2  Iiv '  Iuv '   	h/  ' K  !P2  RK  r2   CK  7K  )'K  .  'P2  1  'I    '>2   )'
K  F  'P2  !  'I     0<1L  ?  <3	_      <4	_  E.  <6   2  <7   7*  <8	_    <9	_   .  <:	_  ( D   =*`L  Y"  =,_     =-_    =.   .  =/   B)   >HL  "  >ML     >VL  I  >[L   '  >bL     >ie  1  >nL    e  L  JL    e  L  JL    e  L  JL    e  M  JL   w 4  H?+M     ?-_   K	  ?._  G  ?/     ?0   "  ?1      ?2   (U  ?4   0  ?6   86  ?8L   @ qP@h	OP    @j_   a  @k	    @qOP    @u_    @v	     @yL  (  @z_  HJ0  @{	  P  @}UP  X  @:  `
  @_  1  @	  l  @[P  ,  @y     @_  W  @	  (  @  %  @_    @	  "  @aP  v&  @y   2  @  3  @_     @	  h  @gP    @K    @_  H1  @	  P  @mP  X  @  `   @_  %  @	  6  @sP    @M    @_     @	    @yP    @P    @	      @P  $  @P  7  @	  W  @P   $  @_  (  @	  0I&  @_  85  @	  @%$  @	y   H `L  L  :      K    M    h  d  @M  P2  %.&P  {+  .'(2  U  .(	     ( Q  ~4  (!Q   0  ("  y  (#y   4  ($V2    (%1   P  		  ((P  	  (-Q  "g'    !Q      (('Q  	  ((
P2     (*I  cv (+
<=  k%  (-
1  4  (.D2     ^  ((3Q  	  (4
P2     (6I  cv (7
<=  gv (9
>2  .  (:
>2       0(uGR  	  (v
P2     (x
(2  |!  (y
P2  7  (z
(2  cv ({
<=   )  (|GR  ( Q  )(qR  9svp (32  9gv (>2   ((R  ary (
D2   ix (
   ((R  6)  (
1   ix (
   ((R  cur (	   end (	   ((S  cur ((2   end ((2   )(JS  9ary (qR  
  (R  +  (R  0  (R    4  0(S    (S   e   (MR  $  ((2  )  (S  E  (
I  (    t)  (S  $4  (P2   %  ((2   )0(T  {  (>Q  -  (Q    (Q  '.  (JS  L"  (S      3  X(T  0  ( 	n1     (	n1    (
1    (
1    (  J'  (  8  (_    (
(2   '  (	
(2  (  (
_  0  (_  8J  (_  @_  ((  Hy  (>  P )`(@U    (A9(  3  (B"T    1(  0(U  
  (D2   U  (U    (U  .  (U  C  (1   *  (1  $  (1  (y  (1  , (  U  !  (U  !y   U  r2  (2  <   U  !1  U  r2  (2  <   U  !y   V  r2  (2  <  (2  4  1   U  !y   7V  r2  <  A   V  -  0A	V  'val Ac5     Af   g  A1  t  A<=   	
  ACV  +  (AV     AV     A(2    A_  <4  A_    A(2    V  	u  A V  B4  A"Z  (   A&Z   d*  A'c5  !  A(y   `  A+y   T  A-y   
  A.Z   v  A/Z  ('ps A0Z  0'  A4
1  8  A5
1  <  A6_  @  A7_  H'  A8	n1  P$   A9	n1  Q  A;	n1  R$  A<
V2  S  A=
1  T  A>
P2  X)*  A?
P2  `  A@
(2  h  AA
1  p4  AB1  r6  AC
1  t   AD
(2  x"  AE
1    AF
1  3  AG	  m5  AH	   7  AIV2    AJ	n1  n  AK
1     AL
1  R(  AM
P2  &  AN
(2    AOZ    AP
(2    AQ_  3  AT_  3  AU_    AV_  7  AW_    AX_    AY_    A^1  (  A_
1    A`	n1    Aa	n1  #  Ab
J2     Ac8  6  Ad
D2    AfZ    Ag
Z  @1  Ah	n1  T  Ai	n1  UF(  Aj	n1  V  Ak	n1  W7,  AlT  X  Am
X  `~5  An1  `"  Ao1  ds.  Ar  h)7  As  p  Ate  x&  AvV2  yKB  AxE   xK\  AyE   xKu  AzE   xKH*  A{E   x   A}V2  {~  A~	n1  | V  V  V  c5  Z  L    1  Z  L    	4  AV  /  Z  "<  Z   "  %;[  i  %r2     %$;[  4  %$;[   [    %QS[  A[  Y[  !y   h[  r2   K  %Ru[  {[  #[  r2  (2     %SS[  c1  %U[  [  !V2  [  r2  (2     %V[  [  #[  r2   l  [  / [  @/  %u[  {0  %w[    %y[  u  %{[    %}[  9  %[    %[  /  %[    %[  Q$  %[  ')  %[    %[  l  \  L    \    %\    %[  /  %[    %[  Y!  %[  '1  %[     %[  #  %[  ?  %[  M
  %[    %[    %[    %y1    %y1    %y1  l  q]  L   @ a]    %q]  0  %[  l  ]  L    ]    %]    %]  f  %4     ]  / ]  ,  %]    %=  /  %=  {  %=  "  %=  -   (^  / P  %^    %=  4  M^  / 2  %B^    %[  r  E   %^       1  67  *  &  .   D  %4   J4  H%F^  pad %G^    4%  ^  L      %P^  ^  #_  r2  P2   +  %a_  _  !1  ._  r2  .2  .2     %fRK    %gH_  N_  !P2  b_  r2  P2     %h^  1#  %i|_  _  !y   _  r2  _    P     %l[   1  %s_  fn %tx2   ptr %u(   (-  %v_  .  1  U  I  uI  Z  _  `  L    :  y     4`  L    4  _  1  (  V`  L    (2  f`  L   	 (2  v`  L    n1  `  L    I/  J2  P  5  e)  (  (2  `  L   " &  %1    %1    B4  =$  B&4  ._  `  / -  B`  ;_  a  / f	  Bca    B1  1  5a  / *a  \  B	5a  1  Ra  / Ga  &  B	Ra    B	[  	  B	5a  y1  a  / ~a  }'  B	a     C&2    C(r2    C-2    C1V2  {(  C4V2  "  CK5  V0  CL5    CX2  m  C[`  75  C\y   .  C]y     Ca  Y&  Ce2  3   Cf2  t  CiV    C2    C2  5  Cy     Cy   %  Co_  (  CJ2  }  C    C2    C4%    CV2  -   b  L      Cb  2'  %4N[  )  %6N[  4E   D=c  h   l  
i  }  j  w  8U  b  ё  &x  	ԇ  
C    u    b  aN  (T  ʃ  Ec    =  m  .  p  q  I        Z     :  c  L    c  /  Dc  -  c  L    c    Dc  y1  d  L    d    %Nd  ]2  ;d  / 0d    %b;d    %c;d  *  %d;d    %e;d  6"  %f;d  }.  %g;d  4E   Eef  E   	  gZ  n  AM    @  1s  ~p    	q{  
cf  }x  G[  Y  W  9s  Ѯ    n  M  e  a  Ю    n  M  e  a  )Y  jY  e  ^|   @v  !g  "R  #  $e  %x  &Ѣ  '̇  (R  )  *ti  +  ,?F  -i  .  /i  0  1y  2`  3x  4`  5R^  6z  7Q^  8z  9X  :#  ;  <  =|n  >/O  ?~N  @W  Ay  B  C  Dfl  Ez[  FU  G_M  H  IT  JJ  K )%Zf  9nv %Z  9u8 %Zf   ef  n1  f  L    $#  %Zf  )%[f  9nv %[  9u8 %[f   f    %[f  	<  F92  	<  FB3f  f  !(  g     	9  FMg  g  !(  2g  (     	:  FW>g  Dg  !_  Sg  4   	9  G-   Sg  	ݐ  H&pg  ܐ  @I}g    I~(   ]{  I9    Id  l]  I'  R&  Iq   'raw Iq  (`C  I	y   09  I	y   4n  IL   8 	_t  Hg  dg  	Ш  H# h  Ϩ  hJ6h  'buf J8g   .  J:4  ׎  J;4  ;/  J<Or  'cur J=Or   'end J>Or  (]  J?	y   0  J@	y   4'col JA	y   8n  JGL   @/  JH|  H  JIOr  P  JJOr  X  JK	y   `'id JL	y   d 	rY  H$h  h  	BB  H&h  BAB  Jm  'sax J ~   Z  J(    JGy  L  Jy   |  Jy     JOr     JOr  (  Jy   07P  Jy   4I  Jh  8  Jy   @b  Jy   Dv  J&~  Hey  J'y  PF  Jy   XO  Jy   \  J#|  `
V  J	y   h?  J}  pN  J	y   ?  Jy   \@  Jy   7O  Jy   '  Jy   rr  Jy   ul  J:{  z  J}    Jy   ׎  J_  
  JOr   l  Jy   (R  Jy   ,>  J,~  0\  J   8[  J   @R{  Jy   HH?  Jy   Lz  Jy   P  JOr  X3  Jq  `mA  Jq  h3  J`  pN  Jy   x>  Jy   |͜  J`    Jy   O  Jh  y<  Jy    R  Jy   Ǐ  Jy     Jy   0  J (    Jy     Jy   W  J(  \  Jy     Jy   u  J[w  ΁  J,~  ˁ  J	y   u  J
y   ߗ  JOr  h  JOr    JOr    Jy     Jy   YM  Jy      J,~  t  J`  P  J`  -  Jqy   {  Jqy  ("O  Jy   0k  Jy   4r  J$y   8'C  J%y   <J  J&'y  @  J'y   Hv  J(y  P+D  J-y  XQ  J.~  g  J/L   Q  J0L   B  J3}  p~  J4y   k  J5y   ^Y  J6}  &  J8y   E  J9L    	`  H'n  h  	D{  H)n   C{   JA]n  G  JBA~   {  JCA~    JDG~  i  JEG~   	j  H*in  
n  	L  H,{n  PL   JKp    Jy~     J  N  J  ?  J  x  JM~     J~  (  J~  0^  J  8W  J+  @*  Jg  H`  J  P|  J  X]  J  `  J  hO  J  p  J+  xF  Ji  g  Jv  ry  J     J"  Wt  J  SH  JҀ  9  J߀  h  J  ڥ  J~    Jŀ  m  J~    JE   0  J(  \  J     Jf  PB  Jz   	>\  H-Wp  on  	I  H0ip  I  K+{q  0  K,(     K-Cr  
  K.Or  ,=  K/s  V*  K0s   {  K1t  (4  K2s  0  K3s  8'doc K4Ev  @<  K6q  Hؒ  K7q  P]  K8y   X  K9\|  \+:  K:Or  `=  K;Or  hy  K=|  p'URI K>Or  xG
  K?y   H  K@y     KD|   	]  H1q  ]p  Sg  	r  Hiq  "r  	IQ  Hrq  q  4E   HCr  ~>  x9  9  ;  d9  a=  e:  h>  8  	b<  
_;  V>  8  <  K:  };  8  <  9  :  =   	6:  Hq  _g  4E   Hr  B>  ';  O8  <  5=  =  >  J=  ;  	8  
 	<  HUr  	Bs  H r  As  Hr  4  H r   
  HOr   	ZF  Hr  r  r   $8  xHs  0  H(     HCr  
  HOr  ,=  Hs  V*  Hs   {  Hs  (4  Hs  0  Hs  8doc HEv  @ns H2x  Hؒ  Hq  P;  Hy  X9  H2x  `;  H(  h  H9   p=  H9   r r  r   =  Ht  0  H(     HCr  
  HOr  ,=  Hs  V*  Hs   {  HEv  (4  Hs  0  Hs  8doc HEv  @<  H(  H;  H(  PC  H(  Xg  H(  `+:  HOr  h=  HOr  p>  H(  x s   =  H'Ev  0  H((     H)Cr  
  H*_  ,=  H+s  V*  H,s   {  H-s  (4  H.s  0  H/s  8doc H0Ev  @@  H3y   H  H4y   L8  H:t  P9  H;t  X<  H<8x  `  H=Or  h  H>Or  pids H?(  xa@  H@(  URL HAOr  y<  HBy   u  HDZy  ;  HE(  T;  HFy   ;  HHy    t  ^E   Hsv  |    KW       HKv  ^E   H"v  {  U  TA  ib   =A  H'v  ކ  H0#v   ݆  0H21w    H3sv     H4v  
  H5 Or  c1 H6 Dw  c2 H7 Dw  {  H8 Dw     H9 Or  (   H1>w  v  v  	!<  L'Vw  " <  	fh  L gw  Jw  	:  Myw  ":  	;  Mw  mw  )<  M~w  =  M~w  c8  HwCr  ;  Hw   ;  0H%x  4  H8x     Hw  y>  HOr    HOr  0  H(     HEv  ( э  H2x  w  w  B<  HKx   A<  `Hy  0  H(     HCr  
  HOr  ,=  Hs  V*  Hs   {  Hs  (4  Hy  0  Hy  8doc HEv  @ns H2x  H\<  Hr  P;  H(  X qs  Hy  >x  Kx  %8  Hr  <  H4y  y  =  H%t    H&Ty  :y  Vw  	ڃ  Nly  "ك  	w  N}y  `y  4E   Oy  P   ݘ  h  GK   	  Oy  	!  OLy     XONyz  `L  OO
y    J  OP
y   e  OQ_    ORy  Ҍ  OS_    OT
y    B  OU_  (B  OV_  0B  OW_  8?  OX
y   @D  OY
y   De  OZ(  Hey  O[(  P 	q  OMz  y  z  #z  (  4  C F  OXz  z  #z  (  yz   	k  Pz  "k  	u  Pz  z  	  P%"z  "  	  P&{  z  	%  Q{  "$  {  	  Q*z  	  Q9z  	f  QPF{  f  pQR#|  Z  QS(   9  QT"{  SH  QU.{  ey  QX'y  F  QYy    O  QZy   $  Q[#|  (^  Q]E   0'doc Q^Gy  8'  Q_y   @@  Qb{  H  Qcy   Pa  Qdy   TP  Qe{  X'am Qhz  `  Qiz  h 'y  4E   K\|  X  s  d  a  $  y   	h\  K)|  4E   K!|  P   ަ   	O  K$h|  ip  	E  J4|  |  #|  q   	Z  JV#|  Z  (JY}  ey  JZ}     J\L   $A  J]L     J^L   M  J_L     |  s  	}m  Jb&%}  |m  JdZ}  jy  JeL    ]  JfL   R&  Jg}   4y   Jp}  sN  #|   I  j  X  @  V    @k    Q  	  
͈    qh    XI  ׉   	?  JZ}  4E   J~  u     O[  <    |J   	wg  J}  {n  h  Or  !Or  A~  (   2~  f4  gn  J^Z~  `~  !h  y~  (  Or  Or   H  Jj~  ~  #~  (  Or  Or  Or   3Q  Jw~  2{  J~  ~  !{q  ~  (  Or   ^  J~  d  J~  ~  #  (  Or  y   Or  Or  q   s^  J~  y  J8  >  #g  (  Or  Or  y   y   Or  r   r  Jt  z  #  (  Or  y   1w   q  J    #  (  Or  Or  Or  Or   3C  J    #  (  ]n   Y  J2  k  J2  [H  J    #+  (  Or  ,~     J8  >  #N  (  Or   T  #i  (  Or  Or     J8  ߤ  J)    #  (  Or  y    $L  J5  qS  J@N  7  JJ8  Tl  JT  Ϧ  J`z  ]  Jjz  j  Jvz  ӟ  JG~  T  JG~  P`  JG~  C  J-  3  #f  (  Or  Or  Or  y   ,~  y   y   ,~   1u  J~  	p  R(  	K  Se    !y       `    `   -   4     	S  S{  	t  S(؁  t  (S'  
  S!_   I  S   "  S     S s  ~  S s    	  S!3  ́  	`  I6E  K  !y   d  (  _  y    	{  I?G~  8  Tf  8;  Tf  m8  Tg  =  Tf  <  T2g  	  U      U  'low U9    (&  U 9    	v  U#    v  U%  'low U&E    (&  U'E    	,r  U*!/    +r  U,q  {  U-y    ]  U.y   W  U/q  |  U0w       C  UP!*  L  U|!*  o  U!*  {l  U!*    U!*  Ӂ  U!*  4   Ճ  L    Ń    UՃ  \X  VE   _g    /   
  V8  _  V9  a  V:  0@4	  b  5
(2     6'y  B  7
J2  _  8Gy  Ǜ  9
(2   3  :
(2  (Ѷ  ;Ä  0  <	y   8 $  GÄ  ?  H   96  I     	a  =)  	O  ?  Ʉ  x  A  4  B   I  Cq  'len Dy      2m  L1  	L&     2*  M1  	H&     2ĵ  N1  	D&     2  O1  	@&     2  P1  	<&     2<  Q1  	8&     2  R1  	4&     2  S1  	0&     2ʷ  T1  	,&     2  U1  	(&     2  V1  	$&     2  W1  	 &     tRp  jKp  @Z              
X  lKp    <. gZ      p  m  W ٓ ד K   ? ) %  LVZ     U
   &D  8y               i  ctx 8(  g _ msg 8+4  Д Ɣ C
e  :m  M E sax ;Մ    =/  =~  }
  >
(2    
	  @r2  ; 5 sp A32        
\  L_         
 Us        
      
 ݇  Us T
       
   U       
 %  Us T~ Q X}Y0      
 =  Us  "     
 U  Us       
 x  Us Q~ R2         Us T Q R1      $ Ĉ  Us Q~ R2      1   Us T~       >   Us       1   Us  @     > *  Us  K     1 B  Us  f     K l  Us T	x(     Q>      X   Us  $     e   Us T0 h     r   Us  z      ։  Us Q0         Us Q0         Us Q0       -  Us Q0 >      J  Us Q0 p      g  Us Q0         Us Q0         Us Q0       ʊ  Us Tv Qv R1         Us T| Q| R1 3        Us Tv Qv R1 V      9  Us Q0 p      V  Us Q2       s  Us Q0         Us Q0 Z        Us Q0       ʋ  Us Q0         Us Q0         Us Q0 1      !  Us Q0 Z      >  Us Q0       [  Us Q0        &,  y   `           l  ctx (  ޗ җ msg &4  n f C
e  m  ܘ И sax Մ  h d =/  ~  }
   
(2    
ַ  yz    
	  r2  W Q sp 32      x  
\  _         
 U~           Us       
      
   U~       
 ͍  U~  f     
   U~ T
       
   U}      
 8  U~ T| Q}X}Y0      
 [  U~ Q| R2         U~ Tv Qv R1       $   U~ Q| R2 ;     1 Ŏ  U~ T|  c     > ݎ  U~  n     1   U~       >   U~       1 %  U~       K J  U~ T	(      &     X b  U~       e   U~ T0      r   U~          U~ Q0 	      я  U~ Q0 ;        U~ Q0 l        U~ Q0       (  U~ Q0       E  U~ Q0       b  U~ Q0         U~ Q0 ?     K   U~ T	x(      [      ͐  U~ T} Q} R1 {        U~ Tv Qv R1         U~ T| Q| R1       <  U~ Q0       Y  U~ Q2       v  U~ Q0 0        U~ Q0         U~ Q0       ͑  U~ Q0 .        U~ Q0 ^        U~ Q0       $  U~ Q0       A  U~ Q0       ^  U~ Q0        &  y        J      ؗ  ctx (  ߛ כ msg (4  H > C
e  m  Ŝ  sax Մ  ( $ =/  ~  }
  
(2  d ^ 
	  r2    sp 32      f  
\  _         
 Us        
      
   Us T
       
   U        
 ړ  Us T~ Q X}Y0 
     
   Us       
 
  Us  s     1 (  Us T~       > @  Us       1 X  Us       > p  Us       1   Us       K   Us T	P(     Q> V     X ʔ  Us       e   Us T0      r   Us  
        Us Q0 9      9  Us Q0 k      V  Us Q0       s  Us Q0         Us Q0          Us Q0 1      ʕ  Us Q0 M        Us Q0 s        Us T Q R1       9  Us Tv Qv R1       b  Us T| Q| R1         Us Tv Qv R1         Us Q0        Ŗ  Us Q2 <        Us Q0 h        Us Q0 
        Us Q0 :      9  Us Q0 n      V  Us Q0       s  Us Q0         Us Q0 
        Us Q0 :      ʗ  Us Q0 H       DX  W              ctx W!(  X J 
  XOr    +:  YOr    =  ZOr  +  
e  \m    sax ]Մ  e _ 
	  _r2    
Ǜ  `
(2  - ' 
O  a
(2  x v rv b
(2        sp g	32        
\  l	_  ٦ Ӧ `     
 Us   @  K  
\  ~	_  ( " `     
 Us   p    _p (  s q       Us T<  \     
   Us  d     
   Us       m    Us Tv Qw R~ X          Us        %  Us T	)     Q>      1 C  Us T|        [  Us          Us T	)     Q> S     X @     e   Us T0       ̚  Us Q0         Us Q0         Us Q0 P      #  Us Q0       @  Us Q0       ]  Us Q0       z  Us Q0         Us Q0 K      ě  Us TQR1         Us R1      r   Us          Us Q0       3  Us Q0       P  Us Q0 +      y  Us T| Q| R1 K        Us Tv Qv R1         Us Q0       ܜ  Us Q0 '        Us Q0 @        Us Q2       3  Us Q0       P  Us Q0       m  Us Q0       Us Q0  4     
 C       U|   &  *y    T     1        ctx *#(    %5  *8Or  s o I  *POr    
e  ,m  $  sax -Մ    
	  .r2  U O 
Ǜ  /
(2    
O  0
(2  ڪ ت rv 1
(2      o  sp 6	32   Ϋ @  ؞  
\  @	_   ܬ X     
 Us   cT     
   Us  kT     
   Us  T     ;  4  Us T| QR  T      L  Us  T      v  Us T	*     Q> U     1   Us T|  ^U     X   Us  U     Ĳ  ğ  Uv  U     e   Us T0 .V        Us Q0 HV        Us Q2 fV     r 3  Us  zV      P  Us Q0 V      m  Us Q0 V        Us Q0 W        Us Q0 BW      Ġ  Us Q0 rW        Us Q0 W        Us Q0 W        Us Q0 X      8  Us Q0 CX      U  Us Q0 ]X      r  Us Q0 {X        Us T~ Q~ R1 X      ġ  Us Tv Qv R1 Y        Us Q0 3Y        Us Q0 Y        Us Q0 Y      8  Us Q0 Y      U  Us Q0 Z      Us Q0  2T     
 BT       Uv   &  y   C     M        ctx (  ] + ch +Or   l len 3y     
e  m  F  sax Մ  k U 
	  r2  R L 
O  	J2    
Ǜ  
(2  ĵ  rv 
(2  *  0    sp 	32  X  `    
\  	_  7 1 hO     
 Us       
\  	_    Q     
 Us     %  
\  	_  ջ ϻ Q     
 Us   D     
 =  Us  'D     
 U  Us  D        Us T	*     Q> *E         Us T| Q} R~  5E        Us  gE        Us T	)     Q> F        Us T	*     Q> $F     1 3  Us T}  F     X K  Us  F     e h  Us T0 G     Ĳ    U  H     r   Us  H        Us Q0 H      ҥ  Us Q0 I        Us Q0 4I        Us Q0 bI      )  Us Q0 I      F  Us Q0 I      c  Us Q0 J        Us Q0 7J        Us Q0 gJ        Us Q0 J      צ  Us Q0 J        Us Q0 J        Us Q0 (K      .  Us Q0 ZK      K  Us Q0 K      h  Us Q0 K        Us Q0 K        Us Q0 
L        Us Q0 9L      ܧ  Us Q0 kL        Us Q0 L        Us Q0 L      3  Us Q0 M      P  Us Q0 =M      m  Us Q0 rM        Us Q0 M        Us Q0 M      Ĩ  Us Q0 N        Us Q0 N        Us Q0 =N        Us Q0 jN      8  Us Q0 N      U  Us Q0 N      r  Us Q0 N        Us Q0 O        Us Q0 -O      ɩ  Us Q0 SO        Us R1 O        Us Q0 O         Us Q0 P      =  Us Q0 0P      Z  Us Q0 P      w  Us Q0 %Q        Us Q0 YQ        Us Q0 Q      Ϊ  Us Q0 Q        Us T| Q| R1 R         Us T Q R1  R      =  Us R1 >R      Z  Us Q0 XR      w  Us Q2 lR        Us Q0 R        Us Q2 R      Ϋ  Us Q0 R        Us Q2 S        Us Q0 0S      %  Us Q0 bS      B  Us Q0 S      _  Us Q0 S      |  Us Q0 S      Us Q0  C     
 C       U   &  y   =     )        ctx (  0  ch (Or    
e  m  p ^ sax Մ  ? 7 
	  r2    
O  	J2    
Ǜ  
(2    rv 
(2  Y I     sp 	32    len y          
\  	_  @ : A     
 Us   =     
   U}  >     
   Us  >     
 .  Us  \>       [  Us T| Q} R g>      s  Us  >        Us T	#     Q> >     1   Us T|  R?     X Ӯ  Us  m?     Ĳ    Uv  ?     r   Us  ?     e    Us T0 ?      =  Us Q0 @      Z  Us Q0 3@      w  Us Q0 d@        Us Q0 @        Us Q0 @      ί  Us Q0 A        Us Q0 4A        Us Q0 MA      %  Us Q0 vA      B  Us Q0 A      _  Us Q2 A        Us T Q R1 A        Us Tv Qv R1 A      ΰ  Us Q0 #B        Us Q0 B        Us Q0 B      %  Us Q0 B      B  Us Q0 2C      _  Us Q0 VC      |  Us Q0 C      Us Q0  =     
 =       Uv   &	  y   P$     g       Ĳ  ctx (    ch 0Or  )  len 8y     
e  m  Q E sax Մ    A$              
R&  Ä    $       T| Q}   s$         Us  M$       UUTTQQ  &  y   $     f         ctx  (  C 9 R&  5Ä    
e  m  &  sax Մ    ch q    len 	y   + % $       $       %         Uv  M%       UU  &߷  hy         %      Y  ctx h(  x t ch h3Or    len h;y    r 
e  im  7 3 sax jՄ  x p 
	  kr2    
O  l	J2  d b 
Ǜ  m
(2    rv n
(2      K  sp y	32      ڴ  
\  ~	_    "     
 Us        
   Us       
 
  Us         4  Us Tv Q| R}        L  Us        1 j  Us Tv  7        Us T	)     Q>      X   Us       e ɵ  Us T0        r   Us  z         Us Q0          Us Q0        8  Us Q0 !      U  Us Q0 :!      r  Us Q0 y!        Us Q0 !        Us Q0 !      ɶ  Us Q0 !        Us Q0 "        Us Q0 8"         Us Q2 S"      I  Us T~ Q~ R1 p"      f  Us R1 "        Us Q0 "        Us Q0 #        Us Q0 8#      ڷ  Us Q0 #        Us Q0 #        Us Q0 #      1  Us Q0 *$      Us Q0  M     
  &@  ;y   `7           <  ctx ;(  ,  
  ;+Or    
e  <m   v sax =Մ  & " 
	  >r2  b \ 
Ǜ  ?
(2    rv @
(2    
O  A
J2  ` ^ sp C32      j  
\  O_    :     
 Us   7     
 7         Uv  7     
   Us  7     
   Us  	8         Us T| Q~  8        Us  F8      %  Us T	)     Q> Q8     1 C  Us T~  8     X [  Us  8        y  U| T}  8     e   Us T0 M9     Ĳ    Uv  `9     r ƺ  Us  r9        Us Q0 9         Us Q0 9        Us Q0 :      :  Us Q0 6:      W  Us Q0 h:      t  Us Q0 :        Us Q0 :        Us Q0 :      ׻  Us T Q R1 ;         Us Tv Qv R1 &;        Us Q0 @;      :  Us Q2 \;      W  Us Q0 ;      t  Us Q0 *<        Us Q0 Z<        Us Q0 <      ˼  Us Q0 <        Us Q0 =        Us Q0 *=      "  Us Q0 Z=      Us Q0  &  y   0     e        ctx (    
  -Or  ~ t Z  C,~    
e  m  9 / sax Մ    
	  r2    
ϸ  
J2  V L 
O  	
J2    
Ǜ  

(2  [ W rv 
(2    arv 
(2   
 sp 32  ^ D p    
\  &_  m g 4     
 Us   "1     
 41         U|  G1     
 ɾ  Us  O1     
   Us  Z1         Uv T~  m1       +  Us Tv QR}  ~1       O  Us Tv Q~  1      m  Us T|  1        Us T~ Q	)     R:X$ 2        Us T~  42        Us T	)     Q> ?2     1 	  Us T|  2     X !  Us  2     e >  Us T0 ,3     Ĳ  V  U|  @3     r n  Us  R3        Us Q0 3        Us Q0 3        Us Q0 3        Us Q0 4        Us Q0 H4        Us Q0 y4      9  Us Q0 4      V  Us Q0 4        Us T Q R1 4        Us Tv Qv R1 5        Us Q0  5        Us Q2 <5        Us Q0 h5        Us Q0 
6      9  Us Q0 :6      V  Us Q0 n6      s  Us Q0 6        Us Q0 6        Us Q0 
7        Us Q0 :7      Us Q0  &  y   @+             ctx (    
e  m  %  sax Մ    
	  r2    sp 32    @    
\  _    X.     
 Us   f+     
 t+         U}  +     
   Us  +     
   Us  +     K !  Us T	(     Q> F,     X 9  Us  ,     e V  Us T0 ,     Ĳ  n  U}  ,     r   Us  -        Us Q0 1-        Us Q0 c-        Us Q0 -        Us Q0 -        Us Q0 -      4  Us Q0 ).      Q  Us Q0 =.      n  Us Q0 s.        Us Tv Qv R1 .        Us Q0 .        Us Q2 .        Us Q0 .        Us Q0 /      (  Us Q0 /      E  Us Q0 /      b  Us Q0 .0        Us Q0 q0        Us Q0 0        Us Q0 0      Us Q0  &ٶ  y              m  ctx (    
e  m   y sax Մ  
  
	  r2  F @ 
  	J2    
Ǜ  
(2    rv 
(2      _  sp 	32   _ Af              _p (    s      Us T<      
\  	_  l f      
 Us   @  N  
\  	_         
 Us       _p (          Us T<  V         Uv  ^     
   Us  f     
   Us          Us T       1   Us        -  Us T	)     Q>             p  Us T} Q	)     R7X$         T0 #        Us T} Q	)     R8X$ 0        Us T}  c        Us T	)     Q> n     1 #  Us Tv       X ;  Us        e X  Us T0       u  Us Q0         Us Q0         Us Q0          Us Q0 R        Us Q0         Us Q0       #  Us Q0       @  Us Q0 +      i  Us T~ Q~ R1 K        Us T| Q| R1      r   Us          Us Q0 I        Us Q0 {        Us Q0         Us Q0       ;  Us Q0       X  Us Q0 E      u  Us Q0 {        Us Q0         Us Q0         Us Q0         Us Q0 *        Us Q0 [      #  Us Q0 u      @  Us Q0       i  Us T| Q| R1         Us T~ Q~ R1         Us Q0 +        Us Q0 q        Us Q0         Us Q0       #  Us Q0 =      @  Us Q0 q      ]  Us Q0       z  Us Q0         Us Q0         Us Q2         Us Q0         Us Q2 T        Us Q0       (  Us Q0       E  Us Q0       Us Q0  :     
  &k  ny   0%             ctx n(    loc n4]n   } 
e  pm    sax qՄ    
	  rr2    T  s	J2  
Ǜ  t
(2  2 . rv u
(2  r h sp w32      v  
\  _  
  (     
 Us   ]%     
 }%     
   Us  %     
   Us  %         U}  %        Us  &        Us T	)     Q> &     1 +  Us T|  v&     X C  Us  &     e `  Us T0 '     Ĳ  x  Uv   '     r   Us  2'        Us Q0 a'        Us Q0 '        Us Q0 '        Us Q0 '      !  Us Q0 ((      >  Us Q0 Y(      [  Us Q0 m(      x  Us Q0 (        Us T Q R1 (        Us Tv Qv R1 (        Us Q0  )        Us Q2 )      !  Us Q0 H)      >  Us Q0 )      [  Us Q0 *      x  Us Q0 N*        Us Q0 ~*        Us Q0 *        Us Q0 *        Us Q0 +      Us Q0  Dn  N	     L        e  N$m  Y S 
	  Pr2    
  QOr    
  ROr  2 . sax SՄ  l h 	     
 	     >   Us  '
        Us Q	j)     R:X$ :
     >   Us  b
      +  Us Q	u)     R<X$ 
      H  Us Q0 
      x  Us Q	)     R8X$ 
        Us Tv Q0       Us Q	)     R:X$  &9  7J2              m  loc 7!]n    
	  9r2    
B  :
J2  d X 
G  <Or    
~  =Or  T J     _p :(          U| T<       
 8	       U0 8	       U0 E	        U| Ts Q0 k	        U| T} Q	     R8X$ 	      :  U| Tv Q0 	      U| T} Q	M     R8X$  &  !J2       /      ;  	  !r2  Y Q sax !$Մ    
  "Or    ok  #Or      $Or  %  
X  &
J2    `  E  _p &(          U~ T<        b  Us T0 =        U~ T} Q	     R8X$ Y        Uv T0         U~ T} Q	M     R8X$         U| T0       U~ T} Q	     R4X$  &  	J2                	  	r2    sax 	#Մ  #  %5  
Or  f \ I  Or    
X  
J2  d Z      _p (          U| T<  !        Us T0 G      Q  U| Tv Q	c)     R6X$ l            U| Tv Q	     R4X$  &  J2  @              	  r2  V L sax )Մ    I  >Or    len Hy     
X  
J2      T  _p (    _      U| T<        r  Us T}        U| Tv Q	     R4X$  _ߵ  J2       	      ?  	  r2     sax .Մ  c _ Z  (,~    Ǜ  3(2    
X  
J2  / ) atV 
J2   { ns %x    
  	1  6 2 len 	y   w m 
}B  Or    ta ,~    

  Or    
J  Or  c a 
8  q    
  q    =  q  0  I  _p (   }       U~ T<  `    _p (    #      U~ T<  <           +% ?   2 F B 5  L  | U @      @           5+% ? Y W 2 ~ | >@           6L UZ @      @              w   +k >@            > ,     ] G  b T       r  p             d `          H      #  U0Tv Q _      @  Uv T0       v  U~ T} Q	     R4X$         U| T0         U~ T} Q	     R5X$         U	V)     Tv           UT0Q| R       8  Uv T0 3      n  U~ T} Q	     R4X$ J        U	'     T0 p        U~ T} Q	     R6X$         Uv T0         U~ T} Q	.)     R9X$       ?  U	'     T0       ]  U~ T}       ?  {  Uv T|  	     
   Uv          U~ T}  &        U~ TQv RX$ 89       Uv  8J       U        8  U	\)     Tv Q6              b  U| T0 '        U~ T} Q	(     R<X$ D        T0 m        U~ T} Q	     R6X$         U T0       8  U~ T} Q	.)     R9X$        f  UT Q| R       }  T0         U~ T} Q	     R6X$         U T0 @        U~ T} Q	.)     R9X$ Y      *  U	8)     T0       `  U~ T} Q	(     R<X$         U	'     T0         U~ T} Q	(     R<X$         U	'     T0 	        U~ T} Q	     R6X$       1  Uv T0 3       &  mq                 
  mOr    }B  m5Or    
  o	y     
  p	y   o i 
X  qq    >     
   Us  T     #   U0T	v     Q1 d     
 $  Uv  q     # B  U| Tv       # l  U| T	x     Q1 M     # TU  _  ?J2       a        	  ?r2  g _ sax ?(Մ    
  ?=Or    
X  A
J2  W K 
  Bq    =  Cq  ns E%x  G ?   j  _p A(          U| T<  1        Us T0 W        U| Tv Q	     R4X$ h        U0Ts Qw                 T0       :  U| Tv Q	(     R<X$             }  U| Tv Q	     R6X$ 7        T0 \        U| Tv Q	.)     R9X$ v        U	'     T0       $  U| Tv Q	(     R<X$       H  U	'     T0       ~  U| Tv Q	     R6X$         Us T0        N)       (         sax "Մ  ; 3 
  7Or    y>  "Or  8	 .	 Ǜ  ,(2  	 	 ns %x  6
 ,
 =  q  
  q  
 
 AF     %         
6  'q  8 6 g     / U~        ;   T| Qv           Us Tv Q| R}  .        U0Qw  B        Tv         DP                sax #Մ  a [ Ǜ  ,(2    
{  'y    
#  %x  ? = 4        Tv  K     1    U| R}  ]     H g     U  N              1  sax #Մ  j b 
  9Or    
  'y  N H 
  q    =  q  PAP     0         ns %x  ) ' ]     b s     o Qv R0  D        U0T| Qw       o   T0Q|       |   T|  8     #  Uv         D[               sax  Մ  P L   5Or    uri  Or    Ǜ  *(2  L D 
	  r2    
  
J2    rv 
(2  h ^ sp 32      -  _p (           Us T<    `  
\  _  O I x     
 Us        
      
   Us       
   Us          UT0         Us T} Q	(     R<X$ )        Uv T0 O      E  Us T} Q	     R6X$       c  Us T}          Us T	)     Q>      1   Us T|  SD     X |     e   Us T0      r   Us          U	'     T0       .  Us Q0 1      K  Us Q0 c      h  Us Q0         Us Q0         Us Q0         Us Q0 )        Us Q0 =        Us Q0 c      "  Us T| Q| R1       K  Us Tv Qv R1       h  Us Q0         Us Q2         Us Q0         Us Q0         Us Q0         Us Q0         Us Q0 N      3  Us Q0       P  Us Q0       m  Us Q0       Us Q0  D               sax "Մ      7Or    uri "Or  X T Ǜ  ,(2    
	  r2    
  
J2  a [ rv 
(2    sp 32  = #     _p (  L F >      Us T<  @    
\  _         
 Us        
 )     
   Us  1     
   Us  W        UT0 }      H  Us T} Q	(     R<X$       e  Uv T0         Us T} Q	     R6X$         Us T}  >        Us T	)     Q> I     1   Us T|  S     X      e +  Us T0 8     r C  Us  T      g  U	'     T0 r        Us Q0         Us Q0         Us Q0         Us Q0 6        Us Q0 h        Us Q0       2  Us Q0       O  Us Q0       x  Us T| Q| R1         Us Tv Qv R1 &        Us Q0 @        Us Q2 \        Us Q0         Us Q0 *      2  Us Q0 Z      O  Us Q0       l  Us Q0         Us Q0         Us Q0 *        Us Q0 Z      Us Q0  uy  {%x  
  V  {'y  V  {7Or   N	  Z             e  Z&m    vec \  O K 
	  ]r2    Wz  X_p `	(   A$              _p j(     W  X_p q	(   <       0  `	   < 8  x r Y @           U}    < '      p  jx      O K Y            U}    < [        q	        Y    O I       U}         
      X  J      Lx     Us   N7~  #@[     o        e  #%m    b  #0(2     3  #=(2  m g vec %Մ    th &32  U O 
  '32    
	  )r2    W  X_p :(   Ab]              _p =(  + '  ` [      [     	       :3   c a  < e]        =\      c[     
 8t[     }  U@ ~[        U0 [     o   T0Q	2*     R0 [     | [        U} Q	8*     R7X Y0 \      4  U} Q	@*     R?X Y0 \     *  \      ^  U} Q2 \       Z]        U} Q0 ]      U} Q2  vY  q    1R&  -Ä  Z]  y   ,new q  ,p q  Z  y   ,cur   T	  r2   a       g         ?R&  $Ä    ?F  ;Or    blen Jy   j d :i  q    @d                            u ' %       T} Q|   8       U|       ]   Ek  y   P     !       X  wR&  #Ä  U:]  y   P J Fcur      xظ       a         ?R&  "Ä    Fp1   B  <  Fp2       y>     UU  z    1R&  #Ä  ,p1   ,p2    E  Ä  0     '       ]  Fnew Ä      :    !   8C     O  U@ K     ]   E}          *         :    R! P! @.                     W w! u! K ! ! ? ! !  L     UH  a       n       ?	  r2  ! ! @                     +% ? %" #" 2 K" I" >            L {" w"   ;            +% ? " " 2 " " 5   L # #   ; 7      P  " +% ? ,# *# 2 R# P# 5P  L # ~#   @            ]       +% ? # # 2 # # >     ]      L $ $   @ z      z     t       +% ? 3$ 1$ 2 Y$ W$ >z     t      L $ $   ;         9 +% ? $ $ 2 $ $ 5  L  % $   ;          +% ? %% #% 2 K% I% 5  L % w%   ;          +% ? % % 2 & 
& 5  L @& 8&   ;            +% ? & & 2 & & 5   L & &   ; e      P  m +% ?  ' ' 2 F' D' 5P  L v' r'   ; W         +% ? ' ' 2 ' ' 5  L (  (   { 8        +% ? Q( O( 2 w( u( 5  L ( (    E>  r(2        g        ?7  rOr  7) 1) blen r'y   ) ) :	  ur2  ) ) :X  v	(2  * * A     
 ^     
  U} Tv $ & r      U} Ts Q| Rv  $ &  E  ^(2       o        ?7  ^Or  |* v* ?%$  ^.Or  * * :	  ar2  	+ + :X  b	(2  G+ ?+ Flen c  + +      
      
  Uv       
  U} T| 
      U} Ts Qv R|   |5   1	  r2  [sv (2  },rc 1    c  (2   [sv (2   ~  51  Z V  5<  dstr 5W  dlen 5i  TD&  6	1   c  1   1    [in   1    ,v0 1  ,v1 1  ,v2 1  ,v3 1  ,b 1  ,k0 1  ,k1 1  ,m 1  ZQ#     ,end   y1  \  dy   . 1i  d4  1Y  d<?  C \vB  >(  d 1'  >(  1H  >y   1r  >   \R  (   1'  *  1    1r       `     q       J   + +   8, 2,   , , @                    9   , , >            6  6       ]    L     Uv   e               
   , ,   6- 2-   t- l-   - -   f. ^.   . . 6  `d U      U            	   / .  -/ +/ u S/ Q/ ]       @             %       	   x/ v/ >     %       6  6  6  6  6  6  <          	   / /  / /       U	(     T1Q@                 	 Us  8     
 Uv $ & )     
  e       #       
   / /   a0 Y0 U                    {  0 0   1 1 M     b TUQT   |  |  W    X`    WGxQ  xQ  GU    Wm  m  W
v\  v\  WBԙ  ԙ  W(J  J  Wn    W2>  2>  Wh  h  W'c  'c  W    W	$B  $B  WII  I  Wr  r  W    W~P  P      O    W    WJ  J  WeV  eV  W4  4  W    W 		  	  VGNF  NF  GNG    GCGr  r  GZG      G).~  .~  Ho  o  HuF  uF  Hs  s  Hf  f  H;    H    WF    HC  C  H>  >  WfR  H       WfQ  G   U  U  YL    v)  k*  s  H  ]     l         9   0  0    I     U     	  %I   $    'U   int      )@      a2  9     @   L  @   |  9   b
  9   6  @   /!  9        w-     @*          '          g     &     4  !   l  %  l  5  1  	  3    	T  6	f  	  7	f  	2/  8	f  	(  9	f   	$  :	f  (	(  ;	f  0	  <	f  8	  =	f  @	;  @	f  H	o  A	f  P	2  B	f  X	%  D  `	4  F  h	%  H   p	  I   t	 !  J   x	+  MU   	{  Na   	<  O$  	m.  Q4  	/5  Y  	W  [?  	&  \J  	5  ]  	  ^	G   	5  _
-   	4  `   	D  bP   5  x  
A  +    x  l  4  9       T  :  #  E  l  `  9    s  `  &  MN  (      &    
    $     f           $         9  I       @   	  ~>  x9  9  ;  d9  a=  e:  h>  8  	b<  
_;  V>  8  <  K:  };  8  <  9  :  =   6:  	    @   	  B>  ';  O8  <  5=  =  >  J=  ;  	8  
 <  	  $8  x	  0  	G      	  
  	  ,=  	  V*  	   {  	  (4  	  0  	  8doc 	6  @ns 	$	  Hؒ  	  P;  	
  X9  	$	  `;  	G   h  	U   p=  	U   r   =  	  0  	G      	  
  	  ,=  	  V*  	   {  	6  (4  	  0  	  8doc 	6  @<  	G   H;  	G   PC  	G   Xg  	G   `+:  	  h=  	  p>  	G   x   =  	'6  0  	(G      	)  
  	*f  ,=  	+  V*  	,   {  	-  (4  	.  0  	/  8doc 	06  @@  	3   H  	4   L8  	:  P9  	;  X<  	<*	  `  	=  h  	>  pids 	?G   xa@  	@G   URL 	A  y<  	B   u  	DL
  ;  	EG   T;  	F   ;  	H      !<  
'H   <  fh  
 Y  <  :  k  :  ;  |  _  )<  p  =  p  c8  	w  ;  	  ;  0		  4  	*	     	  y>  	    	  0  	G      	6  ( э  	$	      B<  	=	  A<  `		  0  	G      	  
  	  ,=  	  V*  	   {  	  (4  	
  0  	
  8doc 	6  @ns 	$	  H\<  	  P;  	G   X qs  	 
  0	  =	  %8  	  <  	&
  
  =  	%    	&F
  ,
  H  <  9^
  d
  o
  G    <  B3{
  
  G   
  -    9  M
  
  G   
  G   -    :  W
  
  f  
  `   ڃ  
  ك  w  
  
  @   !  P   ݘ  h  GK     
  !  L9     XN  	`L  O
    	J  P
   	e  Qf  	  R!  	Ҍ  Sf  	  T
    	B  Uf  (	B  Vf  0	B  Wf  8	?  X
   @	D  Y
   D	e  ZG   H	ey  [G   P q  M  -  F  X    %  G      +  
     G          	     	#  "  h	  #  p	#  $  x	1%  '       9        \      `    9      *!  E      N  @     O   '  *  	$  	:3  $    9   4  9    a,      	h  	D,  *   	  Z   3  R  	  T#   	4  U#   h  
  Vh  ~/  (v  	l.  x    	  y@   	E
  z   	  |@   	i2     	_  t   	8  t   	#     0    1@   (C	Y    E  )  FY    G    l  i  9   ' m#  H+  8  o
  8;  o
  m8  
  =  R
  <  
  }  '!  }  `   doc !9
   ey  "
  _e  $	   ŭ  %	   x  &
  k  (	    jc  )	   $k  *+  (w  ,	   0;h  -	   4c  .
  8G  0	   @  1	   DG  2  H  5!  P  6	   XȠ  7G   `y  :	   h  ;	   l1  >	   p  ?
  xh|  @
  *  C
  ?  D     EG   =  HG   xd  K  m  L    O    PG   Ѕ  S!    T	   Z  WG   9  X  +D  Y-  fD  Z
  @u  ]M  H  _	   Py%  bG   X o  (      )'     Xr  cur s   ;/  t  9  v	     x  J  y     z   (a  {   ,wO  |L  02  ~9  81  	   @  
  Hє     P   *     @   0         Y  v      ;    ]  	  
      
  J    Һ    W        {  &   T}  O  S}  Q  	F  R	    	O  S	   	  T,   k  P    @   c       x  Ҥ    o  g  W    (U  	   n  r  p 5  r  Hr  	  s   	b  t  	g  u	   	H  v  	zA  w   	Ƞ  xG   (	.  y	   0	s  zG   8	e  {	   @   q  )                     ya    xa  +  	
     	/     _  7    C  S        Y  _  e    y       LM    KM    	
     	/  S       y  m  =  #S          G        n        !  G        	  v  i"4  v    jF  '    `    .h          h     {        -         9      !  	N2  '   	  (	   @	v  )4  H     9     #  S     0  *     >6  	G    6  
  8`  	0  :   	   ;    ?  	=  A
    	  B
   	  C0   G  	0  I   	   J   	  K0    O  	0  Q   	   R   	  S
   	g6  T  	H$  U   a1  	  cG    	"  dG    ^S    e    g     Y  	%0  [G    	  ]t   	%  h
1   l  	7  n    	K!  o
    t  	p  vG    	/  w
   		  x@    p3C  j  5C  >  <<  L.  D`  !_rt L  .  V  *  iS  7  p  J3  y      S  9    $	  	%  &	    	f   (	   	R  *	   	v   0	   	+  {	     |S         G        f    9   @               f    !  	"   $f  6   2   .   7   b   ;   {  l
  !U   W'  "  	+  "Q   	6  "
   ]  l    9    ]  "  (      "  "      "  f+      "        "  -  #;  	0  #Q   	(  #  	-  #  	S  #       "@  "!  #    #Q   2  #    #  5  #N    #   K  K  "  x
      "  "      "  `#      "  0      "  }2      "        "#    ".    "9    "D    "O    "Z  ;  "e    "p    "{    "    "    "  	  "    "  k  #  -  #  	  #!    H  #{  #    #
  3  #.  r4  #>   y  .  9      >  9      N  9    5  #i  	1  #	    N  (  #i    #i  I     9    y5  $.g  	k4  $0    	0*  $5   	  $=   	4  $>   	  $@   	!  $A    	v   $C	   $	D  $E   (	  $J   0	,  $N6  8	  $PB  @	"  $[@  H	'  $\@  X	  $]@  h	'  $jg  x Z  w  9    f    9    6  %w  '  %     %   6  %w  '  %     %   4  %     &4  	3  &6	    	  &7	      "  	  '-f  ,  '.f  0,  (i  	/	  (	f   	@3  (
  	  (   	1  (       )b  	  )d	f   	'  )e
  	  )f   	  )g   	#  )h
      )  2  )	f   P5  )
  *  )   '  )	f     )D7    )F	f   (  )G
  !6  )H    #-0  *  	4  *    	&2  *  	  *U   	'  * I   	  *!
   l    9    #5   *%  	4  *'    	&2  *(  	  *)U   	'  **I   	  *+
   $DIR +  -  %IV ,v   %UV ,w9   %NV ,E      -   *  ,/
-   %OP ,1
I   &op (.$!  	n  .B   	u  .B  	?  .UX  	h  .V  'a"  .@   	 'S
  .@    ',  .@    '5  .@    '!  .@    '2  .@    '  .@    ' *  .@    	a  .A  "	  .A  # %COP ,2
1!  (cop P/y~"  n  /zB   u  /zB  ?  /zUX  h  /zV  )a"  /z@   	 )S
  /z@    ),  /z@    )5  /z@    )!  /z@    )2  /z@    )  /z@    ) *  /z@    a  /zA  "  /zA  #  /}5B  $s  /V  (p3  /f  0  /
B  8  /
B  <O  /5^  @%  /;^  H   ,8
"    `.#  	n  .B   	u  .B  	?  .UX  	h  .V  'a"  .@   	 'S
  .@    ',  .@    '5  .@    '!  .@    '2  .@    '  .@    ' *  .@    	a  .A  "	  .A  #	  .
B  (	S*  .
B  0!  . V  8,  .B  @%  .	aX  H3  .X  P$  .
B  X L  ,<
#  5  P.%  n  .B   u  .B  ?  .UX  h  .V  )a"  .@   	 )S
  .@    ),  .@    )5  .@    )!  .@    )2  .@    )  .@    ) *  .@    a  .A  "  .A  #  .
B  (S*  .
B  0  .
B  8  .
B  @  .
B  H   ,G
%  i  ,W6  	&  0#gB   *Iop 0$B  	u'  0%gB  	  0'gB  	Y4  0(gB   	A  0*l  (	f  0,A  0	:  0-A  4	5  0/l  8	  00A  @	)  01A  D	  03gB  H	41  04k  P	  05k  X	!  06k  `	  08B  h	  0:l  p	2  0<l  x	  0=l  	X  0AA  	(  0C   	V)  0E~B  	O  0H[X  	,  0KO  	  0LO  	&  0NB  	3  0OB  	2  0^A  	  0`A  	6  0aA  	-  0brB  	!  0nA  	t%  0uA  	3  0z~B  	  0{~B  	&  0}a  	  0~xB  	-(  0l  	t,  0xB  +3  0   +W  0\B  +  0\B  +@  0O  +  0l   +
  0l  (+   0V  0+`  0W6  8+  0W6  P+o	  0W6  h+"  0$A  +	  0$A  ,ISv 0\B  +a  0m  +e(  0~B  ,Ina 00   +  0   +	  0  +  0rB   +  0\B  (,Irs 0\B  0+4  0rB  8+  0rB  @+  0rB  H+4  0`  P+ 5  0\B  X+3  0\B  `+0  0\B  h+  0B  p+  0J_  x+  0J_  +;(  0^  +	  0\B  `+W/  0E  h+  0B  p+r0  0B  x+p  0~B  +!  0rB  +  0rB  +1  0f  +  00   +$  0A  +1  0A  +-
  0B  +   0B  +)  0B  +  0\B    0 m    0k  =  0/k  \  0=el  -  0?   5  0@f    0BB  0  0DB  :  0F   R   0I   \   0J   	  0KrB  (r  0LrB  0-  0MrB  8  0Nf  @.  0O`  H0  0P\B  P7  0Q\B  X  0T\B  `I  0Um  h/  0V`  pJ  0XB  x\  0YB  ye  0ZB  zS  0[B  {9  0\B  |  0]B  }  0^B  ~z  0_B    0af    0b\B    0d    0fA    0hA    0lA  =1  0o     0p2    0srB    0trB    0urB  -  0vrB  n  0wxB  6  0zrB  0  0}rB  %  0rB    0rB  4  0rB    0\B   M  0\B  -  0\B  ,  0xB  $  0!m   
  0~B  8t  0~B  @y3  0\B  Hp  0xB  P  0xB  Xv  0xB  `  0xB  h  0xB  pv1  0xB  x  0f  8  0?J  d  0B  	  0B  q!  0B    0B     0a  W2  0   e  0   $  0f  .  01m  (  0f    0xB  k  0\B  ^  0\B  '  0     0A  F7  0B  .  0B  #  0A      0   Z  0A   p2  0A  /  07m  (  0~B  T,  0=m  !  0$!   s  0?J  p  0V  x  0V  7  0V  "  0?J  =)  0   r  0B    0B  I  0 B     0B    0B  7  0    0  0  0  +  0  -Ian 0	B  6  0B  t  0B  t  0B  @'  0B  +  0    0f    0B    0!Cm  `'  0#B  `  0%B  d  0'Dh  h)/  0)\B  p,  0+A  x  0,V    0.V  %  0/V  a5  01V    03V  1  06f    07-   I  08-     09B  S.  0:A    0;B  0  0=A  &  0>B  -  0FB  D2  0GB  M  0Ljk  }#  0NB  .  0Sa     0W   @  0YB  +  0[f  /  0\\B    0a\B    0b\B  $  0c\B   	&3  0d\B  	L  0f\B  	  0g\B  	$  0j\B   	7  0k\B  (	  0l\B  0	'  0m\B  8	<  0n\B  @	-  0o\B  H	#  0p\B  P	"  0rSm  X	5  0scm  	4  0tcm  (
I)  0u\B  
Q  0v\B  
R  0w\B  
_%  0x\B  
  0y\B  
=  0z~B  
   0|~B  
 %  0}Q  
)  0~0   
  0sm  
7  0A  
.  0B  
v6  0B  
,  0gB   j  0gB  92  0m    0xB  40  0G    	  0gB  (-  0xB  0	  0m  8  0V  @  0V  HR-  0m  P%  0~B  X  0~B  `	  0B  hh&  0m  pf  0m  x4  0\B    0\B  -4  0\B  i"  0\B    0\B  G  0\B    0l  V  0xB  +$  0xB  4  0   J  0kh  
#  0kh  }  0kh  *"  0h    0h  9
  0h  %
  0~B      0~B  o  0xB  S	  0~B    0\B     0~B  (-  0m  07  01m  8d  0k  @2  0 l  5  0	8  D  0
     0h    0"m  u7  0-V    0/0    %SV ,O
h6  W6  &sv 16  	9%  1G    	!  1B  	  1B  	  1C   %AV ,P
6  &av 16  	9%  1oG   	!  1B  	  1B  	  1F   %HV ,Q
7  &hv 1C7  	9%  1G   	!  1B  	  1B  	  1uG   %CV ,R
O7  &cv 17  	9%  1F   	!  1B  	  1B  	  1eF   #a  ,S
7  i  17  9%  1E   !  1B    1B    1H   %GP ,T
7  &gp P28  	2  2
\B   	I  2V  	 ,  2
?J  	>   2
B  	R  2
B  	.  2
~B   	+  2
xB  (	J-  2
?J  0	  2
rB  8'l,  2@   @'o   2@    @	!  2I  H %GV ,U
8  &gv 18  	9%  1_F   	!  1B  	  1B  	  1E   (io 1 29  9%  1H   !  1B    1B    1G     ,W
?9    `/?\9  "  /Ca    2  `/:  {  /	A      /	A  K,  /
A  C   /
A  =  /
A  "  /
A  (  /a  8  /O  Q  /k     /
A  (@%  /`  0 !  ,Z
:    03:  	!  3I   	K  3@c  	0  3
A  	S7  3
l  	  3	A  	  3k  	  3
\B   	+  3f  ( %XPV ,[
:  (xpv  1:  ('  1~B   /   1I    10     1I   $  ,b
:  p6  (48;  	('  4
~B   	/   4I  	r+  4k  	3  4k  	A!  4
gB      ,c
E;     5;  	('  5
~B   	/   5I  	$  50   	|  50      ,d
;     014;  ('  15~B   /   15I    150     15I  3  16`I     17I  (   ,e
<  [7  h6<  	('  6~B   	/   6I  	  60   	  6YW  	%  6~B   	)  6{W  (	  6W  0	@  6W  8	S   6f  @	6	  6W  H	o  6?J  P	/  6B  X	  6"J  \	.  6A  `   ,h
<  /  1^=  ('  1_~B   /   1_I    1_0     1_QJ  3  1``I     1bE  (7  1ovJ  0#  1q	  8  1r	  @G#  1s	  H,2  1tf  P'  1u
rB  X  1vf  `[3  1w
rB  h:-  1xf  p6  1y
rB  x[*  1z
l  @  1{	A   !  ,i
=  =    @3h>  	  3b   	3  3b  	  3b  	1  3b  	/  3b   	)6  3c  (	v/  3:c  0	  3b  8 %ANY ,j
u>  .any ,a?  /O  ,G   /  ,\B  /R1  ,gB  /!  ,rB  /  ,xB  /  ,~B  /  ,B  /#  ,f  /B  ,  /O/  ,
A  /  ,
B  /"  ,	  /}  ,	   /1  ,
   /&  ,
B  /  ,^
  /1  ,B   ,  ,{?  4  ,|g   1  ,}%     ,~G    r  ,l
?  +  0,
@  9!  ,g   5  ,     ,   @  ,g  }   ,g   X  ,g  ( f  ,m
@    (1bl@  ](  1cxB     1d   "  1eB  4  1fB    1gxB      ,q
y@    7@  	
  7k   	  7&V  	  7'
B  	^)  7(
B   %PAD ,r
6    ,s
@  V  (7+$A  	  7,k   	I  7-+W  	  7.k  	  7/V  	  70
B    	  ,t
1A  '  07LA  	7  7Mf   	,  7M~B  	  7M7W  	j)  7MB  	"&  7MB  	d!  7MB   	f3  7M   $	#  7MA  (	  7MA  ) $I8 8a   $U8 8I   A  $I16 8t   A  $U16 8U   A  $I32 8   A  $U32 8@   B  0B  B  #B   B  2  8#B    8<B  "(  ,w6i  6  ,y  W6  \B  \B  gB  8  6  6  =     B  B  B  G    %  B    9<B      9>B  B    9NB      :7   %  ;1C  1  ;	A     ;f     ;	B  Y%  ;	rB   %  ;B  $HE 1HC  &he 5 |C  	d-  5$
E   	  5%I  	  5)]   $HEK 1C  &hek 5-C  	@&  5.B   	  5/A  	 -  55$   1?D    1f    1    1     1     1\B    1E  2  1gB    1E    1E  
  1E   8  <E  	('  <~B   	/   <I  	  <0   	  <K  	  <L   	03  <K  (	   <~B  0	R3  <B  8	  <k  @	
  <k  H	  <0   P	J1  <L  X	Q!  <B  `	Z1  <B  d	)  <G   h	  <B  p	p$  <B  t	8  <L  x	>  <  	Z  <f  	c  <\B  	|"  <k  	6  <k  	
  <k  	V  <k  ']  <@   'V#  <@   			  <?J   ?D  E  =C  7  B  1_F    1f    1    1     1     1\B    1E  2  1gB    1E    1E  
  1E   ;  1F    1f    1    1     1     1\B    1E  2  1gB    1E    1E  
  1E   ;  1oG    1f    1    1     1     1\B    1E  2  1gB    1E    1E  
  1E   :  1G    1f    1    1     1     1\B    1E  2  1gB    1E    1E  
  1E   8;  11H  /  1f  /  1  /  1   /  1   /  1\B  /  1E  /2  1gB  /  1E  /  1E  /
  1E   <  11I  /  1f  /  1  /  1   /  1   /  1\B  /  1E  /2  1gB  /  1E  /  1E  /
  1E   2+#  1`I  /=  1   /&,  1~B  /q(  15B  /26  1B   24  1I  /"  1  /(  1   /5  1I  /  1B   |C  27  1I  /  1I  /%  10    :  11I  /  10   /  1f   115"J  /  150   /  15f   )  1:B  ?J  B  ?J   C7  /J  l@  11_vJ  /  1_0   /  1_f   11lJ  /x   1mJ  /1  1n	G      P   J   J  G   =J     <J  	  <A   	  <	A  	(  <	A      <J  
  (<&MK  	  <'k   	)  <(k  	  <)	\B  	  <*	\B  	{  <+k      <-uK  	n-  <.A   	I  </uK   J  K  9    )  <:K  	(  <;k   *end <<k  	  <Ck   )  <DK  7  K  <K    <0     <f     h<L  	2  < M   	  <]M  	  <M  	A0  <M  	+  <M   	a7  <M  (	  <N  0	4  <:N  8	  <cN  @	!  <N  H	  <M  P	0  <N  X	2  <N  ` K  L  MK  K  8  <?D  ^  <L  	+  <   		  <L   k  -&  <L  K   M  B  bB  B   M  A  ]M  B  K  f  f  f  k  \B  G   B   &M  f  M  B  K  \B  f  f  f  B  M   L  cM  \B  M  B  K   M  M  B  K   M  M  B  K  A  bB   M  N  B  K  A  N   c6  N  M  A  :N  B  K  N  A   N  \B  cN  B  K  bB  bB  B   @N  \B  N  B  K  N  B   iN  G   N  B  K  N   
@  N  K  N  B  mB     B  L  K  N  B  B   B  N  3P<h	O  rex <iO   ,  <jO  c  <l\B  Z  <nf  |"  <o0    6  <p0   (
  <q0   0   <rI  8pos <sk  @  <tA  H L  ~"  )  <uN  3 <|	O  )  <}O   U  <~%P  j  <gP  *  <f   O  
  x<%P    <	    F  <f  u <PU   O    <\gP  /  <]V     <^gP  x4  <^"gP   +P  &  <O    <A  3<P  2  <%P    3<	P  2  <%P     <
B  p$  <
B  cp <zP   3 <2Q  2  <%P     <
B  p$  <
B  cp <zP    <2Q   J  3@<Q  2  <%P     <
B  p$  <
B  cp <zP  P%  <B    <B  
  <Q   me <2Q  (  <Q  0  <B  8q  <A  <
  <A  > A  A  3@<{R  2  <%P   d  <%P  %  <$%P  
  <K  cp <zP   Z5  <zP  $   <B  (B <2Q  09  <f  8 3<R  2  <%P   >.  <
A  '  <
A  me <2Q   3 <	 S  2  <%P   \  <%P  W  <
\B  ^6  <f   3<S  val <
     38<S  2  <%P   d  <%P  me <2Q  B <2Q  cp <zP   D	  <B  $w	  <   (  <"   ,  <#f  0 3(<&
T  2  <(%P       <)%P  cp <*zP  Z5  <+zP    <,f  1.  <-A     <.A  $ 3`<1T  2  <3%P   c1 <4
   c2 <4   cp <5zP    <6
B  p$  <7
B  E'  <8
A    <9
A   D	  <:B  $A <;2Q  (B <;2Q  0me <<2Q  81  <=T  @Z
  <>T  N A  T  9    3h<AU     <B
B   cp <CzP    <D
B  p$  <E
B  c1 <F
   c2 <F   +  <Gf    <Hf     <I
   (min <J
   ,max <J   0A <K2Q  8B <K2Q  @1  <LT  HZ
  <MT  V 1h<xV  /&  <mP  /)  < O  4yes <P  /	  <P  /  <P  /#  <8Q  /%  <Q  /$  <{R  /$  <R  /o   < S  /   <$S  /3  </S  /  <?
T  /Q  <NT   
  <QO  xV  V  9       <_+P    >K9   8    7k  7!V  	(  7"V   	  7#V  	  7$V   @  @  7W  }1  7	W  i  7%%W   V  V  1W  $A  7MYW  )  7M~B  f  7M?J   6{W    60     6f   6W  F%  6B    6h>   6W  I  6B  h  6EJ   6W  %  6rB  /  6I   6X    6KJ    6G    .	:X  ,5  .V  !sv .\B  !iv .  !uv .    h/  .X  B  UX  B   FX  :X  1.X  /.  .B  /1  .V  /  .rB   1.
X  /F  .B  /!  .V     0?1!Y  	?  ?3	f   	   ?4	f  	E.  ?6   	2  ?7   	7*  ?8	f  	  ?9	f   	.  ?:	f  ( D   @*cY  	Y"  @,f   	  @-f  	  @.   	.  @/   #)   AHY  	"  AMY   +  AVY  +I  A[Y   +'  AbY   +  Ail  +1  AnY    l  Y  59    l  Y  59    l  Y  59    l  	Z  59   w 4  HB+Z  	   B-f   	K	  B.f  	G  B/   	  B0   	"  B1    	  B2   (	U  B4   0	  B6   8	6  B89   @ 6PCh	R]    Cjf   a  Ck	-     CqR]    Cuf    Cv	-      Cy!Y  (  Czf  HJ0  C{	-   P  C}X]  X  Ci  `
  Cf  1  C	-   l  C^]  ,  C     Cf  W  C	-   (  C'  %  Cf    C	-   "  Cd]  v&  C   2  C  3  Cf     C	-   h  Cj]    CX    Cf  H1  C	-   P  Cp]  X  C  `   Cf  %  C	-   6  Cv]    C	Z    Cf     C	-     C|]    C]    C	-       C]  $  C]  7  C	-   W  C]   $  Cf  (  C	-   0I&  Cf  85  C	-   @%$  C	   H cY  !Y  i  '    X    	Z  7    d  CZ  B  5&]  {+  5'\B  U  5(	-      / ^  	~4  /!^   	0  /"  	y  /#   	4  /$B  	  /%A   ]  	  /(]    /0^  g'  0   $^     (/'^  	  /(
B     /*V  cv /+
?J  k%  /-
A  4  /.xB    ^  (/3^  	  /4
B     /6V  cv /7
?J  gv /9
rB  .  /:
rB      0/uJ_  	  /v
B     /x
\B  |!  /y
B  7  /z
\B  cv /{
?J   )  /|J_  ( ^  1/t_  4svp /gB  4gv /rB   3/_  ary /
xB   ix /
   3/_  6)  /
A   ix /
   3/_  cur /	   end /	   3/`  cur /\B   end /\B   1/M`  4ary /t_  /
  /_  /+  /_  /0  /_   4  0/`    /`   e   /P_  $  /\B  )  /`  E  /
V  ( #  t)  /`  $4  /B   %  /\B   10/a  /{  /A^  /-  /^  /  /^  /'.  /M`  /L"  /`   $!  3  X/a  0  / 	A     /	A    /
A    /
A    /k  J'  /k  8  /f    /
\B   '  /	
\B  (  /
f  0  /f  8J  /f  @_  /G   Hy  /K  P 1`/@b  /  /A\9  /3  /B%a   1(  0/b  
  /xB   U  /b    /b  .  /b  C  /A   *  /A  $  /A  (y  /A  , 29  b  !  /b     b  B  \B  I   b  B  b  B  \B  I   b     c  B  \B  I  \B  `  A   b     :c  B  I  N   !c  =  D	c  *val D1C   	  Dt   	g  DA  	t  D?J   
  DFc  +  (Dc  	   Dc   	  D\B  	  Df  	<4  Df  	  D\B    c  u  D c  #4  D"g  	(   D&g   	d*  D'1C  	!  D(   	`  D+   	T  D-   	
  D.g   	v  D/g  (*ps D0g  0	'  D4
A  8	  D5
A  <	  D6f  @	  D7f  H	'  D8	A  P	$   D9	A  Q	  D;	A  R	$  D<
B  S	  D=
A  T	  D>
B  X	)*  D?
B  `	  D@
\B  h	  DA
A  p	4  DBA  r	6  DC
A  t	   DD
\B  x	"  DE
A  	  DF
A  	3  DG	   	m5  DH	   	 7  DIB  	  DJ	A  	n  DK
A  	   DL
A  	R(  DM
B  	&  DN
\B  	  DOg  	  DP
\B  	  DQf  	3  DTf  	3  DUf  	  DVf  	7  DWf  	  DXf  	  DYf  	  D^5B  	(  D_
A  	  D`	A  	  Da	A  +#  Db
~B   +  DcE  +6  Dd
xB  +  Dfg  +  Dg
g  @+1  Dh	A  T+  Di	A  U+F(  Dj	A  V+  Dk	A  W+7,  Dla  X+  Dm
  `+~5  Dn5B  `+"  Do5B  d+s.  Dr  h+)7  Ds  p+  Dtl  x+&  DvB  y7B  Dx@   x7\  Dy@   x7u  Dz@   x7H*  D{@   x+   D}B  {+~  D~	A  | c  c  c  1C  g  9    A  g  9    4  Dc  a?  g  <  g  "  ,>h  i  ,B     ,$>h  4  ,$>h   h    ,QVh  Dh  \h     kh  B   K  ,Rxh  ~h  h  B  \B     ,SVh  c1  ,Uh  h  B  h  B  \B     ,Vh  h  h  B   s  h   h  @/  ,uh  {0  ,wh    ,yh  u  ,{h    ,}h  9  ,h    ,h  /  ,h    ,h  Q$  ,h  ')  ,h    ,h  s  i  9    i    ,i    ,h  /  ,h    ,h  Y!  ,h  '1  ,h     ,h  #  ,h  ?  ,h  M
  ,h    ,h    ,h    ,A    ,A    ,A  s  tj  9   @ dj    ,tj  0  ,h  s  j  9    j    ,j    ,j  f  ,     j   j  ,  ,j    ,J  /  ,J  {  ,J  "  ,J  I   +k   P  , k    ,J  `  Pk   2  ,Ek    ,h  8  @   ,k       1  67  *  &  .   D  ,  J4  H,Fk  pad ,Gk    W6  k  9      ,Pk  k  l  B  B   +  ,al  l  A  1l  B  bB  bB     ,fUX    ,gKl  Ql  B  el  B  B     ,hk  1#  ,il  l     l  B  f  0   ]     ,lh  1  ,sl  fn ,tB   ptr ,uG    (-  ,vl  h>  A  b  V  xV  g  f  m  9    f    1m  9    `  l  B  G   Sm  9    \B  cm  9   	 \B  sm  9    A  m  9    ?  ~B  ]  B  :  \B  m  9   " &  ,A    ,A    E  =$  E&  1l  m   -  Em  >l  n   f	  Ecm    E#B  A  ,n   !n  \  E	,n  A  In   >n  &  E	In    E	h  	  E	,n  A  n   un  }'  E	n     F&BB    F(B    F-OB    F1B  {(  F4B  "  FKB  V0  FLB    FXBB  m  F[2  75  F\   .  F]     Fa  Y&  FeBB  3   FfBB  t  Fi    FBB    FBB  5  F     F   %  Frl  (  F~B  }  F     FBB    FW6    FB  I   o  9      Fo  2'  ,4Qh  )  ,6Qh  f  p  9    o  /  Gp  =  %p  9    p    G%p  A  Fp  9    6p    ,NFp  B  cp   Xp    ,bcp    ,ccp  *  ,dcp    ,ecp  6"  ,fcp  }.  ,gcp  1,Zp  4nv ,Z   4u8 ,Zp   p  A  p  9    $#  ,Zp  1,[q  4nv ,[   4u8 ,[p   p    ,[q    HAq  0q    Hiq  *low HU    	(&  H U    v  H#zq  iq  v  H%q  *low H&@    	(&  H'@    ,r  H*!q  q  +r  H,q  	{  H-    	]  H.   	W  H/q  	|  H0q   <q  uq  C  HP!q  L  H|!q  o  H!q  {l  H!q    H!q  Ӂ  H!q  P   Yr  9    Ir    HYr  \X  I@     r   vr  
  I8r  _  I9r  a  I:r  97    d     <       cs  :e  (  h1 d1 :  8  1 1 ;rv   1 1 ;res   t2 n2 <d     t  Hs  =UU=TT=Q0 >e     r  >e     r   9  G  `c           t  :e  G*  2 2 :2  GD9  3 3 :q  GN   4 v4 ;res H  5 5 ?P  @  J9
  5 5 @p  K
  C6 =6 A  Bt  ;val d   6 6 >d       >d        <c       `t  =Uv =T|  <c       }t  =Us =T0 <c       t  =U~  <Gd       t  =U~  <gd       t  =U~ =Ts  Brd       =Us =T~    C؞  8  =u  De  8&  D  86  Dq  8@   Eres 9  FG2  ;9    9L     c     <       u  :?L   
  6 6 :2  =9  6 6 ;rv   77 +7 ;res   7 7 <,c     v  u  =UU=TT=Q0 >Ec     r  >Uc     r   9Q    b     <       v  :?L  
  8 8 :  /  L8 H8 ;rv   8 8 ;res   9 9 <b     x  v  =UU=TT=Q0 >c     r  >c     r   HI    `           x  I?L  
  s9 e9 I2  ;9  : : Iq  E   : : Jres   Q; E; ?  Ke    ; ; K  9
  F< :< Kp  
  < < La            w  Jval    E= C= <a       w  =Uv =T~  >a        >%a       <Ca       w  =T  <a       x  =U~ =T	#     =Q	]      <a        x  =U~  <a       =x  =Us =T0 <a       Ux  =U}  >b       >!b       <;b       x  =Uv =T~  >Ub       <wb       x  =U} =Ts  Bb       =Us =T}    M    b     J       y  I?L  
  r= h= I  -  = = Iq  7   .> $> Jres   > > K2  9  $? ? <b       sy  =UT <b     v  y  =Uv =Ts =Q|  Bb     (  =Us   N  Jz  Oe  /  OX  9   Pobj   Qv  #  Q;/    PURI   R)z  Pi 1   Q{  2  Pret 2#   R;z  Q%5  g
   FPdoc {9
    Sy  ]     .      d~  Ty  ? m? Ty  @ @ Uy   Uy   Uy   Uy   Vy  ]       Ty  "B B Ty  eC KC ?  Wy  D uD Wy  &E E Wy  E E Wy  'F F X)z  k^            &{  W.z  F F  Y;z    {  W<z  F F <^     5  X{  =U}  >^     B  <_     O  }{  =Us  <`     B  {  =U0 B`     O  =Us   Yz    E}  Wz  F F Wz  bG ^G Wz  G G <X_     \  {  =Us  <b_     B  |  =U0 >_     B  <_     O  1|  =Us  <_     i  N|  =Us =T1 >_     B  <_     O  s|  =Us  <_     y  |  =Us =T2 <_     \  |  =Us  >`     v  <`     r  |  =U <'`     r  |  =U~  <4`     r  |  =U|  ZM`     O  }  =UU <`       0}  =U|  B`     O  =Us   < ^     i  b}  =Us =T1 [/^     r  <H^     \  }  =Us  >^       <^       }  =T~  \^     }  =U~  <^       }  =T}  \_     }  =U}  <_     r  ~  =Uv  >U`     \  >`     B  <`     O  6~  =Us  <`     B  M~  =U0 B`     O  =Us     St  d     Z       r  Tt  H G Tu  TH PH Tu  H H U u   ]t  d     d     *       8Tu  H H Tu  5I 1I Tt  tI nI ?  W u  I I ^-u    W.u  J J <d       6  =UT <d     cs  Z  =Us =T| =Qv  Bd     (  =U|      _]  ]  _Թ  Թ  _Є  Є  J_B  B  _@  @  	_    	_C  C  	_    	_c  c  _k  k  	_q  q  J_q  q  _A  A  	_    _    _L  L  KL_MC  MC  J_    J_lF  lF  J_˻  ˻  JY_&  &  J_    _A  A  	J`    L7`NF  NF  N %  $ >  & I   :;9I  $ >      I  7 I  	:;9  
 :;9I8  I  ! I/  :;9  :;9   :;9I   <  :;9   :;9I  '   I  4 :;9I?<  &   4 :;9I?<  :;9   :;9I8  :;9   :;9I   :;9I   :;9I  :;9   :;9I8   :;9  ! :;9I8  ":;9  # :;9I8  $ :;9I8  % :;9I8  & :;9I8  ' :;9I8  (:;9  ) :;9I  *5 I  +!   , :;9  ->I:;9  .(   /:;9  0:;9  1'I  2:;9  3 :;9I8  4 :;9I  5! I/  6:;9  7 :;9I8  8>I:;9  9.?:;9'@B  : :;9IB  ;4 :;9IB  < 1  =B1  > B  ?U  @1  A  B4 :;9I  C1RBUXYW  D 1B  E1U  F4 1B  G1  H.?:;9'I@B  I4 :;9IB  J1RBXYW  K.:;9'   L :;9I  M :;9I  N  O.?:;9'I 4  P. ?<n:;9  Q. ?<n:;9  R. ?<n:;   %  $ >  & I   :;9I  $ >      I  :;9  	 :;9I8  
I  ! I/  :;9  :;9   :;9I   <  :;9   :;9I  '   I  4 :;9I?<  &   4 :;9I?<  7 I  :;9   :;9I8  :;9   :;9I   :;9I   :;9I  :;9   :;9I8   :;9  ! :;9I8  ":;9  # :;9I8  $ :;9I8  % :;9I8  & :;9I8  ' :;9I8  (:;9  ) :;9I  *5 I  +!   , :;9  ->I:;9  .(   /:;9  0:;9  1'I  2:;9  3 :;9I8  4 :;9I  5! I/  6:;9  7 :;9I8  8>I:;9  9.?:;9'@B  : :;9IB  ; :;9IB  <. ?:;9'I<  =4 :;9IB  >4 :;9I  ?4 :;9I  @4 :;9I  A1RBXYW  B1  C B  D 1  E1  F B1  G.:;9'@B  H4 :;9IB  I4 I4  JU  K  L1RBUXYW  M 1B  N4 :;9IB  O4 I4  P.:;9'@B  Q :;9IB  R :;9IB  S. ?:;9'I<  T4 :;9IB  U1RBUXYW  V4 :;9I  W4 :;9I  X. :;9I   Y.:;9'I@B  ZB1  [.:;9'I   \ :;9I  ]. ?<n:;9  ^. ?<n:;9    1   B  1  4 :;9IB  4 :;9IB  1   :;9I8  U  	4 :;9I  
   :;9I8     1B   :;9IB  1RBUXYW  (    :;9IB  . ?:;9'I<   :;9I8  .:;9'@B   I  . ?<n:;9   I     :;9I  . ?<n:;9   :;9I   :;9I8   :;9I   :;9I  4 :;9I   4 :;9I?<  !4 :;9I?<  "I  #& I  $:;9  % :;9I8  &! I/  ' <  ('I  ):;9  *4 1B  +7 I  ,.:;9'@B  -'  .4 :;9I  /4 :;9I  0 :;9I8  1:;9  2>I:;9  3 :;9I8  4:;9  51U  6:;9  7 :;9I8  8$ >  9 :;9I  :!   ; :;9I  <1RBXYW  =  >:;9  ? :;9I  @(   A.?:;9'I@B  B :;9I  C:;9  D(   E B1  F :;9I  G   H.1@B  I:;9  J! I/  KU  L4 1  M :;9I  N.:;9'I@B  O :;9IB  P :;I8  Q :;9I  R:;9  S :;9I8  T.:;9'   U :;9I  V.?:;9'I 4  W:;9  X :;9I8  Y:;9  Z>I:;9  [.?:;9'@B  \4 :;9I  ].:;9'I   ^.?:;9'@B  _ 1  `:;9  a(   b4 :;9I  c4 :;9I?  d4 1  e1  f1  gB  h  i.:;9'  jB1  kB1  l4 :;9IB  m.:;9'I   n1U  o1RBXYW  p. ?<n:;  q%U  r$ >  s   t I  u:;  v&   w :;9I8  x:;9  y5 I  z :;9  {:;9  |>I:;9  }.:;9'U@B  ~B  . ?:;9    :;9I  .?:;9'I    :;9IB  4 :;9I  4 :;9IB  . :;9'   .:;9'   4 :;9I  1RBUXYW  .1@B  1XYW    . ?<n   %  $ >  & I   :;9I  $ >      I  :;9  	 :;9I8  
I  ! I/  :;9  :;9   :;9I   <  :;9   :;9I  '   I  4 :;9I?<  &   4 :;9I?<  7 I  :;9   :;9I8  :;9   :;9I   :;9I   :;9I  :;9   :;9I8   :;9  ! :;9I8  ":;9  # :;9I8  $ :;9I8  % :;9I8  & :;9I8  ' :;9I8  (:;9  ) :;9I  *5 I  +!   , :;9  -:;9  .:;9  /'I  0:;9  1 :;9I8  2 :;9I  3! I/  4:;9  5 :;9I8  6>I:;9  7(   8>I:;9  9>I:;9  :.?:;9'I@B  ; :;9I  < :;9I  =4 :;9IB  >.?:;9'I   ? :;9I  @4 :;9I  A :;9IB  B1  C B  D.?:;9'@B  E1  F 1  G  H.?:;9'I@B  I4 :;9I  J4 :;9IB  K  LB1  M :;9IB  NU  O B1  PU  Q4 :;9I  RB1  S :;9I  T  U4 :;9I  V.?:;9'@B  W :;9IB  X4 :;9I  Y4 :;9IB  Z4 :;9IB  [  \  ].?:;9'I   ^ :;9I  _4 :;9I  `.?:;9'I@B  a :;9I  b :;9I  c.?:;9'   d :;9I  e.1@B  f 1B  g4 1  h1XYW  i 1  j4 1B  k 1  l1UXYW  m1U  n4 1  o1RBUXYW  p1RBXYW  q1RBUXYW  r1  sB  t1UXYW  u. ?<n:;9  v. ?<n:;9  w. ?<n   %  $ >     7 I   :;9I  $ >  & I  :;9  	 :;9I8  
I  ! I/   I   <  :;9  :;9   :;9I  &   :;9   :;9I  '   I  4 :;9I?<  4 :;9I?<  :;9   :;9I8  :;9   :;9I   :;9I   :;9I  :;9   :;9I8   :;9  ! :;9I8  ":;9  # :;9I8  $ :;9I8  % :;9I8  & :;9I8  ' :;9I8  (:;9  ) :;9I  *5 I  +!   , :;9  -'I  .>I:;9  /(   0:;9  1:;9  2:;9  3 :;9I8  4 :;9I  5! I/  6:;9  7 :;9I8  8>I:;9  9>I:;9  :   ;(   <.?:;9'I@B  = :;9IB  >4 :;9I  ?4 :;9IB  @ 1  AU  BU  C4 :;9I  D1  E B  F  G  H.?:;9'I@B  I4 :;9IB  J  K1  L.?:;9'I   M :;9I  N :;9I  O4 :;9I  P :;9IB  QB1  R4 :;9I  S.?:;9'@B  T B1  U.?:;9'   V  W4 :;9I  XB  Y.?:;9I@B  Z.?:;9@  [1RBUXYW  \ 1B  ]B1  ^.?:;9'I@B  _ :;9IB  `4 :;9IB  a4 :;9IB  b.?:;9'@  c.:;9'@B  d :;9IB  e4 :;9I  f.?:;9'@B  g.?:;9'I   h :;9I  i4 :;9I  j.?:;9'I 4  k.1@B  l 1  m4 1  n1RBUXYW  o4 1B  p4 1  q4 1  r1RBUXYW  s1UXYW  t 1  u1U  v. ?<n:;9  w. ?<n:;9  x. ?<n    B  1   :;9I8   :;9I8   :;9I8   I  (    I  	 :;9I  
4 :;9IB   :;9I8   :;9I   :;9I   :;9I  4 :;9I?<  4 :;9IB  4 :;9I?<  1  & I   1B  I   :;9I8  :;9   1  ! I/   :;9IB   :;9IB  . ?<n:;9  U  4 1B  7 I   :;9  !'I  " <  #'  $ :;9I8  %:;9  &.?:;9'I@B  ' :;9I8  (:;9  ):;9  * :;9I8  + 1  ,4 :;9I  -$ >  . :;9I  /!   0:;9  1 :;9I  24 :;9I  3 :;9I  4>I:;9  5U  64 1  7:;9  8  9 :;9I  :4 :;9IB  ;1RBUXYW  <1RBUXYW  =4 :;9I  >  ? :;9IB  @1RBXYW  A  B:;9  C   D.?:;9'@B  E.?:;9'I@B  F4 :;9IB  G. ?<n:;9  H :;I8  I :;9I  J! I/  K :;9I8  L  MB1  N.?:;9'@B  O:;9  P:;9  Q :;9I8  R:;9  S B1  T4 :;9I  U1RBXYW  V :;9I  W  X4 :;9I  Y1U  Z4 :;9I  [ :;9I  \.?:;9'I 4  ]:;9  ^>I:;9  _.?:;9'I@B  `1RBXYW  a.?:;9'@B  b :;9IB  c.:;9'I   d :;9I  e.1@B  f. ?<n:;  g%  h$ >  i   j I  k:;  l&   m :;9I8  n:;9  o5 I  p :;9  q:;9  r>I:;9  s(   t.?:;9I@B  u.?:;9'I   v.?:;9'I   w :;9I  x.?:;9'@B  yB  z.?:;9'   {1RBUXYW  |.:;9'   }  ~.:;9'I   .1@B  . ?<n   %   :;9I  $ >     & I  $ >   I  :;9  	 :;9I8  
 :;9   <  I  ! I/  4 :;9I?<  !   >I:;9  (   :;9   :;9I8   :;9I8   :;9I  '   I  'I  &   :;9  :;9   :;9I  :;9   :;9I8  4 :;9I?<   :;9  ! :;9I  "7 I  #:;9  $ :;9I  % :;9I  &:;9  ' :;9I8  (:;9  ) :;9I8  * :;9I8  + :;9I8  , :;9I8  - :;9I8  .:;9  / :;9I  05 I  1:;9  2:;9  3:;9  4 :;9I  5! I/  6:;9  7 :;9I8  8>I:;9  9.?:;9'I@B  : :;9IB  ;4 :;9IB  <1  = B  > 1  ?U  @4 :;9IB  AU  B1  C.?:;9'I   D :;9I  E4 :;9I  F  G4 :;9I  H.?:;9'I@B  I :;9IB  J4 :;9IB  K4 :;9IB  L  M.?:;9'I@B  N.?:;9'   O :;9I  P4 :;9I  Q4 :;9I  R  S.1@B  T 1B  U4 1  V1RBUXYW  W4 1B  X1  Y1U  ZB1  [ B1  \  ]1RBXYW  ^1U  _. ?<n:;9  `. ?<n:;9   w           /usr/include/bits /usr/lib64/perl5/CORE /usr/include/sys /usr/include/bits/types /usr/lib/gcc/x86_64-redhat-linux/8/include /usr/include /usr/include/netinet  Av_CharPtrPtr.c    string_fortified.h   inline.h   types.h   types.h   time_t.h   stddef.h   __sigset_t.h   struct_timespec.h   thread-shared-types.h   pthreadtypes.h   stdint-uintn.h   __locale_t.h   locale_t.h   setjmp.h   setjmp.h   __sigval_t.h   siginfo_t.h   signal.h   unistd.h   getopt_core.h   sockaddr.h   socket.h   in.h   stat.h   time.h   time.h   errno.h   netdb.h   netdb.h   dirent.h   dirent.h   perl.h   math.h   op.h   cop.h   intrpvar.h   sv.h   gv.h   mg.h   av.h   hv.h   cv.h   pad.h   handy.h   struct_FILE.h   FILE.h   stdio.h   sys_errlist.h   perlio.h   iperlsys.h   perly.h   regexp.h   utf8.h   util.h   pwd.h   grp.h   crypt.h   shadow.h   reentr.h   parser.h   opcode.h   perlvars.h   mg_vtable.h   proto.h   pthread.h   <built-in>      	P      Ky  J
K2	A2)<=( <X
=  "; 
   T < g	Y<u<uXf<_X"<F	 z ,wYKsYJXF<   I K ! I = X   J\YI= XY=Y<< KJ.  fK<  W J <ZI=-X  L   \        /usr/lib64/perl5/CORE /usr/include/bits /usr/include/sys /usr/include/bits/types /usr/lib/gcc/x86_64-redhat-linux/8/include /usr/include /usr/include/netinet /usr/include/libxml2/libxml  Devel.c    inline.h   Devel.xs    types.h   types.h   time_t.h   stddef.h   __sigset_t.h   struct_timespec.h   thread-shared-types.h   pthreadtypes.h   stdint-uintn.h   __locale_t.h   locale_t.h   setjmp.h   setjmp.h   __sigval_t.h   siginfo_t.h   signal.h   unistd.h   getopt_core.h   sockaddr.h   socket.h   in.h   stat.h   time.h   time.h   errno.h   netdb.h   netdb.h   dirent.h   dirent.h   perl.h   math.h   op.h   cop.h   intrpvar.h   sv.h   gv.h   mg.h   av.h   hv.h   cv.h   pad.h   handy.h   struct_FILE.h   FILE.h   stdio.h   sys_errlist.h   perlio.h   iperlsys.h   perly.h   regexp.h   utf8.h   util.h   pwd.h   grp.h   crypt.h   shadow.h   reentr.h   parser.h   opcode.h   perlvars.h   mg_vtable.h   xmlmemory.h   xmlstring.h   tree.h   xmlregexp.h   globals.h   perl-libxml-mm.h    pthread.h   proto.h   stdlib.h   assert.h     	@      KXX~X#~.J<XJJ<KeX 	 ~  X ~X < X .     "   L        . y ( fy E"KXX~X#~.J<XJJ<Kf<X 	 ~'   f	 ~  J ~. J X .     *֞   L        y z( 
 t F'KXXX# .J< XJJ<Kf  	 ~J  < 	 ~. J    t  f . vt X 	      ?KXX~X#~.J.XtJ<Kf<X %  v  X < " 	 ~t    f	 ~   ~. < X .     *   L        yf y( <  <  q @KXX~X#~.J<XJJ<Kf<X 	 ~'   f	 ~   ~. < X .     *   L        y z( 
 t FKXXX# .J< XJJ<Kf<~X.	~~J~.<X 	 ~  t .     "֞   Z        y ( ft Q*KXXX#:F.J<:XtJ<K<f<X  '	 ~    	~X~.<X-=XJ.v
f  t)
  r 	      ~K 	      NjX(Xt	}		Yq+vH0>X  4_  3        /usr/lib64/perl5/CORE /usr/include/bits /usr/include/sys /usr/include/bits/types /usr/lib/gcc/x86_64-redhat-linux/8/include /usr/include /usr/include/netinet /usr/include/libxml2/libxml  LibXML.xs    inline.h   string_fortified.h   LibXML.c    stdio2.h   types.h   types.h   time_t.h   stddef.h   __sigset_t.h   struct_timespec.h   thread-shared-types.h   pthreadtypes.h   stdarg.h   <built-in>    stdint-uintn.h   __locale_t.h   locale_t.h   setjmp.h   setjmp.h   __sigval_t.h   siginfo_t.h   signal.h   unistd.h   getopt_core.h   sockaddr.h   socket.h   in.h   stat.h   time.h   time.h   errno.h   netdb.h   netdb.h   dirent.h   dirent.h   perl.h   math.h   op.h   cop.h   intrpvar.h   sv.h   gv.h   mg.h   av.h   hv.h   cv.h   pad.h   handy.h   struct_FILE.h   FILE.h   stdio.h   sys_errlist.h   perlio.h   iperlsys.h   perly.h   regexp.h   utf8.h   util.h   pwd.h   grp.h   crypt.h   shadow.h   reentr.h   parser.h   opcode.h   perlvars.h   mg_vtable.h   overload.h   xmlstring.h   tree.h   xmlIO.h   parser.h   entities.h   xmlregexp.h   dict.h   hash.h   xmlerror.h   xmlautomata.h   valid.h   iconv.h   encoding.h   xmlmemory.h   globals.h   HTMLparser.h   chvalid.h   parserInternals.h   xpath.h   pattern.h   relaxng.h   xmlschemas.h   xmlreader.h   catalog.h   perl-libxml-mm.h    xpathcontext.h    pthread.h   proto.h   xmlversion.h   perl-libxml-sax.h    xpath.h    xpathInternals.h   dom.h    c14n.h   Av_CharPtrPtr.h    HTMLtree.h   xinclude.h   string.h     	      K~K	x	АYv,>J     f  f f X  - K W ? 	  +	 ? X > 	     	       ! # ' ) , - / 2/	1J	L   f X X	. 	w X      $y% (3 D G H  J M N P S U. V Y Z \ _	 " tt  " 0 0    I$ e h m 5 t  yf 0 Ey *0	 r0   f   v< 
X   $ y 00 f0 K0 40 5 8 9 ; > WJ 0 Q0 60 ]0 <))K̐Yv,>J     f  f f X  - K W ?   + ? X > 	  	   	       ! # ' ) , - / 2/1JL|YKJ	 $rX (3 D G H  J M N P S U. V Y Z \ _ 
*	 vt  " 0 0    I$ e h m . *0 E0 s0     f	 
   $ 00 K0 f0 40 5 8 9 ; > WJ 0 Q0 60 ]0 <))}f	:X. sXXvq=hJ0X.X t X  xX!i;X0 < .X  t <  J  <   v#r=gJ0NXN.X t X N xX`f;X. uXXur=gJ0X.X t X  yXKy	
Xt	 Yv,>J     t   K f J X  - K W ? 	  +	 ? X > 	     	       ! # & ' ) , - / 2 ( D G I  e h mf	J	K:< X J2	J$ oJ: X t	 
L 
Y$ x  $tJ	 0 gt  " 0 0    H$ J M N P S V Y  Z \ _#{
֞  E0 *0	 q0      
   $ 00 f0 K0 40 5 8 9 ; > W 0 Q0 60 ]0 <))~usY-Y{y.>-=X,LXJ   t  t   K / I X  - K X  - K W ?	  ! -		  	           ( * . / 1 5 6 8 <	 0H P T V  v z fJ>
J  v  < ( $|
J...	 g
 	= +x<w0 ( 0  f	 dt  " 0 "0 # ' U$ W [ \ ^ b e i  j l p # 20 Q0 m0     	    $$ 90 w0 X0 >0 ? C D F J f. 0 _0 @0 m0 G))
	]XH/s.=J+< t < < X< <  X X 0 )< )X0 + += +.< +- += 	 J</<  X X   !X f0 ,0 , ,. W  f	"wtJx  J  
  	Kuv,>X   t X J   f    t X  - K  J  f f X  - K W ? 	  ,	 > X > 	             ( * . / 1 5 6 8 < j 		0t"  <sKt)  X X X     0 P T V  v z f	J	L J	 !  9 % <				 nJ	 0 jt  " 0 l  f t +0 U0 W [ \ ^ b e i  j l p "# # ' $ 20 Q0	 u0           $$ 90 w0 X0 >0 ? C D F J f  + _) @) m) G) G)!iX[k  KXXX# .J. XJfKf<L>:Z,f   J	 [.#  J 	  			=L$t=..J[X# x $  < Xz[V 	P     $KXXX# .J. XJfKf<L>:Z,f   J	 [.#  J 	  	Z X	[!$<t=..J# [ $  <[.X$[ 	     KXXX# .J< XJJ<L	_Xf 	_<X<<t JqX 	p     CKɞXffX#f<J<XtJ<K<Y	{	{X	t<X. t  f KɞXfgX#g<J<XtJ<K<Y	{	{X	t<X. t  fu Ks!<XfqX#q<J<XJJ<KJ#}<	<#}tX<J..u  	      KXXX# .J< XJJ<K	d	<Xt  J .i	D stA ( $ . y3 L	  X 3       t.  	      KXXX# .J< XJJ<K	d	<Xt  J .i	D stA ( $ . y+ L  X 3       t.  	"     bKXXȃX# σ.J< XJJ<KdX  	  X     J .<     t  qXD (A ( ( . y L  3X L. 3< X t J  X    f   X    w 	 fp 	%     |KXXX# .J< XJJ<KdX  	  X     J .<     t  qX( $ . O	 N 1 N. 1J X .     $   X    w 	 fp 	P'     `KXXX# .J< XJJ<LdX  	  X     J .< 	    t  pX( $ . O	 N  1 N. 1J X .     $   X    v 
 fo 	)     _KXXчX# ؇.J< XJJ<LdX  	  X     J .< 	    t  pX( $ . O	 N  1 N. 1J X .     $   X    v 
 fo 	+     aKXXX# .J< XJJ<KdX  	  X     J .<     t  qX( $ . O	 N 1 N. 1J X .     $   X    w 	 fp 	.     bKXXX# .J< XJJ<KdX  	  X     J .<     t  qX( $ . O	 O 0 O. 0J X .     $   X    w 	 fp 	P0     bKXXX# .J< XJJ<KdX  	  X     J .<     t  qX( $ . O	 O 0 O. 0< X .     $   X    w 	 fp 	2     hKXXX# .J< XJJ<Kf<[+ J	 [#  X J	  	$[.$JX. *  t J   L        s# [( $ [$ 	`4     cKXXX# .J< XJJ<Kf<[+ J	 [#  X J	  	$[.$JX. *  t J   L        s# [( $ [$ 	06     wKXXX# .J< XJJ<Lf<X	^!^JJt  !  f	 ^  ! ^. !X X .     *  t J   L        x ^( t ! s 	7     BKXXfX#f.J.XtJ<Kf	{{J .   f	 { 		z<Yt.   t   Z       f st z( t  z 	9     sKXXrX#r.J<XJJ<KeX 	 ~&  t& ~X  X f      "  t J   L        . u ( fu 	 ;     KXXsX#s.J<XJJ<KeX 	 ~  X X .      .  t   L       J u ( u 	<     kKXXsX#s.J<XJJ<KeX 	 ~  X X .      .  t   L       J y ( y 	=      KXXX# .J. XtJ<Ke	L3.LJ3L.3<X  	  X    J .<     t  nJ D A ( ( +	 L 	;	=3tXJX f  t J    tL.<X 3 fh 	@     KXXX# .J< XJJ<K	d	<Xt  J .i	D stA ( $ . y, L  X 3       t.  	pB     CKXXAX#>A.J<>XJJ<KdX  	  X      .		ht. $   X   L        k ( fxr	DKXXAX#>A.J.>XtJ<<LcX  	      .		X<X   .		h(h.tXf $   X   L        ^   fxsq
X 	F     xKXXHX#7H.J<7XJJ<KdX  	  X      .		l<%,t. $   X  L    t   f (  fsr	 	H     OKXXIX#6I.J<6XJJ<KdX  	  X      .		l.j*t. $   X  L    t   g ( ftr	 	J     {KXXMX#2M.J<2XJJ<LdX  	  X      .		oo.JX. $   X   L        k ( fxr	 	L     yKXXTX#+T.J.+XtJ<Ke    	  X     .g	X	rJYt	0r.JJ. iX r	<KXXUX#*U.J<*XtJ<K<	c	<Xt   .	.rXtJpXJJ t	 r$ .Kg   xXXx 	 P     [KXXUX#*U.J<*XJJ<LdX  	  X      .		sr.JX. $   X   L        k ( fxr	 	 R     KXXUX#*U.J<*XtJ<K<		zf	s	<Xt   .		sXJYt	0	ZJ	s.<X.Jk<f  t	s)XY	 Y  xXu 	T     sKXXbX#b.J.XtJ<Ke    	  X     .		yY/tJ. it r	 <KXXلX# .J< XtJ<KcX  	  X    J .<     t  a.D (A ( ( . y 	  f <    .		M2M.2<XtJX f   X   . g t  f_ 	X     ~/s.XXX# .J< XtJ	tr	M	2	<X  J .i6G% $ . O M	  /  X    t f   2 M	LYK XKLfI ,H H, < X, /  4 ; >>Y"	J=
JY\	=1.NJ	X   Y I   - K J 2	 M. 2J	 MX 2<M< Q9 ;2<2J<	LX2Ⱥ KI2 k	  eXff.2X,M<2܂KXXզX# ܦ.J< XJJ<L	c	   .		^J[!t^.!<X-=XJL^Xtf!x 	^     VKXXX# .J< XJJ<L	c	   .		^J[!t^.!<X-=XJL^Xtf!x 	``     ~KXXX# .J< XJJ<Lf<X	^!^JJt 	  !	 ^    W	 = 	 Y ;	 = t !.  ! - = X        J . ^ t J! 	a     `KXXX# .J< XJJ<Lf<X	^!^JJt 	  !	 ^    W	 = 	 Y ;	 = t !.  ! - = X        J . ^ t J! 	b     WKXXPX#/P.J</XJJ<L		zf	p	   .		p>:JYJYYW=Y;=t.!-=XpJiu 	pd     QKXXPX#/P.J</XJJ<L	c	   .		p>:JYJYtp.<X-=Xpk x 	 f     RKXXPX#/P.J</XJJ<L	c	   .		p>=W=Yp.<X-=XpJJpttfx 	g      KXXX# .J< XJJ<KdX  	  X     J .i<     t  q( $ . O	 M 2 M. 2J X %      w% 	 <p 	i     bKXXX# .J< XJJ<KdX  	  X     J .i<     t  q( $ . O	 M 2 M. 2J X %      w% 	 <p 	k     bKXXƆX# ͆.J< XJJ<KdX  	  X     J .i<     t  q( $ . O	 N 2 N. 2J X %      w% 	 <p 	m     bKXXX# .J< XJJ<KdX  	  X     J .i<     t  q( $ . O	 N 1 N. 1J X %      w% 	 <p 	 p     bKXXX# .J< XJJ<KdX  	  X     J .i<     t  q( $ . O	 N 1 N. 1J X %      w% 	 <p 	 r     KXXTX#+T.J<+XJJ<LdX  	  X      .		rr.JX%   L    t  J k% ( <xr	 	s     ~KXXUX#)V.J<)XJJ<LdX  	  X      .		ss.JX%   L    t  J k% ( <xr	 	u     sKXXbX#b.J<XJJ<LdX  	  X      .		yy.<X%   L    t  J k% ( <xr	 	`w     oKXXsX#s.J<XJJ<KeX 	 ~  . < f%   f  L       J J yX% ( <y 	x      KXXX# .J< XJJ<KdX  	  X     J .<     t  qX( ( . y Q  .X Q. .< X t J  X    f   X    w 	 fp 	z     uKXXX# .J< XJJ<KdX  	  X     J .<     t  qX( ( . y X  'X X. '< X t J  X    f   X    w 	 fp 	0}     Ks.XXՈX# ܈.J< XJJ<K	xf	O0	<X   J .id) ( . y O C      t
t<
_	<Y0 e	c	;	uvX0'<<pJY
tt
X
t<Xw $KXXX# .J< XtJ<KcX  	  X '  J .|u     t   it  ( - 	  f <   J .i v ( . y O  0 O. 0< X f J  X    f   J    w 	 fg 	     `KXXX# .J. XtJ<Ke      f 	  X    J .<        q (  ( . y O  0 O. 0< X X J  X    f  t J     w 	 fn 	P     YKXXX# .J< XtJ<KcX  	  X '  J .|u     t   it  ( - 	  f <   J .i v ( . y O  0 O. 0< X f J  X    f   J    w 	 fg 	`     `KXX؉X# ߉.J. XtJ<Ke      f 	  X    J .<        q (  ( . y P  / P. /< X X J  X    f  t J     w 	 fn 	      AKXXHX#7H.J<7XJJ<L	c	   .		l<   <  l. <  X  - = X        f .t s 	     KKXXHX#7H.J<7XJJ<L	c	   .		l$	JYtl.<X-=XlJJlXtfx 	     ~KXXJX#5J.J<5XJJ<L	c	   .	X	m;Y  <  m. <  X  - = X        f .s x 	P     KXXJX#5J.J<5XJJ<L	c	   .	X	m;Y  <  m. <  X  - = X        f .s x 	     ~KXXLX#3L.J<3XJJ<L	c	   .	X	n;Y  <  n. <  X  - = X        f .s x 	     KXXMX#2M.J<2XJJ<L	c	   .	X	n;Y  <  n. <  X  - = X        f .s x 	p     YKXXMX#2M.J<2XJJ<L	c	   .	X	n;Y  <  n. <  X  - = X        f .s x 	Ж     uKXXWX#(W.J<(XJJ<K		zf	t	   .		t	K	[	t.<X-=XJLtJ.Xfu 	P     ~KXXXX#&Y.J<&XJJ<K		zf	u
	   .		uJ	\


u.
<X-=XJLtJtf
u 	     UKXXYX#&Y.J<&XJJ<K		zf	u
	   .		uJ	\
u.
<X-=XJLuJtf
u 	0      KXXX# .J< XtJ<KXfI   +	 P 	  /  f 	  X .  J .< %    t   TJ w( f ( .   P<	":	>/Xt. +   J    Z
(f<X
!  J	P!;Y<  J    X.  J# H  J t=g!fX! t ) /. ֞   PX/ KXXX# .J< XJJ<K		zfP/	  J .i P  / L      g  ( + P 	  	H	><  	 K # t	  /  ! - = X j P  .  /vKXX̔X# Ӕ.J. XtJ<Ke    J 0  f 	  X    J .<     t  q< (  ( . y V  )t V. )< X f J  X    f   J    w 	 fn 	     KXXX# .J< XtJ<K	zfQ.X  	  X '  J .|u ct  ( , 	  f <   J .i vD A /K ( . y	 Q 		[.Q..<X. #   J   J     t Q<. . t X f^ 	     JKXXBX#=B.J<=XtJ<KX	wf	i	<X    .	-	h	=	LYe=Yt-=XJLdf<X  t  Jh<  htXJXr 	      5KXXьX# ،.J< XJJ<K	
yfQ	.	  J .iQ.Lj ( +	 Q 	 Y 	=	;=t..!-=X m v 	      QKXXX# .J< XJJ<K		zf	f	   .		f	=	[	;	=t.!-=XJpXpfX 	     .KXXX# .J< XJJ<KdX  	  X     J .<     t  qX( ( . y Q  .X Q. .< X t J  X    f   X    w 	 fp 	а     ^KXXX# .J. XtJ<K   $ >  X < f   J L  f 	  X '  J .     t   qJ      ( . y Q  . Q. .< X f J  X    J .   J   < w 	 fl 	     ~KXXَX# .J< XJJ<K		zf	R-	  J .i R -Lq $ + R 	 Y 	-XR.-<X-=X t w 	е     bKXXX# .J< XJJ<KdX  	  X     J .<     t  qX( ( . y R  -X R. -< X t J  X    f   X    w 	 fp 	      xKXXX# .J< XJJ<KdX  	  X     J .<     t  qX( ( . y W  (X W. (< X t J  X    f   X    w 	 fp 	p     ~KXXX# Ɨ.J< XJJ<K		zfX'	  J .iJr $ + X  Y  ' X. '<  X  - = X u w 	      KXXX# .J< XJJ<K		zfX'	  J .iJr $ + X  Y  ( W. (<  X  - = X u w 	н     KXXޗX# .J< XJJ<K		zfX'	  J .iJr $ + X  Y  ' X. '<  X  - = X u w 	     KXXX# .J< XJJ<KdX  	  X     J .<     t  qX( ( . y T  +X T. +< X t J  X    f   X    w 	 fp 	     bKXXɑX# Б.J< XJJ<KdX  	  X     J .<     t  qX( ( . y T  +X T. +< X t J  X    f   X    w 	 fp 	      bKXXX# .J< XJJ<KdX  	  X     J .<     t  qX( ( . y T  +X T. +< X t J  X    f   X    w 	 fp 	p     ^KXXX# .J. XtJ<K   +  X <8 & "    f 	  X '  J .< 	    t  p ( 8 . < * & h ( . y T  + T. +< X X J  X    J .  t J    v 
 fl 	     `KXXX# .J. XtJ<Ke    J 0  f 	  X    J .<     t  q< (  ( . y T  +t T. +< X f J  X    f   J    w 	 fn 	     `KXXX# Ē.J. XtJ<Ke      f 	  X    J .<        q (  ( . y T  + T. +< X X J  X    f  t J     w 	 fn 	     \KXXޒX# .J. XtJ<<Ke<<X2  "  U * 	  X f   J .tJ j 2". ( + U   W = 	 Y ;	 = t *.  ! - = X       k .  v 	@     bKXXX# .J< XJJ<KdX  	  X     J .<     t  qX( ( . y U  *X U. *< X t J  X    f   X    w 	 fp 	     bKXXX# .J< XJJ<KdX  	  X     J .<     t  qX( ( . y U  *X U. *< X t J  X    f   X    w 	 fp 	     bKXXX# .J< XJJ<KdX  	  X     J .<     t  qX( ( . y U  *X U. *< X t J  X    f   X    w 	 fp 	0     bKXXʓX# ѓ.J< XJJ<KdX  	  X     J .<     t  qX( ( . y U  *X U. *< X t J  X    f   X    w 	 fp 	     KXXX# .J< XJJ<KdX  	  X     J .<     t  qX( ( . y V  )X V. )< X t J  X    f   X    w 	 fp 	     }KXXX# .J< XJJ<K		zfW(	  J .iJr $ + W  Y  ( W. (<  X  - = X u w 	     KXXX# .J< XJJ<KdX  	  X     J .<     t  qX( ( . y V  *X U. *< X t J  X    f   X    w 	 fp 	     KXXX# .J< XJJ<KdX  	  X     J .<     t  qX( ( . y V  )X V. )< X t J  X    f   X    w 	 fp 	      bKXXX# .J< XJJ<KdX  	  X     J .<     t  qX( ( . y V  )X V. )< X t J  X    f   X    w 	 fp 	p     YKXXX# .J. XtJ<K   )  X <8 & "  V ) 	  X    J .<t i 8". ( + V   V > 	 Y ;	 = t ).  ! - = X      h & h .  t 	     [KXXȕX# ϕ.J. XtJ<Ke    J W. ) 	  X    J .itJq ( + V  u W = 	 Y ;	 = t ).  ! - = X      j  <  u 	     [KXXX# .J. XtJ<Ke    W ( 	  X    J .itJq ( + W   W = 	 Y ;	 = t (.  ! - = X     X j    u 	      CKXXX# .J< XJJ<K		zfW(	  J .iJr $ + W  Y  ( W. (<  X  - = X u w 	     ^KXXÖX# ʖ.J< XJJ<K		zfW(	  J .iJr $ + W  Y  ( W. (<  X  - = X u w 	     KXXX# .J< XJJ<K		zfW(	  J .iJr $ + W  Y  ( W. (<  X  - = X u w 	0     KXXX# .J< XJJ<K		zfX'	  J .iJr $ + X  Y  ' X. '<  X  - = X u w 	     GKXXX# .J< XJJ<KdX  	  X     J .<     t  qX( ( . y X  'X X. '< X .     $   X    w 	 fp 	0     ^KXXҘX# ٘.J< XJJ<K		zfY'	  J .iJr $ + X  Y  ' X. '<  X  - = X u w 	     bKXXX# .J< XJJ<KdX  	  X     J .<     t  qX( ( . y Y  &X Y. &< X t J  X    f   X    w 	 fp 	0     bKXXX# .J. XtJ<K$f$<X$     X < X 	 Y t t K.   & Y. &<   X  - = X  t         J .	 Yt$ &   X 	     _KXXX# .J. XtJ<K$f$<X$       $ L 5 X#5f#  + : X(:f(  +  X < f   J /	 Y  & Y. &<   X  - = X ! t        J J J . rJ  t . & :"  5"  $  ( k: # 5  L   x 	@     \KXXǙX# Ι.J. XtJ<K$f$<X$  +  0 r  , J < L 5 #5f#  + : X(:f(  +  X < f   J /	 Y J	-f  J & Y. &<   X  - = X / t         . . . o "/	YJ 	 -  f-  &% :"  5 . <$ *  l   <( : # 5  z 	     \KXXX# .J. XtJ<K$f$<X$  +  0 J :  , J < L 5 #5f#  + : X(:f(  +  X < f   J =	 Y   @  YY	?&Y.&<X-=X/t... o<  t < % :"  5"$  ( k: # 5  L   x 		     `KXXX# .J. XtJ<K$f$<X$   '  '  ) : X(:f(  +  X < f   J /	 Y  & Y.# = &   X  - = X / t         J . rX  t . & :"'  $ d ( j:  K   y 	@     gKs!<XfX# <J< XJJ<K	YXY&J<	Y&XJ..u  	      mKs!<XfX# <J< XJJ<K	YXXJ&XfJ..x  	     bKXfX# <J. XtJ<Ks	nx<	`x	e	   <		e	=  X 	>:YI	u 1 O
z<YJ Xu1L	Y/;=X	dI	um|KXXX# .J< XJJ<L	xf	f	   .		f>:KZ,=YX-=XJf.<X-=XfJJf.n 	     KXfX# <J< XtJtL<fX<	f	Y		ffK
]tY;=X8@X    .
t<	  D  .f 	`     {KXXYX#&Y.J<&XJJ<L		zf	u
	   .		u	Y
u.
<X-=XuJJ
u tX 
Xu 	     ;KXXX# .J< XJJ<Kf<X	Z%#ZJJt 	  	J.u%f!-=XJJ# Z  tXt.%Z 	0     $KXXX# .J< XJJ<Kf<X	Z%#ZJJt 	  	"JfY%.!-=XJJ# Z< tXt.%Z 	     #KXXX# .J< XJJ<Kf<X	[$#[JJt 	  	"JXY$.!-=XJJ# [J tXt.$[ 	     ^KXXfX#f.J<XJJ<Kf<zXtz=]!-=Xj/zJ.zJ/X-?>-Y+su 	      nZV"r"gZv
J2	V<KYv	
v	J#XJ< KXXX# .J< XtJ<K%f%<X % 	 [)  $t	 [  	{	wV	=XK	f X J+X*J,*X*Jf*X(X	N&	+J	)J	\-=X$[.$<X-=XJ[ff<X% # \# 	      }KXXX# .J< XJJ<K	d	<Xt  J .iut $ . y	 \ X #       u.  	     }KXXX# .J< XJJ<K	d	<Xt  J .iut $ . y	 ] X "       u.  	@!     ~KXXçX# ʧ.J. XtJ<Kf:>:Z,X^J .    !  J ^  f[!t.   t J  L       r< ^(   n<X ! j 	#     aKXXߧX# .J< XJJ<Kf<X	^!^JJt 	  !	 ^ 	  	  	   ! ^. !<  X  - = X        J . ^ t . X! 	$     KXXǨX# Ψ.J< XJJ<Kf<X	_ _JJt   	   X!JJ ^ t  	  Y.  	%     JKXXX# .J< XtJ<KX%f%<X%      u. J < L	 _      J<	_JvV	ZX	=		=X	=t-YX	jY !-=XJJdJXt_%  t _ftXJ  	0(     ^KXXX# .J< XJJ<Kf<'_X X	_ '_J '_.= X 	 _ K  J	 _. <X. *  t J   J     t  r _(<   l 	 *     pKXXX# .J. XtJ<KeX>VJ>:L`x.	e J 	   &   .	ee=X> X K;/	"  		w	
X Xt. +   J  Z    t   @t   	e	K
 3 J
qJY	J Xu3LJY		! X	a.  
e.XXn e  X	 X	  Xr	^K
fKXXX# .J< XtJ<K<tX>,JLXeXXJe<<L	eYe	=Xe.	=X  " _yz	e	;	=XK-/		!     }J<NtJ<XXf   J e;/	? < I X	7<	 X	 X.     J   L       .etfX<  J t < e\ 	2     jKXXOX#0O.J<0XtJ<KX	wf	p	<X    .	.XJJ<	pJ	=   	:	=t	0W=Y;=t.!-=XoJJo		"XtzXm%KXXީX# .J< XtJ<K-Y<t<Z,JJL'_ XJ'_< <L	_'Y'e	= X_.	= X   r > gX	_t	 X K			=X< D 	.u	]tXg f.f    J   J        . QX  Z r  iJ<J_	5qJ<   t _  	7     ZKXXOX#0O.J.0XtJ<Ke	nx<	`x	o	   .		o	=  K==Y
JYW=Y;=<!-=XoLtoXXr 	 :     $KXXX# .J< XtJ<K<f<X'_ XJZ	_' '_.	= Xz	_	Y	=YJ, X  JYg	>g=>	%$t1fX4 X J 4  @ !-=X_JJ J.OJXJJ<Nf<f   	_4 X = u4 X X    4 _    f   	=     IKXX۪X# .J< XtJ<K<f<'_X X	_ '_J '_. <XJJ<	_J	Y;	=	%1t$X1f4  J 4 X J !-=X_JJt J 	_4 X = Xt _4 X X   " t t "  f   	p@     CKXXX# .J. XtJ<Kf<X>VJ><L`X .`J <	_J 	_Y-	=		[	-	 _. <X-=XJLtJ._ttX  	A     gKXXX# .J< XJJ<K`X	d	`	Y .`< <`X`.<X-=XJJr  	B     JKXX`X#`.J<XJJ<K	c	   .g	X	x7<x.<X-=Xf.u s 	C     4KXXΫX# ի.J. XtJ<Kf	`X	``J;	=X	;	=t/Yue=Y`.<X-=X`JJt.`  	@E     NKXX\X#"].J."XtJ<Ke		fw<		Xw	v		   .		v	=K;=t/Kd=-Y	v.	<X-=XvJJt	  v t 	l0XKXXX# .J. XtJ<Kf	`X	``J;	=	Y;	=t/Yue=Y`.<X-=X`JJtf`  	H     ]KXXMX#1N.J<1XtJ<KX	
yf	o	<X    .	.XJJ<	oJ	 X X  X JtX!-=XoJJ. o 
X   X X  Xt o 	tX w  fXt 	`K     KXXX# .J. XtJ<K   $ >  X < f   J	 a.   	  X     .		aYW=Y;=t.!-=XaJJta<   <  k 	 N     KXXͬX# Ԭ.J. XtJ<K   $ >  f   $ > 	 X t<	 < t	 X t.	 `       	     .		`Y#I X J  ? ' X$  J  f   `Y$t^uX#Y#yYtcYW=;=g##!Y!e=Zd>Ztu%	t%XtnX%X.eKXXX# .J. XtJ<K   $ >  X < f   J	 `.      	  X     .		``=g,/==[q<    <  `ZH>Jt/W/X=Yt;=</W/Xt=XXm`<XKXX߭X# .J. XtJ<K   $ > 	 
X v<	 
< v	 
X v.	 `     	      .		`Y#I X J  > ' X$  J  `& X# J"` Y  e=Xtj>[!>#Y#g%o%!Z%L!v!H>Y#.Xn 	W     KXXX# .J. XtJ<Le	lz<	^z	a	   .g	X	a	e	=YJJt o.KXXX# .J. XtJ<Ke	my<	_y	a	   .	X	`I X J  ? YJpXn~fKXXX# .J. XtJ<Kf	aX	aaJ;	=	Y;	=t/Yue=Ya.<X-=XaJJtfa  	 \     Ks.XXX# .J< XtJ<Ls	q<XZdJ>:L	Xs.	a		   .		a	= X 		  tt	3v		KJ	LKKK	L'<' X  <  a. <  X  - = X J L     <ffftat		rXfpJJV>X@\tK
k X X 	`_     PKXX_X# _.J. XtJ<Ke		fw<		Xw	w	   .		w	=  		;	=t/Ye=Yw.<X-=XwJJt..*w wֻXq 	a     /KXXX# .J< XtJ<KXe	
v<X	
JvJ<	b	X   .	.XJJ<N	at;	=XK<.ZXXz	a	  Nt;Y	ML	utJa<tu	y<	t.Xp 	0d     NKXX߰X# .J. XtJ<Le	lz<	^z	b	   .		b	=	[K<tJ.	bJ.k<oKXXX# .J. XtJ<Ke	nx<	bX'	Xx'bJ	'b.	=	X   .		b		igtX  L    t  J	bI	=J	X t t t  ! - = X bmbX 	 h     mKXXCX#<C.J.<XtJ<<K	xf	i	<X    .		X<X   .		i"	Ke	YX	>	:YX	wIY  <	  Y/JJJX t !-=X inXiXXir.KXXVX#)V.J.)XtJ<<K	xf	s	<X    .		X<X   .		s=W			v;=s=YJ t t   ! - = XsJJt stX ssXfsXKXXWX#(W.J<(XtJ<KX	wf	t	<Xf   .		   .		sKW			Ke=Ys.<X-=XsJJeJf<X  t ttX ksXtX 	p     ~KXXXX#'X.J.'XtJ<Ke	my<	_y	t	   .		t	=	  gJZ
YMkK XiJJJtJXt<Ƀ!tXXs 	r     &KXXX# .J. XtJ<Ke	u<X>VJ>:L		Xw.	b	   .		be	=X	=	   *		AtY	Z Xw$I$Y  <  b. <  X  - = XbtY<..bt		>/zXo 	 u     zKXXX# .J< XtJ<KsXZdJ>:`x.	d J 	  X '   .		d	=	Z	   Xtg			Qy<	Q=Xt.    X  J     t  Tt   t	d	/	yt	y<	Q=	tXf=nY0<t	f= t aXn 	x     KXXX# .J. XtJ<Ke		fw<'bXX	b'	'b.	=	X'   .		b		Jg	$	KJ	B 		u2JJ  	  XJb	?		 /I=JX t  t  ! - = Xb	
 AlbX~KXXX# .J. XtJ<Ke	
v<X>VJ>	DvL	`x.	c	   .		be	=X	=	 X N	 X		ftgf..bt4YstY<t..bk~KXXX# .J< XtJ<KJe	t<XL,J<	
Xv.JJ<L	c	   .		c	=	Y	   X	[tz<	B<Y	hf!-=XcJJc<f<X    Jc/tp	t9	?=yX t xXn 	p     KXXX# .J. XtJ<Ke	nx<'cXX	c'	'c.	=	X'   .		c	  	Jg	"		
u2JJ  	  	I	=J	X   t  ! - = X       f   Jct	J cJ xmcXKXXX# .J. XtJ<Ke	nx<	`x	c	   .		c	=		;	=t/Y$I$Y  <  c. <  X  - = XcJJt.ct Xr 	P     LKXXӵX# ڵ.J. XtJ<Ke	my<	_y	d	   .		c	=Y>YJYzJJcXXs 	     }KXXX# .J. XtJ<Kez.	d J 	  X '   .		d	=		z<	Bt.dt<.dJJJX   t J   X     t  b< dtX<  oXr 	@      Ks.XXX# .J< XtJ<KXe	t<	Xt.JJ<L	d		   .		d			=	t!-=XdJJdt.f<X    Jd
Y=
it
	[u
f(  	dtYwJ
XV>
tYv	wui IX}KXXX# .J< XtJ<KsXZdJ>:L`x.	e J 	  X +   .	e
e=
X> X -/	  
;u		K
 " J	t<J X
u"L	J XK	
	 f 	e X	 X <.    X  L    X f  	e	KyC			K	Yof	K	 . e		Xn 	     ~KXXX# .J. XtJ<Kf   	 e  	 e  . e< Y W	 =  Y	  H	 =    f e X e. <  X  - = X        f . n   X 	      ]KXXҺX# ٺ.J< XJJ<KdX  	  X      .		ee.<XJX f   X   L        l ( fyr	 	     |KXXX# .J< XJJ<KdX  	  X      .		ff.fX. *         L    t   l (  tyr	 	     KXXX# .J< XtJ<KX	
yf
g	<X    .	.XJJ<	gJ	 X X  X X .	tX!-=X.. f 
X   X X Xt g   f   ttXt 	     LKXXrX#r.J<XJJ<KeX  ~  	   < X J	< '  	%.%}<#Xt#}.=X.   t   L       J o	 ~(' X X ! "X'  X .   ' }  	      1KXX@X#?@.J<?XtJ<KXh	Xuf	g	.g<J	Xf   .	.XJJ<Nf<f   J	g<	 Y"  X  
   *f  *X	>	 XY!g!X		X	h%1t$X1f4 X J 4  A!-=XgJJ.E.Xz	g.g<		X	><" o 	 	f4  " g  X   #4 X X  " i' 4  
8   J" g  f 4 $  fkGKXX@X#?@.J.?XtJ<Ke	lz<	^z	h	  J .g	X	h	YJJt oLKXX@X#>A.J<>XJJ<K		zf	h	   .		hW	=	Y;	=t.!-=XJsXp 	`     {KXtDX#;EJJ<;XJJ<K		z	j	   J		jH	=	=.i;KYJXZgfXz	%	JJ#fJ..jt(K(K!2	=;KtXu 	p     |KXXHX#7H.J<7XJJ<K	d	<X   J .g	X	lw t 	     ~KXfIX#6I<J<6XtJm<JW	mX  	  f     <		l<"KyCg,;,Y  <  : L  X     KyJ		<fX l 	.<<g J    f X  \  K	Y	;	KX     t=Jhf	     X	 t  Xk~KXXKX#4K.J<4XJfKtLXZdJ>:LmX.	m	 J <	  X    .		me	=X	vJ	q< X  < X	imXg(K  IZ)msJ X u@ Lu0<0 X  <  - Y  X   t  sJuX		w fJ.. m s% f  f f X fe   X   X fKs!<XfJX#5J<J<5XJJ<K		ztm	<Xt   <	m	K
I  X 	L;Y  <  m< <  X  ; = X        J J^J..Xu 	     ~KXXKX#4K.4JK<<4XtJuXn.sv	nX  <	  X     .	;	m@(K>u2!<2 X!  < ! - Y  X   t  HLx
Y" X xJ	Xȃff. mXf   $ m           n  .EKs!<XfLX#3L<J<3XJJ<K		zt	n	<Xt   <		n	KI  X 	L;Y  <  n< <  X  ; = X        J J^J..Xu 	е     Ks!<XfLX#3L<J<3XJJ<K		zt	n	<Xt   <		n	KI  X 	L;Y  <  n< <  X  ; = X        J J^J..Xu 	p     ~/s.XXNX#1N.J.1XtJ<Ke	nx<	`x	o	   .		o	=  	>:ue=Ytg	"foJ<t.Xr-|KXXQX#.Q.J<.XJJ<L		zf	p	   .		p	=Y;=t.!-=XpJJptX u 	@     GKXXQX#.Q.J<.XJJ<Kf<qX.	p
     .tu<  	[	   Z u"
 	pt  	u-=J   t   f   K - J  W > 	  -	 = X = 	-	K	KW	>tft
 p  X   (
 k t 	 f tqvf
 . )< < t	       XqKXXQX#.Q.J<.XJJ<KdX  	  X      .		qp.<XJX f   X   L        h ( fur	 	     KXXRX#-R.J.-XtJ<L"e" "  	 q   	  X     .		qYZ<Z]q.<X-=XqO`<tJ." Q m<KXXRX#-R.J<-XtJ<KX	
yf	q	<Xt   .	-	qf		q.<X-=XJL.r<f  t q$ <	 q. 	 Y t  xo~ KXXSX#,S.J.,XtJ<Ke    J 1	  X f   J .g	X	rJ lX  <Xr	 	     TKXXTX#+T.J<+XJJ<KdX  	  X      .		rr.<XtJX f   X   L        l ( fyr	 	     |KXXWX#(W.J<(XJJ<K		zf	t	   .		t	=	[s	Xt.<X-=XJLftttX Xu 	@     KXXXX#'X.J.'XtJ<Ke	my<	_y	t	   .		t	=	  gj=Y
tJJtfK;[Xrt!}tXXt	KXXZX#%Z.J.%XtJ<Ke	lz<	^z	u
	   .		u	=	
gM  Xj((eYY
.u	u2JJ t  itX<tX
ov
XKXXZX#%Z.J<%XtJ<KXe	u<	Xu.JJ<L	v
	   .	.XJJ<	uJ		e	=	Y;	=t/Yd=Y
u.
<X-=XuJJ
.ctXt#u	Xo 	     ~KXX\X##\.J.#XtJ<Ke		fw<	vX		.wvJ		v.	=		X   .		v		;	=t/	[	e	=Y	v.	<X-=XJLt.vt 	Xq 	     KXX]X#"].J."XtJ<Ke		fw<		Xw	w	   .		w	=;=t/Kd=)Y	v.	<X-=XvJJt	  v t lKXX]X#"].J."XtJ<Ke		fw<		Xw	w	   .		w	=;=t/Kd=Yw.<X-=XwJJt  w t l|KXX`X#`.J<XtJ<Ks	r<XZ,J<LdJ>:L	
Xv.	x	Xf   .		x	=	s	=	Z	Kt:	=gx.<X-=XȞf.xtX<fJJb Xl 	p     KXXaX#a.J<XtJ<Ks	r<XZ,J<LdJ>:L	
Xv.	x	Xf   .		x	=	s	=	Z	Zt:	Z=gx.<X-=XxJJȞfxtX<fJJxJgKXXaX#a.J<XtJ<Ks	r<XZ,J<LdJ>:L	
Xv.	y	Xf   .		x	=	s	=	Z	Yt;	Y=gx.<X-=XxJJȞfxtX<fJJxJgKXXbX#b.J<XtJ<K<	ys	yX	Xy<X/y<X-=Xf.jX  )f<f  	y	 -   m   .m 	     |Ks.XXeX#e.J<XtJ<KXz	z	z<	Xz.	g	Xf   .	/;	z	Y	 Y"  X     ,f  ,X	?	 X <   X Y   ,<v	< X0=Y!g!X<	YK;	\X	jXV>t.!-=XJJ. yf 
"  
  X"   X   *XJ   f3z v X   " #7&(   " z  j " b (jX KXXeX#e.J<XJJ<Kf<X*z	zJJt	X t  X      J J z t J 	p     dKXXeX#e.J<XJJ<K	d	<Xt  J .i	tt $ . y* z  X        t.  	     eKXXeX#e.J<XJJ<K%f%<X%    z   z. <   X  - = X  t         . .% rJ   	`     KXXfX#f.J.XtJ<Kf	{*.*{J*{.<X 	 {   	<{<X{.<XXJX f  t J   L        . p   f{ 	      igs =<X& t < X <  X J 	. X 	A7  X X X	>0, ~  X  &Ks!<XfrX#r<J<XJJ<K	~JXt	~<J..y  	     kKXXrX#r.J<XJJ<KeX 	 ~  X . ~< < .%   f  L       J J y% ( <y 	     ~KɐXXsX#s.J<XtJ~gX t  tt. ~X  	     gKXXsX#s.J<XJJ<KeX  ~   gt<XXXJX f  t J  L        u ( fu 	p     kKs!<XfsX#s<J<XJJ<K
~XgtfJ..v  	      u X < X JUpI<Y:>f tK;KW>
;i:>r.<.rJxut. XKs.XXX# .J< XtJ<K(f(<X(     f < KX 4.	 K    	    4'	 K  J%X%  X K ;=$X\.<$X/;=t04!-=XJJt K&  <$% F ( 3 LfX!YYY=<Ov  8 ;8 X U?Y]t/;=t0Gf X4XL2Ks.XXՂX# ܂.J< XtJ<K(f(<X(     f < LX 3.	 L    	    < 3<	 L  J X J>t	!X!  X	 K #\"-<Y28>vt4.!-=XKJJt4! K&( 3(   Lt < (U YYPf0<;=XK QX X3 KXk3KXXX# .J. XtJ<KfL3.	L	-	=X3.	L	;	=t/30<-=XKtJMLXXX 3L2tKXXX# .J. XtJ<Kf	L3.LJ-=X3"	L	;	=t/30:-=XYtJMLXXX 3L-tKXXX# .J< XJJ<KP/fPX/P./<X  	  X '  J .i<     t  j  ( . y P Y	ZL	:X/J<	PY	/t. .   J    p  ff 	      {KXXX# .J< XJJ<KR-fRX-R.-<X  	  X    J .i<     t  n( ( . y R   	  I	 = X  - t t J  X       X    t t  fj 	     KXXX# .J< XJJ<KP/f	PX	/fP<	/<P	/XP./<	X  J .iP/^ ( + P   	  =<L		I=X	/P./<X-=X a P䐑X/ 	@	     zKXXӏX# ڏ.J< XtJ<KS,tSX,S.K,X  	  X '  J .|u     t   _  ( 2 	  f < &  J .i v D A /K ( . y	 S ;=Y X 
M	Y,t. .   J    m t X fYS0KXXX# .J< XtJ<KXQ.fQ		.Q<X	.Q	.Q..<	X  J .iQ/L@f ( 1  Q	>
	>	 K # t	  	  	e=Y	/!-=X CQ(.Xf<X    JQJ!tv< . Q<X. 	p     ~KXXЍX# ׍.J< XJJ<KR-fRX	-fR<	-<R	-XR.-<	X  J .iRJ.j ( + R     I = X 	  ;=t..!-=X m t 	     VKXXX# .J< XJJ<KR-fRX	-fR<	-<R	-XR.-<	X  J .i R  -Lm ( + R   	  I	 = X 	  	;	=t-.!-=X p t 	     \KXXX# .J< XJJ<KR-fRX-R.-<X  	  X    J .i<     t  n( ( . y R   	  I	 = X  - t t J  X       X    t t  fj 	     ~KXXX# .J< XJJ<KS,f	SX,S.,<X  	  X    J .i     t   eX  ( . y R 	  	      d
    gX,	St-t. .   J   k t  f^ 	p     ~KXXX# .J< XJJ<KT+fTX+T.+<X  	  X    J .i<     t  n( ( . y T   	  I	 = X  + t t J  X       X    t t  fj 	      KXXX# .J< XtJ<KXS,fSX,S.,XX  	  X ,  J .<        [( ( . y   +;if S)X
a;=X X X <  	N,.    J    a t S X,   y    U 	p"     GKXfX# Ɛ<J< XtJ<KXS,tSX,S<,XX  "	  f ,  J <<       [0 * < y  " ,;it S*X
?a X X < 	,XJ<X    J     a t S   X <     f 
 
< t,   y     S  X, 	'     \KXXX# .J< XJJ<KT,fSX,S.,<X  	  X    J .i<     t  n( ( . y S    	=,t.    X   t S   t X     
J f J , j 	 +     |KXXX# .J< XJJ<KU*fU	*U<X	*fU	*U.*<	X  J .iLet ( + U    = ; X    X	
J	=I	=X*!-=X h, U) 	;	Y!	 X  0wY+tKY<J0.  	 .     rKXXX# .J< XtJ<K	\#t	\X#	\.#<X  	  X ,  J .\ $    t   @f( ( 1 	  f < &   .		\/ 	  	  	ejJX	w	$t.    J    F\(Xt o   f  $. \f֐#Ks.XXX# .J. .tKX	\t#.<J<L	\	<#	\<#	\#<	\ <	  			O*t	V	>	i#-=XKJMJ.2 \X!`!. d#(   $Ni t  X 
J J Jc2 \		 #t f   y2 \"Y"sY	[	> #J 0 (  #\,#[X# 	@8     KXXX# .J. XtJ<KXfJ   * 	 \    #	 \< #	 \ #<  	\		O		t	#<<	\Y	#J	\#X-=XKtJ.2 \.!g. # f   $NiX<   X 	J J Je2 \		 # f  y2 \"Y"sK	[H	>t #J   (  #\,# 	=     KXXX# .J< XtJ<K	]"t	]X"	]."<X  	  X ,  J .] #    t   A  ( 1 	  f < &   .		\   # t	  	  		YI	=		#t. .   J    G ]( # f]Xg֐"KXXX# ä.J. .tKX	]t"]J"<]<"X]."<	X   .	x<	]		*t	V	>	i	"-=XKJMJ.2 ]!h."   $Ni t  X 	J J JY2 ]		> " f  y2 ]"Y"sY	[	> "J 0 (  #q,]X"Ks.XXX# .J. .tKX	]t".<J<L	]	<"	]<"	]"<	] <	  			*t	V	>	i	"-=XKJMJ.2 ]!a . e"(   $Ni t  X 
J J Jc2 ]		> "t f   y2 ]"Y"sY	[	> "J 0 (  #],X"]X" 	 M     KXXԥX# ۥ.J. XtJ<KXfJ   * 	 ]    "	 ]< "	 ] "<  	]		t		t	"<<	]Y	"J	]"X-=XKtJ.2 ]t!h. ! f   $NiX<   X 	J J Je2 ^		 " f  y2 ]"Y"sK	[H	>t "J   (  #],X" 	pR     KXXX# .J< XtJ<KtX  	 ^)      &  !<	 ^ X  	.			;	=X	9	?t/IXJX6"J]<X"J]	Y!^.!<X-=X..]f<X(  X u 
6  X !X ( ^ !^	p֐
p֐6  )KXXX# .J. XtJ<L   )  X < f  	 ^  X $  !<	 ^  X    Z ,	 = I=X!!-=XJLtf dt    ^tJ! 	pX     jKXXͼX# Լ.J< XJfKfJL>:Z,JXJZfX	f	^z.	=X0	t  		;=t	0J   Z  J g.#t     $ g  Jyu*Y't#';Y#'Y#-='XX( fX% J < u 	.    H    J %  
' J &   d   <     X )sX 	]     ~KXXԽX# ۽.J< XJfKfL<Z,JXXLdJ>:Lf   J	 f< 	  z.	 =      X " 	t  		;=t	0<  f   X  - K  J   f   X   K  >&J%    (  uJ f  %$/! f   ./ d(  J!'!$&u7%()3t/3;)Y/3Y/-)=3Xt$ J! J < u 	  gf< f   X  - K  J       
nf f   X  - K  J     J+ <   <     f% $ ) . 
+ . & v   =  ! j  % c . f  '              X )uXgr/s.XXcX#c.J<XJJ<L	y-J	y	Xfy<<yXy.<	X   .		y/	!Xt/W=t.!-=XJLy"n*cXtKXXcX#c.J<XtJ<K;Y<tW   +	 z  	 Y -	 g X 	 y. <  X  	  X +   .		yXy<	 "  X   	 	f *J  *X	i XgY!g!Xf	X	KI	/Xy.. +     J        . . J." 
z(  	1  fXJ   J	y<	J<" g X X   ' t X   J ! " y  f t XXo 	n     KXXdX#d.J<XtJ<K-Y<eXJJ<	zX	g	Y-	gX	z.<X  	  X     .	;	z	 Y"  X   	 *J  *X	?	 X <   	v	Y	Y$	t	]!X	i3a	A/YW	\X	gX	KI	/X.   t J   Z        J " 
z(   
N  #p%W!=XJ  &" z  X   # X X  (' X *<" 8 t X    >  y " b  j"  t XXj 	`u     iK	e		9.Yv	,>K-	=X	+	[XJ ttK/IX-KX-KW?.		p	x 	88LJ	Y	 	L	u

<T2		
r<t
Y	XY]hK0Xc. W: :!:I=Z.	Yx;KX 	      KXXX# Ǜ.J< XJfK,Z<Z,JXLdJ>:Lf   J	 Z<       &	 H >  < 	  		   		=Y;=t	0uI=X<  f   X  - K  J  f f   X   K  >&<%  .(J)1  <%/!>t   t  1 \*  J!'!$&7%()3t/3;)Y/3Y/-)=3Xtt$ J! J < u 		= h % [&Y< f   X  - K  J   .  
nJ f   X  - K  J   1 t) 7  <J uL / J6 2 <)Y08t  !       <                 t           Xv%Z #KXXX# .J. XJfK,<Z>:Z,JXL	ZX%.	Z<	H>< 	  		   		b=u;Yt	0v	d>g	\F	NX<."J%  <#>t     & _  Jy*Y't#';Y#'Y#-='XXf%( Y<% J < u 		=! 9/ %rt> @ # J* & <Y$,t     (  	W0 <    <     X%Z#.KXX˞X# Ҟ.J. XtJ<Kf:>:Z,X	Z%	ZJ .	  	:  J %  Z. %<  X  - = X         . . Z:  $[$KXXX# .J. XJfKfL<Z,VJ>:LX	[J .	  	J X J.	  J YzJ/	W. t	 J. J	 X t J %f..J/Z.	. t y$. ( $[ Ks.XXԿX# ۿ.J< XtJ<K<a	s<X	gJ.J<gJ	gXXg.<	X'   .	/_r	g	) ( t f	#"  J	8XuW=t.!-=X.JfJ=	KY#
	
  KI=	sYu X wK	XX  0N.J<t  0N-f<Xg  u KI=	sX/f  f mt J . Jg.Xh~XggX փzltvFK=	Yy=J74KXXDX#;D.J.;XtJ<<K	
yf	i	<X    .		X<X   .		iw<0j\	X		\IYJ W <  H	 > 	i+JJ	 t    ! - = X J L    t   ijJsXt|KXXGX#8G.J.8XtJ<Kd	y<	_y.	CyJ<	kJ	   .		X<X   .		k		=#I#YJ W <  H > 1.J. X  <   ! - = XkJJt.kJAtX smsXKXXGX#8G.J.8XtJ<Kd	y<	_y.	CyJ<	kJ	   .		X<X   .		k		=#I#YJ W <  H > 1.J. X  <   ! - = XkJJt.kJAtX smsXN	y J	Y e	=Y>	H> 	X 	     4KXXDX#;D.J<;XJJ<L	a	j	<X    .g	X	jeXia<<4Xv 	`     KXXBX#=B.J.=XtJ<<K	xf	i	<Xf   .		X<X   .		i<	J X 	 >) W=iJ t !-=XJLff ihe=ZY:>Y`J#tXvX<XssXXsiJKXXEX#:E.J.:XtJ<<K	
yf	j	<X    .		X<X   .		j	=\a<j.<X-=XJLt.XjtX nXt 	0     KXXEX#9F.J.9XtJ<<K	xf	j	<X    .		X<X   .		j	  	 > 	%aJ'J' X  <  I = iJY!-=XJLtjJr<JsnjXXtKXXFX#9F.J.9XtJ<K	xf	k	<X"   .		   .		X<X   .		kJY(g'J' X J X <!-=XJLt..j\Y=b< +J+ X  <  W = 1J";"Y  <kYJsnXXf' 	      sus/.XXSX#,S.J<,XtJ<	qt	qX	q.<X  	  X .   .		q`
X
`Xf			     t	  fJ<Y-* & X" 	AtfJXJ    J   Z      f Sq(  	 q q֐X(IX 	     Cus/.XXSX#,S.J<,XtJ<	rt	qX	q.<X  	  X .   .		q`
X
aXf			     t	  fJ<Y-q.* & X	AtfJXJ    J   Z      f Xr(  	 q "NX KXfX# <J< JtK<?[9XJ<Lt  %	 MJ   8	 = 	   X  2J  	MA<	;	=Y2;=XKJJ F 
!  J 	M<	;Y<  J    X. >#   J X=u!fX! t # H  J Xx<5֞  2X kMKs =.|XY=Y<<<|JXkovJ	K<'	"-xt=<<	Ls	w0..[, *J	.X	yxYxCX00=Z
<	 X
 J# /
 s	 Y I  K) If'<Y8'X   ' zf$X  M  cbK(J$ 
Jx(&J8 	J#v-#I	YX	K	.# u$  <	 " X   K6 #L$.="uYY=<n(J( t J <  of(  fJ KXXٜX# .J< XtJfL<	ZX%ZJ 	  	#YBXKY<J=*t%..J Z B. ZJ<Z	JZJ Y+ W xJ	ZJYv	
v	
vt	JMv
#	vfHnwYY<XXX wXKzBzt^.Y
YJ"  = IJ   t   f      J  . X  - K  J     9 M  Z , > S B   - = [ c ? Z	   	   	       ! # & ' ) , - / 2 (, D G I  e h mf/fJZ,>/V?..	 $t 	0	 wt  " 0 0    H$ J M N P S V Y  Z \ _ r# t	  *0 E0 p0            	 
   $ 00 K0 f0 40 5 8 9 ; > W 0 Q0 60 ]0 <)l)  <KXXٟX# .J. XJfKf<L>:Z,X	[#J .	  	#tYDtK<J	;J X J*J,t,J*$JJ.# [fD(X;$ 	@     Ks.XXX# .J< XJfK,Z>VZVf  +   d J > : L  ZX %J	 Z       .	  	J  J_ vJJ X Jg .  ,  J  X&Bt=<<	=J  B %.. Zf   J YX. b=+ J JJX*$<t&L X d0  W0 u ;0 K  Qf 00f %( #Zf  eBX Z)%ZX$KXXX# .J. XJfKfL<Z,VJ>:LX	ZJ .	  		K	J  X <   	J X <  			J( % J KJ X J K"!t% f.... Zf <m<tCXY<<<tCXY<< <CX<%ZGK	^z	Yv,>J     f   K - K W ?    {t  YK<J	     	       ! # ' ) , - / 2/	v	V><	, $} (3 D G H  J M N P S U. V Y Z \ _	 * p  " 0 0    I$ e h m . *0 E0	 w0     f{X 
   $ 00 K0 f0 40 5 8 9 ; > WJ 0 Q0 60 ]0 <)7JtttJY
Ju/ 	 ? I	uvGY	ZXu X XK J  Y	    	 - = $   f9 
Y#IvY<X	JJ        M G J M  	Y""-	=5   *  I K  J  f  X  	A<	?<AX G?X=1I=XI/[q?Z	 " 	  "         ( * . / 1 5 6 8" <ct   *  I K  J  -   *  I K  J  UKJ J  ,  I K  J  *   J# +  u   *  I K  J  J	 0 P T V< v z /tJ/@# $ 	@t<g + ( 0 #: J   "  I K  J  $ `f'>   ) n"  <o#\*K3 X+ JY%  @'#';Y#'Y#;Y'Xt%y*J   I  	 ,   0 "0 # ' U" W [ \ ^" b e i< j l" p i%                       	  0     	 Q  20 0    < XvX	 	   $ 9+ X+ w+ Z+  X   X	 >% ?" C D F" J f  / _+ @+ m+ G++   KXXޠX# .J< XJJ<Kf<X	[$#[JJt + 	  J+< Y: W +J Y? W +J Y= W +J Y: W [JYt. XX$# [ tEtY<X.:EtY<X.:EtY<X:JXzEtYY<X;DtYY<XX  	     LؐYJ   t   f  t X  !  J!   W! =
v,>
  
   	 	X
    X
      " % %X
 & ( + , . 1/	sX f  J 
 ' B E EX
 G b ewq@u-=J- 
 xtw0
 & 0 #0 F0 H K L N Q S. T W X Z ] #  	l$
 t )0 C0 q0   f   
 
    /0 c0 I0	 u0  < 
 3 4 7 8. : = U 0 O0 50 [0 ;)7KX;=XKIg <-X 	     f
X;
s=gYt<. Y8'L8l	8,Xr	tJX	&  t X J* J: 8 	 B t	 X	
	z	/ t < X J  X J X) '
tf 	e<   X' ) zt 
 /" t <" X < "  th1Y/suit   X   	
# "  X  .Y+su t " 
    v  f" 
 a(3JN%tjxtJ-t	ZKXXgX#g.J.XtJ<Kf:>:Z,	{X.	{<	:>X	=		5Y		J ) 	 v u          . .	 {.sX 	      KXXhX#h.J<XtJ<Kt<Z,JXLdJ>:Lf   J	 {J     &	 : <	 {  X	 = 		u		Z1Y	W	[;	KYJ <) t	 v Y<1	utf	.Y!-=X.	 {  {X 	      Ks.XXhX#h.J<XtJ<Kt<Z,JJXZdJ>:L	{X.	{	$	{.<X 	 { 	  	tf	 J	   				0Zu	.       J      <.. [X {( 	 Y &  {XJX| KXXiX#i.J<XtJ<fJ<	{X.	{<{J	,<	{	Ye	=	Y	=	.Y!-=XJJJgtXJ   J	{J	ue	=	YW	=g   p 	     BKXXiX#i.J<XtJ<K<tX>,JX	|X.J<	|X	|.<X    > 	| 	!		r	0X	>u{.X.     J   L    t   [    f<f t  J    {|Ks.XXjX#j.J<XtJ<fJZ,<JL	|X.JJ<L	|	<K	|.<X
JJ
<	|JJY    uX	t . 	 Y 		%=*>Yv>_yQ/	utJ..C
Xt |   	$.YX|䐑fKs.XXkX#k.J.XtJ<tJ<Z,JXL	|X.<J<L	|<Y	|.<X
<J
<	|J<Y    wX	t	ud	>X	>fZrLX>u$U?$KJ=$KJ<_ K 8Jt	1u!-=X...
Xt | X	|.Yxt	[u.KXXlX#l.J.XtJ<tJ<Z,JXX>,J<Z,<J<L	|.J<	|X.Y	|>	|f   x. 6	#   x. D	'	Y	YX	Y9	N	*t  X t/	!z	u!-=X...{X  V	 L  <  + ((X<X    t|X7.X/;<!X t J X;  (    d 	"     Ks.XXlX#l.J.XtJ<tJ<Z,JXZ,<J<L,J<X	|<.J<	|	X	|<	|X<	| < 	 Y 	   t. .	"  	 s. 	#	Y9	YX	g9	M	B	Yt$ X t/!v	u!-=XtJ...|f 	     d z(  (X<X  t  J|X .  /X|.Ks.XXmX#m.J.XtJ<tJ<Z,JXZ,<J<L,J<X	}<.J<	|X	|<	|X<	|J	  	 Y 	   n. .	"  	?	Y	X	 	L<g9		
<Y	u/-=X...|X 	   X 		Y	XW	Y pX	 [     ((X<X    J}/8<X t J X   8 } |X 	+     Ks.XXmX#m.J.XtJ<KfdZ,<JL	}X.	}<0< 	  	%*>.YK/Y/	uJ. |  &6|X*WufKs.XXnX#n.J<XtJ<KtH>:Z,JXL	}X.	}<.	}J 	  		u	X%*w7>/+YML;~KtKtKX	YrXt>  !v$	u=-=Xt...of Wt1(0X}䐑*Wtus/JXtoX#oJJ.XtJ<K<X>HJ	}XJ<J<L	}X	}J<X
<J
<	}J<Y   yX	<X	yX!.YYX=*LY!v^H'P/!/W/	u#..J.
Xt }+ܐX 	4     us/JXtpX#pJJ.XtJ<KJtX>HJ 	}XJ<J<L	}X	}J<X
<J
<	}J<Y  t  uX	<RxX	Y	X=*;Y[MY!vJ/uuH'P/!L7Ki}Kf=X	!8!XwsXJX>  X!
Xtq	'uYI=X.J.. |J >/;<!X t;  #1	}䐑ې~Ks.XXpX#p.J.XtJ<Kf:>:Z,	}X.	}$	}.<X 	 }  <  	  	%*L/Y8/=Y	ut.     X   L    t <f WX	 }  . $ X }IX}JKs.XXqX#q.J<XtJ<KJf<Z,JX}X.JJ<L	}<}.<X
JJ
<	}JJY  t  sX	<J X	[  	  		u	X%*X;YXMw!EvY&/P+MLz<KwKtKX	tY!8!XvtXXX>  !2
Xts	'u=-=X.J }t [Gw&Jt W  /;<!X t;  (1~
	w	 X.g
0  <	.v		  < X   f   << X)!Xg)	v u      8" s<   f
 J     f Ks.XXܳX# .J. XtJ<Ke	o<X>,J<LVJ>:L	Xs.c	cJ	Xf   .		c:	>X		=X	=t	x	 X 	(	X XKuuu	E		X\	Lut ..bzf <	XY	L#I' t	tXdYs=0=V&R8, t) $&Jz<`xX   Xx<	R(XqJxdcX|KXXX# .J. XtJ<Ke	s<X>VJ>	<sL	Xu.	d	   .		d:	>X	N		AXtgf..T<hdg/s.XXNX#1N.J.1XtJ<Le	nx<	`x	o	   .		o;	=X	>:u	[tg*	"fto<XXrorKs.XX[X#$[.J<$XtJ<KJs	o<XZ,J<	Xq.XJ<L	v			   .	.XJJ<	vJ;	=X 
L&Xt	ve	=X	> X 6J=Yt;Y=gYf	=-=Xu!]/XYt:Z=gXY>e. ?tgXY>gp!	Xi uXXKXX\X##\.J<#XtJ<KXe	u<	Xu.JJ<L	v		   .	.XJJ<	vJ;	=XK	LdXt	vd	>Y	=	Y	:	>t/Y	!-=XaXo 	R     }Ks.XX^X#!^.J<!XtJ<Ks	q<XZdJ>:L	Xs.	w		   .		w;	=X		  ,	U	?Y	e	=Y	>Y	><	>f!-=XJLJw>ZY	
<!		=YV	>,t	U	?Y	e	=YYq	>c<MYɭXY>gmwֻXk ~Ks.XX_X# _.J< XtJ<Ks	q<XZdJ>:L	Xs.	w		   .		w;	=X		  ,9	?	Ye	=Y	>Y	><	>f!-=X..wX!		=YVLrZ	
<		=YV	>,u<9	?	Ye	=YYq	>kXXXwֻJXXk 	Z     KXX`X#`.J.XtJ<Ke		fw<		Xw	x	   .		x;	=X		;	=t/YKd=Yw.<X-=XxJJt.*w xֻXq 	 \      NNX)Xt			-<	uX	Y	-<	uX	Y	-<	uX	Y-<	uXY		-<	uX	Y-<	uXY		-<	uX	Y-<	uXY		-<	uX	Y-<	uXY		-<	uX	Y	-<	uX	Y-<	uXY		-<	uX	Y-<	uXY		-<	uX	Y	-<	uX	Y-<	uXY		-<	uX	Y-<	uXY		-<	uX	Y	-<	uX	Y	-<	uX	Y	-<	uX	Y	-<	uX	Y	-<	uX	Y	-<	uX	Y	-<	uX	Y	-<	uX	Y	-<	uX	Y-<	uXY		-<	uX	Y-<	uXY		-<	uX	Y	-<	uX	Y	-<	uX	Y	-<	uX	Y	-<	uX	Y	-<	uX	Y	-<	uX	Y	-<	uX	Y	-<	uX	Y	-<	uX	Y	-<	uX	Y	-<	uX	Y	-<	uX	Y-<	uXY		-<	uX	Y-<	uXY		-<	uX	Y-<	uXY		-<	uX	Y-<	uXY		-<	uX	Y	-<	uX	Y	-<	uX	Y-<	uXY		-<	uX	Y	-<	uX	Y	-<	uX	Y	-<	uX	Y-<	uXY		-<	uX	Y	-<	uX	Y-<	uXY		-<	uX	Y-<	uXY		-<	uX	Y-<	uXY		-<	uX	Y	-<	uX	Y-<	uXY		-<	uX	Y	-<	uX	Y	-<	uX	Y	-<	uX	Y-<	uXY		-<	uX	Y	-<	uX	Y	-<	uX	Y-<	uXY		-<	uX	Y-<	uXY		-<	uX	Y	-<	uX	Y-<	uXY$		-<	uX	Y	-<	uX	Y	-<	uX	Y	-<	uX	Y	-<	uX	Y-<	uXY		-<	uX	Y-<	uXY		-<	uX	Y	-<	uX	Y	-<	uX	Y	-<	uX	Y	-<	uX	Y	-<	uX	Y	-<	uX	Y	-<	uX	Y	-<	uX	Y	-<	uX	Y	-<	uX	Y-<	uXY		-<	uX	Y	-<	uX	Y	-<	uX	Y	-<	uX	Y	-<	uX	Y-<	uXZ$		-<	uX	Y	-<	uX	Y	-<	uX	Z,	=<	uXYu-YXYt Xv>>,X   	      %
 *   j        /usr/include/bits /usr/include/sys /usr/include/bits/types /usr/lib/gcc/x86_64-redhat-linux/8/include /usr/include /usr/include/netinet /usr/lib64/perl5/CORE /usr/include/libxml2/libxml  dom.c    types.h   types.h   time_t.h   stddef.h   __sigset_t.h   struct_timespec.h   thread-shared-types.h   pthreadtypes.h   stdint-uintn.h   __locale_t.h   locale_t.h   setjmp.h   setjmp.h   __sigval_t.h   siginfo_t.h   signal.h   unistd.h   getopt_core.h   sockaddr.h   socket.h   in.h   stat.h   time.h   time.h   errno.h   netdb.h   netdb.h   dirent.h   dirent.h   perl.h   math.h   op.h   cop.h   intrpvar.h   sv.h   gv.h   mg.h   av.h   hv.h   cv.h   pad.h   handy.h   struct_FILE.h   FILE.h   stdio.h   sys_errlist.h   perlio.h   iperlsys.h   perly.h   regexp.h   utf8.h   util.h   pwd.h   grp.h   crypt.h   shadow.h   reentr.h   parser.h   opcode.h   perlvars.h   mg_vtable.h   xmlstring.h   tree.h   xmlregexp.h   xmlmemory.h   globals.h   xpath.h   chvalid.h   parserInternals.h   perl-libxml-mm.h    xpathInternals.h   proto.h   parser.h    % 	P     -K%U	{H\ f`KO]<	X[J	Y	ef	sI	FYg+	"J	K	K;	]c=L	K	L^Z<<X:h>%!<="Wuv*<KWu /	K=];Xa"="<A	KK	J[ Y t <" W	% X  ? X4 J Y N FN"JXt!KJEA  .)!,*KYe	/K!
+).	Kt;,XYZGX  .PJ%   ? X4 J Y N TN"	Y"GtnK!A,!*;!Yq +)-	;	YJYY!K	  <O	/g#<<uJ<	0 t 
 Kg.4	g	Z	g l<	Jg&(=&I(=;=(X/t.vg(&I(=&;(=Wf1J(W.H/	t.	kK-S.Y
Y	JfM ?YKPKPXb<K\[W<YJ	tKH\KK&YMMXxX3KT1H0f
m u
KxJ`3	Y	[FX1r.kK	3o	g
JX]EAgU^d KJqX.n 	/"[KY
J^	m JMJ		Y	jk`J]	hzJ\*$J& J<LKL1	j<X<X B 	Z X   # 	 
f
k..j<(<X<	S<XXtf.F..Kw	 "	+t@	MX	K,W	f	j		K	K	Y<	Y	Cy 	x	K	Kr	Ll _b &K&J>X 
 yJEj	U?<	/J	
J .	TJ
	X	Kt<	KuJM
/J .XJ	b"J	KKH	\J	K-H
XJ ^	W	Ktp34tK
e:Z23xf <<s3sJ	YXfoD5KDzPX 
 X	kM
xg	-!gJ .	`f t	uWJ3.	Q/Q /<Q<	Y		eX'+K'N	Yrg<;jX
X	#	.SY;<X*.	[%X[X!fltL	'O2H	ւ .MJ3<	e
	z	k&(.K[JX: 	     K:	:w	X
=!<<
X	
TK	
8K
L	2[w	F@.....	l<:L	]؃HXX	n.X	tf[/.	\ !'JK!	Yn	\J1YeJ<ef `pf0<gJtX&JrY+Z+> J.Y\&/K/W$/Nw	hJYX	Z	K	K
JJ	KX	,	V7K7N		K}wJYKYzJBwXJ .mJ<IKIy	!	Kx	JKJYK\#uJX ..uzJBuhJ<	k<X? 	     K?1	YJ<<X?	]Xf.	w	wJ	 <w.X7 	@     XY Xlr=
	Y	=Zt	>X	Zi	ztXJ	[9wK  h9zf	J9w	JJ	g	YJYt @  JYKOXgt.Xg.	of	]	EAtKK	z^h=	pJ	Y	<Z>	pJXXKPz^<iJX.jgwfJXiJX.gJ	XJ[Pzfk.sfcKW	xG	YO Y Y/&JKC. 			KXwGYgG	`J$ Xt	g%hf+ X# Jlv, X$ J\JXa $           /usr/include/bits /usr/include/bits/types /usr/lib/gcc/x86_64-redhat-linux/8/include /usr/include/sys /usr/include /usr/include/netinet /usr/lib64/perl5/CORE /usr/include/libxml2/libxml  perl-libxml-mm.c    string_fortified.h   __locale_t.h   stddef.h   locale_t.h   types.h   types.h   time_t.h   __sigset_t.h   struct_timespec.h   thread-shared-types.h   pthreadtypes.h   stdint-uintn.h   setjmp.h   setjmp.h   __sigval_t.h   siginfo_t.h   signal.h   unistd.h   getopt_core.h   sockaddr.h   socket.h   in.h   stat.h   time.h   time.h   errno.h   netdb.h   netdb.h   dirent.h   dirent.h   perl.h   math.h   op.h   cop.h   intrpvar.h   sv.h   gv.h   mg.h   av.h   hv.h   cv.h   pad.h   handy.h   struct_FILE.h   FILE.h   stdio.h   sys_errlist.h   perlio.h   iperlsys.h   perly.h   regexp.h   utf8.h   util.h   pwd.h   grp.h   crypt.h   shadow.h   reentr.h   parser.h   opcode.h   perlvars.h   mg_vtable.h   xmlstring.h   tree.h   xmlIO.h   parser.h   entities.h   dict.h   xmlregexp.h   hash.h   xmlerror.h   xmlautomata.h   valid.h   iconv.h   encoding.h   xmlmemory.h   globals.h   perl-libxml-mm.h    pthread.h   proto.h   perl-libxml-sax.h      	p     KX 	     ?K=XY~
~KX #~JK'YtU	t%g
zvmz#K=<YuIg.uX 	Ц     fK =XKYX 	      KwqM<(uX	KKtK >XZ   g I g!   ]L mK	 	>XY=u 	<KY;=Zr>t"&  4Z  -L.  Z$Z t  JZ t KZr>t"& t 4 L<Y=ge c 
KK'Ys='t' t 4  ; = Y  J  '  
L >Y'[K x'K CL >Y	 Xh s=X 	P     K,=X"& t 4     Y - u X  Y  =  g e d 
XKg	- t 1 W =	  	  u	 e
K]<X]t	
#uY	=uD q#u	Xn. b .K* AY2Y	<LY	MM _K<	JYg8gl5_	t9zJ0	4d	=4qX 	p      K	?+%Y	f!	h	,J8U=Y	XIu$X!<:Y"?-< ^'xIu$ X! <: Y  "  % BxXG^X_<>K>Yu	tgt	Y7A=	gX	<	-	=Xg	[f	gt3QfX>Y&$JK
i t0#Jn'<K	Yxrf#<.X 	P     KZ+ X*  f3]	KJ  u IY?YEY". _'(K=s =<YY
fY# t
  \  L ty 5 
 t	YJ 
0Ks =<Y+ X*  f	Y, J	  t, * <	 K X  MJ, 	   KW<<Y	hJXX w "YJY K8H.	N$	JY	D:'%JKQZ$<<'JY!XXtf%<3XK	<@Y<{D~JX 	     KMU[	Y	=	zt.	+. KY	f!	hJ	tw?m=YtYY'#utKvYu	Y,	>X	-	=XK4jX.
p<tJ\K>r ><Z;X
fY
K
MJ& ot; .  x	yX!t	$J  t < XKx`	e	u s  <  <];EJ;<  .E.:
j4X	# f J  6 J	<@Y	Gf9<X	=Y	=XK	 ..
gXXJ < J	<X=		JeXK
	/ pX)VKK)ZVKK)K
u
		3X	=Y	=XK;u	$ ...	i.tzUJ+.	Z<tW	4<Y;	=XX t
eX	K!K	YKSB Yx 6 x.<[KY	i	YY	A	O	00yX	tf	0
fXXxZrJZ X X ) A	e	 	    Y ;	 =  X-K,"8\6!t>:	z	YtX d< (   v<X?q.Yu		K* X J)YtK#zt5AXY0J8&	*K	 4Y/ . ! f;     X9Y8FtK!;b*.J S 0# c < '\K!Y9t
F :f X   /        /usr/lib64/perl5/CORE /usr/include/bits /usr/include/sys /usr/include/bits/types /usr/lib/gcc/x86_64-redhat-linux/8/include /usr/include /usr/include/netinet /usr/include/libxml2/libxml  perl-libxml-sax.c    hv_func.h   string_fortified.h   stdio2.h   inline.h   types.h   types.h   time_t.h   stddef.h   __sigset_t.h   struct_timespec.h   thread-shared-types.h   pthreadtypes.h   stdarg.h   <built-in>    stdint-uintn.h   __locale_t.h   locale_t.h   setjmp.h   setjmp.h   __sigval_t.h   siginfo_t.h   signal.h   unistd.h   getopt_core.h   sockaddr.h   socket.h   in.h   stat.h   time.h   time.h   errno.h   netdb.h   netdb.h   dirent.h   dirent.h   perl.h   math.h   op.h   cop.h   intrpvar.h   sv.h   gv.h   mg.h   av.h   hv.h   cv.h   pad.h   handy.h   struct_FILE.h   FILE.h   stdio.h   sys_errlist.h   perlio.h   iperlsys.h   perly.h   regexp.h   utf8.h   util.h   pwd.h   grp.h   crypt.h   shadow.h   reentr.h   parser.h   opcode.h   perlvars.h   mg_vtable.h   overload.h   xmlmemory.h   xmlstring.h   tree.h   xmlIO.h   parser.h   entities.h   dict.h   xmlregexp.h   hash.h   xmlerror.h   xmlautomata.h   valid.h   iconv.h   encoding.h   globals.h   chvalid.h   parserInternals.h   proto.h   pthread.h   stdlib.h     	     jov.Z==[;r>g"     J    L         J         L  @ Z	  f   #ׄX.<	xt 1Xf 8J P W ^J 	  	  f) (  +f) Q, wX z  x. X      X   X   X 	   < Ut X \f _J& e pJ& ?J /. 2 6 9J > @J D G J< Jt $ f) j mJ6	xXtoz<vX>t:>Y     J   L  X Z  [ W  >    Y X  	  J	 . <	 X J  X t        <       	 wX L  D  X	 f   #2ׄ.J. 	xt 1Xf 8J P W ^J 	  	  f) (  +f) Q, wX z x. vt X   X  p    X 	   < Ut X \f _J& e pJ& ?J / 2 6 9J > @J D G J< Jt $ f) j mJ6	xXtjov.[=>[;r>g"     J    L	  	 X J  X X        J         L  ? Y	  f   #ׄX.<	xt 1Xf 8J P W ^J 	  	  f) (  +f) Q, wX z  q.    X  	 X   X 	   < Ut X \f _J& e pJ& ?J /. 2 6 9J > @J D G J< Jt $ f) j mJ6	xXttLʐX=	w	Y;	=		=xJ2LX=	v	Y		=x..K [	X=*X/X/>.</X/>X/X/>X/X/>X/X/>X/X/>X/X/=X/X/=X/X/MG/t=t=/t=t>=t="t}	=t=t=>t=t=>t=t=>t=t=>t=t=>t=t=>t=t=>t=t=>t=t=>t=t=>t=t=>t=t=>t=t==t=t==t=t=/t=t=/t=t>=t="t	< J}f2f=f=Lt=t=>t=t=>t=t=>t=t==t=t==t=t=/t=t=/t=t>=t="t}	=t=t=>t=t=>t=t=>t=t=>t=t=>t=t=>t=t=>t=t=>t=t=>t=t==t=t==t=t=/t=t=/t=t>=t="t~	=t=t=>t=t=>t=t=>t=t=>t=t=>t=t=>t=t=>t=t=>t=t=>t=t=>t=t==t=t==t=t=/t=t=/t=t>=t="t~	=.t=t=>t=t=>t=t=>t=t=>t=t=>t=t==t=t==t=t=/t=hJt=/t=t>=t="t~2f=t=>t=t=>t=t=>t=t==g<t=t==t=t=/t=t=/t=t>=t="t~*X/X/>X/X/>X/X/>X/X/>X/X/>X/X/=X/X/=X/X//X/X//X/X0=X/"X~	=&X/X/>X/X/>X/X/>X/X/>X/X/>X/X/>X/X/>X/X/=X/X/=X/X//	X </X//X/X0=X/"X~"X/X/>X/X/>X/X/>X/X/>X/X/>X/X/>X/X/>X/X/>X/X/=X/X/=X/[%<X//X/X//X/X0=X/"X~"X/X/>X/X/>X/X/>X/X/>X/X/>X/X/>X/X/>X/X/=X/X/=X/cX<//X/X//X/X0=X/"X~"X/X/>X/X/>X/X/>X/X/>X/X/>X/X/=f=f==f=f==X/X//X/X0=X/"X~-DK-"K
 #K#!"Z =L< +K+ T $ < J .{LJYiZwvXXKJX*K*T`*x
<t
H>JYif0wXMG? UJ+K
<1 u
  ;#  < OKOO;K~
<JKJKJXKtKX<.5K5X="t<tv<JtX=J\J<]~
<J u<!  < XZ
lX<p.~
~t<X Ksu.ZH>	Y~=<<	r<~Y=Y<<vH	Y~=Y<<	uX J~<KV	<K=sY.X=:>YXt,<&	t2F$     J  
 Z d X 
    J    K  J   ?  	  f   [H>  ...,X	 )Xf /J D J PJ "	of	 " 	  f) (  $f) E, fX h m w. X      X 	 
  < Ht K Nf QJ& V _J& 5J '. * - 0J 4 6J 9 < >< >t  W) Z ]J.K=sY.X=:>YXt-<&	t2F$     J  
 [ c X 
    J    K  J   ?  	  f   \H>  ...,X	 )Xf /J D J PJ "	mf	 " 	  f) (  $f) E, fX h m v. X      X 	 
  < Ht K Nf QJ& V _J& 5J '. * - 0J 4 6J 9 < >< >t  W) Z ]J.?
?)J:YI=	Z	eY<	f	YM	YJ	YJ . KKIK	8	YK	08X^Y Y.JPzJ
<<
<X>Jt
J	\	i	YK1JK#K8J%J
J	Y	wJYJN6XX< X#Xf	^tt	&	  X 	/I	= X t	0t1J/-!e*F2*2fw4Jt2 ttX 	      KSxRZ>X=	Y	>=H  HZtXXoKXXYI< XgMZfV>JX)fXJ2>t0t6 t1 t%+aAx<t9?|Xt	|<.=|	/  >X/X/J0X/X/J0X/X/J0X/X/J0X/X/J0X/X/J0X/X/J0X/X/J0X/X/J0X/X/J0X/X/J0X/X/J0X/X/J0X/X/J0X/X/J0X/X/J0X/X/J/X/X/J/X/X/J/X/X/J/X/X0Kf="f<X#uYXY t<"X$Lf,Z<JX)f.J:fXJi<OXt- t2.tz:t4 t6.t|. ~<JtJJ<<<<JJ<J<<J<JfJ<Jt<<J<J<t<JJJft<JJ<J<JJ<<<Jtt<J<J<J<J<<J<JfJJ<JJ<<<JJtfX$K/X=X< X^ < ..	t'7$  ..K/X=X< XX < ..	r	<tt	&t!- X Y ;32z<%...QK/XuX< X Xj X]X.f1ytAt/KɐY=X ,< /-= <> Xk X^ ..S5 ..vf3Ksu.YvJ4;MGKL X] XjJxX*7  .0XKsu.Y
Z	;=Z	J     J   K I J      X   K  ? Y  f   	H>     J   L	  J   Y K t , < 	  X&F	2JYf	.	J    Z  J  ~ @    f   	<Uf )X /J# D] J V _J (   f)  $f '" * - 0J 4 6J 9 < ><	 zt    X   X X & )X / 5J >J	 k D J P V    f)  $f () E, K% Q Wf Z ] _. I fX h m m.^t E, fX hf m	 . X  n X    z )  /" ) ^) PJ"$ * - 0f 4 6J 9 <J 
. X J 
^J  ft 5J H. K Nf QJ W2 Z ]J ].JKjrvN.
YN7=Z	>:ZYt f    J   K	 I K 	 ; X  	 \ 	  W	 =  J   J L   >    f   	     J   K	  J   X 	 =  J    Z  J  ~ @ 	F@  ...	*Xr< )X /JJ  .... Dn. J V _J (   f)  $f '" * - 0J 4 6J 9 < ><	 yt X  y  X   .   st E, fX hf m	 5 X   X     ) )X PJ 
  .t 5J H. K Nf QJ W2 Z ]J@}tK@?su.YLIY...J	ef:ZYt f    J     	   	 =  J    K e J  Z  A >  f   	wIY  .... w )Xf /J^J"....	 z D J PJ V< _J (   f) ( % ( $f) E, fX hX m 
.  <	 yt X   .    X X H K Nf QJ& W Z ]J 5J >J 'f * - 0J 4 6J 9 <J.=K=0vZzI  .-	 ..=aK<=zt.|
XY
W=Z:>ZI  .-g}K?su.
ZV=>X     J   L : J  
 Z : Z
    J    L  J  ~ @  	  f   jׄ ...<	xf )Xf /J D J PJl" t	  	  f) (  $f) E, fX h m t. X      X 	 
  < Ht K Nf QJ& V _J& 5J '. * - 0J 4 6J 9 < >< >t  W) Z ]J. Krv.[9=>Z΃     J       K  ? Y	  f   Nׄ .. 	x )Xf /J D J PJt" t	  	  f) (  $f) E, fX h m )    X 	 
  < Ht K Nf QJ& V _J& 5J '. * - 0J 4 6J 9 < >< >t  W) Z ]J.K?su[.	X
z<G=>Z/=Zd>Y=fz     J  
 K e J 
    J    K  J   ?  	  f   xׄ ...<	xf )Xf /J D J PJd  t	  	  f) (  $f) E, fX h m x. X      X 	 
  < Ht K Nf QJ& V _J& 5J '. * - 0J 4 6J 9 < >< >t  W) Z ]J.1K1?su._
z<W=>Z̓     J   L  J   Y
   >  J    K  J   ?  	  f   \ׄ ...<	v< )Xf /J D J PJn" t	  	  f) (  $f) E, fX h m u. X      X 	 
  < Ht K Nf QJ& V _J& 5J '. * - 0J 4 6J 9 < >< >t  W) Z ]J., K,?su.]
9V=Z!X.	`	:>	X	     J   K	  J  	 Z  	 =  J    K  J   ?    f  )f /J 5J >J  	xg	 t D J PJ    f) ( % ( $f) E, fX hX m 
.  <	 ut    X   X X H K Nf QJ& V _J '# * - 0J 4 6J 9 <J <t W Z ]J.8K8isu.]
9V=Z	!	V>	Yt f    J    K  J   >   f   	I=     J   K	 ; J  	   	 =  J    K  J   ?   f   	I=     J    Y  J   ?    f   	@ f<Yf )X /J Dc J V _J _ ) /J 5J >J >f # )f / 5J >JYX	 + D J V _J Ds" J PJ q"   f) ( % ( $f '" * - 0J 4 6J 9 < >. t   f)  $f '" * - 0J 4 6J 9 <J t   f )  (  %  !8 $ () E, K% Q Wf Z ]J I< fX h m m.dt E, fX hf m m.t E, fX hf m	 n. X    X  )  H/ K Nf QJ& V _J P&dX  PJ$ * - 0f 4 6J 9 <J	 z X  o  X X     w X   . X 
  <J X X 
dJ  ft 5J H. K Nf QJ W2 Z ]J Wqt Z ]J ].JK?su[.
Y\7=Z		V>	     J   K	  J  	 Y  	 =  J    L  J  ~ @    f   	2XJet f )Xf /J D J V _J 
  < m	     f)  $f '" * - 0J 4 6J 9 < >< >tt E, fX hf	 ut X   X     5J. f) ) PJ W$ Z ]J Ht K Nf QJ:K1K
s1=s
 { yL!v#uKo.[U?t0,>YKEOL~YK
I=
#
-= X < X <  	X  ~K  J	@'ufX t < k MJ	YvL ... of  A 	KXpw q X X   	!<~.   f {
   x        /usr/lib/gcc/x86_64-redhat-linux/8/include /usr/include/bits /usr/include/bits/types /usr/include /usr/include/libxml2/libxml /usr/include/sys /usr/include/netinet /usr/lib64/perl5/CORE  xpath.c    stddef.h   types.h   struct_FILE.h   FILE.h   stdio.h   sys_errlist.h   xmlstring.h   tree.h   dict.h   xmlregexp.h   xmlmemory.h   hash.h   xmlerror.h   __locale_t.h   locale_t.h   types.h   time_t.h   __sigset_t.h   struct_timespec.h   thread-shared-types.h   pthreadtypes.h   globals.h   xpath.h   stdint-uintn.h   setjmp.h   setjmp.h   __sigval_t.h   siginfo_t.h   signal.h   unistd.h   getopt_core.h   sockaddr.h   socket.h   in.h   stat.h   time.h   time.h   errno.h   netdb.h   netdb.h   dirent.h   dirent.h   perl.h   math.h   op.h   cop.h   intrpvar.h   sv.h   gv.h   mg.h   av.h   hv.h   cv.h   pad.h   handy.h   perlio.h   iperlsys.h   perly.h   regexp.h   utf8.h   util.h   pwd.h   grp.h   crypt.h   shadow.h   reentr.h   parser.h   opcode.h   perlvars.h   mg_vtable.h   chvalid.h   parserInternals.h   xpathInternals.h   parser.h   uri.h    ? 	]     K<S	J?w#?;t?rf&J	Y	u	1	F@ <	bf	u W=	i$XX:XhugLJJr	>X	=Yt	Y*J0<JX<	t		u X	-	=X	>J=FK;AIw7v
JY#"!VL6r J	Y	 	J f  .J	.[X<J	v	u  MSJJEt8	ftO( KO	KJyC	YLU	=.Hk 	L	Ys	[
t<	JYt	1[z<XM. W
֞ .fX?=J]AUKAA9#Y[Y;=YJ .)3J<6 tK6$t>	^	KZJqqX.JD\KD$t>	^	KZJqqX.JXXKX - J!?	fdX
X	>[	XY J...dtY
t<c7.TX.X?f=J]JYKJL<.	X	=	[	;	=XJ .u.??K?$t>	^	KZJqqX.J Ilaststatval long long int Perl_av_push old_parser PL_locale_mutex blku_oldsaveix Iorigargc Iorigargv si_errno keeper __pad0 tbl_arena_next _spent_size Iin_utf8_CTYPE_locale hostent ls_prev close_paren PL_no_localize_ref lex_stuff Ilast_swash_hv xpvgv _readdir_ptr Istatcache _freeres_buf Icompiling Idbargs new_perl blku_oldsp /home/.cpanm/work/1711025851.186999/XML-LibXML-2.0210 sub_error_count xpvhv PERL_CONTEXT _asctime_buffer Inumeric_standard signgam prevcomppad Ie_script Perl_newSV_type sv_u _servent_struct PL_sv_placeholder Ipreambleav IDBcontrol xpvio tbl_max si_tid Imy_cxt_size blku_old_tmpsfloor Imain_root xcv_outside blku_type _PerlIO __locales he_valu Iutf8_totitle _spent_struct named_buff PL_freq h_length op_first Idoswitches _netent_size thrhook_proc_t next_branch PL_op_name block_eval s_port __in6_u PL_no_wrongref in_port_t gp_refcnt prev_mark Idef_layerlist saw_infix_sigil Irestartjmpenv save_lastloc Iwarn_locale _spent_buffer Icolors mg_obj je_old_delaymagic multi_end PerlIO_list_s PerlIO_list_t COPHH scream_pos Iargvgv despatch_signals_proc_t getdate_err xio_flags Isharehook old_regmatch_state xcv_xsub nextword Iminus_E Icheckav pad_1 pad_2 Imarkstack PL_bitcount Idump_re_max_len xcv_flags PL_warn_nl Istatusvalue IDBsingle utf8_substr __u6_addr8 min_offset PL_warn_nosemi pmop st_atim sival_int Ilast_in_gv Ireg_curpm share_proc_t Ihash_rand_bits_enabled _call_addr long double op_private lex_formbrack SVt_LAST sbu_dstr Av_CharPtrPtr.c Irunops Ipsig_pend _ctime_buffer Icomppad_name PL_magic_vtables Imarkstack_max sbu_iters si_type _IO_wide_data internal Ireentrant_retint INonL1NonFinalFold __spins __blkcnt_t PTR_TBL_t xhv_max _protoent_size PL_no_symref hent_hek _grent_ptr _getlogin_buffer xivu_eval_seen PL_curinterp __locale_data PL_hash_seed pos_flags Istack_base exec Imax_intro_pending poscache op_pmstashstartu group sbu_strend sp_inact re_scream_pos_data_s cop_stashoff s_addr st_size PL_opargs pthread_key_t Iperldb lastparen si_addr_lsb Iinplace __locale_t _pkey IDBline PL_bincompat_options Isv_arenaroot jump PL_uudmap gp_egv newval padname states xio_bottom_gv _unused2 Iphase yylen subbeg _asctime_size Iblockhooks end_shift __nusers sbu_oldsaveix _pwent_ptr Iosname n_addrtype lex_casemods lex_brackstack numbered_buff_STORE Iefloatsize PADLIST Ipeepp PADNAME Iregex_pad retop program_invocation_name xcv_padlist_u minmod sp_pwdp Iutf8_foldclosures PL_check Isv_yes parenfloor PL_op_private_bitfields branchlike JMPENV Imain_start qr_anoncv Istashpad _arch Perl_newSVrv my_perl Ienvgv Iperlio Ipadname_const Iregmatch_state prev_rex stderr Iisarev Iutf8locale Isignalhook __owner PL_No op_opt c2_utf8 __ino64_t sa_family_t sockaddr_inarp __pthread_list_t subcoffset svu_fp yy_stack_frame Idebstash topword Perl_safesysfree reg_substr_datum si_stack xpadl_max Inomemok __uint8_t firstpos Perl_warn_nocontext Idiehook prev_recurse_locinput any_ptr _readdir64_ptr CLONE_PARAMS Icompcv _vtable_offset lex_repl timespec PL_interp_size_5_18_0 PerlInterpreter xpadnl_max_named PL_check_mutex xpvlenu_pv ILatin1 st_nlink Iminus_F re_eval_str Iscopestack_ix sp_max Iscopestack_max Iminus_a any_pvp Iminus_c Iminus_l Iminus_n Iminus_p Iargvout_stack PL_op_seq Iinitav sin6_family tbl_items Perl_ophook_t cache_mask PL_no_dir_func firstchars Imaxsysfd Ilocalizing lex_shared servent _crypt_struct_buffer PL_op_private_labels rxfree _IO_save_end pw_name sp_lstchg curly _getlogin_size PL_sig_name Iunicode blku_sub qr_package Irestartop __timezone PL_thr_key gofs __mask_was_saved PERL_PHASE_CONSTRUCT Ilastgotoprobe cop_line Isecondgv __locale_struct Isavebegin initialized XPVAV STRLEN exitlistentry op_ppaddr xpadnl_alloc Icheckav_save Idebug_pad _IO_backup_base __jmp_buf_tag lex_flags Iendav blku_oldscopesp Iutf8_idcont Icomppad_name_fill my_op IHasMultiCharFold globhook_t XPVCV PL_sh_path _sys_errlist PL_hash_seed_set regnode stdin Iperl_destruct_level si_cxix mg_virtual padnamelist optopt interpreter PL_warn_reserved PMOP Istashpadix st_uid longfold sp_min _IO_read_end xcv_xsubany PADOFFSET PL_valid_types_RV Istatbuf sbu_rflags xpv_cur xpadn_flags Istderrgv xio_page_len perl_memory_debug_header _IO_save_base Iin_clean_all mark_name op_flags old_regmatch_slab __ino_t reg_substr_data lex_super_state _grent_struct xcv_root_u curlym setting PL_uuemap PL_nan PL_magic_data Icustom_op_descs PL_hexdigit si_prev XPVGV _addr_bnd sp_namp _IO_write_end lex_starts Isavestack avlen si_code Imodcount prev_curlyx Isortstash PL_mod_latin1_uc Istdingv svt_local sp_warn Icustom_ops CHECKPOINT XPVHV any_av _grent_buffer last_uni _IO_buf_base XPVIO sp_expire __uint16_t minlenret Iofsgv XS_unpack_charPtrPtr Idelaymagic_gid xcv_gv_u Icollxfrm_mult tbl_arena_end Isavestack_ix PL_C_locale_obj sockaddr_x25 SVt_PVAV sin6_flowinfo xmg_magic svu_gp any_dptr intuit Ibody_roots si_sigval hek_len Icollation_ix tokenbuf op_nextop line_t mgvtbl PL_valid_types_NVX PL_runops_dbg _readdir64_size Iutf8_xidcont si_cxstack yyerrstatus _hostent_ptr sbu_rx xcv_padlist _IO_marker PL_revision svt_get _Bool svu_iv __prev Isort_RealCmp sbu_rxtainted op_moresib _flags2 xpv_len_u Ipatchlevel _pwent_struct nextval svu_pv any_gv Ihash_rand_bits sbu_orig _IO_lock_t __gid_t _IO_read_ptr Iparser xpadlarr_dbg stack_max1 runops_proc_t any_hv PL_subversion Ipadlist_generation SVt_PVFM __environ xpadnl_max Idefoutgv _lower Istatusvalue_posix _pwent_buffer __ctype_tolower siginfo_t any_iv max_offset Ichopset Irpeepp oldcomppad PL_fold_locale sbu_rxres SVt_PVGV Iincgv si_markoff xpadnl_fill PL_no_usym tv_nsec nexttype sig_slurpy Icurpm_under SVt_PVHV Sighandler_t pthread_getspecific svu_hash in6addr_loopback svu_nv lex_inpat last_lop sockaddr_ax25 PL_isa_DOES ptr_tbl_arena SVt_PVIO SVt_PVIV filtered Ilastfd PL_perlio_fd_refcnt Ieval_start _readdir_struct Ilast_swash_key ls_linestr Perl_check_t _readdir_size __align PADNAMELIST SVt_PVCV PERL_PHASE_START __src xcv_hscxt any_u32 _ctime_size op_pmreplrootu d_ino Isavestack_max Ilocalpatches Isv_root SVt_PVLV p5rx op_next __saved_mask svu_rv svu_rx sockaddr_eon any_op Icurstack SVt_PVMG Ipadix_floor si_status xpadl_arr h_addrtype _strerror_size Idelaymagic_euid bufend Perl_newSVpv lex_inwhat any_pv PL_valid_types_PVX xnv_nv PL_phase_names sin_zero Iopfreehook _protoent_ptr Iunitcheckav svu_uv PerlIOl protoent mg_len Imemory_debug_header PL_no_modify any_sv SVt_IV Itop_env __blksize_t _IO_buf_end short unsigned int _spent_ptr Perl_av_fetch Itmps_stack yy_lexshared offs Iseen_deprecated_macro _IO_codecvt Isv_undef Ipsig_name LEXSHARED clone_params perl_drand48_t Igensym PL_fold Iregmatch_slab op_redoop rsfp _hostent_struct start_tmp xio_fmt_name svt_len cop_hints h_name Ierrors PL_no_mem xpvlenu_len h_aliases _hostent_size PL_Yes op_pmreplstart hent_refcount saved_copy lex_sub_inwhat any_uv Itmps_floor PL_do_undump Istrxfrm_is_behaved xpadl_id Ibasetime Iop_mask Isighandlerp unreferenced xpadnl_refcnt IUpperLatin1 xio_ofp _hostent_buffer cop_seq multi_start op_pmreplroot _shortbuf SVt_NV IDBtrace maxlen pre_prefix op_targ Ibeginav je_ret resume_state PL_dollarzero_mutex Isv_consts pw_dir lex_casestack op_lastop Isub_generation blku_eval float PL_version PL_no_security Iutf8_foldable __count unsigned char si_cxmax multi_open _kill st_rdev LOOP ILB_invlist SVt_PV REENTR Imess_sv Iglobalstash Imin_intro_pending PL_perlio_mutex expect oldloc Icollxfrm_base Iutf8_perl_idcont cx_blk Istatname xnv_u __uid_t sin6_scope_id blku_gimme PL_valid_types_IVX st_ctim recheck_utf8_validity Iutf8_tofold xcv_root ISB_invlist block_format in_addr_t op_sibparent tz_dsttime __data old_namesv xpadn_type_u IAssigned_invlist peep_t PL_my_ctx_mutex Perl_sv_free2 Isv_no minlen __off_t perl_phase Iin_clean_objs d_reclen PL_mmap_page_size PERL_PHASE_DESTRUCT in_pod gp_io Imultideref_pc Iors_sv xpadn_protocv Ievalseq Iunlockhook regexp_engine mg_flags Icurstash gr_passwd Perl_ppaddr_t gr_gid Istashpadmax si_overrun __clock_t SVt_NULL ls_bufptr Ibeginav_save __uint32_t Iorigfilename xmg_hash_index last_lop_op Inumeric_local cop_warnings PL_op_private_bitdef_ix Icop_seqmax op_pmtargetgv PL_veto_cleanup form_lex_state Istatgv Idestroyhook copline st_blocks _sys_siglist sbu_m sbu_s Perl_safesysmalloc save_curlyx Icomppad sub_no_recover lex_dojoin xmg_u dirent64 gp_cvgen PL_utf8skip xcv_file SVt_PVNV itervar_u gp_flags xiou_dirp _servent_buffer PL_op_mutex paren_names Iregistered_mros si_uid pw_passwd lex_allbrackets opval Icurcopdb block_sub pos_magic _old_offset gp_file_hek sv_refcnt sockaddr_in6 __nlink_t tbl_ary xav_alloc si_fd nparens PL_no_func xpadn_refcnt Ieval_root old_eval_root named_buff_iter st_gid Idowarn yychar Ifirstgv mg_moremagic op_pmoffset op_pmstashoff PERL_SI MGVTBL op_static MAGIC Itmps_max optarg PL_latin1_lc sockaddr_ipx Ithreadhook PL_valid_types_IV_set blku_givwhen gr_name op_type Iutf8_perl_idstart sublen blku_oldmarksp xivu_iv Iutf8_swash_ptrs _netent_ptr Ipadname_undef preambling proto_perl _upper cx_u output IDBcv PL_sigfpe_saved trie Ilockhook __ctype_toupper PL_inf _xnvu Perl_keyword_plugin_t xio_lines_left compflags sockaddr_iso pthread_mutex_t Iin_load_module PL_memory_wrap xio_page sigjmp_buf Ilaststype __ctype_b __list h_addr_list Iutf8_charname_continue in_my_stash xpadn_len _IO_write_ptr _strerror_buffer dummy Iunitcheckav_save PL_op_desc si_stime PL_no_aelem XS_pack_charPtrPtr lastcloseparen short int ifmatch Idumpindent Ioldname preambled op_code_list xhv_keys itersave _readdir64_struct _sys_nerr IAboveLatin1 Iutf8_mark _servent_size si_signo IDBgv Ilast_swash_tmps __names sv_any blk_u xcv_start accepted gvval IWB_invlist olddepth Iutf8cache _bounds prev_eval Ipadix defsv_save _netent_buffer xcv_stash YYSTYPE xcv_gv _markers PL_keyword_plugin cop_hints_hash _fileno Icustom_op_names lex_sub_repl stdout xpadn_high re_scream_pos_data hek_hash _ttyname_buffer PL_hints_mutex Iknown_layers _netent_errno Itainting PL_op_private_bitdefs Icurcop Istack_sp __ssize_t any_bool regmatch_info_aux PERL_PHASE_END PL_interp_size Icollation_standard __glibc_reserved lex_defer xmg_stash PL_runops_std Iorigalen sbu_maxiters sockaddr Idebug refcounted_he Icurpad PL_op_private_valid __time_t __daylight st_mtim s_proto sbu_targ d_type __dest logical Iforkprocess lex_brackets xio_top_gv Iutf8_tolower PL_op_sequence blku_oldcop perl_mutex Icurstackinfo Istart_env lex_fakeeof lex_sub_op stashes Istashcache xnv_lines PL_use_safe_putenv _IO_write_base p_aliases _netent_struct in_my next_off xivu_uv sin_port padnl Imodglobal in6addr_any ICmd sockaddr_at regmatch_info_aux_eval xcv_start_u PL_no_helem_sv basesp Igeneration IGCB_invlist Istrtab xpadl_outid xpadn_low block_givwhen regexp_paren_pair __size crypt_data pprivate cv_flags_t cur_top_env xpadn_typestash Iin_utf8_COLLATE_locale Ilast_swash_slen state_u PERL_PHASE_RUN _sigfault op_spare lex_op st_ino pw_gecos __pid_t parsed_sub op_last xio_type yylval GNU C17 8.5.0 20210514 (Red Hat 8.5.0-20) -m64 -mtune=generic -march=x86-64 -g -g -O2 -fexceptions -fstack-protector-strong -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection=full -fwrapv -fno-strict-aliasing -fPIC -fplugin=annobin sockaddr_dl xav_fill hent_val Iorigenviron Idelaymagic_egid gp_av scream_olds mg_ptr _cur_column maxpos sa_family ptr_tbl Inumeric_name lazyiv _sifields SVCOMPARE_t SVt_REGEXP Ipsig_ptr gp_cv xgv_stash netent saved_curcop tv_sec blku_u16 Iprofiledata __sigset_t gp_line Imainstack Icurpm op_pmflags st_blksize xpadn_ourstash program_invocation_short_name PL_sig_num ptr_tbl_ent _hostent_errno op_slabbed Isubline Iargvoutgv Iwatchaddr Idefgv hek_key PerlExitListEntry xio_bottom_name gp_form Ireentrant_buffer hent_next check_ix __off64_t Iunsafe Ihintgv sockaddr_in __jmp_buf IDBsignal Iutf8_charname_begin blku_format PL_ppaddr __dirstream sin_addr IXpv Iregex_padav PL_perlio_debug_fd __builtin_strcpy blku_loop cache_offset wanted pw_uid _timer Istrxfrm_NUL_replacement __lock sig_elems PL_valid_types_NV_set gr_mem Ixsubfilename gp_hv Ipad_reset_pending opterr dfoutgv _sigchld xcv_depth Itaint_warn IArgv pw_shell si_next _syscall PL_no_symref_sv Iexitlist Isubname _IO_read_base PL_warn_uninit any_i32 Ihv_fetch_ent_mh UNOP_AUX_item svt_dup __pthread_mutex_s Inumeric_radix_sv PL_fold_latin1 xcv_outside_seq PL_magic_vtable_names PL_no_sock_func Isplitstr xcv_hek svt_free sockaddr_ns long long unsigned int si_addr dirent Ibody_arenas checkstr _grent_size PL_csighandlerp SVt_INVLIST Isortcop PL_warn_uninit_sv sin_family Isignals sbu_type si_pid mg_private dupe je_buf lazysv Itoptarget Istrxfrm_max_cp Ierrgv Perl_sv_2pv_flags svt_clear PERL_PHASE_CHECK nexttoke PL_no_myglob Itmps_ix Isig_pending substrs any_svp intflags destroyable_proc_t Ifdpid xpadlarr_alloc ival any_dxptr n_net op_pmtargetoff Icollation_name Iefloatbuf _pwent_size oldval any_long xiou_any Iexit_flags c1_utf8 Iglobhook sin6_port PL_block_type d_off xio_top_name Iptr_table Icolorset __jmpbuf Ifilemode __dev_t __kind Iexitlistlen sockaddr_un op_folded Idelaymagic PL_charclass Imarkstack_ptr block pw_gid prev_yes_state s_name _protoent_struct op_comp gp_sv svu_array __pthread_internal_list whilem IInBitmap mother_re __val n_aliases _sigsys extflags xio_fmt_gv xpadn_gen cop_file Icurstname cx_subst __u6_addr16 Isv_count svt_set Idefstash Itainted tz_minuteswest Ibodytarget oldoldbufptr xav_max xiv_u _protoent_buffer st_mode savearray _xivu _chain leave_op Iutf8_xidstart re_eval_start perl_debug_pad Istack_max svtype st_dev __u6_addr32 je_prev Iclocktick __syscall_slong_t IXPosix_ptrs IDBsub spwd __next Iutf8_idstart je_mustcatch numbered_buff_LENGTH yy_parser block_loop op_savefree Iscopestack Iformtarget pad_offset PL_perlio_fd_refcnt_size s_aliases lastcp Iconstpadix multi_close stat herelines Imy_cxt_list IPosix_ptrs _freeres_list xivu_namehek __pad5 _ttyname_size sin6_addr Iwatchok S_SvREFCNT_dec _IO_FILE PL_my_cxt_index Perl_av_len __tzname p_proto svt_copy xnv_bm_tail sival_ptr XS_release_charPtrPtr mark_loc si_utime xpvav Isrand_called optind __mode_t sp_flag perl_key Ireplgv sa_data Ibreakable_sub_gen rsfp_filters Iin_eval suboffset __sigval_t _servent_ptr lex_re_reparsing Iutf8_toupper linestart sig_optelems PERL_PHASE_INIT Icv_has_eval mg_type xpvcv numbered_buff_FETCH Irandom_state Iscopestack_name si_band xpadn_pv Icomppad_name_floor Idelaymagic_uid Iwarnhook Ilast_swash_klen _xmgu _sigpoll xio_dirpu cur_text __elision blku_oldpm Imain_cv _xmlNode __assert_fail xpviv xmlGcMemSetup XML_ATTRIBUTE_IDREF xmlNsType xmlRealloc xmlMallocAtomicLoc intSubset xmlMalloc XML_HTML_DOCUMENT_NODE XML_ENTITY_DECL XML_DOCUMENT_NODE XML_ATTRIBUTE_NOTATION Perl___notused Perl_xs_boot_epilog XML_TEXT_NODE XS_XML__LibXML__Devel_refcnt_inc XS_XML__LibXML__Devel_node_to_perl XML_ENTITY_REF_NODE XML_ATTRIBUTE_NODE PmmSvNodeExt xmlReallocFunc nsDef Perl_newXS_deffile extSubset xmlChar tmpXSoff XS_XML__LibXML__Devel_refcnt XML_XINCLUDE_START Perl_xs_handshake xmlStrdupFunc ExternalID xmlElementType XPVIV XML_ELEMENT_DECL TARGi_iv XML_PI_NODE XS_XML__LibXML__Devel_node_from_perl _xmlExpNode XS_XML__LibXML__Devel_refcnt_dec debug_memory XS_XML__LibXML__Devel_fix_owner S_POPMARK XML_XINCLUDE_END psvi XML_CDATA_SECTION_NODE XML_ATTRIBUTE_ID xmlMallocAtomic PmmFixOwner parseFlags XML_DOCUMENT_FRAG_NODE RETVAL XML_ATTRIBUTE_DECL elements properties PmmNodeToSv xmlExpNodePtr PmmREFCNT_dec XML_ATTRIBUTE_ENUMERATION __PRETTY_FUNCTION__ _xmlNs notations getenv xmlMallocFunc _xmlDict forbiddenExp xmlMemUsed _xmlAttr Perl_sv_newmortal atype XML_DOCUMENT_TYPE_NODE charset XML_NAMESPACE_DECL oldNs xmlNodePtr XML_DTD_NODE xmlAttributeType XML_ATTRIBUTE_IDREFS xmlMemStrdup xmlFreeFunc xmlMemMallocAtomic SystemID XS_XML__LibXML__Devel_mem_used children XML_ATTRIBUTE_ENTITY XML_ATTRIBUTE_NMTOKENS XML_ENTITY_NODE Perl_sv_setiv_mg _xmlDoc extra Perl_croak_xs_usage _xmlDtd _ProxyNode emptyExp XML_DOCB_DOCUMENT_NODE boot_XML__LibXML__Devel xmlFree XML_ATTRIBUTE_ENTITIES pentities Perl_sv_2iv_flags Devel.c Perl_sv_2mortal XML_ATTRIBUTE_CDATA XML_NOTATION_NODE XML_COMMENT_NODE href XML_ELEMENT_NODE XML_ATTRIBUTE_NMTOKEN xmlNodeSetBase PmmSvContext found xmlTextReaderConstName encstring nameTab spaceMax XS_XML__LibXML__Element_new xmlParserInputState XS_XML__LibXML__Reader_isValid disableSAX XML_CHAR_ENCODING_UTF8 xmlOutputCloseCallback XML_CHAR_ENCODING_EBCDIC node_seq XS_XML__LibXML_INIT_THREAD_SUPPORT varLookupFunc varLookup XS_XML__LibXML__Reader_lineNumber LibXML_get_recover sysID XS_XML__LibXML__parse_sax_string xmlXPathRegisterNs xmlSplitQName2 hasPErefs _xmlOutputBuffer RETVALSV vstate xpath_res XS_XML__LibXML__Document_compression xmlCtxtUseOptions XML_PARSER_PROLOG xmlNewText XS_XML__LibXML__Document_removeInternalSubset xmlParseDocument begin_line xmlAddSibling xmlElementContentOccur XML_ELEMENT_CONTENT_MULT extSubSystem stringval is_shared XS_XML__LibXML__Reader_byteConsumed XML_TEXTREADER_MODE_ERROR xmlNewDocFragment xmlNodeGetBase xmlDocGetRootElement XS_XML__LibXML_HAVE_STRUCT_ERRORS Perl_croak XML_PARSE_COMPACT _xmlParserCtxt serror LibXML_generic_variable_lookup memset nsURI XS_XML__LibXML__LibError_str1 XS_XML__LibXML__LibError_str2 XS_XML__LibXML__LibError_str3 Perl_sv_isobject only_nonblank XS_XML__LibXML__Node__attributes xmlNewDoc freeElemsNr setDocumentLocatorSAXFunc xmlXPathNewNodeSet compressed XS_XML__LibXML__parse_sax_fh XS_XML__LibXML__XPathContext__findnodes want_vtbl_hintselem XS_XML__LibXML__Document_createRawElement startElementNsSAX2Func LibXML_test_node_name XML_FROM_MODULE lastError XML_PARSER_SUBST_ENTITIES position writecallback debugNode Perl_get_hv array_result XML_FROM_CHECK Perl_sv_isa XS_XML__LibXML__Node_lookupNamespaceURI xmlSetNsProp XML_BUFFER_ALLOC_IMMUTABLE XS_XML__LibXML__Document_createProcessingInstruction XS_XML__LibXML__Element_hasAttribute XS_XML__LibXML_load_catalog XML_FROM_PARSER XML_FROM_MEMORY xmlCopyNode fallback_amg LibXML_old_ext_ent_loader xmlRelaxNGParserCtxtPtr sizeentcopy XS_XML__LibXML__XPathExpression_new xmlHashCreate XS_XML__LibXML__Element_setNamespaceDeclURI rshift_ass_amg xmlStrEqual xmlEnumerationPtr valuePop xmlFreeNode XS_XML__LibXML__XPathContext__find xmlStructuredErrorFunc XS_XML__LibXML__Reader__preservePattern nodeNr __va_list_tag reference xpvnv nb_axis newNode XS_XML__LibXML__XPathContext_DESTROY xmlRegisterInputCallbacks XS_XML__LibXML__Namespace_nodeType XS_XML__LibXML__RelaxNG_DESTROY rngctxt getPublicId XS_XML__LibXML__Node_ownerNode PmmContextREFCNT_dec results_pv xmlTextReaderReadState XML_FROM_OUTPUT XML_PARSE_NOXINCNODE XS_XML__LibXML__Reader_readAttributeValue warning startElementSAXFunc PROXY_NODE_REGISTRY_MUTEX floatval xmlIsBlankNode internalSubsetSAXFunc __ch XS_XML__LibXML__Element__getNamespaceDeclURI XML_READER_TYPE_CDATA checked XS_XML__LibXML__Node__find XS_XML__LibXML__Reader__close xmlTextReaderLocatorPtr XML_PARSER_IGNORE xmlTextReaderRelaxNGSetSchema xmlC14NDocDumpMemory LibXML_NodeToSv XML_PARSER_MISC domXPathCompFind nsPrefix LibXML_perldata_to_LibXMLdata zLevel _xmlEntity nodeSv2C max_amg_code freeElems xmlTextReaderQuoteChar LibXML_validity_warning_ctx XS_XML__LibXML__Node_insertBefore XML_PARSE_READER nodepath Perl_stack_grow Perl_call_method xmlNewReference newPrefix Perl_sv_derived_from XML_FROM_DATATYPE xmlSetProp XS_XML__LibXML__Document_createAttributeNS filehandler xmlRegexpPtr XML_ERR_FATAL ns_map HTML_PARSE_NODEFDTD xmlUTF8Strlen __xmlParserVersion XML_PARSE_NONET xmlNewDtd XML_BUFFER_ALLOC_EXACT xmlUTF8Strsub xmlCharEncodingInputFunc XS_XML__LibXML_END xmlXPathCastNodeToNumber _xmlSAXHandler ignorableWhitespaceSAXFunc refNode XS_XML__LibXML__LibError_domain xmlSchemaValidateOneElement xmlIsCharGroup domXPathCompSelect XS_XML__LibXML__Reader_isNamespaceDecl XS_XML__LibXML__Element_getAttributeNode XS_XML__LibXML__CDATASection_new xmlRelaxNGParse xmlSchemaValidityErrorFunc to_gv_amg _xmlXPathAxis nsMax smart_amg xmlExternalEntityLoader XML_READER_TYPE_DOCUMENT_TYPE XS_XML__LibXML__parse_sax_file xmlEncodeEntitiesReentrant _xmlCatalog sge_amg end_line HTML_PARSE_RECOVER XS_XML__LibXML__push hasInternalSubset XS_XML__LibXML__Node_setRawName boot_XML__LibXML want_vtbl_nkeys internalFlag sin_amg spaceNr XML_FROM_HTML XS_XML__LibXML__Attr_isId XML_PARSER_EOF xmlCharEncOutFunc errNo XS_XML__LibXML__externalEntityLoader XML_TEXTREADER_MODE_INTERACTIVE nsWellFormed cos_amg external XS_XML__LibXML__Reader__getParserProp xmlReaderForFile valueTab LibXML_load_external_entity element nodeMax Perl_get_sv XS_XML__LibXML__Reader_nextSibling XS_XML__LibXML__Namespace_declaredPrefix pushTab vstateTab XS_XML__LibXML__XPathContext_new html xmlDocDumpFormatMemory XML_READER_TYPE_NONE xmlXIncludeProcessFlags pfdr filename_sv XS_XML__LibXML__Reader_xmlLang __stack_chk_fail XML_READER_TYPE_ATTRIBUTE XML_FROM_C14N XML_ENTITY_NOT_BEING_CHECKED parseMode XS_XML__LibXML__Node_getNamespaces externalSubsetSAXFunc xmlBufPtr htmlReadFile domAttrSerializeContent xmlStrlen XS_XML__LibXML__Attr_new olddtd XS_XML__LibXML__Element_setAttributeNode domXPathSelect Perl_sv_catpv XS_XML__LibXML__Namespace__isEqual xmlGetNsProp nameMax nodelen xmlTextReaderCurrentDoc xsd_doc xmlSchemaValidCtxtPtr xmlGetLineNo threads XS_XML__LibXML__Node_isSameNode pvalue XML_PARSE_NOERROR domGetNodeValue pow_ass_amg DocProxyNodePtr xmlTextReaderMoveToAttributeNo mult_ass_amg xmlTextReaderMoveToAttributeNs xmlXPathVariableLookupFunc XML_PARSE_XINCLUDE xmlXPathFreeNodeSet after newns processingInstructionSAXFunc xmlCharEncodingOutputFunc _DocProxyNode nNode XS_XML__LibXML__RelaxNG_parse_location XS_XML__LibXML_LIBXML_RUNTIME_VERSION xmlDtdPtr XML_FROM_HTTP expand want_vtbl_ovrld XS_XML__LibXML__Document_createEntityReference XS_XML__LibXML__Node_unbindNode XS_XML__LibXML__Reader_localName XS_XML__LibXML__XPathContext_getVarLookupFunc xmlStrcat XS_XML__LibXML__XPathContext_getContextNode xmlTextReaderAttributeCount XPATH_XSLT_TREE want_vtbl_debugvar xmlSetGenericErrorFunc XS_XML__LibXML__Text_substringData XML_CHAR_ENCODING_UCS4_3412 XS_XML__LibXML__Reader_lookupNamespace concat_ass_amg xmlReplaceNode XML_ELEMENT_CONTENT_OPT well_formed record_info xsub_tmp_sv XS_XML__LibXML__Node__findnodes XS_XML__LibXML__Document_createDTD Perl_hv_common_key_len xmlTextReaderStandalone XS_XML__LibXML__RegExp__compile XML_PARSER_COMMENT LibXML_struct_error_callback xmlBufferAllocationScheme perl_doc shortRange iter_amg attributeDecl dtd_sv xmlFindCharEncodingHandler XML_ELEMENT_CONTENT_SEQ xmlGetNodePath pname LibXML_will_die_ctx comments Perl_newSVpvn XS_XML__LibXML__XPathContext_setContextSize catalogs XPATH_LOCATIONSET XML_PARSE_NOWARNING __xmlIndentTreeOutput XML_INTERNAL_GENERAL_ENTITY XS_XML__LibXML__Pattern_matchesNode col_cur xmlParserMaxDepth XS_XML__LibXML__Text_new hashkey retval XS_XML__LibXML__Reader_copyCurrentNode XS_XML__LibXML__Reader_nextPatternMatch ncmp_amg XML_PARSER_SEVERITY_VALIDITY_WARNING domReplaceChild oelem nomethod_amg XS_XML__LibXML__Document_setCompression nodeInfoTab add_amg xmlParserInputPtr __fmt attr_node xmlCopyDoc neg_amg Perl_mg_set startDocumentSAXFunc xmlXPathAxisFunc domInsertAfter XS_XML__LibXML__RelaxNG_parse_buffer want_vtbl_vec xattr xmlDocDumpMemory domAppendChild svprefix xmlTextReaderPreservePattern to_av_amg XML_CHAR_ENCODING_UCS4LE xmlXPathNodeSetAdd XS_XML__LibXML__Reader__setRelaxNG _xmlParserNodeInfo Perl_sv_setnv_mg userData xmlTextReaderPtr XML_PARSE_NOENT contentIO xmlStrchr XS_XML__LibXML__Reader_moveToElement abs_amg XML_PARSE_SAX XS_XML__LibXML__Text_setData concat_amg nodelist checkIndex xmlTextReaderGetParserColumnNumber xmlParserSeverities XS_XML__LibXML__RegExp_isDeterministic XS_XML__LibXML__Reader_nodeType xmlCatalogPtr xmlXPathCastNodeToString xmlSAXHandlerPtr PmmProxyNodeRegistrySize xmlEntityType Perl_savetmps HTML_PARSE_COMPACT mark_stack_entry domGetAttrNode XML_PARSE_BIG_LINES XS_XML__LibXML__Reader_nextElement nbChars ns_wildcard xmlXPathFreeObject xmlNewChild XS_XML__LibXML__Node_line_number written XS_XML__LibXML__Document_validate encoder PmmCloneNode nbLongRange XML_TEXTREADER_MODE_READING read_length xmlEntityPtr res_len startDocument XS_XML__LibXML_LIBXML_VERSION XML_PARSE_NODICT XS_XML__LibXML__Reader_finish XS_XML__LibXML__Attr__setNamespace strerror sbxor_amg snprintf xmlLoadCatalog notationDeclSAXFunc finishDtd xmlBufferCreate LibXML_struct_error_handler notationDecl getParameterEntitySAXFunc xmlRegexpIsDeterminist xmlTextReaderIsDefault LibXML.c xmlXPathTypePtr xmlTextReaderIsNamespaceDecl xmlFreeProp xmlTextReaderGetErrorHandler Perl_sv_vcatpvf attr_value xmlStringTextNoenc LibXML_output_write_handler xmlStrcmp LibXML_configure_xpathcontext xmlFreeParserCtxt XML_CHAR_ENCODING_NONE xmlParserCtxtPtr unparsedEntityDecl XS_XML__LibXML__Node_parentNode hasExternalSubsetSAXFunc xmlRegexpCompile Perl_sv_2nv_flags sbor_ass_amg xmlInputReadCallback xmlXPathNAN domInsertBefore XS_XML__LibXML__Element_removeAttributeNS xmlSchemaParserCtxtPtr pxpath sne_amg XML_FROM_REGEXP xmlOutputBufferCreateIO S_croak_memory_wrap XS_XML__LibXML__Reader_xmlVersion _xmlXPathType XML_INTERNAL_PARAMETER_ENTITY xmlTextReaderClose valueMax xmlStringComment xmlTextReaderSetParserProp XML_FROM_XINCLUDE vstateMax encoding_sv xmlTextReaderConstXmlLang XS_XML__LibXML__Element_appendText XML_READER_TYPE_ELEMENT XML_ELEMENT_CONTENT_PLUS read_results_iv nodesetval xmlRelaxNGFree want_vtbl_defelem XS_XML__LibXML__Document_documentElement libErr xmlAddPrevSibling xmlValidateDocument xmlXPathNewContext Perl_call_pv Perl_sv_vcatpvfn want_vtbl_packelem xmlSaveFormatFile max_types XS_XML__LibXML__Document_toStringHTML funcHash XS_XML__LibXML__Reader__newForFile XS_XML__LibXML__Dtd_parse_string HTML_PARSE_PEDANTIC XS_XML__LibXML__Node_previousNonBlankSibling xmlCreatePushParserCtxt XS_XML__LibXML__Dtd_new xmlRelaxNGNewMemParserCtxt perl_function XML_EXTERNAL_GENERAL_UNPARSED_ENTITY XS_XML__LibXML__parse_fh XML_READER_TYPE_COMMENT oNode entityDeclSAXFunc PmmFixOwnerNode xmlNewCDataBlock XS_XML__LibXML__RegExp_DESTROY XS_XML__LibXML__parse_html_string xmlNewDocText nb_variables_unused XML_BUFFER_ALLOC_HYBRID seq_amg child_ctxt div_ass_amg xmlXPathEval XS_XML__LibXML__LibError_message XML_READER_TYPE_PROCESSING_INSTRUCTION Perl_call_sv xmlFreeTextReader xmlValidateDtd _xmlPattern htmlDocDumpMemory XPVNV XML_PARSE_DTDATTR not_amg xmlRegFreeRegexp svEncoding xmlSetExternalEntityLoader xmlNewDocNode _xmlValidCtxt rng_doc int_results_len xmlParseDTD XS_XML__LibXML__Schema_DESTROY XML_PARSE_DTDLOAD XS_XML__LibXML__Namespace_DESTROY XS_XML__LibXML__Reader__newForDOM XS_XML__LibXML__Document_setURI xmlParserMode retnode retCode boolval XPATH_RANGE nbentities XS_XML__LibXML__Element_addNewChild XS_XML__LibXML_HAVE_THREAD_SUPPORT characters Perl_newSViv XML_ERR_ERROR PmmContextSv xmlXPathPINF max_funcs_unused XML_CHAR_ENCODING_2022_JP xmlDictPtr XML_PARSER_SYSTEM_LITERAL XS_XML__LibXML__Node_lastChild XS_XML__LibXML__Node_previousSibling fatalError want_vtbl_arylen str_xmlns XML_FROM_SCHEMATRONV want_vtbl_backref real_obj _xmlRelaxNGValidCtxt exclusive xmlTextReaderIsEmptyElement HTML_PARSE_NOBLANKS lshift_ass_amg XML_TEXTREADER_MODE_CLOSED getColumnNumber LibXML_validity_error_ctx sband_amg domAddNodeToList XS_XML__LibXML__Node__toStringC14N extdtd xmlSAXLocatorPtr XML_READER_TYPE_SIGNIFICANT_WHITESPACE LibXML_XPathContext_pool XS_XML__LibXML__Reader_moveToAttribute XML_PARSER_PI XML_PARSER_SEVERITY_VALIDITY_ERROR XS_XML__LibXML__Attr_toString want_vtbl_collxfrm _xmlSchema XML_PARSE_SAX1 parser_options _xmlAutomata endDocumentSAXFunc namespacePrefix XML_PARSER_CONTENT xmlIsID XS_XML__LibXML__Dtd_publicId XS_XML__LibXML__Element_setAttributeNodeNS xmlNodeSetPtr PmmNewNode nodeInfoMax xmlGetNsList Perl_croak_nocontext nb_types XML_PARSE_RECOVER XML_FROM_BUFFER XS_XML__LibXML__HashTable_new _xmlRelaxNG xmlSchemaValidateDoc cdataBlockSAXFunc repeat_ass_amg vctxt xmlIsDigitGroup Perl_newSVnv _xmlTextReader want_vtbl_arylen_p xmlSchemaPtr EXTERNAL_ENTITY_LOADER_FUNC XS_XML__LibXML__Document_setVersion XS_XML__LibXML__Node_replaceChild _xmlSchemaParserCtxt XML_CHAR_ENCODING_SHIFT_JIS XS_XML__LibXML__Node_getNamespace _xmlParserNodeInfoSeq pnode XML_FROM_DTD XS_XML__LibXML__Document_externalSubset Perl_push_scope xmlXPathFunction xmlTextReaderNextSibling strkey xmlTextReaderReadOuterXml XS_XML__LibXML__parse_html_fh xmlInputMatchCallback xmlStrndup resolveEntitySAXFunc atan2_amg t_indent_var xmlNodeDump rawconsumed xmlXPathFuncLookupFunc sgt_amg to_hv_amg XML_PARSER_VALIDATE XML_CHAR_ENCODING_UTF16BE xmlPatternMatch XML_CHAR_ENCODING_8859_4 XS_XML__LibXML__Reader_getAttributeHash XML_CHAR_ENCODING_8859_5 XML_CHAR_ENCODING_8859_6 XML_CHAR_ENCODING_8859_7 XML_CHAR_ENCODING_8859_8 XML_CHAR_ENCODING_8859_9 XPATH_POINT xmlIsCombiningGroup compiled xmlXPathContextPtr iconv_t nsprefix want_vtbl_sigelem xmlTextReaderDepth xmlCheckVersion PSaxGetHandler LibXML_get_reader_error_data bool__amg Perl_block_gimme XS_XML__LibXML__end_sax_push domParseChar XS_XML__LibXML__Node_lookupNamespacePrefix xmlRelaxNGFreeParserCtxt Perl_newSVsv want_vtbl_substr XS_XML__LibXML__Node_ownerDocument XML_CHAR_ENCODING_ASCII XS_XML__LibXML__Text_replaceData unparsedEntityDeclSAXFunc PmmRegistryREFCNT_dec XS_XML__LibXML__Pattern_DESTROY xmlErrorPtr to_bool real_doc xmlXPathFreeContext __len Perl_gv_add_by_type xmlSchemaParse _xmlChRangeGroup XS_XML__LibXML__Node_nodeType XS_XML__LibXML__RelaxNG_validate XML_PARSE_OLD10 domRemoveChild xmlCopyNamespace _xmlBuf XS_XML__LibXML__Node_replaceNode _xmlXPathObject dictNames XS_XML__LibXML__Document_is_valid XS_XML__LibXML__Reader__newForIO dec_amg int_amg _xmlEnumeration XS_XML__LibXML__Text_appendData xmlAttrPtr xmlTextReaderLookupNamespace user2 xmlRelaxNGValidCtxtPtr htmlReadIO xmlSearchNs XS_XML__LibXML__Pattern__compilePattern XML_EXTERNAL_GENERAL_PARSED_ENTITY _xmlCharEncodingHandler xmlFreeDtd XML_TEXTREADER_MODE_INITIAL comment xmlParserInputBufferPtr htmlDocPtr nodename xmlSearchNsByHref XS_XML__LibXML__Element__setNamespace attallocs LibXML_report_error_ctx XS_XML__LibXML__Reader_skipSiblings XS_XML__LibXML__Document_createTextNode endElementNsSAX2Func XML_CHAR_ENCODING_8859_1 XML_CHAR_ENCODING_8859_2 XML_CHAR_ENCODING_8859_3 docdict want_vtbl_isaelem XS_XML__LibXML__Document_toFH XS_XML__LibXML__Document_createRawElementNS xmlAutomataPtr inputTab freeAttrs XML_PARSE_IGNORE_ENC XPathContextDataPtr subtr_ass_amg XML_READER_TYPE_DOCUMENT_FRAGMENT XS_XML__LibXML__start_push _xmlChLRange XS_XML__LibXML__parse_xml_chunk XML_FROM_XSLT _xmlXPathCompExpr XS_XML__LibXML__Node__childNodes XML_FROM_I18N xmlHashTablePtr XS_XML__LibXML__Text_insertData xmlTextReaderReadInnerXml xmlXPathRegisterVariableLookup parserOptions extID nb_funcs_unused want_vtbl_dbline Perl_sv_setpv xmlTextReaderGetAttributeNs XML_PARSE_HUGE xmlSchemaSetValidErrors XS_XML__LibXML__XPathContext_getContextPosition want_vtbl_envelem xmlRelaxNGNewDocParserCtxt XS_XML__LibXML__Comment_new xmlParseChunk copy_amg domReadWellBalancedString varHash xmlRegisterDefaultInputCallbacks XML_READER_TYPE_DOCUMENT modulo_amg resolveEntity XS_XML__LibXML__Element_getAttributeNodeNS XML_FROM_FTP XML_CHAR_ENCODING_UTF16LE LibXML_reparent_removed_node maximum ignorableWhitespace contextSize perl_xpath XML_INTERNAL_PREDEFINED_ENTITY log_amg attributeDeclSAXFunc XS_XML__LibXML__Reader_readState XS_XML__LibXML__Reader_baseURI LibXML_set_reader_preserve_flag elname XML_PARSE_NOCDATA externalID XS_XML__LibXML__Document_importNode XML_BUFFER_ALLOC_BOUNDED xmlTextReaderSetSchema inSubset instate xmlTextReaderMoveToFirstAttribute PmmNewFragment proxy sbxor_ass_amg nbShortRange XS_XML__LibXML__Namespace_new getEntitySAXFunc _xmlSAXLocator keepBlanks readcallback rv_end string_amg restore attsSpecial xmlCharEncoding XS_XML__LibXML__Node_normalize new_URI xmlBufferAdd XS_XML__LibXML__Reader_matchesPattern XML_ELEMENT_CONTENT_ONCE domSetNodeValue XML_PARSER_START XS_XML__LibXML__Reader_nextSiblingElement subtr_amg origin XS_XML__LibXML__InputCallback_lib_init_callbacks XML_ELEMENT_CONTENT_PCDATA Perl_markstack_grow longRange XS_XML__LibXML__Document_adoptNode setDocumentLocator want_vtbl_checkcall XS_XML__LibXML__Namespace_declaredURI output_sv _xmlNodeSet XS_XML__LibXML_import_GDOME fp_offset XS_XML__LibXML__Reader_getAttributeNo _xmlXPathContext XS_XML__LibXML__Reader_getAttributeNs XS_XML__LibXML__Element_hasAttributeNS xmlRegexpExec ctnt XML_PARSE_NSCLEAN xmlNewNs PmmSAXInitContext PmmFreeHashTable xmlTextReaderHasValue nodeInfoNr XS_XML__LibXML__Document_standalone xmlParseCharEncoding PmmNodeTypeName iconv_out xmlXPathOrderDocElems xmlNodeSetName xmlTextReaderConstValue xmlValidityErrorFunc _xmlError xmlHasNsProp commentSAXFunc xmlTextReaderRead XS_XML__LibXML__Document_createElementNS XS_XML__LibXML__Namespace_unique_key xmlXPathNsLookup iconv_in guard xmlXPathAxisPtr xmlReaderForFd Perl_sv_vsetpvfn proximityPosition XML_ELEMENT_CONTENT_ELEMENT XS_XML__LibXML_LIBXML_DOTTED_VERSION XS_XML__LibXML__Reader_read xmlTextReaderPreserve xmlGetProp xmlTextReaderGetAttribute sqrt_amg htmlReadDoc end_pos xmlXPathConvertFunc XS_XML__LibXML__Reader_prefix xmlCleanupParser XS_XML__LibXML__Attr_serializeContent input_id XS_XML__LibXML__Document_URI wellFormed input_buf xmlBufferContent elementDeclSAXFunc xmlFreeNs XML_FROM_TREE XML_READER_TYPE_XML_DECLARATION sband_ass_amg maxatts xmlIsIdeographicGroup XS_XML__LibXML__Document__toString ns_uri inc_prefix_list scmp_amg newAttr xmlNewDocComment xmlParserInputDeallocate XS_XML__LibXML__Node_hasChildNodes domXPathFind rshift_amg XS_XML__LibXML__XPathContext__free_node_pool xmlCharStrndup XS_XML__LibXML__XPathContext_setContextPosition nodeC2Sv XS_XML__LibXML__Node_setBaseURI XS_XML__LibXML__Node_string_value XML_ERR_NONE XS_XML__LibXML__Node_removeChild XS_XML__LibXML__Schema_parse_buffer XS_XML__LibXML__Reader_name XML_FROM_IO want_vtbl_pack _xmlHashTable XS_XML__LibXML_export_GDOME tmpNsNr xmlSaveFile xmlRelaxNGValidateDoc attsDefault XML_CHAR_ENCODING_ERROR XS_XML__LibXML__Common_encodeToUTF8 xmlSchemaNewValidCtxt XML_PARSER_LOADDTD closecallback endElement XML_PARSER_CDATA_SECTION xmlXPathNewBoolean XS_XML__LibXML__Document_cloneNode XS_XML__LibXML__Element__setAttributeNS want_vtbl_regexp int1 int2 Perl_free_tmps XML_PARSER_DTD XS_XML__LibXML__Node_firstChild linenumbers xmlTextReaderExpand LibXML_restore_context endElementSAXFunc tmpNsList lookup_func funcLookupData XS_XML__LibXML__Document_createElement token xmlTextReaderHasAttributes xmlGenericErrorFunc XS_XML__LibXML__Document_createComment XPATH_BOOLEAN attr_name xmlTextReaderConstXmlVersion XS_XML__LibXML__XPathContext_registerFunctionNS _xmlElementContent LibXML_error_handler_ctx pctxt want_vtbl_utf8 LibXML_input_match xmlTextReaderSchemaValidate xmlTextReaderMoveToNextAttribute varData XS_XML__LibXML__LibError_context_and_column Perl_newSV perl_dispatch xmlCharEncInFunc pow_amg want_vtbl_hints myDoc xmlInputOpenCallback div_amg XS_XML__LibXML__Reader_depth _xmlValidState extSubURI want_vtbl_regdata startElement recovery add_ass_amg XS_XML__LibXML__Reader_isDefault varLookupData pedantic XML_BUFFER_ALLOC_IO XPATH_UNDEFINED XML_PARSER_ENTITY_VALUE nsNr XS_XML__LibXML__Element__getAttributeNS XS_XML__LibXML__Node_nextSibling XS_XML__LibXML__Element_setNamespaceDeclPrefix inputMax XS_XML__LibXML__Reader__newForString Perl_mg_get XS_XML__LibXML__Reader_document xmlTextReaderConstEncoding XML_PARSER_PUBLIC_LITERAL XS_XML__LibXML__Document_setExternalSubset Perl_sv_2bool_flags xmlReaderForIO xmlDocSetRootElement LibXML_input_open HTML_PARSE_NOWARNING xmlInputCloseCallback XS_XML__LibXML__Reader__setXSD xmlGetIntSubset xmlXPathParserContextPtr LibXML_configure_namespaces want_vtbl_lvref xmlHashLookup XML_ELEMENT_CONTENT_OR elementDecl xmlTextReaderGetParserProp XML_PARSER_END_TAG XS_XML__LibXML__Node_toString xmlCharEncodingHandlerPtr xmlXPathNewCString xmlSchemaSetParserErrors XS_XML__LibXML__RegExp_matches xmlCharInRange xmlValidityWarningFunc sle_amg _xmlChSRange XS_XML__LibXML__Node_baseURI XS_XML__LibXML__LibError_code errorSAXFunc fatalErrorSAXFunc xmlRelaxNGPtr XS_XML__LibXML__Node_nodeName etype XPATH_NODESET XS_XML__LibXML__parse_file xmlGetDocCompressMode xmlOutputBufferPtr xmlPatternPtr xmlElementContentPtr XS_XML__LibXML__processXIncludes prop xmlSaveFormatFileTo XML_TEXTREADER_MODE_EOF XML_PARSE_UNKNOWN referenceSAXFunc xmlXPathCompile str_xml_ns name_wildcard want_vtbl_taint xmlNsPtr XS_XML__LibXML__Node_DESTROY xmlDocPtr XS_XML__LibXML_HAVE_SCHEMAS LibXML_set_int_subset saved_error hasExternalSubset xmlNewComment xmlTextReaderGetAttributeNo getSystemId want_vtbl_uvar xmlGetCharEncodingHandler LibXML_input_close xmlNewIOInputStream directory read_results Perl_newRV_noinc ancestor xmlNewPI xmlNewProp domNodeNormalize XS_XML__LibXML__Reader_readOuterXml XML_PARSER_SEVERITY_WARNING functionURI nexte xmlInitParser XS_XML__LibXML__Reader_moveToAttributeNo __errno_location nodemem XS_XML__LibXML__Reader_moveToAttributeNs sax2 XS_XML__LibXML__Node_to_number XS_XML__LibXML__Schema_validate XML_PARSE_PUSH_DOM xmlEntityRecursionGuard mult_amg XML_FROM_URI XS_XML__LibXML__Document_createDocument xmlXPathFreeCompExpr sv_gdome XML_READER_TYPE_NOTATION _xmlParserInputBuffer XML_PARSER_DEFAULTATTRS xmlStringText xmlKeepBlanksDefault LibXML_save_context XML_CHAR_ENCODING_EUC_JP pchar tmp_node XS_XML__LibXML__Reader__DESTROY endDocument _xmlRelaxNGParserCtxt Perl_sv_catsv_flags XML_FROM_SCHEMASP want_vtbl_env XML_PARSE_NOBASEFIX XS_XML__LibXML__Reader_quoteChar xmlTextReaderByteConsumed PmmNodeToGdomeSv XS_XML__LibXML__Document_createDocumentFragment domRemoveNsRefs XS_XML__LibXML__XPathContext_setContextNode XS_XML__LibXML__Attr_parentElement all_ns strcontent ref_node XML_PARSER_ATTRIBUTE_VALUE reader XS_XML__LibXML__parse_sax_xml_chunk XS_XML__LibXML__Reader_hasAttributes hasInternalSubsetSAXFunc want_vtbl_regdatum XS_XML__LibXML__Node_addChild freeAttrsNr xmlCreateFileParserCtxt XS_XML__LibXML__Node_hasAttributes xmlAutomataStatePtr ftest_amg _XPathContextData xmlTextReaderConstLocalName XS_XML__LibXML__dump_registry XS_XML__LibXML__Node_addSibling xmlUnlinkNode xmlTextConcat XML_READER_TYPE_WHITESPACE XS_XML__LibXML__Document_setInternalSubset valueFrame fragment xmlXPathNewFloat LibXML_input_read XS_XML__LibXML__Reader_attributeCount xmlPatterncompile XS_XML__LibXML__InputCallback_lib_cleanup_callbacks LibXML_init_parser XS_XML__LibXML__Element_removeAttributeNode xmlNodeAddContent xmlCleanupInputCallbacks _xmlRegexp XS_XML__LibXML__Document_internalSubset xmlErrorLevel XS_XML__LibXML__Reader__setParserProp XML_FROM_NAMESPACE nargs pregexp XML_FROM_SCHEMASV sbor_amg domXPathCompFindCtxt XS_XML__LibXML__LibError_level xmlElementContentType XS_XML__LibXML__LibError_file HTML_PARSE_IGNORE_ENC CLASS xmlFreeParserInputBuffer scompl_amg XS_XML__LibXML_DISABLE_THREAD_SUPPORT XS_XML__LibXML__Element_removeAttribute xmlSetStructuredErrorFunc tbuff __gnuc_va_list _xmlAutomataState XS_XML__LibXML__Document_indexElements str_xml xmlGetNoNsProp _xmlSchemaValidCtxt ioref XS_XML__LibXML__Text_deleteData XS_XML__LibXML__Reader_readInnerXml Perl_newSVpvf_nocontext XS_XML__LibXML__Dtd_systemId XML_CHAR_ENCODING_UCS2 HTML_PARSE_NOIMPLIED xmlSetDocCompressMode LibXML_close_perl XML_ERR_WARNING svuri HTML_PARSE_NONET endElementNs XS_XML__LibXML__Reader__newForFd systemID xmlSchemaNewMemParserCtxt PmmDumpRegistry XS_XML__LibXML__Node_unique_key xmlTextReaderCurrentNode XPATH_STRING XML_BUFFER_ALLOC_DOUBLEIT pxpath_context Perl_sv_setsv_flags XS_XML__LibXML_HAVE_READER XML_READER_TYPE_ENTITY_REFERENCE xmlReaderForDoc XS_XML__LibXML__leaked_nodes sizeentities __builtin_va_list self XS_XML__LibXML__Node_prefix valueNr XS_XML__LibXML__Reader_encoding LibXML_read_perl xmlSchemaFreeParserCtxt XS_XML__LibXML__Node_firstNonBlankChild xmlXPathRegisterFuncNS XS_XML__LibXML__parse_string xmlTextReaderConstPrefix conv startElementNs XS_XML__LibXML__end_push xmlSetNs XML_PARSE_PUSH_SAX xmlIsExtenderGroup LibXML_output_close_handler XS_XML__LibXML__Reader_isEmptyElement XS_XML__LibXML__DocumentFragment_new XS_XML__LibXML__default_catalog XML_FROM_VALID realstring XS_XML__LibXML__ParserContext_DESTROY XML_PARSE_PEDANTIC inputNr XS_XML__LibXML__Document__setDocumentElement new_string spaceTab xmlInitializeCatalog want_vtbl_pos XS_XML__LibXML__RelaxNG_parse_document XS_XML__LibXML__Element__getAttribute svURL xmlBufferCreateStatic want_vtbl_mglob system xmlReconciliateNs xmlCharEncCloseFunc intSubName docfrag XS_XML__LibXML__Document_getElementById XS_XML__LibXML__XPathContext_getContextSize XS_XML__LibXML__XPathContext_getVarLookupData XML_READER_TYPE_ENTITY xmlBufferLength XS_XML__LibXML__Reader_preserveNode xmlGetID XML_FROM_XPOINTER XS_XML__LibXML__Reader__setRelaxNGFile xmlOutputWriteCallback domXPathFindCtxt xmlFreeDoc XS_XML__LibXML__Node_nodeValue XS_XML__LibXML__Node__getChildrenByTagNameNS inc_amg xmlRelaxNGFreeValidCtxt XML_READER_TYPE_END_ELEMENT LibXML_flat_handler xmlAddChild XS_XML__LibXML__CLONE perl_result xmlXPathCastToString isStandaloneSAXFunc XML_CHAR_ENCODING_UCS4_2143 catal to_sv_amg xmlParseBalancedChunkMemory LibXML_get_reader_preserve_flag xmlTextReaderMoveToAttribute nameNr ppattern replaceEntities XML_READER_TYPE_TEXT to_cv_amg xmlTextReaderRelaxNGValidate user __xmlSaveNoEmptyTags XS_XML__LibXML__Node_removeChildNodes magic_vtable_max xmlCreateMemoryParserCtxt XS_XML__LibXML__Reader_getAttribute XS_XML__LibXML__Reader__setXSDFile xmlNewNode lshift_amg LibXML_generic_extension_function XS_XML__LibXML__XPathContext_registerVarLookupFunc XML_READER_TYPE_END_ENTITY _xmlXPathParserContext repeat_amg XML_PARSE_NOBLANKS xmlSchemaFreeValidCtxt XML_PARSER_SEVERITY_ERROR XS_XML__LibXML__Reader_moveToNextAttribute XML_PARSER_ENTITY_DECL XS_XML__LibXML__Document_createAttribute modulo_ass_amg XS_XML__LibXML__Document_createCDATASection XS_XML__LibXML__HashTable_DESTROY __builtin_strncpy xmlSetTreeDoc xmlCreateIntSubset XS_XML__LibXML__XPathContext_registerNs numer_amg xmlRelaxNGNewValidCtxt XS_XML__LibXML__Document_createExternalSubset XML_FROM_RELAXNGP XML_FROM_RELAXNGV XML_FROM_CATALOG XML_PARSE_DTDVALID XS_XML__LibXML__XPathExpression_DESTROY XS_XML__LibXML__Reader_moveToFirstAttribute xmlBufferPtr XS_XML__LibXML__Reader_next XS_XML__LibXML__Node_localname LibXML_cleanup_parser XPATH_NUMBER charactersSAXFunc xmlRegisterDefaultOutputCallbacks isStandalone xmlStrdup XS_XML__LibXML__Document_setStandalone psvi_status XS_XML__LibXML__Node_insertAfter domIsParent xmlRelaxNGNewParserCtxt processingInstruction _xmlBuffer with_sax xmlNewDocProp getParameterEntity xmlSchemaValidityWarningFunc xmlGetExternalEntityLoader xmlTextReaderNext lookup_data xmlIsBaseCharGroup perlstring domName XS_XML__LibXML__Node_nextNonBlankSibling loadsubset xmlBufferFree xmlAllocParserInputBuffer wantarray warningSAXFunc XML_ENTITY_BEING_CHECKED XS_XML__LibXML__Node_appendChild deep xmlXPathCompExprPtr Perl_sv_setref_pv XS_XML__LibXML__Document_removeExternalSubset xmlXPathRegisterFunc newURI XML_CHAR_ENCODING_UCS4BE XS_XML__LibXML__Document_toFile XS_XML__LibXML__Reader_value domImportNode xmlIsPubidChar_tab XML_PARSE_DOM ocur XPATH_USERS XS_XML__LibXML__XPathContext_lookupNs want_vtbl_sv xmlSchemaNewParserCtxt overflow_arg_area xmlXPathNINF reg_save_area XS_XML__LibXML__Document_setEncoding XML_FROM_WRITER _xmlParserInput xmlFreePattern svchunk XS_XML__LibXML__Reader_columnNumber domClearPSVI xmlReaderWalker XS_XML__LibXML__Document_encoding useDomEncoding XS_XML__LibXML__Node_namespaceURI HTML_PARSE_NOERROR PmmSAXInitialize XS_XML__LibXML__LibError_num1 XS_XML__LibXML__LibError_num2 XS_XML__LibXML__Node_setNodeName XS_XML__LibXML__LibError_line encstr xmlTextReaderMoveToElement xmlTextReaderConstBaseUri index2 TARGn_nv child __builtin___snprintf_chk nsTab xmlTextReaderNodeType max_axis old_dtd XS_XML__LibXML__Reader__nodePath xmlNewInputFromFile XS_XML__LibXML__Common_decodeFromUTF8 strname XML_EXTERNAL_PARAMETER_ENTITY nodeInfo xmlTextReaderErrorFunc sv_libxml XS_XML__LibXML__Element__setAttribute want_vtbl_isa XS_XML__LibXML__Document_version gp_offset XS_XML__LibXML__Reader_standalone valuePush XML_PARSER_EPILOG Pname entityDecl here xmlTextReaderReadAttributeValue XML_FROM_NONE strlen regexp_amg XS_XML__LibXML__Node_cloneNode XS_XML__LibXML__parse_html_file vstateNr xmlBufferCCat XML_PARSE_OLDSAX xmlTextReaderGetParserLineNumber S_SvREFCNT_inc PmmCloneProxyNodes PmmSAXCloseContext getLineNumber nsHash xmlIOParseDTD XML_FROM_XPATH xmlTextReaderConstNamespaceUri XS_XML__LibXML__Schema_parse_location nodeTab getEntity XS_XML__LibXML__Reader_hasValue max_variables_unused xmlTextReaderIsValid funcLookupFunc xmlXPathObjectType cdataBlock XS_XML__LibXML__Document_createInternalSubset oldTagFlag XS_XML__LibXML__Element_appendTextChild xmlParserInputBufferPush Perl_pop_scope begin_pos progressive XML_PARSER_START_TAG slt_amg XS_XML__LibXML__Node_nodePath pattern_type ns_prefix xmlXPathObjectPtr xmlSchemaFree XS_XML__LibXML__Reader_namespaceURI return_node domNodeNormalizeList move newChild helper domGetElementsByTagName xmlFreeNsList qname fragment_next xmlElementPtr domClearPSVIInList XML_ATTRIBUTE_REQUIRED _domAddNsChain oldNode xmlCopyDtd XML_ATTRIBUTE_NONE domNewNs xmlAttributePtr _xmlElement domSetAttributeNode domGetElementsByTagNameNS xmlAttributeDefault domTestDocument cnode XML_ATTRIBUTE_FIXED xmlXPathNodeSetCreate __xmlGenericError XML_ATTRIBUTE_IMPLIED domUnlinkNode tree XML_ELEMENT_TYPE_MIXED XML_ELEMENT_TYPE_ANY XML_ELEMENT_TYPE_UNDEFINED xmlSetListDoc followup XML_ELEMENT_TYPE_EMPTY _xmlAttribute domRemoveNsDef XML_ELEMENT_TYPE_ELEMENT contModel defaultValue xmlNodeSetContent xmlFreeNodeList xmlAttrSerializeTxtContent nexth domTestHierarchy _domReconcileNs reconcileNS domReplaceNode xmlDocCopyNode dom.c __xmlGenericErrorContext leader refChild repair domAddNsDef xmlElementTypeVal _domReconcileNsAttr PmmRegistryName HASH_NAME_SIZE PmmRegistryHashCopier PmmRegisterProxyNode xmlHashAddEntry iterator refnode LocalProxyNodePtr PmmEncodeString scalar PmmRegistryLookup real_dom PmmFreeNode PmmSvOwner reg_copy libnode oldParent dfProxy t_pv PmmNewLocalProxyNode PmmRegistryREFCNT_inc xmlHashSize PmmFastEncodeString _LocalProxyNode payload xmlCopyProp nodetofix PmmRegistryHashDeallocator decoded PmmSetSvOwner PmmRegistryDumpHashScanner xmlHashScan PmmUnregisterProxyNode xmlHashRemoveEntry PmmFixOwnerList recursive perlnode PmmNewContext xmlHashFree perl-libxml-mm.c sv_reg xmlHashCopy PmmFastDecodeString PmmProxyNodeRegistryPtr _C2Sv_len __builtin_memcpy CBufferCharacters CBufferLength PmmGetNsMapping PSaxCDATABlock Perl_sv_setpvn SystemIdHash CBufferNew LocalNameHash perl-libxml-sax.c PmmGenAttributeHashSV DataHash PmmGenPISV xmlSplitQName S_perl_hash_oaathu_siphash_1_3 oname ValueHash newstring PmmNarrowNsStack PmmSAXVector PmmUpdateLocator _C2Sv PmmSaxWarning fprintf svMessage S_perl_hash_siphash_1_3 PSaxCharactersFlush charbuf PSaxStartDocument PmmGenCharDataSV PmmGenNsName PSaxCharacters PmmExtendNsStack PmmAddNamespace PmmGenLocator __builtin_fwrite PSaxExternalSubset PSaxSetDocumentLocator CBufferPurge PSaxEndDocument PSaxProcessingInstruction PSaxStartElement VersionHash last_err PSaxCharactersDispatch PmmGenElementSV newchunk EncodingHash CBufferAppend NsURIHash Perl_newRV head PmmSaxFatalError abort PSaxEndPrefix __stream xmlStrncat CBufferChunkNew TargetHash copied xmlCtxtGetLastError empty param PSaxStartPrefix attrhash CBufferFree xmlStrncmp urilen PSaxComment AttributesHash namelen atnameHash CBuffer PmmSaxError keyname PSaxEndElement PmmSAXVectorPtr ns_stack_root PrefixHash CBufferChunk PublicIdHash newNS PmmGenDTDSV joinchars ns_stack tdoc XPTR_SUB_RESOURCE_ERROR xmlXPathCompiledEvalToBoolean XPATH_UNDEF_VARIABLE_ERROR XPATH_INVALID_CHAR_ERROR xmlXPathNodeSetMerge XPATH_EXPR_ERROR xmlParseFile XPATH_START_LITERAL_ERROR xpath.c newobj XPTR_SYNTAX_ERROR XPATH_INVALID_TYPE XPATH_INVALID_OPERAND perlDocumentFunction XPTR_RESOURCE_ERROR XPATH_INVALID_CTXT XPATH_EXPRESSION_OK xmlBuildURI XPATH_INVALID_PREDICATE_ERROR domXPathSelectCtxt XPATH_MEMORY_ERROR XPATH_UNKNOWN_FUNC_ERROR XPATH_VARIABLE_REF_ERROR XPATH_INVALID_ARITY XPATH_UNCLOSED_ERROR xmlXPathObjectCopy xmlXPathStringFunction XPATH_NUMBER_ERROR XPATH_ENCODING_ERROR XPATH_INVALID_CTXT_POSITION XPATH_FORBID_VARIABLE_ERROR xmlXPathCompiledEval XPATH_UNDEF_PREFIX_ERROR froot obj2 XPATH_STACK_ERROR XPATH_INVALID_CTXT_SIZE XPATH_UNFINISHED_LITERAL_ERROR                      U             V             U             U                                  U             V             S                                     U             ^             U             ^                                   T             V             T                                      P             ]             ~             U#             ]                          A      E       PE      X       Sz      ~       P~             S             S                           (       V(      T       vxT             V             V                                       P             ]             ~             U#             ]                                 S             S                                 P             P                                   Q             s             Q                            6        U6              U                   ,       U       \m             \                          t               ^      $       P$      U       ^m      ~       P~             ^                          f       t        Pt       U       ]m             ]             P             ]                      J       b        Pb       U       m                                     t       <       S<      @       T@      A       sA      U       Sm             S                                 T                                                      `      s       Us             U                    `      w       Tw             T                                   P             V             T                                    U       }       U                                      "        T"               ]       
       T
      2       ]2      O       TO      ^       ]^      }       T                       (       N        V               ^2      O       ^^      }       ^                            >       C        ^C       `        ~`              \
      O       \O      ^       ~^      }       \                    C       G        ~  $ &3$p"G       K        ~  $ &3$p "                 C       G        v ~  $ &3$p8                                    ]2      O       ]^      }       ]                                     V2      O       V^      }       V                                   ]2      O       ]^      }       ]                        
       1                  -       >        P                                 U             U                                               T             ^      b       Tb      |       ^|             T             ^             T             ^             T                                    \             ^             ^             ^                                               V             v              ]       =       v=      q       vb             v             ]             v             v                                     v  $ &3$p"             v  $ &3$p "             P             P                              | v  $ &3$p8                    8             ]?             ]                                 ^?      b       ^                                ]?      b       ]                                ^?      b       ^                            :       ]             ]             ]                            %       V             V             V                           :       ]             ]             ]                       ?       1                               P                                 U      x       U                                       T             ]      J       TJ      Y       ]Y      x       T                                    Vv             ^)      J       ^Y      x       ^                                         ^             ~      5       \5      v       ~      )       ~J      Y       ~                                 ~  $ &3$p"             ~  $ &3$p "                              v ~  $ &3$p8                    5      f       \      
       \                   5      f       \      
       \                      f             \)      J       \Y      x       \                      \             V)      J       VY      x       V                     v             \)      J       \Y      x       \                              1                               P                                 U             U                                       T      a       ]a             T             ]             T                             >       V      -       ^             ^             ^                            .      3       ^3      Q       ~Q             \             ~X             ~             ~                    3      7       ~  $ &3$p"7      ;       ~  $ &3$p "                 3      7       v ~  $ &3$p8                                 \X             \                                \X             \                            Q       \             \             \                            >       V             V             V                           Q       \             \             \                 1      X       1                        .       P                                 U      }       U                                     T      O       ]O      R       TR      }       ]                               V                                           ^             ~             \             V      Q       ~R      n       Vn      }       ~                                 ~  $ &3$p"             ~  $ &3$p "                              v ~  $ &3$p8                  (      +       P                 (      +       P                 1      R       0                               P                          	       U	      
       U                                	       T	      c	       ]c	      W
       TW
      f
       ]f
      
       T                       	      >	       V	      	       \:
      W
       \f
      
       \                          .	      3	       ^3	      Q	       ~Q	      	       \
      :
       \W
      f
       ~                    3	      7	       ~  $ &3$p"7	      ;	       ~  $ &3$p "                 3	      7	       v ~  $ &3$p8                    c	      g	       p} "g	      o	       p } "                        u	      y	       Py	      
       ^
      W
       ^f
      
       ^                     	      
       ^:
      W
       ^f
      
       ^                      	      	       V:
      W
       Vf
      
       V                     	      
       ^:
      W
       ^f
      
       ^                 	      
       1                  	      .	       P                    
      
       U
      9       U                        
      
       T
             ]      *       T*      9       ]                  
      
       V                            
      
       ^
      
       ~
             \             ~      *       \*      9       ~                      
      
       ~  $ &3$p"
      
       ~  $ &3$p "
      
       P                        
      P       V             V              V*      9       V                      K             _              _      *       _                     K             _              _      *       _                        _      c       Pc      t       Vt      x       Px             V                              1                  
      
       P                    @      Q       UQ      R       U                     \     1\      U1\     E      U                                                                                                                                                                                                                                                               \     5\      T5\     a      Ta     a      P7a     <a      P^a     ca      Pa     a      Pa     a      Pa     a      Pc     c      Pc     c      Pd     d      P?d     Dd      PNe     Se      Pue     ze      Pe     e      Pe     e      Pf     f      PKf     Pf      Prf     wf      Pf     f      Png     sg      Pg     g      Pg     g      Ph     "h      PDh     Ih      Pkh     ph      Ph     h      Ph     h      Ph     h      Pi     i      P.i     3i      PUi     Zi      P|i     i      Pi     i      Pj     	j      PHj     Mj      Poj     tj      Pj     j      Pj     j      Pj     j      Pk     k      P2k     7k      PYk     ^k      Pk     k      Pk     k      Pk     k      Pk     k      Pl     !l      PCl     Hl      Pl     l      Pl     l      Pl     l      Pm     m      P]m     bm      Pm     m      Pm     m      Pm     m      Pn     n      P=n     Bn      Pn     n      Pn     n      Pn     n      Po     o      P:o     ?o      P,p     1p      PSp     Xp      Pzp     p      Pq     q      P<q     Aq      Pq     q      Pq     q      P%r     *r      PLr     Qr      Psr     xr      Pr     r      Ps     s      P?s     Ds      Pfs     ks      Ps     s      Pu     u      Pv     $v      PFv     Kv      Pmv     rv      Pv     v      Pv     v      P9w     >w      P`w     ew      Pw     w      Px     x      Px     x      Px     x      Py     y      P9y     >y      P`y     ey      Py     y      Py     y      Pfz     kz      Pz     z      Pz     z      Pz     z      P{     {      P){     .{      PP{     U{      Pw{     |{      P{     {      P{     {      P{     {      P|     |      Pt|     y|      P|     |      P|     |      P|     |      P}     }      P7}     <}      Pb     g      P           P           P܈     ߈      P߈     ;      V                      _\     c\      Pc\     @      \@     D      T                  a      a      P                  <a     Ga      P                  ca     na      P                  a     a      P                  a     a      P                  a      b      P                  c     c      P                  c     c      P                  d     (d      P                  Dd     Od      P                  Se     ^e      P                  ze     e      P                  e     e      P                  e     e      P                  f     f      P                  Pf     [f      P                  wf     f      P                  f     f      P                  sg     ~g      P                  g     g      P                  g     h      P                  "h     -h      P                  Ih     Th      P                  ph     {h      P                  h     h      P                  h     h      P                  h     h      P                  i     i      P                  3i     >i      P                  Zi     ei      P                  i     i      P                  i     i      P                  	j     j      P                  Mj     Xj      P                  tj     j      P                  j     j      P                  j     j      P                  j     j      P                  k     k      P                  7k     Bk      P                  ^k     ik      P                  k     k      P                  k     k      P                  k     k      P                  k     l      P                  !l     ,l      P                  Hl     Sl      P                  l     l      P                  l     l      P                  l     m      P                  m     )m      P                  bm     mm      P                  m     m      P                  m     m      P                  m     m      P                  n     &n      P                  Bn     Mn      P                  n     n      P                  n     n      P                  n     n      P                  o     #o      P                  ?o     Jo      P                  1p     <p      P                  Xp     cp      P                  p     p      P                  q     %q      P                  Aq     Lq      P                  q     q      P                  q     q      P                  *r     5r      P                  Qr     \r      P                  xr     r      P                  r     s      P                  s     (s      P                  Ds     Os      P                  ks     vs      P                  s     s      P                  u     v      P                  $v     /v      P                  Kv     Vv      P                  rv     }v      P                  v     v      P                  v     v      P                  >w     Iw      P                  ew     pw      P                  w     w      P                  x     x      P                  x     x      P                  x     x      P                  y     "y      P                  >y     Iy      P                  ey     py      P                  y     y      P                  y     y      P                  kz     vz      P                  z     z      P                  z     z      P                  z     z      P                  {     {      P                  .{     9{      P                  U{     `{      P                  |{     {      P                  {     {      P                  {     {      P                  {     {      P                  |     #|      P                  y|     |      P                  |     |      P                  |     |      P                  |     |      P                  }      }      P                  <}     G}      P                  g     r      P                             P                             P                  ߈           P                               U     ~      U                                         T           ^     \      T\     v      ^v     E      TE     T      ^T     ~      T                       A      \                              .     3      ]3     U      }U           V           V/     @      VE     T      }T     ~      V                        3     :      }  $ &3$p":     >      }  $ &3$p ">     \      PE     S      P                 3     :      | }  $ &3$p8                               ]      _     \      _v           _     @      _T     ~      _                               5      ]           ]2     W      ]           ]T     b      ]                                      ]      0]     a      Pa           _     \      0v     >      0L     }      0}           P           ]     @      0T     ~      0                                        5      05     g      ]           02     \      0v           ]           T     /      0/     @      ]T     b      0b     ~      ]                                      F      0F     V      P     \      0v           P           w      /      0/     ;      w T     b      0p     ~      w                                       0     \      0v           0                @      0T     ~      0                                        0     \      0v           0           P           _     @      0T     ~      0                                          0     \      0v           0           w      @      0T     b      0b     p      w p     ~      0                                         P           ^     \      ^v           ^           ^/     @      ^T     ~      ^                                       P           ^           P           ]           P           ^                 *     /      1                              1@     E      1                       .      P                               U           U                                         T     1      ^1           T           ^     p      Tp           ^           T                             \                                         ]           }           V     F      VW     p      Vp           }           V                                   }  $ &3$p"           }  $ &3$p "           Pp     ~      P                            | }  $ &3$p8                            K           ^           ^           ^
     -      ^W     k      ^           ^                        c           _           _     A      _
     W      _                               c           0           ]           0           ]A           ]
     W      0W     p      ]           ]                               c           0     ~      _           0           0     
      _
     p      0           _           0                                 c           0           P           0     A      0A     W      PW           _
     W      0W     p      _           _                                 l           0           0           0           P           _           Q     
      
     p      0           0                             l           0           0           0           P     
      ]
     p      0           0                             l           0           0           0     
      ^
     p      0           ^           0                                     P           w            w      p      w            w                         N     \      P\     u      ]u     y      Py     ~      ]                 R     W      1                              1           1                             P                               U            U                                   T     ^      ]^            T             ]                       8      \                                (     -      ^-     L      ~L           V           ~     O       VO             ~             V             ~                    -     1      ~  $ &3$p"1     5      ~  $ &3$p "                 -     1      | ~  $ &3$p8                  g      k       U                            1                 l             0                       (      P                               U     v      U                                     T     6      ^6     Y      TY     h      ^h     v      T                              \                                       V           v           ]/     Y      ]Y     h      vh     v      ]                                   v  $ &3$p"           v  $ &3$p "           PY     g      P                            | v  $ &3$p8                      )           \/     G      \h     v      \                        6     :      P:           ^/     =      ^h     v      ^                          ]     t      Pt           V/     A      PA     Y      Vh     v      V                                 P           _h     v      _                               P           \                      /      1                             P                                 U      "      U                                     T      .!      ].!     z"      Tz"     "      ]                        !      \                                             ^      !      ~!     !      V!     !      ~!     "      V"     ^"      ~_"     z"      Vz"     "      ~                          !      ~  $ &3$p"!     !      ~  $ &3$p "                       !      | ~  $ &3$p8                  7"     ;"      U                 !     !      1                 <"     _"      0                               P                    "     "      U"     %      U                            "     "      T"     $#      ]$#     #      T#     #      ]#     $      T$     %      ]                     "     "      \$     $      ^$     $      ^                           "     "      ^"     "      ~"     #      V#     S$      V$     $      V$     %      ~                    "     "      ~  $ &3$p""     "      ~  $ &3$p "                 "     "      | ~  $ &3$p8                  k$     o$      U                    u$     $      V$     $      V                    #     ~#      \#     $      \                #     #      1                   $     $      V$     $      V                 #     #      1                  "     "      P                    =     =      U=     @      U                            =     =      T=     u>      ^u>     
?      T
?     2?      ^2?     @      T@     @      ^                     =     >      ]?     @      ]m@     @      ]                           =     >      V>     $>      v$>     >      \
?     ?      \$@     m@      \@     @      v                        >     	>      v  $ &3$p"	>     >      v  $ &3$p ">     .>      P@     @      P                 >     	>      } v  $ &3$p8                    ?     ?      UE@     J@      U                        C>     G>      PG>     >      ]
?     ?      ]$@     m@      ]                    ?     $@      \m@     @      \                     h>     >      V2?     T@      Vm@     @      V                >     >      1                 h@     m@      1                   ?     $@      \m@     @      \                 >     
?      1                  =     =      P                               U     6      U                                         T     Y       ^Y             T             ^            T     (      ^(     6      T                             \                                       V           v            ]            ]     (      v(     6      ]                                   v  $ &3$p"           v  $ &3$p "           P     '      P                            | v  $ &3$p8                                    P             V            V(     6      V                          $      ;       P;             \            P           \(     6      \                        Y      `       P`             ^             R(     6      ^                                 P             \                              1                             P                    @     @      U@     iB      U                        @     @      T@     A      ]A     ZB      TZB     iB      ]                  @     @      \                                @     @      ^@     @      ~@     ~A      V~A     A      ~A     A      VA     >B      ~?B     ZB      VZB     iB      ~                    @     @      ~  $ &3$p"@     @      ~  $ &3$p "                 @     @      | ~  $ &3$p8                  B     B      U                 qA     A      1                 B     ?B      0                  @     @      P                    U     U      UU     X      U                              U     U      TU     gV      ^gV     V      TV     !W      ^!W     X      TX     X      ^X     X      T                     U     !V      \HX     mX      ]X     X      ]                                   V     V      ]V     5V      }5V     V      VV     W      VW     W      }W     HX      }vX     X      VX     X      }X     X      }X     X      }                        V     V      }  $ &3$p"V     V      }  $ &3$p "V     9V      PX     X      P                 V     V      | }  $ &3$p8                    W     *X      VX     X      V                    X     $X      PX     X      P                    *X     vX      VX     X      V                      ZV     V      \!W     X      \X     X      \                V     V      1                   HX     vX      VX     X      V                 V     V      1                  U     V      P                    P     o      Uo     Q      U                          P     s      Ts           ]           T     '      ]'     Q      T                  z           S                                       \     ̷      R̷     8      a                &      R&     Q                                   {      Sa           S           S     '      S                         Q      ]a           ]                        o     {      0Ź           ]           0غ           ]                      ,     8                 '     Q                              <     @      P@     `      _           _'     Q      _                                   <     {      0{           \           0           P           \           0           \           0'     C      0C     Q      \                  L     R      P                                 P           u~غ           u~                                  0     (      S(     1      s4           S           s           0                              f     {      P{     8                 P                      P           '     Q                                       P     4      SC     Q      S                                 Sغ           S'     C      S                               P     4      \                 8     a      1                             P                    X     Y      UY     ]      U                          X     Y      TY     hY      ^hY     P]      TP]     _]      ^_]     ]      T                                    Y     VY      VVY     Y      vxZ     hZ      vxzZ     [      vx[     [      V[     \      vpQ\     ]      vx]     (]      V-]     K]      vxP]     _]      V_]     ]      vx                             ,Y     1Y      \1Y     VY      |VY     pY      ]pY     Y      \Z     ?Z      \zZ     Z      \P]     _]      |                    1Y     8Y      |  $ &3$p"8Y     <Y      |  $ &3$p "                 1Y     8Y      v |  $ &3$p8                      TZ     [Z      PZ     Z      PQ\     i\      P                        Z     Z      Pi\     \      P\     \      q8\     \      P                                                Z     Z      \Z     [      p[     #[      P'[     >[      Q>[     J[      PJ[     R[      Qt[     t[      Pt[     w[      Uz[     [      U[     [      u p "1[     [      u p "[     [      u p "1\     \      P\     ]      U-]     5]      \5]     ;]      P;]     A]      q_]     b]      Pb]     x]      X                        Z     a[      X\     \      X-]     K]      X_]     b]      X                          R[     a[      Qw[     [      Q\     \      U\     ]      Q5]     K]      U                         [     [      0[     '[      1'[     -[      2z[     [      0[     [      p[     [      P\     ]      0_]     x]      1                    z[     .\      \\     -]      \                     z[     [      W[     [      T\     ]      W                          VZ     [Z      QZ     Z      QZ     Z      p Q\     [\      Q[\     i\      p                           VY     Y      0Z     [Z      0zZ     Z      0Z     Z      QQ\     i\      0i\     \      Q                Y     Y      1                 [Z     zZ      0                  Y     ,Y      P                    g     g      Ug     i      U                            g     g      Tg     h      ]h     h      Th     h      ]h     i      Ti     i      ]                     g     g      \=i     Ei      Vji     i      V                           g     g      ^g     g      ~g     xh      Vh     h      VNi     ji      Vi     i      ~                    g     g      ~  $ &3$p"g     g      ~  $ &3$p "                 g     g      | ~  $ &3$p8                  i     i      P                  i     =i      V                    h     dh      \h     i      \                xh     xh      1                 xh     h      1                  g     g      P                    i     i      Ui     k      U                            i     i      Ti     .j      ].j     j      Tj     j      ]j     k      Tk     k      ]                     i     i      \]k     ek      Vk     k      V                           i     i      ^i     i      ~i     j      Vj     k      Vnk     k      Vk     k      ~                    i     i      ~  $ &3$p"i     i      ~  $ &3$p "                 i     i      | ~  $ &3$p8                  4k     >k      P                  :k     ]k      V                    !j     j      \j     k      \                j     j      1                 j     j      1                  i     i      P                    k     k      Uk     m      U                            k     k      Tk     Nl      ]Nl     l      Tl     m      ]m     m      Tm     m      ]                     k     l      \}m     m      Vm     m      V                           k     k      ^k     l      ~l     l      Vl     ?m      Vm     m      Vm     m      ~                    k     l      ~  $ &3$p"l     l      ~  $ &3$p "                 k     l      | ~  $ &3$p8                  Tm     ^m      P                  Zm     }m      V                    Al     l      \m     m      \                l     l      1                 l     l      1                  k     k      P                    m     m      Um     o      U                            m     m      Tm     nn      ]nn     n      Tn     !o      ]!o     o      To     o      ]                     n     (n      \o     o      Vo     o      V                           n     n      ^n     <n      ~<n     n      Vn     _o      Vo     o      Vo     o      ~                    n     !n      ~  $ &3$p"!n     %n      ~  $ &3$p "                 n     !n      | ~  $ &3$p8                  to     ~o      P                  zo     o      V                    an     n      \!o     o      \                n     n      1                 n     n      1                  n     n      P                     p     p      Up     r      U                             p     p      Tp     p      ]p     q      Tq     Aq      ]Aq     r      Tr     r      ]                     "p     Hp      \q     q      Vq     r      V                           8p     =p      ^=p     \p      ~\p     p      Vq     q      Vq     q      Vr     r      ~                    =p     Ap      ~  $ &3$p"Ap     Ep      ~  $ &3$p "                 =p     Ap      | ~  $ &3$p8                  q     q      P                  q     q      V                    p     p      \Aq     r      \                p     p      1                 p     q      1                  'p     8p      P                    %     .%      U.%     N'      U                            %     2%      T2%     %      ]%     9&      T9&     a&      ]a&     ?'      T?'     N'      ]                     8%     ^%      \&     &      ^"'     ?'      ^                           N%     S%      ^S%     r%      ~r%     &      V9&     &      V'     "'      V?'     N'      ~                    S%     W%      ~  $ &3$p"W%     [%      ~  $ &3$p "                 S%     W%      | ~  $ &3$p8                  &     &      P                    &     '      V"'     ?'      V                    %     %      \a&     ?'      \                &     &      1                   &     '      V"'     ?'      V                 &     9&      1                  =%     N%      P                    P'     n'      Un'     )      U                            P'     r'      Tr'     '      ]'     y(      Ty(     (      ](     )      T)     )      ]                     x'     '      \
)     <)      ^b)     )      ^                           '     '      ^'     '      ~'     R(      Vy(     (      VE)     b)      V)     )      ~                    '     '      ~  $ &3$p"'     '      ~  $ &3$p "                 '     '      | ~  $ &3$p8                   '     '      } #()     )      } #(                  (     (      P                    (     E)      Vb)     )      V                    '     >(      \(     )      \                R(     R(      1                   
)     E)      Vb)     )      V                 R(     y(      1                  }'     '      P                    )     )      U)     +      U                            )     )      T)     $*      ]$*     *      T*     *      ]*     +      T+     +      ]                     )     )      \J+     |+      ^+     +      ^                           )     )      ^)     )      ~)     *      V*     +      V+     +      V+     +      ~                    )     )      ~  $ &3$p")     )      ~  $ &3$p "                 )     )      | ~  $ &3$p8                   )     )      } #(+     +      } #(                  4+     >+      P                    :+     +      V+     +      V                    *     ~*      \*     +      \                *     *      1                   J+     +      V+     +      V                 *     *      1                  )     )      P                    +     +      U+     .      U                            +     +      T+     d,      ]d,     ,      T,     !-      ]!-     -      T-     .      ]                     +     ,      \-     -      ^-     -      ^                           ,     ,      ^,     2,      ~2,     ,      V,     _-      V-     -      V-     .      ~                    ,     ,      ~  $ &3$p",     ,      ~  $ &3$p "                 ,     ,      | ~  $ &3$p8                  t-     ~-      P                    z-     -      V-     -      V                    W,     ,      \!-     -      \                ,     ,      1                   -     -      V-     -      V                 ,     ,      1                  +     ,      P                    .     ..      U..     N0      U                            .     2.      T2.     .      ].     9/      T9/     a/      ]a/     ?0      T?0     N0      ]                     8.     ^.      \/     /      ^"0     ?0      ^                           N.     S.      ^S.     r.      ~r.     /      V9/     /      V0     "0      V?0     N0      ~                    S.     W.      ~  $ &3$p"W.     [.      ~  $ &3$p "                 S.     W.      | ~  $ &3$p8                  /     /      P                    /     0      V"0     ?0      V                    .     .      \a/     ?0      \                /     /      1                   /     0      V"0     ?0      V                 /     9/      1                  =.     N.      P                    P0     n0      Un0     2      U                            P0     r0      Tr0     0      ]0     y1      Ty1     1      ]1     2      T2     2      ]                     x0     0      \	2     ;2      ^b2     2      ^                           0     0      ^0     0      ~0     R1      Vy1     1      VD2     b2      V2     2      ~                    0     0      ~  $ &3$p"0     0      ~  $ &3$p "                 0     0      | ~  $ &3$p8                  1     1      P                    1     D2      Vb2     2      V                    0     >1      \1     2      \                R1     R1      1                   	2     D2      Vb2     2      V                 R1     y1      1                  }0     0      P                    0}     ^}      U^}     m      U                          0}     b}      Tb}     }      ]}     Y      TY     h      ]h     m      T                  h}     }      \                               ~}     }      ^}     }      ~}     $~      V$~     /~      ~R~     ~      V~     ~      ~           VY     h      ~                    }     }      ~  $ &3$p"}     }      ~  $ &3$p "                 }     }      | ~  $ &3$p8                    ~           ]     Y      ]                  -     =      P                  >     S      P                ~     /~      1                  ~     _      ]     #      ]                      ~     ~      P~           ^     Y      ^                 ~     ~     
                       ~     ~                        ~     ~      W                 |           0                  m}     ~}      P                               U           U                                       T     
      ^
           T     ̂      ^̂           T           ^                          с      \     B      ]j           ]                                  Á      ]Á           }           V     ۃ      Vۃ           }K     j      V           }                        Á     ʁ      }  $ &3$p"ʁ     ΁      }  $ &3$p "΁           P           P                 Á     ʁ      | }  $ &3$p8                    -     ~                                              T                         K      Vj           V                    
           ^т           ^                           1                        K      Vj           V                            1                             P                               U     F      U                                       T     y      ^y           T     N      ^N     7      T7     F      ^                                ]̆           ]     7      ]                           ̈́     ҄      V҄           v           \           \           \7     F      v                        ҄     ل      v  $ &3$p"ل     ݄      v  $ &3$p "݄           P7     E      P                 ҄     ل      } v  $ &3$p8                             U                        E     Ӆ      ]     2      ]N     ̆      ]           ]                               \     7      \                    l           VN     7      V                           1                   ̆           \     7      \                            1                       ̈́      P                    P     n      Un     `      U                            P     r      Tr     ڇ      ^ڇ     |      T|           ^     Q      TQ     `      ^                     x           \           ]:     Q      ]                                        ]           }     U      V|           V           }     :      VQ     `      }                                   }  $ &3$p"           }  $ &3$p "           PQ     _      P                            | }  $ &3$p8                         N      o     Q                        É     ̉      T                    ҉           V:     Q      V                    ڇ     y      ^     Q      ^                U     U      1                              V:     Q      V                 U     |      1                  }           P                    `     ~      U~           U                            `           T     I      ^I     ދ      Tދ           ^           T           ^                                ]           ]           ]                                      V     Ċ      vĊ           \ދ     [      \ǌ           \           v                                   v  $ &3$p"           v  $ &3$p "     Ί      P           P                            } v  $ &3$p8                  s     z      U                                   ]ދ           ]           ]ǌ           ]                         ǌ      \           \                    <     ċ      V           V                           1                        ǌ      \           \                      ދ      1                             P                    @     ^      U^           U                            @     b      Tb           ]           T           ]           T           ]                     h           \s           ^           ^                           ~           ^           ~     g      V           V           V           ~                               ~  $ &3$p"           ~  $ &3$p "                            | ~  $ &3$p8                             _                                  P     g      ^     s      ^           ^                   :     J      PJ     a      v                         S      ]           ]                g     g      1                   s           V           V                 g           1                  m     ~      P                               U     @	      U                                   T     ;      ];     1	      T1	     @	      ]                             V                                       ^           ~     T      \T           V     1	      V1	     @	      ~                               ~  $ &3$p"           ~  $ &3$p "                            v ~  $ &3$p8                    3           \	     1	      \                               P           \                    Y     i      P	     	      P                    m     p      Pp           _                      E     I      PI           ^     1	      ^                                   P           \           P           \                            1                             P                    0     N      UN           U                          0     R      TR           ^           T           ^           T                     X           \     Н      \!     B      \                                   n     s      ]s           }           V     C      VC     j      }ڝ           V           }     9      }~]     z      }~           }                      s     z      }  $ &3$p"z     ~      }  $ &3$p "~           P                                     \     j      \ڝ           \B     z      \           \                          ]     j      Pj     ڝ                 P                                                                                                               D     !      ]B     ]      ]z           ]                                             0           0     j      0j           \ڝ           0           P     !      \B     z      0z           \           0                  ͞     Ӟ      P                      ^     h      Ph     x      u~B     V      u~                                    0           V           v           V           vz           0                         ڝ      V!     B      V                                 _           _           _                           1                                 VB           V           V                        ڝ      V!     B      V                            1                  ]     n      P                         Ο      UΟ     B      U                               ҟ      Tҟ     #      ]#     '      T'     6      ]6     B      T                  ؟           V                                         ^           ~     +      \+           V     '      V'     6      ~6     B      V                               ~  $ &3$p"           ~  $ &3$p "                            v ~  $ &3$p8                                 \     '      \6     B      \                                 f      0           0            P            ^           0     '      ^6     B      ^                            (     +      P+           _           P           \     '      _6     B      _                            1                  ݟ           P                          >      U>     p      U                              B      TB           ^     a      Ta     p      ^                  H     q      \                          ^     c      ]c           }     9      VS     Q      Va     p      }                      c     j      }  $ &3$p"j     n      }  $ &3$p "n     z      P                          u           \S           \           \)     j      \           \a     p      \                                     P           w      )      w )     =      P=     a      w                               0                                                      0S           0           P     <      ]           0     )      ])           0           P           0                              <     Y      PY           ]           ]           P           ]           P     a      ]                                           0S           0           P           \           0)           0           \           0     0      \                    b     u      P           P                                 P     R      _S     a      _                                     P           \           P           \           P                 D     a      1                       O           0           P           \           0                ,     D      1                  M     ^      P                         .      U.           U                                 2      T2           ^     <      T<     \      ^\           T           ^                     8     a      \           ]           ]                            N     S      ]S     u      }u     "      V<     ݧ      V=           V           }                        S     Z      }  $ &3$p"Z     ^      }  $ &3$p "^     y      P           P                 S     Z      | }  $ &3$p8                                   w .            w =     `      w b           w                                ]=     L      ]                      u     -      0<     ȧ      0ȧ     ק      Pb           0                    ݧ            V           V                         9      ^a           ^                     -      1                 `     b      1                               V           V                       =      1                  =     N      P                          8      U8           U                              <      T<           ]           T           ]                  B     h      V                            X     ]      ^]     {      ~{           \           V           V           ~                    ]     a      ~  $ &3$p"a     e      ~  $ &3$p "                 ]     a      v ~  $ &3$p8                  k     o      U                      {     Ы      0     p      0p           Pˬ           0                        {     Ы      0           0           P           \ˬ           0                                   P           ^           P     ˬ      \                            1                  G     X      P                               U     ΰ      U                                       T           ]           T     ѯ      ]ѯ           T     ΰ      ]                          ή      \S     x      ^           ^                                î      ^î           ~           V           V           V     ΰ      ~                    î     Ǯ      ~  $ &3$p"Ǯ     ˮ      ~  $ &3$p "                 î     Ǯ      | ~  $ &3$p8                  +     /      U                    5           V           V                         n      \ѯ           \                           1                   S           V           V                            1                             P                    а           U           U                                а           T           ^           T           ^           T           ^           T           ^                                 ]           \ڳ           \                                      V     8      v8     x      \     C      \     ڳ      \           v                                   v  $ &3$p"           v  $ &3$p "     ?      P           P                            } v  $ &3$p8                  [     f      U                            x      ]           ]           ]     ڳ      ]                      ֱ                                                     l           Vڳ           V                               ^           ^                x     x      1                              Vڳ           V                 x           1                             P                    x     x      Ux     z      U                            x     x      Tx     $y      ]$y     y      Ty     y      ]y     z      Tz     z      ]                     x     x      \cz     z      ^z     z      ^                           x     x      ^x     x      ~x     y      Vy     #z      Vz     z      Vz     z      ~                    x     x      ~  $ &3$p"x     x      ~  $ &3$p "                 x     x      | ~  $ &3$p8                  ;z     ?z      U                    Ez     z      Vz     z      V                    y     ~y      \y     z      \                y     y      1                   cz     z      Vz     z      V                 y     y      1                  x     x      P                    p           U           U                        p           T           ]           T           ]                             V                                       ^           ~           \     v      V           V           ~                               ~  $ &3$p"           ~  $ &3$p "                            v ~  $ &3$p8                             \                             I      0           0           P     a      \o           0                                   P     e      ^     A      ^o           ^                        A     H      PH     a      ^a     e      Pe     o      \                 i           1                             P                               U           U                                   T     %      ]%           T           ]                             V                                       ^           ~     >      \>           V           V           ~                               ~  $ &3$p"           ~  $ &3$p "                            v ~  $ &3$p8                       @      \                             y      0     @      0@     D      PD           \           0                        /     3      P3           ^     q      ^           ^                        q     x      Px           ^           P           \                            1                             P                               U     ~      U                                       T           ]           T     A      ]A     o      To     ~      ]                                \      )      ^U     o      ^                                      ^     2      ~2           V           V2     P      Vo     ~      ~                               ~  $ &3$p"           ~  $ &3$p "                            | ~  $ &3$p8                             V                       [     _      P_           ^            ^2     U      ^                         2      VU     o      V                               \A     o      \                           1                         2      VU     o      V                            1                             P                                U           U                                  "      T"           ]     N      TN     q      ]q           T           ]                     (     N      \0     Y      ^           ^                           >     C      ^C     b      ~b     '      VN           Vb           V           ~                    C     G      ~  $ &3$p"G     K      ~  $ &3$p "                 C     G      | ~  $ &3$p8                             V                                  P     '      ^N     0      ^b           ^                         b      V           V                               \q           \                '     '      1                   0     b      V           V                 '     N      1                  -     >      P                         (      U(     ɵ      U                             ,      T,     }      ]}           T     ɵ      ]                  2     X      V                              H     M      ^M     k      ~k           \           V            ~           V     ɵ      ~                    M     Q      ~  $ &3$p"Q     U      ~  $ &3$p "                 M     Q      v ~  $ &3$p8                  W     [      U                    \     p      Pp     t      T                        z     ~      P~           \           P           \                            1                  7     H      P                    е           U           U                            е           T     d      ]d           T     !      ]!           T           ]                                \     ȷ      ^           ^                                      ^     2      ~2     Ҷ      V     c      Vѷ           V           ~                               ~  $ &3$p"           ~  $ &3$p "                            | ~  $ &3$p8                  {           U                         ѷ      V           V                    W           \!           \                Ҷ     Ҷ      1                        ѷ      V           V                 Ҷ           1                             P                               U     f      U                                       T     =      ]=           T           ]     W      TW     f      ]                                \           V=     W      V                                      ^           ~           V     3      V     8      VW     f      ~                               ~  $ &3$p"           ~  $ &3$p "                            | ~  $ &3$p8                  K           V                      u     {      P{           =     W                                        P           _           _     =      _                     u     {      	{           \           \                    0           ^     W      ^                           1                            1                             P                    @	     ^	      U^	           U                              @	     b	      Tb	     	      ^	     
      T
     
      ^
           T           ^           T                     h	     	      ]           \           \                             ~	     	      \	     	      |	     p
      V
           V     &      |           V           |                        	     	      |  $ &3$p"	     	      |  $ &3$p "	     	      P           P                 	     	      } |  $ &3$p8                        "     z      _           _           _           _                    &           \           \                        	     	      P	     p
      w 
           w            w                         	     p
      0
     /      0C     R      P           0           0                    >           V           V                      	     
      ^
           ^           ^                p
     p
      1                              V           V                 p
     
      1                  m	     ~	      P                          >      U>     k"      U                              B      TB           ]     \"      T\"     k"      ]                     H     q      \!     !      VB"     \"      V                                 ^     c      _c                Y      V           V            !     !      V!     !      !     B"      \"     k"                            c     j        $ &3$p"j     n        $ &3$p "n     z      P                            u     E      \     r       \!     !      \!     "      \'"     B"      \\"     k"      \                            !      V!     !      U!     B"      V                    c             "     '"                                !      ]!     !      ]                                 P     s           \"                                           \!     !      \!     !      \B"     \"      \                               ^     \"      ^                Y     Y      1                   !     !      \B"     \"      \                 Y           1                  M     ^      P                    p"     "      U"     '      U                        p"     "      T"     "      ]"     '      T'     '      ]                     "     "      \&     F&      S'     '      S                                 "     "      _"     "      "     #      S#     N$      SN$     .%      T&     p&      Sp&     u&      ?'     '      '     '                            "     "        $ &3$p""     "        $ &3$p ""     "      P                            "     #      \#     $      \T&     u&      \?'     Q'      \g'     '      \'     '      \                      f$     &      Su&     '      S'     '      S                    $     )%      Q'     g'                            )%     &      ]u&     ?'      ]'     '      ]                         
#     #      P#     #      #     &      T&     '      '     '                                      q%     %      ^u&     &      ^&     &      1&     &      ^&     &      1&     '      ^'     '      1'     '      ^                    2#     #      $     '                      #     #      1                      &     &      P&     '      \'     '      \                   &     T&      ^'     '      ^                 #     #      1                  "     "      P                    '     '      U'     *      U                            '     '      T'     u(      ]u(     )      T)     1)      ]1)     *      T*     *      ]                     '     (      \)     %*      ^*     *      ^                               '     (      ^(     "(      ~"(     }(      V}(     (      ])     1)      V1)     s)      ].*     M*      ]*     *      ~                    (     (      ~  $ &3$p"(     (      ~  $ &3$p "                 (     (      | ~  $ &3$p8                    )     )      _M*     *      _                       K(     O(      PO(     (      ^)     )      ^.*     *      ^                            )     )      PM*     W*      Pd*     n*      Pn*     x*      1x*     *      P*     *      1                    p(     (      \1)     *      \                (     (      1                    _*     c*      Pc*     *                       (     )      1                  '     '      P                    p           U           U                            p           T     -      ]-           T           ]           T           ]                                \           ^           ^                                      ^           ~           V     #      V           V           ~                               ~  $ &3$p"           ~  $ &3$p "                            | ~  $ &3$p8                  ;     h      V                                  P           ^           ^           ^                    h           V           V                                \           \                           1                              V           V                            1                             P                               U           U                                       T           ]           T           ]           T           ]                          ο      \S     x      ^           ^                                ÿ      ^ÿ           ~           V           V           V           ~                    ÿ     ǿ      ~  $ &3$p"ǿ     ˿      ~  $ &3$p "                 ÿ     ǿ      | ~  $ &3$p8                  +     /      U                    5           V           V                         n      \           \                           1                   S           V           V                            1                             P                               U           U                                       T     d      ]d           T     !      ]!           T           ]                                \           ^           ^                                      ^     2      ~2           V     c      V           V           ~                               ~  $ &3$p"           ~  $ &3$p "                            | ~  $ &3$p8                  {           U                               V           V                    W           \!           \                           1                              V           V                            1                             P                          >      U>     n      U                                  B      TB           ]     I      TI     q      ]q     _      T_     n      ]                     H     n      \           ^B     _      ^                           ^     c      ^c           ~     "      VI           V!     B      V_     n      ~                    c     g      ~  $ &3$p"g     k      ~  $ &3$p "                 c     g      | ~  $ &3$p8                             U                         !      VB     _      V                               \q     _      \                "     "      1                        !      VB     _      V                 "     I      1                  M     ^      P                    p           U           U                                p           T     J      ^J           T           ^           T           ^           T           ^                                ]           ]           ]                                      V           v     9      \`     K      \           \           v                                   v  $ &3$p"           v  $ &3$p "           P           P                            } v  $ &3$p8                  c     o      U                      (     Q      `                                                  9      ^`           ^           ^           ^                    u           \           \                         %      V           V                9     9      1                              \           \                 9     `      1                             P                         .      U.           U                                 2      T2           ^           T           ^           T           ^                     8     `      ]L     o      \           \                           M     R      VR     t      vt     d      \           \y           \           v                        R     Y      v  $ &3$p"Y     ]      v  $ &3$p "]     ~      P           P                 R     Y      } v  $ &3$p8                  #     )      U                            d      V           V     /      Vy           V                    /     y      V           V                         P      ]           ]                d     d      1                   L     y      V           V                 d           1                  =     M      P                               U           U                                       T           ^     N      TN           ^     w      Tw           ^                                 ]     .      ]Z     w      ]                                      V     4      v4     '      \N           \7     Z      \w           v                                   v  $ &3$p"           v  $ &3$p "     >      Pw           P                            } v  $ &3$p8                             U                                   ]N     r      ]           ]7     Z      ]                         7      \Z     w      \                         4      V     w      V                '     '      1                        7      \Z     w      \                 '     N      1                             P                               U     <      U                                           T     y      ]y           T     B      ]B           T           ]     -      T-     <      ]                             ^                                     V           v           \     -      \-     <      v                                 v  $ &3$p"           v  $ &3$p "           P                            ~ v  $ &3$p8                             U                      ]           VB           V     -      V                         ]           0B           0           P           V     -      0                                   P           ]           P           V                            1                            1                             P                    @     ^      U^           U                            @     b      Tb           ]     i      Ti           ]           T           ]                     h           \     8      ^b           ^                           ~           ^           ~     B      Vi           VA     b      V           ~                               ~  $ &3$p"           ~  $ &3$p "                            | ~  $ &3$p8                             U                         A      Vb           V                         .      \           \                B     B      1                        A      Vb           V                 B     i      1                  m     ~      P                               U           U                                       T     $      ]$           T           ]           T           ]                                \c           ^           ^                                      ^           ~           V     #      V           V           ~                               ~  $ &3$p"           ~  $ &3$p "                            | ~  $ &3$p8                  ;     ?      U                    E           V           V                         ~      \           \                           1                   c           V           V                            1                             P                               U     .      U                                       T     t      ]t     	      T	     1      ]1           T     .      ]                          .      \           ^           ^                                #      ^#     B      ~B           V	     s      V           V     .      ~                    #     '      ~  $ &3$p"'     +      ~  $ &3$p "                 #     '      | ~  $ &3$p8                             U                               V           V                    g           \1           \                           1                              V           V                      	      1                             P                    0     N      UN     ~      U                            0     R      TR           ]     Y      TY           ]     o      To     ~      ]                     X     ~      \     (      ^R     o      ^                           n     s      ^s           ~     2      VY           V1     R      Vo     ~      ~                    s     w      ~  $ &3$p"w     {      ~  $ &3$p "                 s     w      | ~  $ &3$p8                             U                         1      VR     o      V                               \     o      \                2     2      1                        1      VR     o      V                 2     Y      1                  ]     n      P                     +     +      U+     .      U                         +     "+      T"+     +      ]+     .      T.     .      ]                  (+     N+      \                          >+     C+      ^C+     b+      ~b+     ,      V',     .      V.     .      ~                    C+     G+      ~  $ &3$p"G+     K+      ~  $ &3$p "                 C+     G+      | ~  $ &3$p8                    ,     ,      ^=-     .      ^                     ,     ,      P,     -      =-     .                          z-     -      P-     .      _                  `-     h-                              +     +      P+     +      ]',     -      ]-     .      ]                        ,     ,      P,     -      ^-     -      P-     -      ]                      ,     ,      P,     -      =-     .                        -     .      _                  -     .      P                        -     -      Q-     -      -     -      q-     .      Q                  ,     ',      1                  -+     >+      P                               U           U                                       T           ]           T           ]           T           ]                                \S     x      ^           ^                                      ^           ~           V           V           V           ~                               ~  $ &3$p"           ~  $ &3$p "                            | ~  $ &3$p8                  +     /      U                    5           V           V                         n      \           \                           1                   S           V           V                            1                             P                               U           U                                       T           ]           T           ]           T           ]                                \S     x      ^           ^                                      ^           ~           V           V           V           ~                               ~  $ &3$p"           ~  $ &3$p "                            | ~  $ &3$p8                  +     /      U                    5           V           V                         n      \           \                           1                   S           V           V                            1                             P                    P     n      Un           U                            P     r      Tr     6      ^6     ˣ      Tˣ           ^           T           ^                     x           ]           \ڤ           \                                      V           v           \ˣ     K      \     ڤ      \           v                                   v  $ &3$p"           v  $ &3$p "           P           P                            } v  $ &3$p8                  c     i      U                                  Vˣ           V     o      V     ڤ      V                    o           Vڤ           V                    )           ]           ]                           1                              Vڤ           V                      ˣ      1                  }           P                               U           U                                       T     d      ]d           T     !      ]!           T           ]                                \           ^           ^                                      ^     2      ~2           V     c      V           V           ~                               ~  $ &3$p"           ~  $ &3$p "                            | ~  $ &3$p8                  {           U                               V           V                    W           \!           \                           1                              V           V                            1                             P                          >      U>     n      U                                  B      TB           ]     I      TI     q      ]q     _      T_     n      ]                     H     n      \           ^B     _      ^                           ^     c      ^c           ~     "      VI           V!     B      V_     n      ~                    c     g      ~  $ &3$p"g     k      ~  $ &3$p "                 c     g      | ~  $ &3$p8                             U                         !      VB     _      V                               \q     _      \                "     "      1                        !      VB     _      V                 "     I      1                  M     ^      P                    p           U           U                                p           T           ^     7      T7           ^     +      T+     h      ^h           T           ^                             ]                                     V           v     0      \7           \           v                                   v  $ &3$p"           v  $ &3$p "           P           P                            } v  $ &3$p8                             U                      &           ]7           ]F           ]                                 V           Vh           V                                    0           0           P           Vh           0                                    P            ]           P     +      V                      7      1                 &     +      1                             P                               U           U                                       T     Y      ^Y           T           ^           T           ^                             ]                                     V           v           \           \           v                                   v  $ &3$p"           v  $ &3$p "           P           P                            } v  $ &3$p8                  ;     A      U                      L           V     J      V           V                         L           0     J      0J     N      PN     u      V           0                        U     \      P\     u      ]u     y      Py           V                            1                            1                             P                               U           U                                       T           ^           T           ^           T           ^                       *      ]                                     V     >      v>     "      \'           \           v                             #      v  $ &3$p"#     '      v  $ &3$p "'     H      P           P                      #      } v  $ &3$p8                             U                                 V'           V           V                                    0'           0           P           V           0                                   P           ]           P           V                      '      1                            1                             P                          >      U>     n      U                                  B      TB           ]     I      TI     q      ]q     _      T_     n      ]                     H     n      \           ^B     _      ^                           ^     c      ^c           ~     "      VI           V!     B      V_     n      ~                    c     g      ~  $ &3$p"g     k      ~  $ &3$p "                 c     g      | ~  $ &3$p8                  ˹     Ϲ      U                    չ     !      VB     _      V                               \q     _      \                "     "      1                        !      VB     _      V                 "     I      1                  M     ^      P                          8      U8           U                              <      T<           ]           T           ]                  B     h      V                              X     ]      ^]     {      ~{           \           V           ~           V           ~                    ]     a      ~  $ &3$p"a     e      ~  $ &3$p "                 ]     a      v ~  $ &3$p8                  g     k      U                       {           0     l      0l     u      P           0                        {           P           \           P           \                            1                  G     X      P                               U     y      U                                   T     =      ]=     j      Tj     y      ]                             V                                         ^     +      ~+     E      \E           V           ~     j      Vj     y      ~                               ~  $ &3$p"           ~  $ &3$p "                            v ~  $ &3$p8                             U                       +           0           0     %      PN     j      0                        +     /      P/     @      \@     D      PD     N      \                            1                             P                               U     y      U                                   T     =      ]=     j      Tj     y      ]                             V                                         ^     +      ~+     E      \E           V           ~     j      Vj     y      ~                               ~  $ &3$p"           ~  $ &3$p "                            v ~  $ &3$p8                             U                       +           0           0     %      PN     j      0                        +     /      P/     @      \@     D      PD     N      \                            1                             P                               U     )      U                                   T           ]           T     )      ]                             V                                         ^           ~           \     ]      V]     p      ~q           V     )      ~                               ~  $ &3$p"           ~  $ &3$p "                            v ~  $ &3$p8                             U                            L      0q           0           P           0                                   P           \           P           \                 P     q      1                             P                          8      U8     ɽ      U                              <      T<           ]           T     ɽ      ]                  B     h      V                              X     ]      ^]     {      ~{           \           V           ~           V     ɽ      ~                    ]     a      ~  $ &3$p"a     e      ~  $ &3$p "                 ]     a      v ~  $ &3$p8                  g     k      U                       {           0     l      0l     u      P           0                        {           P           \           P           \                            1                  G     X      P                    p           U           U                        p           T     ݺ      ]ݺ     
      T
           ]                             V                                         ^     ˺      ~˺           \     M      VM     `      ~a     
      V
           ~                               ~  $ &3$p"           ~  $ &3$p "                            v ~  $ &3$p8                             U                       ˺     <      0a           0     Ż      P     
      0                        ˻     ϻ      Pϻ           \           P           \                 @     a      1                             P                    н           U     y      U                        н           T     =      ]=     j      Tj     y      ]                             V                                         ^     +      ~+     E      \E           V           ~     j      Vj     y      ~                               ~  $ &3$p"           ~  $ &3$p "                            v ~  $ &3$p8                             U                       +           0           0     %      PN     j      0                        +     /      P/     @      \@     D      PD     N      \                            1                             P                    0     H      UH           U                        0     L      TL           ]           T           ]                  R     x      V                              h     m      ^m           ~           \           V            ~!           V           ~                    m     q      ~  $ &3$p"q     u      ~  $ &3$p "                 m     q      v ~  $ &3$p8                  w     {      U                                  0!     |      0|           P           0                                   P           \           P           \                       !      1                  W     h      P                    z     z      Uz     .}      U                            z     {      T{     t{      ]t{     	|      T	|     1|      ]1|     }      T}     .}      ]                     {     .{      \|     |      ^}     }      ^                           {     #{      ^#{     B{      ~B{     {      V	|     s|      V|     }      V}     .}      ~                    #{     '{      ~  $ &3$p"'{     +{      ~  $ &3$p "                 #{     '{      | ~  $ &3$p8                  |     |      U                    |     |      V}     }      V                    g{     {      \1|     }      \                {     {      1                   |     |      V}     }      V                 {     	|      1                  {     {      P                               U     &      U                                       T     t      ]t     	      T	     1      ]1           T     &      ]                          .      \           V           V                                #      ^#     B      ~B           V	     s      V           V     &      ~                    #     '      ~  $ &3$p"'     +      ~  $ &3$p "                 #     '      | ~  $ &3$p8                             U                                 P           ^           ^                    g           \1           \                           1                              ^           ^                      	      1                             P                    0     H      UH           U                        0     L      TL           ]           T           ]                  R     x      V                              h     m      ^m           ~           \           V            ~!           V           ~                    m     q      ~  $ &3$p"q     u      ~  $ &3$p "                 m     q      v ~  $ &3$p8                  w     {      U                                  0!     |      0|           P           0                                   P           \           P           \                       !      1                  W     h      P                               U     .      U                                       T     t      ]t     	      T	     1      ]1           T     .      ]                          .      \           ^           ^                                #      ^#     B      ~B           V	     s      V           V     .      ~                    #     '      ~  $ &3$p"'     +      ~  $ &3$p "                 #     '      | ~  $ &3$p8                             U                               V           V                    g           \1           \                           1                              V           V                      	      1                             P                    0     N      UN           U                            0     R      TR           ^           T           ^           T           ^                  X           ]                          m     r      Vr           v           \           \           v                        r     y      v  $ &3$p"y     }      v  $ &3$p "}           P           P                 r     y      } v  $ &3$p8                               ^           ^                         N      V           V                    <     @      P@           _                    N     R      PR           V                 s           1                  ]     m      P                               U     9      U                                       T           ^            T             ^      *      T*     9      ^                       @      ]                          -     2      V2     T      vT           \     *      \*     9      v                        2     9      v  $ &3$p"9     =      v  $ &3$p "=     [      P*     8      P                 2     9      } v  $ &3$p8                                   w                        w       *      w                                       *                              n     ^      ^     K       ^             ^     *      ^                                 _            _     *      _                  J     X      R                    ^     b      Pb           ^                    p     t      Pt           V                            1                       -      P                    @     ^      U^           U                            @     b      Tb           ^     #      T#     C      ^C           T           ^                  h           ]                          }           V           v           \           \           v                                   v  $ &3$p"           v  $ &3$p "           P           P                            } v  $ &3$p8                          #      C                                            ^     #      ^C           ^                                 _           _C           _                                 ]           ]C     b      ]                    a           V=           V                               P           ]                               P           V                            1                  m     }      P                               U     	      U                                       T     v      ^v     3	      T3	     S	      ^S	     	      T	     	      ^                              ]                                     V           v     W      \^     	      \	     	      v                                   v  $ &3$p"           v  $ &3$p "           P	     	      P                            } v  $ &3$p8                    p     3	      S	     	                                       ]^     3	      ]S	     	      ]                             [      ^^           ^S	     p	      ^	     	      ^                      e     ]      _^           _	     	      _                             Y                               P     Y      ]                               P     C      V                           ]                 6     ^      1                             P                    	     	      U	     9      U                            	     	      T	     `
      ^`
           T           ^     *      T*     9      ^                  	     
      ]                          	     
      V
     $
      v$
           \     *      \*     9      v                        
     	
      v  $ &3$p"	
     
      v  $ &3$p "
     +
      P*     8      P                 
     	
      } v  $ &3$p8                    |
                *                            
           _           _     *      _                      @           ^     b      ^     *      ^                             Q                               P           ^                               P           V                            1                  	     	      P                    @     Y      UY           U                        @     ]      T]           ]           T           ]                  d           S                          {           ^           ~           \           ~           ~                               ~  $ &3$p"           ~  $ &3$p "                            s ~  $ &3$p8                            0                  i     {      P                                U           U                                    T           ]           T           ]                  $     K      S                          ;     @      ^@     ]      ~]           \           ~           ~                    @     D      ~  $ &3$p"D     H      ~  $ &3$p "                 @     D      s ~  $ &3$p8                 b           0                  )     ;      P                         .      U.           U                               2      T2           V           T     Ɉ      VɈ           T                                                                                           8           ^           P                      V           \           V     >      \>           V     ǃ      Ճ     N      VN                4      VC           V     ۅ      \ۅ     =      V=     ~      \~                -      V-     2      P2     r      w           V           P     Ň      VŇ     ʇ      Pʇ           \           P           \           P     =      V=     B      PB     e      \e     j      Pj           V           P                Ɉ      ^Ɉ     ׈      ׈           V                                  N     S      ]S     ~      }~           \N           \~           \2     w      \           \     Ɉ      }Ɉ     ׈      \                      S     ]      }  $ &3$p"]     a      }  $ &3$p "a     g      P                 S     ]      ~ }  $ &3$p8                         2      V           V                                     ^N     u      ^܄           ^           ^Ɉ     ׈      ^                                  !      _N           _     *      _C           _           _2           _Ɉ           _                                    P      0P           VN     ܄      V܄           0~           V2     D      V           VɈ     ׈      V                                   P      0           TN           0     *      0C           0           02           0Ɉ           0                                                       0           P     N      ^N     ׄ      0ׄ     ܄      P܄           0     4      ^C     ~      ^~           0     2      ^2     w      0w           ^           0Ɉ     ׈      0׈           ^                                     !      0!     N      _N           0     *      0C           0           0     2      _2           0Ɉ           0                                            0           P           \N           0~           02     w      0           \           0Ɉ     ׈      0                                          0N           0     ׄ      ^܄           0~           02     w      ^           0Ɉ     ׈      0                                        5     8      P8           ]     	      ]N           ]     *      ]C           ]     8      ]~           ]2     ʇ      ]     B      ]j           ]Ɉ           ]                 X     w      1                    ,     0      P0     I      ]                        P           ]     ,      ]           ]ц           ]                                       P     Ճ      ]"     &      P&     I      I     N      P     2      ]                               P     N                        ݆           T                  =     N      P                               U     +      U                                     T           \           T           \     +      T                                                  e      ^e     o      Po     |           \      V\     n      ]n           V                      V     '      '     M      VM     R      PR           V                      ^     +                                      -     2      V2     ]      v]     !      ]           ]     '      ]           ]           v           ]                      2     <      v  $ &3$p"<     @      v  $ &3$p "@     F      P                 2     <      ~ v  $ &3$p8                                     ^           ^     '      ^R           ^     +      ^                                   _     =      _     '      _     +      _                                ܉      0܉           V           V     '      0           V     +      V                                      0/     6      T           0     '      0R           0     +      0                                        |      0|           P                      0           P                '      0'                      0     +      0                                           0           _           0           _     '      0'     R      _R     j      0           0     +      0                                           :      0:     @      P@     n      ^y           0           P     ڋ      ڋ     ߋ      P           0     '      0'     R      ^R           0     +      0                                    !      0!     1      P1           ]           0     '      0           0           0     +      ]                                        0     X      0X           _     '      0           0           _     +      0                                 ĉ      Pĉ     ݊      \           \     '      \R           \     +      \                 Ǎ           1                         Ë      PË     ߋ      ]                           :      ]           ]           ]                               P     ڋ      ^                  Ռ           T                       -      P                               U           U                                       T     &      ]&     `      T`     |      ]|           T           ]                           _      ^_     `      p `           ^                                     V           v           \     Y      v`           v                               v  $ &3$p"           v  $ &3$p "                            ~ v  $ &3$p8                                    0     [      \`     |      0|           \           \                    0     @      ]|           ]                    0     @      P|           P                      4     <      Q<     @      }|           Q                             P                    @     n      Un           U                          @     r      Tr           ]           T           ]           T                          x           ^           P                      ^                                                      \           |           V     =      |=     w      |}     :      |}a           |           |                                 |  $ &3$p"           |  $ &3$p "           P                            ~ |  $ &3$p8                         T      Va           V                      +     a                                                    K           ^     a      ^           ^           ^                        \           ]     a      ]           ]           ]                             \     w      0w           \           \     ?      0?     a      \           \           \                                 _           _           P                                      P            V     J      V           V           V                                     Q     !                 P           Q     J                                     P           V                    (     :      V           V                    (     :      P           P                      +     7      Q7     :      v           Q                  }           P                                U           U                                "      T"           ^           T           ^           T                      (           \           p            \                          =     B      VB     i      vi           ]           v~           v                      B     L      v  $ &3$p"L     P      v  $ &3$p "P     V      P                 B     L      | v  $ &3$p8                                 ^|           ^           ^                                 ]           ]           ]                                 _           _           _                                      0           V     |      V|           0           V           V                                        0           ^     |      ^|           0           ^           ^           0                      <     T                 T                               <     T      P           P                        D     L      QL     O      #O     T      q           Q                      d     |                 T                               d     |      P           P                        l     t      Qt     w      #w     |      q           Q                  -     =      P                               U     )      U                                     T     K      ]K           T           ]     )      T                       (      V                                       ^     ;      ~;           \           ~           \     )      ~                         !      ~  $ &3$p"!     %      ~  $ &3$p "                      !      v ~  $ &3$p8                      K     O      p} "O     S      p } "S     Z      P                                   V           P           V           V                    n     {      P     (      P                            1                             P                    0     H      UH     y      U                          0     L      TL           ]     ^      T^     m      ]m     y      T                  R     x      V                            h     m      ^m           ~     )      \)     -      ~.     ^      \^     y      ~                    m     q      ~  $ &3$p"q     u      ~  $ &3$p "                 m     q      v ~  $ &3$p8                                 p} "           p } "           P                                    V            P           V\     ^      V                               Pm     x      P                      .      1                  W     h      P                    0     N      UN     Ώ      U                          0     R      TR           ^           T           ^     Ώ      T                  X           \                            m     r      Vr           v     d      ]i           ]           v     Ώ      ]                        r     y      v  $ &3$p"y     }      v  $ &3$p "}           P           P                 r     y      | v  $ &3$p8                           h      _i           _     Ώ      _                           f      ^i           ^     Ώ      ^                                    0            Vi           0           V     Ώ      V                              $      P$     5      V5     9      P9     O      V                 B     i      1                  ]     m      P                    Џ           U           U                          Џ           T     w      ^w           T            ^            T                           J      \J     Q      p Q           \                                     V     9      v9     j      ]j     {      v~            v                                 v  $ &3$p"            v  $ &3$p "      &      P                            | v  $ &3$p8                      O     P      _Q           _            _                      j     L      ]Q           ]            ]                        w           ^Q     t      ^           ^            ^                           w           0     H      VQ           V     Ǒ      0Ǒ           V            V                             P                               U     A      U                                   T           ^           T     A      ^                                 \           p      A      \                                       V           v     /      ]/     `      v           v     '      v                                 v  $ &3$p"           v  $ &3$p "            P                            | v  $ &3$p8                    /     {      ]           ]                      w           V           V'     A      V                                   P           P'     0      P5     @      P                             P                    P     h      Uh           U                        P     l      Tl     W      ^W     X      TX           ^                      r     S      \S     X      p X           \                                       V           v           ]            vy           v           v                                 v  $ &3$p"           v  $ &3$p "           P                            | v  $ &3$p8                               ]y           ]                             Q      VX     y      V           V           V                      3     K      P           P           P                  w           P                               U     =      U                                   T     /      ^/     .      T.     =      ^                                 \           p      =      \                                     V           v     <      ]<     @      v.     =      v                                 v  $ &3$p"           v  $ &3$p "            P                            | v  $ &3$p8                      /     k      ^           ^      .      ^                    <           ]     .      ]                    [           V     .      V                    w           ^            ^                    w           P           P                      {           Q           ~           Q                             P                    2     2      U2     U4      U                        2     2      T2     3      ]3     F4      TF4     U4      ]                     2     2      Vq3     3      ^4     :4      ^                            2     2      ^2     2      ~2     3      \3     q3      ~3     4      ~:4     U4      ~                    2     2      ~  $ &3$p"2     2      ~  $ &3$p "                 2     2      v ~  $ &3$p8                    3     53      \3     3      \                    a3     3      \4     :4      \                    03     3      V3     F4      V                    R3     e3      P:4     E4      P                   q3     3      \4     :4      \                 3     3      1                  2     2      P                    `4     ~4      U~4     %6      U                        `4     4      T4     4      ]4     6      T6     %6      ]                     4     4      VA5     v5      ^5     
6      ^                            4     4      ^4     4      ~4     4      \4     A5      ~5     5      ~
6     %6      ~                    4     4      ~  $ &3$p"4     4      ~  $ &3$p "                 4     4      v ~  $ &3$p8                    4     5      \5     5      \                    15     5      \5     
6      \                     5     5      V5     6      V                    "5     55      P
6     6      P                   A5     5      \5     
6      \                 z5     5      1                  4     4      P                               U           U                                     T           ]           T           ]           T                             V                                       ^           ~     x      \x     |      ~}           \           ~                               ~  $ &3$p"           ~  $ &3$p "                            v ~  $ &3$p8                                 p} "           p } "           P                        8     O      VO     S      PS     i      V           V                               P           P                 \     }      1                             P                               U           U                                   T     +      ]+           T           ]                             V                                       ^           ~     k      \k           ~           \           ~                               ~  $ &3$p"           ~  $ &3$p "                            v ~  $ &3$p8                      +     /      p} "/     3      p } "3     :      P                    R     r      V           V                               \           \                               P           P                                   Q           |           q           Q                               \           \                               P           P                                   Q           |           q           Q                         ;      \           \                         5      P           P                             (      Q(     -      |-     5      q           Q                    G     b      \           \                    G     b      P           P                        L     T      QT     Y      |Y     b      q           Q                    o           \           \                    o           P           P                        t     |      Q|           |           q           Q                 e           0                             P                               U           U                                   T           ]           T           ]                             V                                     _                      \           \                                                $ &3$p"             $ &3$p "     
      P           P                                 V           V           V                      Y           ^           ^           ^                          `     p      pp     A      _           p           _           _                            A     E      PE     \      _\     `      P`     q      Vq     u      Pu           V                                 P     \      V           V                 ~           1                             P                     .     >.      U>.     }2      U                           .     B.      TB.     .      ^.     2      T2     )2      ^)2     }2      T                     H.     q.      ]>1     u1      V1     2      V                             ^.     c.      \c.     .      |.     T/      V{/     >1      V~1     1      V2     )2      |)2     }2      V                        c.     j.      |  $ &3$p"j.     n.      |  $ &3$p "n.     .      P2     (2      P                 c.     j.      } |  $ &3$p8                        0     0      w 1     1      w )2     72      w E2     }2      w                                     q0     0      P0     0      \0     0      T0     0      \1     1      T1     1      \1     1      \E2     o2      \o2     x2      Px2     }2      \                                  .     4/      0{/     0      00     0      P0     0      w ~1     1      01     1      w 1     1      0)2     72      0E2     M2      Po2     }2      0                         .     .      P.     T/      ^{/     N1      ^~1     1      ^)2     }2      ^                        0     ~1      \1     1      \1     2      \72     E2      \                      .     z/      _/     2      _)2     }2      _                T/     T/      1                   >1     ~1      \1     2      \                 T/     {/      1                  M.     ^.      P                    2     2      U2     @8      U                        2     2      T2     -3      ]-3     18      T18     @8      ]                  2     2      \                          2     2      V2     2      R2     18      18     ?8      R?8     @8                                2     3      \4     *6      \N6     6      \&7     8      \#8     @8      \                          3     3      _4     *6      _N6     6      _&7     7      _#8     18      _                      K5     *6      N6     6      &7     7                                  U3     4      ]4     4      ]*6     N6      ]6     &7      ]7     8      ]#8     18      ]                 3     18     
 $                                            3     3      03     3      P3     4      _4     4      _4     *6      0*6     N6      _N6     6      06     &7      _&7     7      07     7      P7     #8      _#8     18      0                             3     3      04     4      04     7      07     7      P7     &7      &7     8      0#8     18      0                                 3     y3      0y3     3      V4     *6      0*6     I6      VN6     6      06     7      V&7     7      07     8      V#8     18      V                          K3     U3      PU3     4      ^4     4      ^4     5      P5     18      ^                            3     3      P3     ~4      V4     4      P4     4      VI6     N6      P7     &7      P                      ;4     ?4      P?4     4      \8     #8      \                   q4     4      18     #8      1                  2     2      P                    @8     ^8      U^8     =      U                        @8     b8      Tb8     8      ]8     =      T=     =      ]                  h8     8      \                          }8     8      V8     8      v8     L:      ^O:     =      ^=     =      v                      8     8      v  $ &3$p"8     8      v  $ &3$p "8     8      P                          8     c9      \m:     ;      \;     <      \<     =      \=     =      \                        8     9      w O:     `:      w :     <      w <     =      w                       :     ;      ;     k<      <     =                                99     9      ]O:     m:      ];     ;      ]<     <      ]=     =      ]                   8     m:     
 $     :     =     
 $                                          8     c9      0c9     9      P9     9      \O:     m:      \:     ;      0;     ;      \;     <      0<     <      \<     =      0=     =      P=     =      \                           8     9      0O:     `:      0:     <      0<     <      P<     <      w <     =      0                          /9     99      P99     N:      _O:     m:      _:     :      P:     =      _                            9     9      P9     5:      VO:     m:      V;     ;      P<     <      P<     <      V                    9     :      P:     H:      \                 (:     O:      1                  m8     }8      P                                U           U                                    T     n      ]n           T           ]                  "     H      \                                8     =      ^=     \      ~\           V           ~     /      V/     n      ~o           V           ~                    =     A      ~  $ &3$p"A     E      ~  $ &3$p "                 =     A      | ~  $ &3$p8                  G     K      U                            1                 L     o      0                  '     8      P                    =     =      U=     A      U                              =     =      T=     >      ^>     +?      T+?     M?      ^M?     oA      ToA     ~A      ^~A     A      T                     =     !>      ]@     A      VUA     oA      V                             >     >      \>     6>      |6>     ?      V+?     @      VA     UA      VoA     ~A      |~A     A      V                        >     >      |  $ &3$p">     >      |  $ &3$p ">     :>      PoA     }A      P                 >     >      } |  $ &3$p8                        ?     @      w AA     UA      w ~A     A      w A     A      w                             !@     8@      P8@     @      \AA     UA      \A     A      PA     A      \A     A      \                                6>     >      0+?     }@      0}@     @      P@     A      w A     UA      0UA     oA      w ~A     A      0A     A      w A     A      P                         _>     c>      Pc>     ?      _+?     @      _A     UA      _~A     A      _                      @     A      \UA     oA      \A     A      \                      >     (?      ^R?     oA      ^~A     A      ^                ?     ?      1                   @     A      \UA     oA      \                 ?     +?      1                  =     >      P                    A     A      UA     ]G      U                          A     B      TB     _B      ]_B     @G      T@G     OG      ]OG     ]G      T                  B     7B      \                          B     0B      V0B     OB      ROB     @G      @G     NG      RNG     ]G                              ;B     2C      \D     RE      \vE     F      \VF     ]G      \                                B     B      PB     "C      _D     -D      P-D     RE      _vE     F      _VF     $G      _OG     XG      PXG     ]G      _                      sD     RE      vE     E      VF     $G                                B     |C      ]C     D      ]RE     vE      ]F     VF      ]2G     @G      ]                   IB     @G     
 B     OG     ]G     
 B                                                IB     "C      0"C     DC      PDC     C      _C     D      _D     RE      0RE     mE      PmE     vE      _vE     F      0F     $F      P$F     VF      _VF     2G      02G     ;G      P;G     @G      _OG     ]G      0                             IB     SC      0C     D      0D     1F      01F     5F      P5F     VF      VF     @G      0OG     ]G      0                        {B     B      PB     C      ^C     @G      ^OG     ]G      ^                            MC     SC      PSC     C      VC     D      PD     D      VqE     vE      PKF     VF      P                    C     C      PC     C      \                 C     C      1                  B     B      P                    `G     G      UG     L      U                        `G     G      TG     H      ]H     L      TL     L      ]                  G     G      \                          G     G      VG     G      RG     L      L     L      RL     L                                G     H      \I     J      \K     K      \K     L      \L     L      \                          G     H      _I     J      _K     K      _K     L      _L     L      _                      J     J      K     K      K     L                                  5H     H      ]wI     I      ]J     K      ]K     K      ]L     L      ]L     L      ]                 G     L     
 B                                                G     H      0H     H      PH     vI      _wI     I      _I     J      0J     K      PK     K      _K     K      0K     K      PK     K      _K     L      0L     L      PL     L      _L     L      0                             G     H      0wI     I      0I     K      0K     K      PK     K      K     L      0L     L      0                                 G     YH      0YH     H      VI     J      0J     K      VK     K      0K     K      VK     L      0L     L      VL     L      V                          +H     5H      P5H     tI      ^wI     I      ^I     I      PI     L      ^                            H     H      PH     II      VwI     I      PI     I      VK     K      PK     K      P                      I     
I      P
I     pI      \L     L      \                   <I     wI      1L     L      1                  G     G      P                     M     M      UM     aR      U                         M     "M      T"M     hM      ]hM     RR      TRR     aR      ]                  (M     PM      \                          =M     BM      VBM     lM      vlM     N      ^N     RR      ^RR     aR      v                      BM     IM      v  $ &3$p"IM     MM      v  $ &3$p "MM     YM      P                          TM     #N      \O     rP      \P     <Q      \zQ     DR      \RR     aR      \                        M     YN      w N     O      w :O     PQ      w zQ     RR      w                       O     rP      P     Q      zQ     DR                                M     N      ]N     O      ]rP     P      ]<Q     zQ      ]DR     RR      ]                   M     O     
 B     :O     RR     
 B                                          M     #N      0#N     3N      P3N     N      \N     O      \:O     rP      0rP     P      \P     <Q      0<Q     zQ      \zQ     DR      0DR     MR      PMR     RR      \                           M     YN      0N     O      0:O     PQ      0PQ     TQ      PTQ     zQ      w zQ     RR      0                          M     M      PM     N      _N     O      _:O     MO      PMO     RR      _                            HN     ON      PON     N      VN     O      VP     P      PdQ     kQ      PkQ     zQ      V                    N     N      PN     N      \                 N     N      1                  -M     =M      P                               U     9!      U                                   T            ]      *!      T*!     9!      ]                             \                                           ^           ~     ~       V~             ~             V      !      ~!     *!      V*!     9!      ~                               ~  $ &3$p"           ~  $ &3$p "                            | ~  $ &3$p8                               U                 q             1                       !      0                             P                    pR     R      UR     U      U                          pR     R      TR     R      ]R     QU      TQU     `U      ]`U     U      T                  R     R      V                            R     R      \R     R      |R     tT      ^wT     QU      ^QU     `U      |`U     U      ^                        R     R      |  $ &3$p"R     R      |  $ &3$p "R     R      PQU     _U      P                        R     zS      VwT     T      VU     `U      VU     U      V                        (S     S      _wT     U      _.U     QU      _U     U      _                      S     S      PS     .T      V`U     U      V                      T     U      \.U     QU      \U     U      \                          S     S      PS     T      \`U     U      \U     U      PU     U      \                                 (S     zS      0zS     S      VwT     T      0T     T      PT     U      V.U     QU      0U     U      VU     U      0U     U      V                      S     S      PS     vT      _`U     U      _                          [S     _S      P_S     rT      ]wT     U      ].U     QU      ]`U     U      ]                        .T     2T      P2T     CT      VCT     GT      PGT     ]T      V                 S     S      0                 S     S      ]                 PT     wT      1                  R     R      P                    ]     ]      U]     ^      U                        ]     ]      T]     ]      ]]     ^      T^     ^      ]                  ]     ]      V                              ]     ]      ^]     ]      ~]     ]      \]     ^      V^     ^      ~^     ^      V^     ^      ~                    ]     ]      ~  $ &3$p"]     ]      ~  $ &3$p "                 ]     ]      v ~  $ &3$p8                   ]     ]      } #(^     ^      } #(                      C^     [^      P^     ^      P^     ^      P                        a^     e^      Pe^     v^      ]v^     z^      Pz^     ^      ]                 ^     ^      1                  ]     ]      P                    ^     _      U_     _`      U                        ^     _      T_     e_      ]e_     P`      TP`     _`      ]                  _     8_      V                              (_     -_      ^-_     K_      ~K_     ]_      \]_      `      V `     `      ~`     P`      VP`     _`      ~                    -_     1_      ~  $ &3$p"1_     5_      ~  $ &3$p "                 -_     1_      v ~  $ &3$p8                   -_     R_      } #(P`     ^`      } #(                      _     _      P`     `      PD`     O`      P                        _     _      P_     _      ]_     _      P_     _      ]                 _     `      1                  _     (_      P                     V     V      UV     jX      U                             V     V      TV     W      ^W     W      TW     X      ^X     [X      T[X     jX      ^                  "V     JV      \                          7V     <V      V<V     bV      vbV     W      ]W     [X      ][X     jX      v                        <V     CV      v  $ &3$p"CV     GV      v  $ &3$p "GV     iV      P[X     iX      P                 <V     CV      | v  $ &3$p8                   <V     iV      ~ #([X     iX      ~ #(                    V     eW      \W     X      \                    W     [W      ^[W     _W      T                         W     eW      0eW     uW      PuW     W      \X     &X      P&X     [X      \                      9W     =W      P=W     W      VX     FX      V                        W     W      PW     W      \W     W      PW     W      V                 W     W      1                  'V     7V      P                    @!     ^!      U^!     #      U                        @!     b!      Tb!     !      ^!     z#      Tz#     #      ^                     h!     !      \k"     "      ][#     z#      ]                          }!     !      V!     !      v!     !      ]!     !      vz#     #      v                        !     !      v  $ &3$p"!     !      v  $ &3$p "!     !      Pz#     #      P                 !     !      | v  $ &3$p8                    !     !      ]#     :#      ]                      !     "      ^"     #      ^#     ?#      ^                      !     k"      ]"     #      ]?#     [#      ]                      "     z"      ^"     "      ^?#     [#      ^                   6"     Y"      0?#     [#      0                    6"     "      V?#     z#      V                 "     "      1                  m!     }!      P                    #     #      U#     $      U                            #     #      T#     "$      ]"$     $      T$     $      ]$     $      T$     $      ]                  #     #      V                          #     #      ^#     #      ~#     $      \$     $      \$     $      ~                    #     #      ~  $ &3$p"#     #      ~  $ &3$p "                 #     #      v ~  $ &3$p8                      #     #      p~ "#     $      p ~ "$     
$      P                  "$     $      ]                      +$     9$      P:$     E$      PF$     O$      P                        U$     Y$      PY$     j$      Vj$     n$      Pn$     $      V                 w$     $      1                  #     #      P                    ``     x`      Ux`     a      U                        ``     |`      T|`     `      ]`     Xa      TXa     a      ]                  `     `      V                          `     `      ^`     `      ~`     Sa      \Xa     |a      \|a     a      ~                    `     `      ~  $ &3$p"`     `      ~  $ &3$p "                 `     `      v ~  $ &3$p8                   `     `      } #(|a     a      } #(                      `     `      p~ "`     `      p ~ "`     `      P                  `     `      P                    `     a      Pa     Ua      ]                        
a     a      Pa     *a      V*a     .a      P.a     Da      V                 7a     Xa      1                  `     `      P                    a     a      Ua     b      U                        a     a      Ta     /b      ]/b     b      Tb     b      ]                  a     a      V                          a     a      ^a     a      ~a     b      \b     b      \b     b      ~                    a     a      ~  $ &3$p"a     a      ~  $ &3$p "                 a     a      v ~  $ &3$p8                   a     a      } #(b     b      } #(                      a     a      p~ "a     b      p ~ "b     
b      P                  b     &b      P                    /b     3b      P3b     b      ]                        :b     Ab      PAb     Zb      VZb     ^b      P^b     tb      V                 gb     b      1                  a     a      P                    06     N6      UN6     7      U                        06     R6      TR6     6      ]6     7      T7     7      ]                     X6     ~6      V7     ;7      ^7     7      ^                            n6     s6      ^s6     6      ~6     6      \6     7      ~f7     7      ~7     7      ~                    s6     w6      ~  $ &3$p"w6     {6      ~  $ &3$p "                 s6     w6      v ~  $ &3$p8                   s6     6      } #(7     7      } #(                      6     6      p} "6     6      p } "6     6      P                    6     6      \f7     7      \                    6     _7      \7     7      \                    6     L7      V7     7      V                   7     _7      \7     7      \                 ?7     f7      1                  ]6     n6      P                    $     $      U$     %      U                        $     $      T$     ;%      ];%     %      T%     %      ]                  $     %      V                            %     %      ^%     +%      ~+%     %      \%     %      ~%     %      \%     %      ~                    %     %      ~  $ &3$p"%     %      ~  $ &3$p "                 %     %      v ~  $ &3$p8                      ;%     ?%      p} "?%     C%      p } "C%     J%      P                    ^%     c%      P%     %      P                 c%     %      0                  $     %      P                    %     %      U%     0(      U                            %     %      T%     u&      ^u&     '      T'     '      ^'     !(      T!(     0(      ^                  %     !&      \                          &     &      ]&     9&      }9&     '      V'     !(      V!(     0(      }                      &     &      }  $ &3$p"&     &      }  $ &3$p "&     *&      P                        %&     &      \'     '      \'     '      \!(     0(      \                      &     '      w '     '      w '     !(      w                       &     '      ^'     '      ^'     !(      ^                      &     &      ]'     '      ]'     !(      ]                           &     '      0'     '      P'     B'      ^'     '      0'     '      P'     !(      0                          &     &      P&     v'      \'     '      \'     (      P(     (      \                      &     '      P'     '      ]'     '      ]                                  &     &      p&     &'      #&'     *'      P*'     B'      B'     v'      ^v'     z'      Pz'     '      \'     '      #'     !(      #                 '     '      1                  %     &      P                    0(     N(      UN(     )      U                        0(     R(      TR(     (      ](     )      T)     )      ]                     X(     ~(      V)     R)      ])     )      ]                          n(     s(      ^s(     (      ~(     )      \})     )      \)     )      ~                    s(     w(      ~  $ &3$p"w(     {(      ~  $ &3$p "                 s(     w(      v ~  $ &3$p8                    (     (      p~ "(     (      p ~ "                      (     (      P(     )      ]})     )      ]                  (     )      T                    )     V)      \)     )      \                      (     V)      V)     )      V)     )      V                 )     )      1                   )     V)      \)     )      \                 V)     })      1                  ](     n(      P                    4     4      U4     7      U                        4     5      T5     5      ^5     7      T7     7      ^                     5     15      V6     6      V7     7      V                              5     #5      \#5     O5      |O5     06      ]6     B7      ]i7     7      ]7     7      ]7     7      |                      #5     *5      |  $ &3$p"*5     .5      |  $ &3$p ".5     75      P                            <5     ?5      P?5     m5      Vm5     r6      6     7      7     7      7     7      V                  m5     5      V                    5     5      ^6     7      ^                        5     (6      \=7     B7      \i7     7      \7     7      \                        5     5      P5     m6      V6     |7      V7     7      V                      5     5      P5     6      _6     7      _                             5     (6      0(6     ,6      P,6     6      \6     B7      0B7     i7      \i7     7      07     7      0                                 5     06      006     D6      PD6     6      ]6     B7      0B7     [7      ][7     i7      Pi7     7      07     7      ]7     7      0                   6     r6      1B7     7      1                      5     5      P5     6      ^#7     7      ^                 7     7      1                 6     6      1                  5     5      P                     :     :      U:     =      U                         :     ":      T":     :      ^:     =      T=     =      ^                  (:     Q:      V                          >:     C:      ]C:     g:      }g:     <      \%<     =      \=     =      }                      C:     J:      }  $ &3$p"J:     N:      }  $ &3$p "N:     X:      P                        U:     :      V%<     v<      V+=     :=      V=     =      V                   U:     n:      ~ #(=     =      ~ #(                    :     $<      _<<     =      _                        :     :      P:     "<      ^%<     ,<      P,<     =      ^                          :     :      P:     ;      V<     <      V<     +=      V:=     =      V                               :     o;      0o;     ~;      P~;     ;      ]%<     <      0<     <      ]<     +=      ]+=     :=      0:=     =      ]                          ;     ;      P;     ;      ];     ;      P;     ;      V<     <      P                 ;     %<      1                  -:     >:      P                    =     =      U=     m@      U                        =     =      T=     >>      ^>>     ^@      T^@     m@      ^                  =     >      V                          =     =      ]=     >      }>     1?      \8?     ^@      \^@     m@      }                      =     =      }  $ &3$p"=     =      }  $ &3$p "=     >      P                      >     f>      V?     ?      V^@     m@      V                    ,>     0>      p "0>     8>      p  "                        [>     >      ]8?     m?      ]r?     ?      ]?     ^@      ]                        f>     m>      Pm>     ?      V8?     ?      V?     ^@      V                             ,>     >      0>     >      P>     >      8?     \?      ?     ?      0?     @      +@     ^@                                >>     K>      PK>     5?      ^8?     ?      ^?     ?      P?     ^@      ^                          >     >      P>     ?      ]?     ?      P?     ?      Vm?     r?      P                 ?     8?      1                  =     =      P                               U     p      U                                   T     ,      ],     a      Ta     p      ]                             V                                   ^           ~     \      \a     p      ~                               ~  $ &3$p"           ~  $ &3$p "                            v ~  $ &3$p8                              } #(a     o      } #(                 @     a      1                             P                    p@     @      U@     A      U                        p@     @      T@     @      ^@     A      TA     A      ^                  @     @      \                          @     @      V@     @      v@     A      ]A     A      ]A     A      v                        @     @      v  $ &3$p"@     @      v  $ &3$p "@     @      PA     A      P                 @     @      | v  $ &3$p8                  @     A      \                    A     AA      VA     A      V                     A     *A      0*A     ;A      PA     A      0                      A     A      PA     A      \A     A      \                    A     )A      PA     A      P                        AA     EA      PEA     VA      VVA     ZA      PZA     _A      V                 cA     A      1                  @     @      P                    A     A      UA     B      U                        A     A      TA     ,B      ],B     yB      TyB     B      ]                  A     B      V                          A     A      ^A     B      ~B     tB      \tB     xB      ~yB     B      ~                    A     B      ~  $ &3$p"B     B      ~  $ &3$p "                 A     B      v ~  $ &3$p8                   B     B      0B     0B      P                        6B     :B      P:B     KB      VKB     OB      POB     eB      V                 XB     yB      1                  A     A      P                    C     C      UC     5E      U                        C     D      TD     D      ^D     E      TE     5E      ^                  D     0D      \                          D     "D      V"D     DD      vDD     D      ]E     &E      ]&E     5E      v                        "D     )D      v  $ &3$p")D     -D      v  $ &3$p "-D     QD      P&E     4E      P                 "D     )D      | v  $ &3$p8                      oD     sD      PsD     D      VE     E      V                      D     D      PD     D      \E     &E      \                       RD     D      0D     D      PD     D      ^E     &E      0                        D     D      PD     D      VD     D      PD     D      V                 D     E      1                  D     D      P                    @G     XG      UXG     }H      U                        @G     \G      T\G     G      ^G     nH      TnH     }H      ^                  bG     G      \                          wG     |G      V|G     G      vG     GH      ]JH     nH      ]nH     }H      v                        |G     G      v  $ &3$p"G     G      v  $ &3$p "G     G      PnH     |H      P                 |G     G      | v  $ &3$p8                      G     G      PG     G      \JH     nH      \                      G     G      PG     H      VJH     \H      V                       G     G      0G     G      PG     %H      \JH     nH      0                        H     H      PH     H      VH      H      P H     %H      V                 )H     JH      1                  gG     wG      P                     N     N      UN     Q      U                               N     "N      T"N     N      ^N     P      TP     )P      ^)P     Q      TQ     Q      ^Q     Q      T                  (N     PN      ]                            =N     BN      VBN     hN      vhN     O      \O     )P      \Q     Q      \Q     Q      v                        BN     IN      v  $ &3$p"IN     MN      v  $ &3$p "MN     oN      PQ     Q      P                 BN     IN      } v  $ &3$p8                                O     O      PO     O      \)P     gP      \sP     P      \P     VQ      \mQ     Q      \Q     Q      PQ     Q      \                                  N     O      ]O     P      ])P     gP      ]sP     P      ]P     !Q      ]mQ     Q      ]Q     Q      ]Q     Q      ]Q     Q      ]                              O     O      w )P     gP      w sP     P      w P     P      w mQ     tQ      w Q     Q      w Q     Q      w                       (O     O      VQ     Q      VQ     Q      V                               (O     O      0)P     gP      0sP     P      0P     <Q      0<Q     @Q      P@Q     mQ      ^mQ     Q      0Q     Q      0                                 (O     O      0)P     8P      08P     DP      PDP     gP      sP     P      P     P      mQ     Q      Q     Q      0Q     Q      0                                                     (O     O      0)P     gP      0sP     P      0P     P      PP     P      PP     P      TP     P      ]P     Q      0Q     Q      P!Q     2Q      P2Q     JQ      ]JQ     NQ      PNQ     mQ      ]mQ     Q      0Q     Q      PQ     Q      0Q     Q      PQ     Q      0Q     Q      0                           (O     O      0O     O      PO     O      V)P     Q      VQ     Q      0Q     Q      0                               (O     O      0)P     EP      0EP     gP      PsP     P      PP     P      PmQ     xQ      PQ     Q      0Q     Q      0                               (O     O      0)P     gP      0sP     P      0P     P      ^P     <Q      ^mQ     Q      ^Q     Q      0Q     Q      0                                     (O     O      0)P     gP      0sP     P      0P     P      0P     Q      PQ     .Q      w mQ     Q      0Q     Q      PQ     Q      w Q     Q      0Q     Q      0                 O     O      0                  -N     =N      P                    Q     Q      UQ     T      U                              Q     Q      TQ     R      ^R     S      TS     T      ^T     T      TT     T      ^T     T      T                  Q      R      ]                            R     R      VR     8R      v8R     AS      \S     T      \T     T      \T     T      v                        R     R      v  $ &3$p"R     R      v  $ &3$p "R     ?R      PT     T      P                 R     R      } v  $ &3$p8                                AS     SS      PSS     uS      \|S     S      PS     S      \T     T      \T     T      PT     T      \T     T      \                            R     SS      ]|S     S      ]S     S      ]T     8T      ]T     T      ]T     T      ]                      R     SS      V|S     S      VT     T      V                               R     SS      0|S     S      0S     S      PS     S      _T     <T      _HT     aT      _T     T      _T     T      0                                   R     SS      0|S     S      0T     <T      0HT     aT      0aT     pT      PpT     T      _T     T      0T     T      PT     T      0T     T      P                                     R     SS      0|S     S      0S     S      ]T     8T      08T     <T      PHT     ]T      P]T     ~T      ]~T     T      PT     T      ]T     T      0T     T      ]                                 R     SS      0|S     S      0S     S      PS     S      RT     0T      R0T     T      T     T      RT     T      0T     T                                     R     SS      0|S     S      0S     S      VT     CT      VHT     xT      VT     T      VT     T      0T     T      V                                   R     SS      0|S     S      0T     <T      0HT     HT      0HT     RT      r v RT     ]T      R]T     xT     	 v T     T      0T     T      r v T     T      RT     T      0T     T     	 v                  SS     |S      0                  Q     R      P                    T     T      UT     W      U                            T     U      TU     U      ^U     vV      TvV     V      ^V     W      TW     W      ^                  U     0U      ]                            U     "U      V"U     HU      vHU     <V      \vV     V      \W     W      \W     W      v                        "U     )U      v  $ &3$p")U     -U      v  $ &3$p "-U     OU      PW     W      P                 "U     )U      } v  $ &3$p8                                V     8V      P8V     MV      VV     V      VV     W      VW     jW      VxW     W      VW     W      PW     W      V                            U     MV      ]V     V      ]V     W      ]W     8W      ]xW     W      ]W     W      ]                      U     MV      ^V     V      ^W     W      ^                                   U     MV      0V     V      0V     W      0W     8W      08W     ?W      P?W     xW      ]xW     W      0W     W      PW     W      ]W     W      0                             U     MV      0V     V      0V     V      PV     W      ^W     W      PW     W      ^W     W      0                                      U     MV      0V     V      0V     W      0W     8W      0@W     OW      PPW     ^W      P^W     xW      w xW     W      0W     W      PW     W      w W     W      PW     W      0                         U     <V      0<V     HV      PHV     MV      \V     W      \W     W      0                               U     MV      0V     V      0V     W      0W     #W      0#W     4W      PxW     W      PW     W      W     W      0                 MV     vV      0                  U     U      P                    PY     hY      UhY     Z      U                          PY     lY      TlY     Y      ^Y     Z      TZ     Z      ^Z     Z      T                  rY     Y      ]                          Y     Y      VY     Y      vY     .Z      \Z     Z      \Z     Z      v                        Y     Y      v  $ &3$p"Y     Y      v  $ &3$p "Y     Y      PZ     Z      P                 Y     Y      } v  $ &3$p8                        .Z     GZ      PGZ     Z      \Z     Z      PZ     Z      \                      Y     KZ      VZ     Z      VZ     Z      V                         Y     KZ      0KZ     WZ      PWZ     ~Z      VZ     Z      0Z     Z      0                       Y     XZ      0XZ     dZ      PZ     Z      0Z     Z      0                 qZ     Z      0                  wY     Y      P                    W     X      UX     BY      U                          W     X      TX     nX      ^nX     %Y      T%Y     4Y      ^4Y     BY      T                  X     :X      ]                            'X     ,X      V,X     NX      vNX     X      \Y     %Y      \%Y     4Y      v4Y     BY      \                        ,X     3X      v  $ &3$p"3X     7X      v  $ &3$p "7X     [X      P%Y     3Y      P                 ,X     3X      } v  $ &3$p8                   ,X     [X      ~ #(%Y     3Y      ~ #(                        X     X      PX     Y      V4Y     =Y      P=Y     BY      V                      nX     Y      ^Y     %Y      ^4Y     BY      ^                         nX     X      0X     X      PX     Y      \Y     %Y      04Y     BY      0                 X     Y      0                  X     'X      P                    `K     ~K      U~K     M      U                              `K     K      TK     qL      ^qL     M      TM     M      ^M     M      TM     M      ^M     M      T                  K     K      ]                            K     K      VK     K      vK     bM      \iM     M      \M     M      vM     M      \                        K     K      v  $ &3$p"K     K      v  $ &3$p "K     K      PM     M      P                 K     K      } v  $ &3$p8                    L     L      PM     M      P                        L     M      ]iM     M      ]M     M      ]M     M      ]                        dL     
M      ViM     |M      VM     M      VM     M      V                       dL     L      0L     M      PM     M      0M     M      0                           dL     
M      0
M     M      PM     5M      ViM     M      0M     M      0M     M      0                        M     M      PM     5M      ]5M     9M      P9M     >M      V                 BM     iM      1                  K     K      P                    Z     Z      UZ     [      U                        Z     Z      TZ     6[      ^6[     [      T[     [      ^                  Z     
[      \                          Z     Z      VZ     [      v[     [      ][     [      ][     [      v                        Z     [      v  $ &3$p"[     [      v  $ &3$p "[     +[      P[     [      P                 Z     [      | v  $ &3$p8                      I[     M[      PM[     r[      \[     [      \                      T[     [[      P[[     [      V[     [      V                       ,[     r[      0r[     v[      Pv[     [      \[     [      0                        [     [      P[     [      V[     [      P[     [      V                 [     [      1                  Z     Z      P                     \     .\      U.\     __      U                         \     2\      T2\     \      ^\     P_      TP_     __      ^                  8\     a\      ]                          N\     S\      \S\     v\      |v\     D^      VM^     P_      VP_     __      |                        S\     Z\      |  $ &3$p"Z\     ^\      |  $ &3$p "^\     }\      PP_     ^_      P                 S\     Z\      } |  $ &3$p8                   S\     }\      ~ #(P_     ^_      ~ #(                          ]     /]      P/]     J^      ^M^     /_      ^=_     F_      PF_     P_      ^                        \     }]      ]M^     W^      ]\^     ^      ]/_     K_      ]                    \     3]      \/_     K_      \                               \     X]      0X]     m]      Pm]     ]      _]     ^      M^     \^      P\^     ^      0^     /_      /_     K_      0                           \     3]      03]     ?]      P?]     ]      \M^     x^      \^     /_      \/_     K_      0                             \     ]      0M^     ^      0^     ^      P^     ^      _^      _      _     /_      /_     K_      0                               \     ]      0]     ^      _M^     ^      0^     ^      P^     _      __     !_      P!_     /_      _/_     K_      0                     \     ]      0]     ]      PM^     K_      0                           \     ]      0M^     ^      0^     ^      P^     ^      ]_     /_      ]/_     K_      0                        ]     ]      P]     ^      \^     ^      P^     ^      \                   ^     M^      1K_     P_      1                  =\     N\      P                    a     a      Ua     #d      U                        a     a      Ta     b      ^b     d      Td     #d      ^                  a     a      \                            a     a      ]a     a      }a     b      Vc     6c      Vc     d      Vd     #d      }                    a     a      }  $ &3$p"a     a      }  $ &3$p "                      a     b      \c     !c      \c     #d      \                              ob     b      Pb     c      ^c     c      Pc     c      ^c     c      ^d     d      Pd     d      ^                      b     b      Pb     fc      c     d                              b     	c      ]c     ^c      ]c     c      ]c     c      ]                        b     b      Pb     b      \!c     c      \c     c      \                             b     6c      06c     Fc      PFc     c      Vc     c      Vc     c      0c     c      Pc     c      Vc     d      0                       b     fc      0fc     ic      Pic     c      c     d      0                 b     c      1                 c     c      0                  a     a      P                    0d     Hd      UHd     e      U                          0d     Ld      TLd     d      ^d     e      Te     e      ^e     e      T                  Rd     zd      ]                              gd     ld      Vld     d      vd     ~e      \e     e      \e     e      \e     e      ve     e      \                        ld     sd      v  $ &3$p"sd     wd      v  $ &3$p "wd     d      Pe     e      P                 ld     sd      } v  $ &3$p8                   ld     d      ~ #(e     e      ~ #(                          e     !e      P!e     e      ]e     e      ]e     e      Pe     e      ]                      d     %e      Ve     e      Ve     e      V                           d     %e      0%e     1e      P1e     Ne      Ve     e      Ve     e      0e     e      0                 be     e      1                 e     e      0                  Wd     gd      P                    e     f      Uf     g      U                          e     f      Tf     f      ^f     g      Tg     g      ^g     g      T                  f     :f      ]                            'f     ,f      V,f     Nf      vNf     2g      \7g     g      \g     g      vg     g      \                        ,f     3f      v  $ &3$p"3f     7f      v  $ &3$p "7f     [f      Pg     g      P                 ,f     3f      } v  $ &3$p8                        f     f      P7g     Gg      Pg     g      Pg     g      P                          {f     f      Pf     g      V7g     Yg      Vg     g      Vg     g      V                 7g     Yg      V                        Yg     ]g      P]g     g      Vg     g      Pg     g      V                 g     7g      1                  f     'f      P                    x     x      Ux     {      U                          x     x      Tx     y      ^y     {      T{     {      ^{     {      T                  x     x      ]                            x     x      Vx     x      vx     z      \z     {      \{     {      v{     {      \                        x     x      v  $ &3$p"x     x      v  $ &3$p "x     y      P{     {      P                 x     x      } v  $ &3$p8                                y     y      Py     z      ]z     z      ]U{     |{      ]{     {      P{     {      ]{     {      P{     {      ]                      y     z      ^z     {      ^{     {      ^                            y      y      P y     z      Vz     z      VU{     |{      V{     {      V{     {      V                         y     y      0y     y      Pz     z      P{     {      0{     {      0                                   y     y      0y     y      Py     Nz      _z     z      0z     z      Pz     U{      _U{     k{      Pk{     {      _{     {      0{     {      0                          {     {      P{     G{      VG{     K{      PK{     U{      V|{     {      V                 nz     z      1                  x     x      P                    r     r      Ur     u      U                        r     r      Tr     1s      ^1s     u      Tu     u      ^                  r     r      ]                          r     r      Vr     s      vs     t      \t     u      \u     u      v                        r     r      v  $ &3$p"r     r      v  $ &3$p "r     s      Pu     u      P                 r     r      } v  $ &3$p8                            s     s      Ps     =t      V]t     xt      Vt     t      Vt     t      Pt     u      V                    "s     s      ]t     u      ]                    1s     s      ^t     u      ^                      s     s      Ps     t      ]t     t      ]                            s     s      Ps     ]t      ^]t     gt      Pgt     t      ^t     t      Pt     t      ^                              1s     s      0s     t      Pt     ]t      _]t     lt      0t     t      0t     t      Pt     t      _t     u      0                        =t     At      PAt     Rt      VRt     Vt      PVt     ]t      V                 t     t      1                  r     r      P                    {     {      U{     8~      U                          {     |      T|     y|      ^y|     ~      T~     *~      ^*~     8~      T                  |     0|      ]                              |     "|      V"|     D|      vD|     e}      \l}     }      \}     ~      \~     *~      v*~     8~      \                        "|     )|      v  $ &3$p")|     -|      v  $ &3$p "-|     K|      P~     )~      P                 "|     )|      } v  $ &3$p8                            |     |      P|     7}      Vl}     }      V}     ~      V*~     3~      P3~     8~      V                      j|     |      ]~     ~      ]*~     8~      ]                      y|     |      ^~     ~      ^*~     8~      ^                        |     |      P|     g}      ]l}     }      ]}     ~      ]                                 y|     |      0|     }      P}     i}      ^l}     }      ^}     }      P}     }      ^}     ~      ^~     ~      0*~     8~      0                                 y|     %}      0%}     0}      Pl}     ~}      0~}     }      P}     }      }     }      0}     ~      ~     ~      0*~     8~      0                 }     }      1                 C}     l}      0                  |     |      P                    D     >D      U>D     &H      U                          D     BD      TBD     D      ]D     G      TG     G      ]G     &H      T                  HD     pD      \                            ]D     bD      VbD     D      vD     }E      ^G     G      ^G     G      vG     !H      ^                        bD     iD      v  $ &3$p"iD     mD      v  $ &3$p "mD     D      PG     G      P                 bD     iD      | v  $ &3$p8                          @E     SE      PSE     AF      VvF     G      VG     H      PH     !H      V                        D     E      \vF     F      \G     G      \G     !H      \                      D     E      ]G     G      ]G     !H      ]                                D     D      PD     E      w F     "F      w vF     F      w F     F      w F     G      w G     G      w G     !H      w                         }E     E      PE     sF      ^vF     G      ^!H     &H      ^                                   D     ZE      0ZE     ^E      P^E     E      _E     qF      ]vF     F      _F     G      ]G     G      0G     H      0H     !H      _!H     &H      ]                                   D     E      0E     E      PE     F      _F     F      PF     uF      _vF     F      0F     G      _G     G      0G     !H      0!H     &H      _                                                   D     E      0F     "F      0vF     F      0F     F      0F     F      PF     F      XF     F      w F     G      PG     G      w G     BG      XBG     UG      w \G     gG      XhG     hG      0G     G      PG     G      w G     G      w G     G      0G     !H      0                           D     E      0E     E      PE     E      ]vF     F      PG     G      0G     !H      0                               D     E      0F     "F      0vF     F      0F     F      0F     G      0G      G      PG     G      0G     !H      0                           G      G      0 G     #G      P#G     BG      QBG     UG      \G     aG      PG     G                         4F     vF      0!H     &H      0                  MD     ]D      P                    @~     ^~      U^~     o      U                        @~     b~      Tb~     ~      \~     `      T`     o      \                  h~     ~      ]                          ~~     ~      ^~     ~      ~~     ,      VH     `      V`     o      ~                      ~     ~      ~  $ &3$p"~     ~      ~  $ &3$p "~     ~      P                      ~     d      ]_           ]#     o      ]                                I     d      Pd           \H     ]      \_     m      Pm     ؀      \     D      \R     [      P[     `      \                         ~     ~      P~           _     ̀                 #     `                             ~           __     ̀      _           _     `      _                      d           H     _           #                              z     ~      P~     C      ]H     _      ]     #      ]                                       P                ʀ      Pʀ     ˀ      U           P     #                                      ~           0           P           ^H     _      ^_     ̀      0           0     
      P
           ^     `      0                                     P           \           P           \]     _      P                      H      1                  m~     ~~      P                    p           U     h      U                          p           T           ^     =      T=     L      ^L     h      T                             ]                                         V     ԁ      vԁ           \           \     =      \=     L      vL     h      \                                   v  $ &3$p"           v  $ &3$p "           P=     K      P                            } v  $ &3$p8                              i           P     ܂      ]           ]L     U      PU     Z      ]Z     c      Pc     h      ]                                   ^           ^     =      ^L     h      ^                                      P      ؂      V           V/     =      VL     h      V                                          0     ̂      P̂     w      _           P           _     /      _/     =      0L     h      0                                     P     S      VS     W      PW     m      V           V                 ƃ           1                 `           1                             P                    p           U     I      U                        p           T           ^     :      T:     I      ^                             ]                                     V     Ԅ      vԄ           \     :      \:     I      v                                   v  $ &3$p"           v  $ &3$p "           P:     H      P                            } v  $ &3$p8                          T     g      Pg           V           V,     5      P5     :      V                         k      ]     :      ]                      k     ~      P~           ]           ]                                  0           P     Ӆ      _     :      0                                   P     ʅ      Vʅ     ΅      P΅     Ӆ      V                 ׅ           1                             P                    P     h      Uh     ݇      U                        P     l      Tl     Ά      ^Ά     ·      T·     ݇      ^                  r           ]                                     V           v     E      \     ·      \·     ݇      v                                   v  $ &3$p"           v  $ &3$p "           P·     ܇      P                            } v  $ &3$p8                        .     A      PA     X      V     ɇ      Pɇ     ·      V                    Ά           ^     ·      ^                      E     T      PT           \           \                         Ά     X      0X     d      Pd           V           V     ·      0                            0                  w           P                    0H     NH      UNH     I      U                          0H     RH      TRH     H      ^H     I      TI     I      ^I     I      T                  XH     H      ]                            mH     rH      VrH     H      vH     CI      \I     I      \I     I      vI     I      \                        rH     yH      v  $ &3$p"yH     }H      v  $ &3$p "}H     H      PI     I      P                 rH     yH      } v  $ &3$p8                          )I     <I      P<I     oI      VI     I      VI     I      PI     I      V                      H     cI      ]I     I      ]I     I      ]                      H     I      ^I     I      ^I     I      ^                           H     CI      0CI     GI      PGI     I      \I     I      0I     I      \I     I      0                         H     cI      0cI     gI      PgI     I      ]I     I      0I     I      0                 {I     I      0                  ]H     mH      P                    @     n      Un     ԍ      U                          @     r      Tr           ^           T           ^     ԍ      T                  x           \                                       ]           }           V           V           }ƍ     ԍ      V                                 }  $ &3$p"           }  $ &3$p "           P                               c      \0     j      \     <      \           \ƍ     ԍ      \                                H     c      Pc           ^     0      ^0     =      P=           ^     ƍ      ^ƍ     ύ      Pύ     ԍ      ^                          Ҋ           _0           _     <      _           _ƍ     ԍ      _                        c     ߋ           0                 <                                     q           P           ]     .      ]           ]<           ]                                ۊ           00           0           P                <      0<     G      PN                      0ƍ     ԍ      0                                         ۊ           0           P     ۋ      _     0      _0           0           P     ǌ      _͌           0     N      0l     |      P           _           0ƍ     ԍ      0                                ۊ           00     ǌ      0ǌ     ݌      P݌           _     N      0N     ^      P^     l      _           0ƍ     ԍ      0                           ҋ      ]ҋ     ֋      P֋     ۋ      \                   ߋ           1     ƍ      1                  }           P                     u     >u      U>u     x      U                         u     Bu      TBu     u      ^u     vx      Tvx     x      ^                     Hu     qu      ]v     w      V>x     Zx      V                                  ^u     cu      \cu     u      |u     v      VGw     w      Vw     w      Vw     w      Vw     .x      VZx     vx      Vvx     x      |                        cu     ju      |  $ &3$p"ju     nu      |  $ &3$p "nu     u      Pvx     x      P                 cu     ju      } |  $ &3$p8                              Jv     ]v      P]v     v      ]qw     w      ]w     w      ]w     6x      ]hx     qx      Pqx     vx      ]                          u     u      Pu     v      Gw     w      w     .x      Zx     vx                            u     iv      ^Gw     qw      ^Zx     vx      ^                      iv     mv      Pmv     v      ^qw     >x      ^                                  nv     v      Pv     v      v     v      0qw     w      Pw     w      Rw     w      w     w      w     x      Px     x      U.x     >x      0                        v     v      Pw     w      Pw     w      P.x     8x      P                        v     v      } w     w      } w     w      0.x     >x      0                      u      w      \qw     x      \.x     vx      \                 )x     .x      1                  w     Gw      1                  Mu     ^u      P                               U     =      U                                   T     Y      ^Y     .      T.     =      ^                          0      ]B     w      \           \                                 "      V"     D      vD     B      \           \     .      \.     =      v                        "     )      v  $ &3$p")     -      v  $ &3$p "-     N      P.     <      P                 "     )      } v  $ &3$p8                                     P           ]ʉ           ]      )      P)     .      ]                      Y           ^     ʉ      ^     .      ^                                   P     Q      ^ʉ     ։      P։           ^                         #      p 0.#     9      } 0.                      ~     |      Vʉ     ܉      V     .      V                            1                   B     |      ]           ]                 |           1                             P                               U           U                                       T           ^           T           ^           T           ^                             \                                       S           s           ]           ]           s           ]                                   s  $ &3$p"           s  $ &3$p "           P           P                            | s  $ &3$p8                                     P           S           S           P           S                      )           \           \           \                                 P           \           0           \                       P      S           S                               &      ^&     &      P&     P      ^P     T      PT     l      S           ^                 ]           1                             P                     *     *      U*     -      U                               *     "*      T"*     *      ]*     .,      T.,     M,      ]M,     m-      Tm-     |-      ]|-     -      T                     (*     P*      \+     ,      \*-     J-      \                              =*     B*      VB*     d*      vd*     *      _*     '+      V.,     R,      _Q-     _-      Vm-     |-      v                        B*     I*      v  $ &3$p"I*     M*      v  $ &3$p "M*     h*      Pm-     {-      P                 B*     I*      | v  $ &3$p8                                '+     :+      P:+     +      VR,     ,      V-     (-      V_-     h-      Ph-     m-      V|-     -      V-     -      V                      *     D+      \.,     R,      \Q-     m-      \                      *     L+      ^.,     R,      ^Q-     m-      ^                                  *     D+      0D+     H+      PH+     j+      \j+     k+      Ul+     +      \.,     R,      0R,     *-      \J-     Q-      \Q-     m-      0|-     -      \                                *     L+      0L+     X+      PX+     +      ^+     +      0+     +      0.,     ,      0,     *-      ^Q-     m-      0|-     -      ^-     -      ^                                {,     ,      P,     ,      VJ-     L-      V|-     -      P-     -      -     -      V-     -      P-     -      V                         0+     +      0+     +      1R,     ,      0-     *-      0J-     Q-      0|-     -      0                      *     ),      ]R,     m-      ]|-     -      ]                 ,     .,      1                  -*     =*      P                               U           U                                   T     r      ]r           T           ]                          1      Vc           V+     J      V                                 #      \#     E      |E           ^     !      ^d     r      ^           |                        #     *      |  $ &3$p"*     .      |  $ &3$p ".     I      P           P                 #     *      v |  $ &3$p8                                         P           ^!     t      ^̐     +      ^J     d      ^r     {      P{           ^                      c     %      V     !      Vd           V                      r     -      ]     !      ]d           ]                             r     %      0%     )      P)     N      VN     O      UP     P      0     !      0           Vd           0                                      r     -      0-     9      P9     v      ]v     |      U}           0     !      0!     J      ]̐           0           ]           0     +      ]Z           0                                     _!           _Ԑ           _           _     d      _                                    0           1!     M      0̐     +      0J     d      0                                 \!     Ő      \̐           \                      ̐      1                             P                     .     .      U.     2      U                         .     ".      T".     .      ^.     r2      Tr2     2      ^                     (.     Q.      V61     m1      V!2     B2      V                                 >.     C.      \C.     h.      |h.     .      ].     .      Q.      /      |/     0      |0     i0      |}1     !2      |}r2     2      |                      C.     J.      |  $ &3$p"J.     N.      |  $ &3$p "N.     X.      P                       U.      /      V/     F0      V1     !2      Vr2     2      V                  .     .      ]                  .     .      ^                        /      /      R/     0      R0     d0      1     2                              /     /      i0     0      1     1      d2     r2                              .     .      P.     F1      ]1     !2      ]B2     r2      ]                         .     .      P.     }0      ^}0     ~0      U0     1      ^1     r2      ^                                    .     /      0/     /      P/     //      V//     0/      U1/     /      V/     i0      0i0     61      V1     1      V1     !2      0B2     d2      Vd2     r2      0                                               .     k/      0k/     /      P/     /      /     /      Q/     0      00     0      P0     0      0     0      Q0     0      00     0      P1     1      P1     1      P1     !2      0B2     Y2      Y2     d2      Pd2     r2      0                 1     1      1                        .     .      P.     /      _/     1      _1     r2      _                 q1     1      1                  -.     >.      P                               U           U                                   T     ǒ      ^ǒ     Ȓ      TȒ           ^                       ڑ      \                          Ǒ     ̑      V̑           v     Œ      ]Ȓ           ]           v                        ̑     ӑ      v  $ &3$p"ӑ     ב      v  $ &3$p "ב           P           P                 ̑     ӑ      | v  $ &3$p8                  ?     e      V                    e     l      Pl           V                       ?     Q      0Q     U      PU     {      \{           T                                   P           V           P           V                      Ȓ      1                       Ǒ      P                                U           U                                    "      T"           ]     x      Tx           ]     ͔      T͔     ܔ      ]ܔ           T                     (     N      \(     M      ^           ^                              >     C      ^C     b      ~b           Vx           V     ͔      V͔     ܔ      ~ܔ           V                    C     G      ~  $ &3$p"G     K      ~  $ &3$p "                 C     G      | ~  $ &3$p8                               Pܔ           P                         ^      V           V                           q      \     ͔      \ܔ           \                   (     ^      V           V                 Q     x      1                  -     >      P                                U     q      U                                      T     m      ]m     H      TH     W      ]W     q      T                  "     H      V                            8     =      ^=     [      ~[     u      \u     &      V:     H      VH     q      ~                    =     A      ~  $ &3$p"A     E      ~  $ &3$p "                 =     A      v ~  $ &3$p8                    í     ӭ      Pe     p      P                             [     ׭      0׭           P           \:     H      0W     `      P`     e      \e     q      0                                   P           ^           P     5      \                      :      1                  '     8      P                               U           U                                     T     U      ]U           T           ]           T                       (      V                                       ^     ;      ~;     M      \M     >      VR           V           ~                         !      ~  $ &3$p"!     %      ~  $ &3$p "                      !      v ~  $ &3$p8                        B      } #(           } #(                                 PR     Z      P           P                       ;           0           Uv           0           0                           ;           0           P           ]R     Z      0v           0           0                   ;          
                
                                             P           ^           P     $      ]$     (      P(     -      ]                 1     R      1                             P                               U     S      U                                       T     C      ^C     ]      T]     p      ^p     8      T8     S      ^                                   V      \V     ]      p ]           \           _     6      \6     8      P8     S      \                                       S           s     C      ]]     u      ]8     G      sG     S      ]                               s  $ &3$p"           s  $ &3$p "                            | s  $ &3$p8                              ~ #(8     F      ~ #(                      "     C      S]     d      SG     S      S                      4     C      P]     u      PG     R      P                       "     C      0]     d      0d     8      SG     S      0                         "     C      0]     u      0           P           ]G     S      0                                     P           _           P           ]     8      ]                   '     8     
      G     S     
                                   P                    pX     X      UX     ]      U                        pX     X      TX     Y      ^Y     t]      Tt]     ]      ^                             X     Z      VZ     Z      ^Z     [      V)[     [      V[     [      P[     ]      V?]     ]      V                                X     X      ]X     X      }X     Y      \)[     [      \[     \      \\     ?]      \f]     t]      \t]     ]      }                      X     X      }  $ &3$p"X     X      }  $ &3$p "X     X      P                 X     X      v }  $ &3$p8                          	Y     <Y      ^<Y     NZ      )[     [      [     :]      ?]     t]                            Y     Y      _)[     U[      _L]     t]      _                            (Y     ,Y      P,Y     Y      ])[     [      ][     \      ]\     ?]      ]L]     t]      ]                         (Y     :Z      0:Z     [      )[     [      0[     [      [     t]      0                                    (Y     Y      0Y     Y      PY     [      ])[     [      0[     [      P[     [      ][     \      0\     \      ]\     ?]      0?]     L]      ]L]     t]      0                                  (Y     `Z      0`Z     fZ      PfZ     Z      _Z     Z      0Z     Z      PZ     Z      Z     [      P)[     [      0[     [      _[     t]      0                               (Y     Y      0Y     Y      PY     Y      \)[     [      0[     \      0\     ?]      0L]     f]      \f]     t]      0                           (Y     Y      0)[     p[      0p[     [      _[     \      0\     ?]      _L]     t]      0                                OY     ^Y      P^Y     Y      ^)[     [      ^[     \      ^\     ?]      ^L]     f]      ^f]     o]      Po]     t]      ^                  ]     ?]      1                 :Z     PZ      0                     Z     PZ      ^\     \      ^?]     L]      ^                         Z     PZ     
 I     Z     Z      PZ     [      ^\     \     
 I     ?]     L]     
 I                         PZ     `Z      ^Z     Z      ^                    Z     Z      PZ     Z      _                  X     X      P                    ]     ]      U]     f      U                              ]     ]      T]     ^      ^^     -b      T-b     Kb      ^Kb     wf      Twf     f      ^f     f      T                                                                                 ]     _      V_     `      \`     V`      VV`     `      \`     #a      V#a     6a      _6a     db      Vsb     b      Vb     	c      \	c     mc      Vmc     c      \c     c      V/d     d      \d     d      Vd     d      Pd     e      Ve     e      Pe     =e      V=e     Be      PBe     |e      \|e     e      Ve     e      Pe     e      \e     e      Pe     e      Ve     e      Pe     f      \f     f      Pf     =f      \=f     Bf      PBf     Of      \Of     f      Vf     f      \                                ]     ]      ]]     ]      }]     ^      \a     Kb      \c     c      \c     /d      \if     wf      \wf     f      }                      ]     ]      }  $ &3$p"]     ]      }  $ &3$p "]     ]      P                 ]     ]      v }  $ &3$p8                                  "^     &^      P&^     `      a     Zb      sb     c      &c     c      c     *d      /d     e      Be     wf      f     f                              ?^     H_      _a     a      _-b     Kb      _Of     wf      _                                  ^     `      w a     -b      w Kb     Zb      w sb     b      w &c     c      w c     *d      w /d     e      w Be     wf      w f     f      w                             ^     ^      P^     ?_      ^a     (b      ^c     c      ^c     /d      ^Of     wf      ^                                    ^     `      0`     a      a     -b      0Kb     Zb      0sb     c      0&c     c      0c     c      c     e      0e     Be      Be     wf      0f     f      0                                        ^     ?_      0?_     F_      PF_     a      ^a     (b      0(b     -b      PKb     db      ^sb     c      ^c     c      0c     c      ^c     /d      0/d     Of      ^Of     wf      0f     f      ^                                              ^     i`      0i`     a      ]a     -b      0Kb     Zb      0sb     c      0&c     c      0c     c      ]c     /d      0/d     d      ]d     e      0e     |e      ]|e     Bf      0Bf     Of      ]Of     wf      0f     f      0f     f      ]                               ^     ^      0^     _      P_     H_      \a     -b      0c     c      0c     /d      0Of     if      \if     wf      0                           ^     H_      0a     a      0a     -b      _c     c      0c     /d      _Of     wf      0                                                ^     ^      P^     _      ]`     Q`      ]a     -b      ]Kb     Zb      ]sb     b      ]&c     hc      ]c     c      ]c     /d      ]d     e      ]|e     e      ]e     e      ]Of     if      ]if     rf      Prf     wf      ]f     f      ]                 d     /d      1                 `     `      0                             `     `     
 I     a     a      Pa     a      _/d     d     
 I     Be     |e     
 I     Bf     Of     
 I     f     f     
 I                         `     a      _Ma     a      _                          a     6a      w ~a     a      Pa     a      a     a      Pe     Be      w                          `     `      _/d     d      _Be     |e      _Bf     Of      _f     f      _                    \a     ka      Pka     a      w                   ]     ]      P                               U           U                                         T           ]     m      Tm           ]     Ɩ      TƖ     Ֆ      ]Ֆ           T                          <      \     D      V           V                              ,     1      ^1     P      ~P           Vm           V     Ɩ      VƖ     Ֆ      ~Ֆ           V                    1     5      ~  $ &3$p"5     9      ~  $ &3$p "                 1     5      | ~  $ &3$p8                    ߕ           PՖ           P                                 a     D      H           H                      u     h      \     Ɩ      \Ֆ           \                        D      H           H                 H     m      1                       ,      P                               U           U                                   T     s      ^s           T           ^                       A      \                          .     3      ]3     Y      }Y     p      V           V           }                      3     :      }  $ &3$p":     >      }  $ &3$p ">     J      P                      E           \           \n           \                   E     `      ~ #(           ~ #(                              ė     ݗ      Pݗ           ^           ^           P     n      ^|           P           ^                             3      \           \           \     n      \                                 Y           0           P           ]           ]           0     Y      ]Y     f      Pf     n      ]n           0                          3     :      P:     V      \V     Z      PZ           \           P                 c           1                       .      P                          N      UN     N      U                                R      TR     Ғ      ]Ғ     ǘ      Tǘ     ֘      ]֘     N      T                  X           V                            n     s      ^s           ~           \     ǘ      \ǘ     ֘      ~֘     N      \                      s     z      ~  $ &3$p"z     ~      ~  $ &3$p "~           P                                  D      V           VG           V           V           Vǘ           V@     N      V                                  T     p      Pp           ]     G      ]G     T      PT           ]     ǘ      ]֘           ]           P     N      ]                            p     G           6      a                ǘ      ֘                N                                               P     ғ      ֖           P     q           6      Pa           ֘           @     N                          C     q      @     N                                      G      q                           ǘ      ֘                @                                                P     D           v      v     ݕ      0G     ֗                 ֘            $     @      0@     N                                                ғ      0ғ           P           ^&     G      G     q      0q                      0           0֘           0     @      @     N      0                                             D      0           0           P           VG           0           V           0֘           0            V     $      V$     +      P+     @      V@     N      0                                         D      0           0           P     G      ^G           0     ȗ      Pȗ           ^           0֘            0      $      ^$     N      0                                 D      0           0     G      VG           0֘            0            V     N      0                                                0           ]     G      ]G     q      0q           ]           0           ]           0     ǘ      ]֘           0     @      ]@     N      0                                   P           _     ǘ      _֘     N      _                        }           P           V           P           V                              1     ǘ      1                  ]     n      P                          >      U>           U                                B      TB           ^           T           ^           T                  H     q      \                          ^     c      ]c           }           V           V           }                      c     j      }  $ &3$p"j     n      }  $ &3$p "n     z      P                        u     g      \     E      \ɠ           \q           \                   u           ~ #(           ~ #(                                       P           _           P     q      _           P           _                    -           ^     q      ^                              ]     E      0                                           P     ɞ      \E     X      PX     ^      \           \     F      \t           \7     q      \                                              >      0>     B      PB           ]           0           ]           0     F      ]F     t      0t     ɠ      ]ɠ     7      07     q      ]q           0           0                                                      0           P           T     4      04     A      P^           T           TF     [      T[     t      ɠ           0           T     7      q           0           0                                   P     ֞                                                                 P     ɞ      ]ɞ     ͞      P͞     Ҟ      \           P                               Y     3                       ֞           1                  M     ^      P                               U           U                                     T           ^     Ǣ      TǢ     ֢      ^֢           T                  ¡           ]                            ס     ܡ      Vܡ           v           \     Ǣ      \Ǣ     ֢      v֢           \                        ܡ           v  $ &3$p"           v  $ &3$p "           PǢ     բ      P                 ܡ           } v  $ &3$p8                        v           P           V֢     ߢ      Pߢ           V                                 ^     Ǣ      ^֢           ^                             P                            0                  ǡ     ס      P                               U     R      U                                     T     ]      ]]     7      T7     F      ]F     R      T                       8      V                            (     -      ^-     K      ~K     e      \e           V)     7      V7     R      ~                    -     1      ~  $ &3$p"1     5      ~  $ &3$p "                 -     1      v ~  $ &3$p8                         ǣ      PF     Q      P                    У     ԣ      Pԣ           \                        ۣ           P           ^           P     $      \                      )      1                       (      P                    pB     B      UB     JD      U                              pB     B      TB     C      ]C     C      TC     D      ]D     -D      T-D     <D      ]<D     JD      T                     B     B      \C     C      ^D     D      ^                            B     B      ^B     B      ~B     dC      VC     D      VD     -D      V-D     <D      ~                    B     B      ~  $ &3$p"B     B      ~  $ &3$p "                 B     B      | ~  $ &3$p8                          dC     sC      PsC     C      VD     D      V<D     ED      PED     JD      V                     mC     sC      PsC     C      VD     D      V                      B     C      \D     -D      \<D     JD      \                   C     C      VD     D      V                 C     C      1                  B     B      P                    PD     nD      UnD     F      U                              PD     rD      TrD     D      \D     9F      T9F     KF      \KF     F      TF     F      \F     F      T                     xD     D      ^E     F      ^aF     F      ^                                      D     D      VD     D      vD     D      ]D     HE      ^HE     VE      vVE     E      v9F     aF      ]F     F      vF     F      ^F     F      vF     F      v                      D     D      v  $ &3$p"D     D      v  $ &3$p "D     D      P                 D     D      ~ v  $ &3$p8                   D     D      | #(F     F      | #(                          HE     ]E      P]E     E      ^F     F      ^F     F      PF     F      ^                    E     E      PF     F      P                    E     F      v aF     F      v                       D     2F      \aF     F      \F     F      \                   E     F      VaF     F      V                 F     9F      1                  }D     D      P                         Ψ      UΨ           U                             Ҩ      TҨ     3      ^3           T           ^                  ب           \                                     ]           }            V:           V           }                                 }  $ &3$p"           }  $ &3$p "     
      P                                   \:     v      \     Ȫ      \           \                                       P     7      ^:     M      PM           ^           P           ^                             T                                 ʩ      Pʩ           \           P           \Ȫ     ֪      P֪     ܪ      \                                0     ܩ      ]:           0                            ܩ      0ܩ           P           ]:           0                                     P           \     
      P
           \           P                      :      1                  ݨ           P                    `     ~      U~           U                          `           T           ]     ̦      Ț     ۦ      ]ۦ           T                             ^                                       V     ƣ      vƣ     {      \     ̦      \̦     ۦ      vۦ           \                                 v  $ &3$p"           v  $ &3$p "           P                            ~ v  $ &3$p8                              6     K      PK           ]           ]           ]     Ǧ      PǦ     ̦      ]ۦ           ]                                       P     m      ^           ^           P           ^ۦ           ^                               ƣ           0           P     Υ      0Υ     ݥ      P           PM     T      P     ̦      0ۦ           0                           ƣ     Ѥ      0Ѥ     I      V           V1     a      V     ̦      0ۦ           0                                             P     I      _I     M      PM     R      V           _           P           _1     G      PG     M      _                      ɥ     ͥ      Pͥ           _M           _                 u           1                            ^                V     s      1                             P                     h     h      Uh     j      U                           h     "h      T"h     h      ]h     j      Tj     j      ]j     j      T                  (h     Ph      ^                            =h     Bh      VBh     fh      vfh     Dj      \Kj     j      \j     j      vj     j      \                      Bh     Ih      v  $ &3$p"Ih     Mh      v  $ &3$p "Mh     Sh      P                 Bh     Ih      ~ v  $ &3$p8                            h     h      Ph     i      ]zj     j      ]j     j      Pj     j      ]j     j      ]                          Bi     Xi      PXi     i      Vj     j      Pj     j      Vj     j      V                             fh     i      0i     i      Pi     i      _lj     j      0j     j      Pj     j      _j     j      0                      i     i      Pi     lj      j     j                                i     i      Pi     j      Vj     j      Pj     1j      VKj     lj      V                 $j     Kj      1                  -h     =h      P                               U           U                                     T           ]     o      To     ~      ]~           T                             ^                            ͙     ҙ      Vҙ           v           \     o      \o     ~      v~           \                      ҙ     ٙ      v  $ &3$p"ٙ     ݙ      v  $ &3$p "ݙ           P                 ҙ     ٙ      ~ v  $ &3$p8                            a     v      Pv           ]     S      ]a     j      Pj     o      ]~           ]                            Қ           P           V'           V     E      V~           P           V                  S     e      P                              |           P           _     ě      Pě     ɛ      V           _+     4      P4     E      _                 ͛           1                       ͙      P                         (      U(     Z      U                             ,      T,           ]     K      TK     Z      ]                  2     X      \                          H     M      ^M     l      ~l     Ӣ      VӢ           ~     Z      ~                    M     Q      ~  $ &3$p"Q     U      ~  $ &3$p "                 M     Q      | ~  $ &3$p8                   M     s      } #(K     Y      } #(                            Ӣ           P           V           P     /      V=     F      PF     K      V                 l     K      0                      /      V                            0                  7     H      P                    `           U     l      U                        `           T     X      ]X     A      TA     l      ]                             S                                       ^     ɤ      ~ɤ           V     b      SA     ]      S]     l      ~                               ~  $ &3$p"           ~  $ &3$p "                            s ~  $ &3$p8                          ?     P      PP           ^     A      ^O     X      PX     ]      ^                           [           _           S           _           U           _     A      _                    [     	      V     A      V                      X     b      Pb           ]     A      ]                      b           S     ĥ      S     )      S                            0                             P                               U     #      U                                     T     p      ]p           T           ]     #      T                       @      ^                            -     2      V2     V      vV           \           \           v     #      \                      2     9      v  $ &3$p"9     =      v  $ &3$p "=     C      P                 2     9      ~ v  $ &3$p8                                   ֧      P֧           ]     ި      ]           ]           P           ]     #      ]                    /     B      P     "      P                          F     N      PN     g      V           V     ƨ      Pƨ     ̨      V                        g     k      Pk     |      V|           P           V                     K     N      PN     X      V           V                            1                       -      P                    0     N      UN           U                          0     R      TR           ]           T           ]           T                  X           ^                            m     r      Vr           v     [      \b           \           v           \                      r     y      v  $ &3$p"y     }      v  $ &3$p "}           P                 r     y      ~ v  $ &3$p8                                         P           ]u           ]     ׫      ]           ]           P           ]                          r           P     .      Vb           V           P           V                                                0     Ϊ      PΪ            ]b     u      ]u           0           P           0           0           P           ]           0                                        0     7      _b           _           0           0           _           0                                        P     .      ].     2      P2     7      V           P           ]                     ʪ     Ϊ      PΪ     ܪ      ]b     u      ]                 ;     b      1                  ]     m      P                          >      U>           U                                    B      TB           ^           T           ^     د      Tد           ^           T                  H     p      ]                            ]     b      Vb           v           \     د      \د           v           \                        b     i      v  $ &3$p"i     m      v  $ &3$p "m           Pد           P                 b     i      } v  $ &3$p8                                         P           ^           ^           ^     ů      Pů     د      ^           ^                              h     }      P}           ]           ]           ]ʯ     ӯ      Pӯ     د      ]           ]                            ݭ     #      PF     ]      P     ή      Pخ           Pa     q      P           P                                   (      0F     F      0F     p      ]           0           P     4      Va     {      0     د      0           0                              p           V           P           V4     6      P6     a      V{           P           V                              P           V                            1                  M     ]      P                               U     -      U                                     T           ^           T           ^     -      T                             ]                            ͜     Ҝ      VҜ           v           \           \           v     -      \                        Ҝ     ٜ      v  $ &3$p"ٜ     ݜ      v  $ &3$p "ݜ           P           P                 Ҝ     ٜ      } v  $ &3$p8                            t           P           ]           ]           ]     (      P(     -      ]                                   P           V           P           V                           @      ^Ş           ^     -      ^                                  0           P           0     -      0                               )      P)     w      V     Ş      VŞ     Ξ      PΞ     Ԟ      V                            @     B      PB     w      ^w     {      P{           V           P     Ş      ^                            1                       ͜      P                    0     N      UN     ͡      U                          0     R      TR           ^           T           ^     ͡      T                  X           ]                            m     r      Vr           v     D      \K           \           v     ͡      \                        r     y      v  $ &3$p"y     }      v  $ &3$p "}           P           P                 r     y      } v  $ &3$p8                                 )      P)     F      ]K           ]           ]     ȡ      Pȡ     ͡      ]                                   P           V           P           V                                 ^e           ^     ͡      ^                                  0           P           0     ͡      0                               ɠ      Pɠ           VK     e      Ve     n      Pn     t      V                                       P           ^           P            VK     T      PT     e      ^                 $     K      1                  ]     m      P                    p           U           U                          p           T           ]     j      Tj     y      ]y           T                             \                                       ^     ̦      ~̦     F      VF     [      ~\     j      Vj           ~                               ~  $ &3$p"           ~  $ &3$p "                            | ~  $ &3$p8                    ,     8      Py           P                 9     \      0                             P                            8      U8           U             U                                  <      T<           ]     d      Td     s      ]s           T             T                  B     h      V                                X     ]      ^]     {      ~{           \     B      VB     U      ~V     d      Vd           ~             ~                    ]     a      ~  $ &3$p"a     e      ~  $ &3$p "                 ]     a      v ~  $ &3$p8                   ]           } #(d     r      } #(                               Ps     ~      P                                   P     (      ](     ,      P,     S      ]                 5     V      1                  G     X      P                               U           U                                   T           ]           T           ]                       Ȏ      V                                         ^     ێ      ~ێ           \           V           ~           V           ~                               ~  $ &3$p"     Ŏ      ~  $ &3$p "                            v ~  $ &3$p8                              } #(           } #(                      C     [      P           Pԏ     ߏ      P                        a     e      Pe     v      ]v     z      Pz           ]                            1                             P                    F     F      UF     H      U                              F     F      TF     dG      ]dG     ZH      TZH     H      ]H     H      TH     H      ]H     H      T                     F     G      \G     /H      VH     H      V                              G     G      ^G     2G      ~2G     G      VZH     H      VH     H      VH     H      ~H     H      V                    G     G      ~  $ &3$p"G     G      ~  $ &3$p "                 G     G      | ~  $ &3$p8                      G     G      PH     H      PH     H      P                 G     G     
 p 0.                      WG     SH      \H     H      \H     H      \                 3H     ZH      1                  F     G      P                    H     H      UH     J      U                              H     H      TH     dI      ]dI     LJ      TLJ     qJ      ]qJ     J      TJ     J      ]J     J      T                     H     I      \I     !J      ^qJ     J      ^                              I     I      ^I     2I      ~2I     I      VLJ     qJ      VJ     J      VJ     J      ~J     J      V                    I     I      ~  $ &3$p"I     I      ~  $ &3$p "                 I     I      | ~  $ &3$p8                    I     I      PJ     J      P                 I     I     	 p0.                      WI     EJ      \qJ     J      \J     J      \                 %J     LJ      1                  H     I      P                               U     +      U                                         T     '      ]'     ^      T^     n      ]n           T           ]     +      T                                                           S            s            S           $     T      ST     ^      p ^     é      Sé     ݩ      \ݩ           S           P     d      Sd     t           ت      Sت     ݪ      Pݪ           S            P      +      S                                  ѧ     ֧      \֧            |      =      ^=           \^     w      ^w           \            \           |     +      \                    ֧     ݧ      |  $ &3$p"ݧ           |  $ &3$p "                 ֧     ݧ      s |  $ &3$p8                   ֧           } #(           } #(                                       P     >      ^w           ^ݩ           ^     &      P&     +      ^                                       0     >      _^           0ݩ           _            0     +      0                                   >      0^           0ݩ           0           ^ݪ            ^            0     +      0                                       P     $      w ݩ           w G     K      PK           w ݪ            w                                               0     5      \>     G      \^           0           \           Tݩ           \            \            0     +      0                        '     G      ]w           ]ݩ           ]     +      ]                               
                
      ݪ           
                            +     7      P7           _ݪ            _                       ѧ      P                               U     F      U                                   T     e      ]e     7      T7     F      ]                       8      V                              (     -      ^-     K      ~K     ]      \]     	      V	           ~     7      V7     F      ~                    -     1      ~  $ &3$p"1     5      ~  $ &3$p "                 -     1      v ~  $ &3$p8                   -     R      } #(7     E      } #(                         Ԑ      P+     6      P                        ڐ     ސ      Pސ           ]           P           ]                            1                       (      P                    @     Y      UY     װ      U                        @     ]      T]           ]     Ȱ      TȰ     װ      ]                  d           S                          {           ^           ~           \     Ȱ      \Ȱ     װ      ~                               ~  $ &3$p"           ~  $ &3$p "                            s ~  $ &3$p8                               $      P$           ^           ^     ð      Pð     Ȱ      ^                         =      S           S                        _     c      Pc     u      Su     y      Py           S                            1                  i     {      P                    P     h      Uh           U                        P     l      Tl     ő      ]ő           T           ]                  r           V                                         ^           ~           \     i      Vi     |      ~}           V           ~                               ~  $ &3$p"           ~  $ &3$p "                            v ~  $ &3$p8                              } #(           } #(                         4      P           P                        :     >      P>     O      ]O     S      PS     z      ]                 \     }      1                  w           P                    0     N      UN     ?      U                          0     R      TR           ]           T     #      ]#     ?      T                                      X           V                      V           p            V           ^           V           P           V           P     ?      V                            n     s      \s           |     Z      ^     )      ^     #      |#     1      ^                      s     }      |  $ &3$p"}           |  $ &3$p "           P                 s     }      v |  $ &3$p8                            Z     m      Pm     ӭ      ^)     m      ^           ^1     :      P:     ?      ^                                   ]     I      ]     ͮ      ]#     ?      ]                      ̫     w      \     )      \#     ?      \                      w     {      P{           \)           \                                             P           _           0           w            )     7      P7     I      _I           w      ͮ      _ͮ           w                          ̭      ]ͮ           ]                                 P           ͮ                                          ̫           0     í      ̭                I      0I                ͮ      0ͮ           #     ?      0                             ̫     ٬      0٬     ӭ      _     I      0I           _     ͮ      0ͮ           _#     ?      0                             ̫           0                I      0I                ͮ      0ͮ           #     ?      0                                 )           #     ?                        ]     n      P                               U     +      U                                         T           _     Բ      TԲ           _            T            _     +      T                                           f      Vf     w           ˲      V˲     Բ      p Բ     m      Vm     r      Pr           V     ³      \³           V            P      +      V                                  !     &      ]&     O      }O           ^           }Բ           ^     O      }³           }            }     +      ^                      &     -      }  $ &3$p"-     1      }  $ &3$p "1     =      P                      8           \Բ           \      +      \                   8     Z       #(             #(                                       P     Ӳ      _           P            _     &      P&     +      _                           Ѳ      ^O     ³      ^            ^                                ]           ]O     r      ]                      J     N      PN           O     r                                     V           0           \Բ     O      0O           \           T³           0            \     +      0                           Բ                       +                             !      P                    0     I      UI     ǵ      U                        0     M      TM           ]           T     ǵ      ]                  T     {      S                          k     p      ^p           ~           \           \     ǵ      ~                    p     t      ~  $ &3$p"t     x      ~  $ &3$p "                 p     t      s ~  $ &3$p8                                     P           ^           ^           P           ^                    
     -      S           S                        O     S      PS     e      Se     i      Pi           S                 r           1                  Y     k      P                         Ȓ      UȒ           U                             ̒      T̒     %      ]%           T           ]                  Ғ           V                                         ^           ~           \     ɓ      Vɓ     ܓ      ~ݓ           V           ~                               ~  $ &3$p"           ~  $ &3$p "                            v ~  $ &3$p8                              } #(           } #(                    s           P           P                                   P           ]           P     ړ      ]                      ݓ      1                  ג           P                    е           U     g      U                        е           T     B      ]B     X      TX     g      ]                             S                                     ^     /      ~/     0      \5     X      \X     g      ~                               ~  $ &3$p"           ~  $ &3$p "                            s ~  $ &3$p8                                     P     4      ^5     <      ^J     S      PS     X      ^                         Ͷ      S5     :      S                                   P           S     	      P	     !      S                      5      1                             P                         (      U(     f      U                             ,      T,           ]     W      TW     f      ]                  2     X      V                              H     M      ^M     k      ~k     }      \}     )      V)     <      ~=     W      VW     f      ~                    M     Q      ~  $ &3$p"Q     U      ~  $ &3$p "                 M     Q      v ~  $ &3$p8                   M     r      } #(W     e      } #(                    Ӕ           PK     V      P                                   P           ]           P     :      ]                      =      1                  7     H      P                    p           U     Ɩ      U                        p           T           ]           T     Ɩ      ]                             V                                         ^     ˕      ~˕     ݕ      \ݕ           V           ~           V     Ɩ      ~                               ~  $ &3$p"           ~  $ &3$p "                            v ~  $ &3$p8                        ҕ      } #(     Ŗ      } #(                    3     T      P           P                        Z     ^      P^     o      ]o     s      Ps           ]                 |           1                             P                    J     J      UJ     L      U                              J     J      TJ     TK      ]TK     -L      T-L     QL      ]QL     }L      T}L     L      ]L     L      T                     J     K      \K     L      ^QL     oL      ^                              J     K      ^K     "K      ~"K     K      V-L     QL      VoL     }L      V}L     L      ~L     L      V                    K     K      ~  $ &3$p"K     K      ~  $ &3$p "                 K     K      | ~  $ &3$p8                   K     &K      } #(}L     L      } #(                    K     K      PL     L      P                    K     L      VQL     oL      V                      GK     &L      \QL     }L      \L     L      \                   K     L      VQL     oL      V                 L     -L      1                  J     J      P                    H     H      UH     YK      U                        H     H      TH     I      ^I     JK      TJK     YK      ^                  H     H      \                          H     H      ]H     H      }H     	J      V#J     JK      VJK     YK      }                      H     H      }  $ &3$p"H     H      }  $ &3$p "H     H      P                      H     }I      \J     J      \.K     YK      \                   H     H      ~ #(JK     XK      ~ #(                              TI     mI      PmI      J      ^#J     J      ^J     J      PJ     .K      ^<K     EK      PEK     JK      ^                          }I     I      \#J     RJ      \WJ     J      \J     J      \J     .K      \                                 H     I      0I     I      PI     J      ]#J     J      ]J     J      0J     J      ]J     J      PJ     .K      ].K     JK      0                          I     I      PI     I      \I     I      PI     I      \RJ     WJ      P                 I     #J      1                  H     H      P                    p           U           U                          p           T           ^           T           ^           T                       η      ]                                       V           v           \ظ           \/           \           v                             Ƿ      v  $ &3$p"Ƿ     ˷      v  $ &3$p "˷           P           P                      Ƿ      } v  $ &3$p8                            b     u      Pu     ɸ      Vظ           V/     H      V           P           V                         y      ]v           ]                        y           P     ,      ]/     v      ]           ]                               P     ظ      \                 \     v      1                           0                             P                    I     J      UJ     
L      U                          I      J      T J     J      ^J     K      TK     K      ^K     
L      T                  &J     NJ      ]                          ;J     @J      V@J     bJ      vbJ     J      \K     K      \K     K      v                        @J     GJ      v  $ &3$p"GJ     KJ      v  $ &3$p "KJ     oJ      PK     K      P                 @J     GJ      } v  $ &3$p8                   @J     oJ      ~ #(K     K      ~ #(                              J     J      PJ     EK      VTK     jK      VK     K      VK     K      PK     K      VK     L      V                        J     .K      ^TK     jK      ^K     K      ^K     L      ^                        J      K      P K     K      \K     K      \K     
L      \                        .K     3K      P3K     TK      ^K     K      PK     K      ^                   pK     K      0L     
L      0                  +J     ;J      P                    7     7      U7     9      U                        7     8      T8     \8      ^\8     9      T9     9      ^                  8     08      ]                          8     "8      V"8     D8      vD8     9      \9     9      \9     9      v                        "8     )8      v  $ &3$p")8     -8      v  $ &3$p "-8     Q8      P9     9      P                 "8     )8      } v  $ &3$p8                        8     8      P8     9      V9     9      P9     9      V                    d8     8      ]9     9      ]                    .9     29      P29     <9      V                           d8     8      08     8      P8     99      ]^9     |9      ]9     9      ]9     9      0                          99     ;9      P;9     S9      ]S9     W9      PW9     ^9      V9     9      P                      9     9      P9     .9      V9     9      V                 9     9      1                  8     8      P                    2     2      U2     4      U                          2     2      T2     3      ^3     4      T4     4      ^4     4      T                  2     2      \                          2     2      ]2     2      }2     .4      VH4     4      V4     4      }                      2     2      }  $ &3$p"2     2      }  $ &3$p "2     2      P                    2     3      \4     4      \                              d3     }3      P}3     E4      ^H4     4      ^4     4      P4     4      ^4     4      P4     4      ^                    3     3      U4     4      U                    3     3      P3     4      \                           2     3      03     3      P3     3      \H4     \4      \\4     v4      04     4      04     4      0                        3     3      P3     3      ]m4     v4      Pv4     4      ]                        3     3      P3     4      ]4     4      P4     4      \                 !4     H4      1                  2     2      P                    b     b      Ub     bd      U                        b     b      Tb     5c      ]5c     Sd      TSd     bd      ]                  b     c      V                            b     b      ^b     c      ~c     -c      \-c     %d      V9d     Sd      VSd     bd      ~                    b     c      ~  $ &3$p"c     c      ~  $ &3$p "                 b     c      v ~  $ &3$p8                   b     "c      } #(Sd     ad      } #(                    c     c      PGd     Rd      P                    c     c      Pc     c      ]                        c     c      Pc     c      ^c     c      Pc     c      ]                 d     9d      1                  b     b      P                    pd     d      Ud     e      U                        pd     d      Td     d      ]d     e      Te     e      ]                  d     d      V                              d     d      ^d     d      ~d     d      \d     e      Ve     e      ~e     e      Ve     e      ~                    d     d      ~  $ &3$p"d     d      ~  $ &3$p "                 d     d      v ~  $ &3$p8                   d     d      } #(e     e      } #(                    3e     Pe      Pe     e      P                        je     ne      Pne     e      ]e     e      Pe     e      ]                 e     e      1                  d     d      P                     f     f      Uf     g      U                         f     f      Tf     uf      ]uf     pg      Tpg     g      ]                  "f     Hf      V                              8f     =f      ^=f     [f      ~[f     mf      \mf     g      Vg     1g      ~2g     pg      Vpg     g      ~                    =f     Af      ~  $ &3$p"Af     Ef      ~  $ &3$p "                 =f     Af      v ~  $ &3$p8                   =f     bf      } #(pg     ~g      } #(                      f     f      P2g     >g      Pdg     og      P                        f     f      Pf     g      ]g     g      Pg     g      ]                 g     2g      1                  'f     8f      P                         ȹ      Uȹ     7      U                             ̹      T̹           ]     (      T(     7      ]                  ҹ           V                                       ^           ~     %      \%     ֺ      V     (      V(     7      ~                               ~  $ &3$p"           ~  $ &3$p "                            v ~  $ &3$p8                              } #((     6      } #(                    s           P     '      P                                      0           P           \           P           \     (      0                                   P           ^           P     ź      \                 ɺ           1                  ׹           P                    @     ^      U^           U                          @     b      Tb           ]     ׿      T׿           ]           T                  h           V                              ~           ^           ~     2      \޼           \߾     ׿      \׿           ~           \                               ~  $ &3$p"           ~  $ &3$p "                            v ~  $ &3$p8                           ټ      ]޼     ׿      ]           ]                                 P     ̽      _           _                                            Ի            P            V޼           V̽     V      _V           V߾           V     ,      _,     6      P6     7      V7     =      p=     K      PK     q      Vq     ~      P~           V                                         V           v     ƽ      Vƽ     н      vxн           V           V           P     ׿      V           V                      A           _     ҿ      _ҿ     ׿      P                 9     V      1                     ϼ      0                  m     ~      P                                U           U                                    "      T"           ]     x      Tx           ]           T           ]           T                     (     N      \(     M      ^           ^                              >     C      ^C     b      ~b           Vx           V           V           ~           V                    C     G      ~  $ &3$p"G     K      ~  $ &3$p "                 C     G      | ~  $ &3$p8                               P           P                         ^      V           V                           q      \           \           \                   (     ^      V           V                 Q     x      1                  -     >      P                               U           U                                         T           ^           T           ^           T           ^           T                       :      ]                            '     ,      V,     N      vN           \           \           v           \                        ,     3      v  $ &3$p"3     7      v  $ &3$p "7     X      P           P                 ,     3      } v  $ &3$p8                   ,     X      ~ #(           ~ #(                               $      P$     H      Vh           V           P           V                                 ]           ]           ]                    7     B      Pt     y      P                    %     7      Ph     t      P                        H     L      PL     ]      V]     a      Pa     h      V                            1                       '      P                         .      U.     #      U                               2      T2           ]           T           ]     #      T                  8     a      \                            N     S      ^S     y      ~y     D      VD     [      ~^           V     #      ~                      S     Z      ~  $ &3$p"Z     ^      ~  $ &3$p "^     j      P                      e           \^     f      \     #      \                                       P     ]      _^     m      Pm           _           P     #      _                               T           P                           y           0           P^           0           P           0     #      0                                   P     *      \*     .      P.     3      \                 7     ^      1                  =     N      P                          4      U4           U                              8      T8           ^           T           ^                     >     g      ]v           \+     J      \                                    T     Y      \Y           |     A      VA     ڱ      |ڱ           |           V     +      |J     u      |           |           |                        Y     `      |  $ &3$p"`     d      |  $ &3$p "d           P           P                            o           ]     ֱ      w      +      w J     u      w            w            ]                              A     X      PX     5      V     &      VJ     g      Vu           V           P           V                        1      P                         5      \u           \                                   P     z      ^     +      ^J           ^                    5           V+     J      V                    Ͱ           ]           ]                   v           V+     J      V                 h           p                 h           0                   h     m      ~m           X                              1           1                  C     T      P                               U     I      U                                     T     h      ^h     ,      T,     ;      ^;     I      T                          '      ]     ?      \ö           \                                               \     ?      |?           V           |           |           V     ö      |           |     '      V,     I      |                                    |  $ &3$p"      $      |  $ &3$p "$     C      P,     :      P                              /     S      ]S           w      ö      w            w      '      w ,     ;      ];     I      w                                        P           V           V           V;     D      PD     I      V                         ?     յ      0յ     ߵ      Q     ö      0     '      0;     I      0                               \           \                          h     l      Pl           ^     ö      ^     '      ^;     I      ^                         Q      Vö           V                                 ]     ,      ];     I      ]                        Q      Vö           V                 (     C      p                 (     C      0                   (     -      ~-     C      X                   D           1'     ,      1                             P                    0     H      UH           U                              0     L      TL           ^     p      Tp           ^           T           ^           T                  R     z      ]                            g     l      Vl           v     k      \p           \           v           \                        l     s      v  $ &3$p"s     w      v  $ &3$p "w           P           P                 l     s      } v  $ &3$p8                    >     L      P           P                           Z      V           V           V                 M     p      0                  W     g      P                               U           U                                         T     T      ]T     5      T5     Y      ]Y           T           ]           T                                \     
      ^Y     w      ^                                         ^     "      ~"           V5     Y      Vw           V           ~           V                               ~  $ &3$p"           ~  $ &3$p "                            | ~  $ &3$p8                               P           P                               VY     w      V                      G     .      \Y           \           \                              VY     w      V                      5      1                             P                    L     L      UL     AN      U                              L     L      TL     \M      ^\M     M      TM     N      ^N     $N      T$N     3N      ^3N     AN      T                  L     L      ]                            L     L      VL     L      vL     M      \M     $N      \$N     3N      v3N     AN      \                        L     L      v  $ &3$p"L     L      v  $ &3$p "L     M      P$N     2N      P                 L     L      } v  $ &3$p8                        M     M      PM     M      V3N     <N      P<N     AN      V                      OM     M      ]N     $N      ]3N     AN      ]                 M     M      0                  L     L      P                     r     8r      U8r     s      U                               r     <r      T<r     r      ]r     js      Tjs     s      ]s     s      Ts     s      ]s     s      T                     Br     hr      \=s     Es      Vs     s      V                              Xr     ]r      ^]r     |r      ~|r     s      Vjs     s      Vs     s      Vs     s      ~s     s      V                    ]r     ar      ~  $ &3$p"ar     er      ~  $ &3$p "                 ]r     ar      | ~  $ &3$p8                   ]r     r      } #(s     s      } #(                    s     s      Ps     s      P                  s     =s      V                      r     es      \s     s      \s     s      \                 Is     js      1                  Gr     Xr      P                    PN     nN      UnN      P      U                        PN     rN      TrN     N      ]N     P      TP      P      ]                  xN     N      V                              N     N      ^N     N      ~N     "O      \"O     _O      ~bO     O      ~O     P      \P      P      ~                      N     N      ~  $ &3$p"N     N      ~  $ &3$p "N     N      P                      N     2O      VbO     qO      VO      P      V                            "O     2O      P2O     [O      \bO     lO      PlO     O      \P     P      PP     P      \                  O     O      P                 ;O     bO      0                  }N     N      P                     P     >P      U>P     Q      U                               P     BP      TBP     P      ]P     Q      TQ     Q      ]Q     Q      TQ     Q      ]Q     Q      T                     HP     nP      \0Q     bQ      ^Q     Q      ^                              ^P     cP      ^cP     P      ~P      Q      VQ     Q      VQ     Q      VQ     Q      ~Q     Q      V                    cP     gP      ~  $ &3$p"gP     kP      ~  $ &3$p "                 cP     gP      | ~  $ &3$p8                   cP     P      } #(Q     Q      } #(                    Q     $Q      PQ     Q      P                     Q     sQ      VQ     Q      V                      P     Q      \Q     Q      \Q     Q      \                   0Q     sQ      VQ     Q      V                 fQ     Q      1                  MP     ^P      P                     R     R      UR     T      U                         R     "R      T"R     yR      ]yR     S      TS     T      ]                  (R     QR      V                              >R     CR      ^CR     gR      ~gR     R      \R     -S      ~0S     S      ~S     S      \S     T      ~                      CR     JR      ~  $ &3$p"JR     NR      ~  $ &3$p "NR     XR      P                     UR     R      V0S     6S      VS     T      V                            R     R      PR     )S      \0S     =S      P=S     S      \S     S      PS     S      \                   R     R      0S     S      V                         gR     R      	R      S      1 S     S      P0S     S      	S     S      PS     S      	                 	S     0S      0                  -R     >R      P                    s     s      Us     u      U                              s     s      Ts     nt      ]nt     *u      T*u     Qu      ]Qu     zu      Tzu     u      ]u     u      T                     t     (t      \t     u      VQu     lu      V                              t     t      ^t     <t      ~<t     t      V*u     Qu      Vlu     zu      Vzu     u      ~u     u      V                    t     !t      ~  $ &3$p"!t     %t      ~  $ &3$p "                 t     !t      | ~  $ &3$p8                   t     @t      } #(zu     u      } #(                    t     t      Pu     u      P                  t     t      V                      at     %u      \Qu     zu      \u     u      \                 	u     *u      1                  t     t      P                    j     k      Uk     m      U                          j     k      Tk     pk      ]pk     m      Tm     m      ]m     m      T                  k     @k      ^                            -k     2k      V2k     Vk      vVk     m      \	m     m      \m     m      vm     m      \                      2k     9k      v  $ &3$p"9k     =k      v  $ &3$p "=k     Ck      P                 2k     9k      ~ v  $ &3$p8                            k     k      Pk     l      ],m     \m      ]jm     m      ]m     m      Pm     m      ]                              2l     >l      P>l     l      V,m     <m      Vjm     xm      Vxm     m      Pm     m      Vm     m      V                             Vk     ml      0ml     }l      P}l     l      _,m     6m      P6m     Nm      _Nm     m      0m     m      0                           Vk     l      0l     l      Pl     l      ]	m     ,m      ],m     m      0m     m      0                          l     l      Pl     l      Vl     l      Pl     l      V	m     ,m      V                 l     	m      1                  k     -k      P                    m     m      Um     p      U                        m     m      Tm     Hn      ]Hn     p      Tp     p      ]                  m     n      \                          m     n      ^n     )n      ~)n     o      Vo     p      Vp     p      ~                      n     
n      ~  $ &3$p"
n     n      ~  $ &3$p "n     n      P                        n     #o      \o     p      \Ap     p      \p     p      \                            n     n      Pn     o      _o     Rp      _`p     |p      _|p     p      Pp     p      _                              o     #o      P#o     mo      ]o     o      Po     Rp      ]np     wp      Pwp     |p      ]p     p      ]                             )n     So      0So     co      Pco     o      \o      p      0 p     &p      P&p     ,p      \Ap     p      0                       )n     mo      0mo     qo      Pqo     o      ]o     p      0                        o     o      Po     o      \o     o      Po     o      \                 o     o      1                  m     m      P                    Ж           U     G      U                        Ж           T     E      ]E     8      T8     G      ]                             V                                         ^     +      ~+     =      \=           V           ~     8      V8     G      ~                               ~  $ &3$p"           ~  $ &3$p "                            v ~  $ &3$p8                                 P           P,     7      P                         +           0           U           U           p      8      0                                   P     ϗ      ]ϗ     ӗ      Pӗ     ؗ      ]                 ܗ           1                             P                               U     1      U                                   T     z      ]z           T     1      ]                             V                                       ^           ~           \           V     "      V"     1      ~                               ~  $ &3$p"           ~  $ &3$p "                            v ~  $ &3$p8                          f     v      Pv           \           \           P     "      \                                z      0z           P           ]           P           ]     "      0                                   P           \           P           \                            1                             P                    @     X      UX     )      U                          @     \      T\           ^           T           ^     )      T                  b           ]                          w     |      V|           v     7      \           \           v                        |           v  $ &3$p"           v  $ &3$p "           P           P                 |           } v  $ &3$p8                                 3      P3           V           V           P           V     )      V                             a      ]           ]           ]     )      ]                                                7      07     ]      P]           \           \           T           \           P           T           \           0           P           \     $      P$     )      \                                        a      0a     p      Pp     |      ]           P           ]           0           P           ]           0     )      0                 |           0                  g     w      P                    p     p      Up     r      U                        p     p      Tp     >q      ^>q     r      Tr     r      ^                  p     
q      ]                            p     p      Vp     q      vq     q      \Zr     hr      \vr     r      \r     r      v                        p     q      v  $ &3$p"q     q      v  $ &3$p "q     +q      Pr     r      P                 p     q      } v  $ &3$p8                            q     q      Pq     r      V%r     Zr      Vhr     vr      Vvr     r      Pr     r      V                    >q     $r      ^%r     r      ^                               >q     q      0q     q      Pq      r      \%r     Zr      \Zr     hr      0hr     qr      Pqr     vr      \vr     r      0                       >q     q      0q     q      U%r     ,r      U/r     r      0                 r     %r      0                  p     p      P                    P     h      Uh           U                        P     l      Tl     Ř      ]Ř           T           ]                  r           V                                         ^           ~           \     a      Va     t      ~u           V           ~                               ~  $ &3$p"           ~  $ &3$p "                            v ~  $ &3$p8                           ,      Pu     ~      P           P                 %     ,      U                        2     6      P6     G      ]G     K      PK     P      ]                 T     u      1                  w           P                         ؙ      Uؙ     /      U                             ܙ      Tܙ     5      ]5            T      /      ]                             V                                         ^           ~     -      \-     њ      Vњ           ~            V      /      ~                               ~  $ &3$p"           ~  $ &3$p "                            v ~  $ &3$p8                                 P           P           P                            U                                   P           ]           P           ]                 Ě           1                             P                    `     x      Ux           U                        `     |      T|           ]           T           ]                             V                                         ^           ~           \     |      V|           ~           V           ~                               ~  $ &3$p"           ~  $ &3$p "                            v ~  $ &3$p8                              } #(           } #(                          &     6      P6     M      \           \           P           \                    7     G      P           P                        M     Q      PQ     b      \b     f      Pf     k      \                 o           1                             P                    0     N      UN           U                          0     R      TR           ^           T           ^           T                  X           ]                            m     r      Vr           v     f      \<           \           v           \                        r     y      v  $ &3$p"y     }      v  $ &3$p "}           P           P                 r     y      } v  $ &3$p8                                 )      P)           ]     }      ]           ]           P           ]                                 ^           ^           ^                              -     Z      PZ           V           V<     F      PF     L      V           P           V                        f     x      Px           \           P           \                 `     }      1                  y                                      0                  ]     m      P                               U     	      U                                   T     ^      ^^           T     	      ^                             \                                     ]     )      })           V           V     	      }                           
      }  $ &3$p"
           }  $ &3$p "           P                                 \           \     	      \                        0      ~ #(           ~ #(                                       P           ^           P           ^           P           ^                      B           _           _           _                               \           \                           B           0           P           _           0           _           0                         B           0           P     B      ]           0           0                         B           0           P     W      \           0           0                       B     B      0B     F      PF     u      ]           0                        W     [      P[     l      \l     p      Pp     u      \                 y           1                             P                    L     >L      U>L      P      U                          L     BL      TBL     L      ^L     O      TO     P      ^P      P      T                  HL     qL      ]                            ^L     cL      \cL     L      |L     M      VM     O      VO     P      |P      P      V                      cL     jL      |  $ &3$p"jL     nL      |  $ &3$p "nL     yL      P                      uL     ^M      ]M     M      ]O     P      ]                                   5M     NM      PNM     M      ^M     M      PM     \N      ^N     7O      ^kO     O      ^O     O      ^O     O      PO     O      ^P      P      ^                         L     L      PL     M      M     dN      N     N      O     O                           L     M      _M     N      _O     O      _                   ^M     M      ]M     N      ]                               L     oM      0oM     sM      PsM     M      \M     M      0M     N      \N     O      \O     O      0P      P      \                          L     M      0M     N      0N     )N      P)N     O      ]O     O      0P      P      ]                            L     M      0M     rN      0N     N      0N     N      PO     O      PO     O      0P      P      0                          L     M      0M     rN      0N     N      0N     O      O     O      0P      P      0                            L     M      0M     N      0N     N      PN     EN      _N     O      _O     O      0P      P      _                               L     M      0M     JN      0JN     TN      PN     O      0O     O      PO     ?O      kO     O      0P      P      0                                L     M      0M     rN      0N     N      0N     O      PO     O      kO     O      PO     O      PO     O      0P      P      0                            dN     fN      PfN     N      N     N      PN     N      \?O     AO      PAO     kO                                N     N      PN     O      kO     O      P     P      PP      P                          EN     IN      PIN     rN      _                   M     M      1P     P      1                  ML     ^L      P                     P     >P      U>P     yR      U                         P     BP      TBP     P      ^P     jR      TjR     yR      ^                  HP     qP      \                          ^P     cP      ]cP     P      }P     Q      VQ     jR      VjR     yR      }                      cP     jP      }  $ &3$p"jP     nP      }  $ &3$p "nP     zP      P                      uP     8Q      \Q     Q      \NR     yR      \                            Q     (Q      P(Q     zQ      ^Q     Q      PQ     R      ^\R     eR      PeR     jR      ^                      P     zQ      _Q     Q      _NR     jR      _                    8Q     jQ      \Q     Q      \                           P     IQ      0IQ     MQ      PMQ     Q      ]Q     Q      0Q     NR      ]NR     jR      0                         P     zQ      0Q     Q      0Q     Q      PQ     NR      _NR     jR      0                       P     zQ      0Q     Q      0Q     Q      PNR     jR      0                         P     zQ      0Q     Q      0Q     Q      PQ     @R      \NR     jR      0                        R     
R      P
R     @R      ^@R     DR      PDR     NR      \                 ~Q     Q      1                  MP     ^P      P                         .      U.           U                             2      T2     !      ^!           T           ^                  8     `      ]                          M     R      VR     t      vt           \           \           v                        R     Y      v  $ &3$p"Y     ]      v  $ &3$p "]           P           P                 R     Y      } v  $ &3$p8                                     P           ]           ]           P           ]                    !     (      P(     s      ^                                   P     @      V           V           V                            @      0@     D      PD     U      V           0                        U     Y      PY     j      Vj     n      Pn     s      V                 w           1                  =     M      P                    @E     ^E      U^E     @G      U                            @E     bE      TbE     _F      ^_F     F      TF     F      ^F     G      TG     @G      ^                  hE     E      ]                            }E     E      VE     E      vE     F      \F     #G      \#G     2G      v2G     @G      \                        E     E      v  $ &3$p"E     E      v  $ &3$p "E     E      P#G     1G      P                 E     E      } v  $ &3$p8                          $F     7F      P7F     F      VF     G      V2G     ;G      P;G     @G      V                      E     ;F      ]G     #G      ]2G     @G      ]                    _F     fF      PfF     F      ^                             E     ;F      0;F     DF      PDF     F      ]F     F      PF     G      ]G     #G      02G     @G      0                         E     F      0F     F      PF     F      ]F     #G      02G     @G      0                        F     F      PF     F      VF     F      PF     F      V                 F     F      1                  mE     }E      P                               U           U                                   T           ^           T           ^                       @      ]                            -     2      V2     T      vT           \           \           v           \                        2     9      v  $ &3$p"9     =      v  $ &3$p "=     a      P           P                 2     9      } v  $ &3$p8                                     P     A      V           V           P           V                        t           ]           ]           ]           ]                               P     _      ]                             t           0           P     ,      ^           P           ^           0           0                         t     ,      0,     0      P0     _      ^           0           0                        A     E      PE     V      VV     Z      PZ     _      V                 c           1                       -      P                               U           U                                   T           ^           T           ^                       @      ]                            -     2      V2     T      vT           \           \           v           \                        2     9      v  $ &3$p"9     =      v  $ &3$p "=     a      P           P                 2     9      } v  $ &3$p8                                     P     A      V           V           P           V                        t           ]           ]           ]           ]                               P     _      ]                             t           0           P     ,      ^           P           ^           0           0                         t     ,      0,     0      P0     _      ^           0           0                        A     E      PE     V      VV     Z      PZ     _      V                 c           1                       -      P                    R     R      UR     V      U                          R     R      TR     S      ^S     V      TV     V      ^V     V      T                  R     R      ]                            R     R      \R     R      |R     T      VT     V      VV     V      |V     V      V                        R     R      |  $ &3$p"R     R      |  $ &3$p "R     R      PV     V      P                 R     R      } |  $ &3$p8                                  S     S      PS     T      \T     5U      \]U     U      \U     'V      \<V     PV      \^V     xV      \xV     V      PV     V      \                    S     S      ^PV     V      ^                      &S     S      ]PV     ^V      ]xV     V      ]                               &S     S      0S     S      PS     T      ]T     PV      ]PV     ^V      0^V     xV      ]xV     V      0V     V      ]                                 /S     S      0S     :T      ]T     T      0T     T      PT     T      XT     U      ]U     ]U      0]U     U      ]U     <V      <V     GV      PPV     V      0                               /S     S      0S     S      PS     @T      ^T     ]U      ^]U     nU      PnU     wU      ^U     PV      ^PV     V      0                               /S     :T      0T     T      0T     U      PU     ]U      ]U     U      0U     U      PU     U      P<V     V      0                                   /S     T      0T     T      PT     5T      \T     5U      05U     9U      P9U     OU      \]U     U      0U     U      PU     U      \U     V      0                                     /S      T      0 T     T      PT     2T      _T     T      0T     T      PT     ]U      ]U     wU      0wU     {U      P{U     U      ^U     U      <V     V      0                            5T     <T      P<T     `T      \`T     dT      PdT     iT      \OU     ]U      PU     U      P                   mT     T      1V     V      1                  R     R      P                    V     V      UV     Z      U                        V     V      TV     7W      ^7W     Y      TY     Z      ^                  V     W      ]                          V     V      \V     W      |W     X      VX     Y      VY     Z      |                        V     V      |  $ &3$p"V     V      |  $ &3$p "V     W      PY     Z      P                 V     V      } |  $ &3$p8                                W     W      PW     ,X      \X     *Y      \RY     {Y      \Y     Y      \Y     Y      \Y     Y      PY     Y      \                      7W     W      ^Y     Y      ^Y     Y      ^                      FW     W      ]Y     Y      ]Y     Y      ]                             FW     W      0W     W      PW     X      ]X     Y      ]Y     Y      0Y     Y      ]Y     Y      0                                 OW     	X      0	X     PX      ]X     X      0X     X      PX     RY      RY     RY      0RY     Y      ]Y     Y      PY     Y      Y     Y      0Y     Y      0                                 OW     W      0W      X      P X     VX      ^X     RY      ^RY     fY      PfY     mY      ^Y     Y      ^Y     Y      0Y     Y      0                             OW     PX      0X     X      0X     X      PX     Y      _Y     Y      p RY     Y      0Y     Y      0                                     OW     ,X      0,X     0X      P0X     KX      \X     *Y      0*Y     .Y      P.Y     DY      \RY     {Y      0{Y     Y      PY     Y      \Y     Y      0Y     Y      0                                     OW     X      0X     "X      P"X     HX      _X     X      0X     Y      PY     RY      RY     mY      0mY     qY      PqY     Y      ^Y     Y      0Y     Y      0                              KX     RX      PRX     vX      \vX     zX      PzX     X      \DY     RY      PY     Y      PY     Y      \                   X     X      1Y     Y      1                  V     V      P                    `_     ~_      U~_     sa      U                        `_     _      T_     `      ^`     .a      T.a     sa      ^                  _     _      ]                          _     _      V_     _      v_     `      \a     da      \da     sa      v                        _     _      v  $ &3$p"_     _      v  $ &3$p "_     _      Pda     ra      P                 _     _      } v  $ &3$p8                            D`     W`      PW`     a      ]a     .a      ]<a     Va      ]Va     _a      P_a     da      ]                      _     [`      V.a     <a      VVa     da      V                      `     `      P`     a      ^a     .a      ^                             _     [`      0[`     k`      Pk`     `      Va     a      V.a     <a      0<a     Va      VVa     da      0                       _     `      0`     `      P`     `      Va     da      0                        `     `      P`     `      V`     `      P`     `      V                 `     a      1                  _     _      P                    Z     .Z      U.Z     \      U                            Z     2Z      T2Z     [      ^[     [      T[     [      ^[     [      T[     \      ^                  8Z     `Z      ]                          MZ     RZ      VRZ     tZ      vtZ     [      \[     \      \\     \      v                        RZ     YZ      v  $ &3$p"YZ     ]Z      v  $ &3$p "]Z     Z      P\     \      P                 RZ     YZ      } v  $ &3$p8                            Z     [      P[     c[      V[     [      V[     [      V[     [      P[     \      V                    Z     +[      ][     \      ]                      +[     2[      P2[     [      ][     [      ]                             Z     [      0[     [      P[     N[      ^[     [      ^[     [      0[     [      ^[     \      0                       Z     N[      0N[     R[      PR[     [      ^[     \      0                        c[     g[      Pg[     x[      Vx[     |[      P|[     [      V                 [     [      1                  =Z     MZ      P                    B     B      UB     C      U                          B     B      TB     C      ]C     C      TC     C      ]C     C      T                  B     B      V                              B     B      ^B     B      ~B     B      \B     C      VC     C      ~C     C      VC     C      ~                    B     B      ~  $ &3$p"B     B      ~  $ &3$p "                 B     B      v ~  $ &3$p8                    OC     ^C      PC     C      P                        oC     sC      PsC     C      ]C     C      PC     C      ]                 C     C      1                  B     B      P                               U     d      U                                   T     %      ^%     9      T9     d      ^                       A      ]                            .     3      \3     V      |V           V     0      V9     U      VU     d      |                        3     :      |  $ &3$p":     >      |  $ &3$p ">     ]      PU     c      P                 3     :      } |  $ &3$p8                               !      P!           \           \G     P      PP     U      \                      p     B      ]     4      ]9     U      ]                           c      _     8      _9     U      _                                   P     o           *      9     U                                  \      0\     q      Pq                U      0                                %      0%     7      P7           ^           P           ^9     U      0                            B      0B     F      PF           ]     U      0                            G      0G     [      P[                U      0                                   P           \           P           \                      9      1                            1                       .      P                    p           U           U                        p           T           ^           T           ^                             ]                                         \           |     N      Vm           V           V           |           V                                   |  $ &3$p"           |  $ &3$p "           P           P                            } |  $ &3$p8                                       P           \m     |      \           \           P           \                                   ]m           ]           ]           ]                                   _m           _           _           _                          "     &      P&           m                                                              "           0           P     A      m           0                      0           0                               "           0           P     X      ^m     v      Pv           ^           ^           0           0                             "           0           P     h      ]m           0           ]           0           0                             "           0           P     A      m           0                      0           0                             #      P#     4      \4     8      P8     =      \                            1                 A     m      1                             P                         .      U.           U                             2      T2     E      ^E           T           ^                  8     a      ]                              N     S      \S     v      |v           V     P      VY           V           |           V                        S     Z      |  $ &3$p"Z     ^      |  $ &3$p "^     }      P           P                 S     Z      } |  $ &3$p8                            /     A      PA           \           \Y     l      \           P           \                             b      ]     T      ]           ]           ]                                   _     X      _           _           _                                     P                J                                                                    0           P                Y      0Y                      0           0                                    E      0E     W      PW           ^           P     =      ^Y           ^           0           0                                  b      0b     f      Pf           ]     Y      0Y           ]           0           0                                  g      0g     |      P|                Y      0Y                      0           0                                   P           \           P           \                 0     Y      1                            1                  =     N      P                               U           U                                   T           ^           T           ^                             V                                     \           |           ]           ]           |                                 |  $ &3$p"           |  $ &3$p "           P                           '      V            Vj           V                                  ~ #(           T#(           T#(           ~ #(                                 ^     j      ^           ^                        '      0:     j      \                                '      0'     '      P'     A      V     E      0E     `      P`     j      Vj           0                        A     E      PE     V      VV     Z      PZ     p      V                 c           1                             P                    T     (T      U(T     U      U                              T     ,T      T,T     T      ^T     |U      T|U     U      ^U     U      TU     U      ^U     U      T                  2T     ZT      ]                            GT     LT      VLT     nT      vnT     wU      \|U     U      \U     U      vU     U      \                        LT     ST      v  $ &3$p"ST     WT      v  $ &3$p "WT     xT      PU     U      P                 LT     ST      } v  $ &3$p8                        ,U     HU      PHU     fU      VU     U      PU     U      V                      T     yU      ]U     U      ]U     U      ]                 YU     |U      0                  7T     GT      P                    u     u      Uu     ]w      U                              u     u      Tu     .v      ].v     v      Tv     w      ]w     Bw      TBw     Qw      ]Qw     ]w      T                     u     u      \v     v      Vw     4w      V                              u     u      ^u     u      ~u     v      Vv     w      V4w     Bw      VBw     Qw      ~Qw     ]w      V                    u     u      ~  $ &3$p"u     u      ~  $ &3$p "                 u     u      | ~  $ &3$p8                   u      v      } #(Bw     Pw      } #(                    v     v      PQw     \w      P                    v     v      Pv     v      V                      !v     v      \w     Bw      \Qw     ]w      \                 v     v      1                  u     u      P                    f     f      Uf     h      U                          f     f      Tf     dg      ]dg     h      Th     h      ]h     h      T                  f     g      V                              f     g      ^g     'g      ~'g     sg      \sg     h      Vh     h      Vh     h      ~h     h      V                    g     g      ~  $ &3$p"g     	g      ~  $ &3$p "                 g     g      v ~  $ &3$p8                   g     #g      } #(h     h      } #(                        g     g      Pg     h      \h     h      Ph     h      \                        dg     hg      Phg     .h      ]h     h      ]h     h      ]                        Ih     Ph      PPh     ih      \ih     mh      Pmh     rh      \                   vh     h      1h     h      1                  f     f      P                     i     i      Ui     n      U                             i     "i      T"i     i      ^i     l      Tl     l      ^l     n      Tn     n      ^                     (i     Qi      ]k     k      Vn     $n      V                            >i     Ci      \Ci     ui      |ui     k      Vl     n      V$n     n      Vn     n      |                      Ci     Ji      |  $ &3$p"Ji     Ni      |  $ &3$p "Ni     Xi      P                                     ]i     `i      P`i     pi      ]pi     |i      p|i     k      l     l      l     Im      sm     m      m     n      $n     On      nn     n      n     n      ]                              j     j      Pj     l      _Bl     l      _l     l      Pl     nn      _|n     n      Pn     n      _                      i     l      l     l      l     n                           j     j      0ul     l      0 m     Im      \                                           i     j      0j     j      Pj     k      Tl     Bl      0Bl     ul      Tul     l      Pl     ;m      0;m     Im      Psm     m      Tm     m      m     n      0$n     Sn      TSn     nn      nn     n      0                        i     i      Pi     l      l     l      l     n                              i     i      Pi     l      ^l     l      ^l     n      ^                          gk     kk      Pkk     k      \k     k      1l     l      PIm     Zm      \n     $n      1                       j     l      ]Bl     l      ]l     n      ]                    Ik     Mk      RMk     rk                       nm     sm      1                   k     k      1n     $n      1                 k     l      1                  -i     >i      P                    n     n      Un     Ru      U                            n     n      Tn     o      ]o     7r      T7r     br      ]br     Cu      TCu     Ru      ]                     n     n      Vq     
r      \{t     t      \                                    n     n      _n     o      o     o      \o     p      7r     br      \s     !s      !s     os      ~\t     {t      ~'u     5u      \5u     Ru                            n     n        $ &3$p"n     n        $ &3$p "n     n      P                                      n     n      Pn     So      VSo     mp      7r     r      s     s      1t     ?t      \t     {t      t     t      t     u      'u     Cu      Cu     Ru      V                                o     p      Pp     q      \br     s      \s     s      Ps     {t      \t     'u      \5u     >u      P>u     Cu      \                            'o     +o      P+o     %q      7r     r      s     s      t     {t      t     Cu                                p     sq      ]br     r      ]r     s      0os     s      ]t     \t      ]t     'u      ]                            %q     2q      P2q     7r      r     s      Ps     s      s     t      {t     t                                       'o     p      0p     6r      _7r     r      0r     s      _s     s      0s     t      _t     {t      0{t     t      _t     Cu      0                           'o     q      0q     q      R7r     r      0s     s      0t     {t      0t     Cu      0                                                         'o     0p      00p     :p      P:p     mp      Tp     p      Pp     p      _7r     br      0br     r      Tr     r      _s     os      0os     s      Ts     s      _t     1t      _1t     Ct      TCt     \t      \t     {t      0t     t      _t     t      Tt     t      _t     u      Tu     'u      'u     Cu      0                    2o     6o      P6o     Cu                                         2o     p      0p     7r      7r     r      0r     r      Pr     s      s     s      0s     t      t     {t      0{t     t      t     Cu      0                    ?o     Co      PCo     Cu                              ho     lo      Plo     q      ^7r     {t      ^t     Cu      ^                      sq     2r      ]s     t      ]{t     t      ]                    o     r      Vbr     Cu      V                   q     2r      ]{t     t      ]                 r     7r      1                  n     n      P                               U     |      U                                     T     t      ^t     Z      TZ     i      ^i     |      T                       !      \                                     ]     @      }@           V     Z      VZ     w      }                                 }  $ &3$p"           }  $ &3$p "     *      P                        %           \           \           \L     w      \                                         P           ^           ^           P     L      ^i     r      Pr     |      ^                                     _           _           _     L      _w     |      _                                                   H           0           P     h      ]h     p      Pp           \           \     	      \	           ]           0     [      \[     }      ]           0           ]           \     (      ](     L      \L     Z      0i     w      0                        X     \      P\                Z      i     w                                                   X           0           P           \           0     9      \9     =      T=     N      \           0           T           \           0           \     }      0     Z      0i     w      0                        y           P           \           P           \                       $      ]                              1w     |      1                             P                               U     k      U                                   T           ]     \      T\     k      ]                             V                                       ^           ~     1      \1     5      ~6     \      \\     k      ~                               ~  $ &3$p"           ~  $ &3$p "                            v ~  $ &3$p8                                 p} "           p } "           P                      6      0                             P                    p           U     	      U                        p           T           ]           T     	      ]                             \                                           ^           ~     N      VN     a      ~b           V           ~           V     	      ~                               ~  $ &3$p"           ~  $ &3$p "                            | ~  $ &3$p8                             U                 A     b      1                            0                             P                         .      U.     ]      U                             2      T2           ]     5      T5     ]      ]                  8     ^      \                          N     S      ^S     r      ~r           V5     N      VN     ]      ~                    S     W      ~  $ &3$p"W     [      ~  $ &3$p "                 S     W      | ~  $ &3$p8                       4      _                               P     2      ^                               P     0      ]                      5      1                  =     N      P                               U           U                                   T     K      ]K           T           ]                             V                                     ^     1      ~1           \           \           ~                               ~  $ &3$p"           ~  $ &3$p "                            v ~  $ &3$p8                    H     Z      p "           p "                        K     q      ]q     u      Pu           V           ]                 ~           1                             P                    7     8      U8     9      U                            7     8      T8     8      ^8     49      T49     9      ^9     9      T9     9      ^                     8     :8      \8     9      \9     9      \                          '8     ,8      V,8     N8      vN8     19      ]49     9      ]9     9      v                        ,8     38      v  $ &3$p"38     78      v  $ &3$p "78     X8      P9     9      P                 ,8     38      | v  $ &3$p8                      8     8      \49     Z9      \9     9      \                   8     49      09     9      0                    8     9      V9     9      V                   8     49      09     9      0                 9     49      1                  8     '8      P                    `     ~      U~           U                            `           T     M      ^M           T           ^           T           ^                                \M     o      ^           ^                                     V           v           ]           ]           v                                   v  $ &3$p"           v  $ &3$p "           P           P                            | v  $ &3$p8                                   P     1      \           \           \                    1           \           \                               V           V                   M           \           \                 s           1                             P                    p           U     U      U                    p           T     U      \                             S                                   ]           }           }     U      }~                                 }  $ &3$p"           }  $ &3$p "           P                                 S     7      SN     U      S                             P                    `     {      U{     E      U                    `           T     E      \                             S                                   ]           }           }     E      }~                                 }  $ &3$p"           }  $ &3$p "           P                                 S     '      S>     E      S                             P                     	     >	      U>	     
      U                         	     B	      TB	     	      ^	     
      T
     
      ^                  H	     p	      \                          ]	     b	      Vb	     	      v	     	      ]	     	      v
     
      v                        b	     i	      v  $ &3$p"i	     m	      v  $ &3$p "m	     	      P
     
      P                 b	     i	      | v  $ &3$p8                    	     
      ]
     
      ]                    	     
      _
     
      _                         	     	      0	     	      P	     U
      V
     
      P
     
      V                      	     	      P	     
      ^
     
      ^                 
     
      0                  M	     ]	      P                                U           U                              "      T"           ^           T           ^                  (     Q      ]                          >     C      \C     f      |f     u      V           V           |                        C     J      |  $ &3$p"J     N      |  $ &3$p "N     m      P           P                 C     J      } |  $ &3$p8                         y      _           _                               ^           ^                                                              o     s      Ps                                            P                                                      !      0!     0      P0           \           \           P           \                              0           0           0                                   P           ]           ]           ]                              "      P"     [      ^[     _      P_           \                 h           1                  -     >      P                          .      U.     L      U                                2      T2           ^     /      T/     >      ^>     L      T                     8     a      ]     <      V           V                            N     S      \S     v      |v           V|           V     *      V/     >      |                        S     Z      |  $ &3$p"Z     ^      |  $ &3$p "^     }      P/     =      P                 S     Z      } |  $ &3$p8                                     P     @      |                *      >     L                               (      ^|           ^                           e      \|           \     *      \                             P                                      0           P           V|           0     *      0>     L      V                                    (      0(     7      P7     y      ^|           0           ^     %      P%     /      ^>     L      ^                                e      0e           \|           0           \     *      0>     L      \                                   P     {      _|     /      _>     L      _                     w           0     @      1           1>     L      0                           w      ]     /      ]>     L      ]                            1                        @      1           1                   @     |      1*     /      1                  =     N      P                    P     n      Un           U                        P     r      Tr           ]           T           ]                    x           \           \                                     ^           ~           V           V           ~                                 ~  $ &3$p"           ~  $ &3$p "           P                                     Q     Z      w      |      w            w            Q                         e      ]           ]                        Z      0)                               O     V      Pl     s      P                                  Z      0Z     Z      PZ           w                 |      0|           P           w            0                                  J      0J     N      PN           ^     g      0g     k      Pk           ^           0                                   P           \           P           \                        e     g      Pg           ]           P           \                            1                  }           P                               U           U                                     T           ^           T           ^           T                          !      Vw           V           V                                         \     8      |8           ]           |           |           |~           |                                 |  $ &3$p"           |  $ &3$p "     (      P                        %           V     D      Vb           V           V                      W     [      P[                                            s     w      Pw                                                                                                                P     0      \           P           \                             P                           s     (      0(     ,      P,     w      V           0           V           0                                     P           ^           ^           ^           ^                          0      00     g      \           \                                   P           ]           ]           ]                            1                             P                               U     W      U                                     T     h      ^h           T     *      ^*     W      T                         ~      V     *      V                                   #      ]#     N      }N           \           }           }~c     t      }     *      }                      #     *      }  $ &3$p"*     .      }  $ &3$p ".     ;      P                          8     R      QR     *      w c           w            w      )      Q                     h           ^c           ^*     W      ^                   ~     }      Vc           V                                 ]t     y      ]           ]                     /           w            w *     W      w                              ~          
                  ]     d      ]c     y     
      y           ]          
                 ]                             P                            ~           0           w      X      w X     c      c           0           w *     W      0                          d     y      Py     ^      ]           P           ]*     W      ]                          ~           	                c      c           	           *     W      	                                     0           P     `      ^c           0           ^*     W      0                                     P     \      \c     l      Pl           \*     W      \                        }           P     3      V*     2      P2     W      V                   &     c      0           0                             P                    `           U           U                          `           T           ^     =      T=     L      ^L           T                         &      ]=     L      ]                                       V           v           \     =      \=     L      vL           \                                 v  $ &3$p"           v  $ &3$p "           P                                    Q                )      =     K      QL     o                                     _     )      _                               ^     )      ^                    \     |      V           V                                  
                 V           V     )     
      L     o      V                                    P           _            VL     o      _}           V                                       0           P                )      0)     =      L     o      0}                                                P           ^)     =      ^L     N      PN           ^                                                   0           P     2      _2     ;      P;     C      _C     ]      P]           _     )      0)     =      _L     o      0}           P           _           0                          @     M      PM           ]           P     =      ]L           ]                                (      P(           V           P           V)     8      V                                  0           P           )     =                                  $      0$     2      _2     ;      P;     ?      _?     K      P)     8      _                              18     =      1                             P                               U     "      U                                   T           ^     !      T!     "      ^                               ]!     "      ]                                     V           v     E       \L      !      \!     "      v                                 v  $ &3$p"           v  $ &3$p "     
      P                               %      Q%     <      L      >!      !     !      !      "      Q                    B     F      PF     !                          \     `      P`     !                                q           _L      q       _             _      >!      _!     !      _                                   P     a      L      >!      !     !                                      >!     !                            a     p      Pp     L       >!     !                                         P     K       _>!     Q!      PQ!     !      _                              t      0t     G       ]L      >!      0>!     !      ]!     !      0                                              0           VL      e       0e             V             0             V      >!      0>!     E!      VQ!     n!      V!     !      0                                     P     I       ^L             ^             P      !      ^                            (      0(           _L      >!      0!     !      0                            <     @      p@           #            V             P      0       V>!     !      #                    !     !      P!     !      V                 #      L       1                             P                    "     >"      U>"     i&      U                          "     B"      TB"     )#      ^)#     N&      TN&     ]&      ^]&     i&      T                    H"     #      ]N&     ]&      ]                            ]"     b"      Vb"     "      v"     $      \$     N&      \N&     ]&      v]&     i&      \                      b"     i"      v  $ &3$p"i"     m"      v  $ &3$p "m"     z"      P                            w"     "      Q"     V#      b%     %      %     &      )&     I&      N&     \&      Q                      "     "      P"     N&      ]&     i&                              "     #      _$     &      _)&     I&      _]&     i&      _                              "     "      P"     #      w $     %      w ;%     %      w %     &      w )&     I&      w ]&     i&      w                           "     "      P"     $      $     &      )&     I&      ]&     i&                            2#     ,$      ]$     %      ]]&     i&      ]                          [#     b%      %     %      &     )&      I&     N&      ]&     i&                                         "     #      0#     n$      V$     %      0%     ;%      V;%     %      0%     %      V%     &      0&     &      V)&     I&      0]&     i&      0                               "     #      0#     $      w $     $      $     &      0&     )&      w )&     I&      0I&     N&      w ]&     i&      0                        $     $      P$     $      &     )&      I&     N&                              ,$     M$      PM$     $      ]&     )&      PI&     N&      ]                             "     $      0$     $      _$     &      0&     )&      _)&     I&      0I&     N&      _]&     i&      0                            )#     2#      P2#     $      ^$     %      ^%     %      P%     N&      ^]&     i&      ^                            #     #      p#     n$      #n$     $      V$     $      P$     $      V&     )&      #                   $     $      1I&     N&      1                  M"     ]"      P                    p&     &      U&     +      U                        p&     &      T&     n'      ^n'     +      T+     +      ^                    &     ''      ]+     +      ]                          &     &      V&     &      v&     E)      \L)     +      \+     +      v                      &     &      v  $ &3$p"&     &      v  $ &3$p "&     &      P                            &     &      Q&     '      )     7*      *     *      =+     Y+      +     +      Q                    '     '      P'     +                              ''     (      ]L)     *      ]=+     Y+      ]+     +      ]                            @'     D'      PD'     D(      w L)     )      w )     *      w =+     Y+      w +     +      w                             Z'     ^'      P^'     i(      L)     )      )     *      =+     Y+      +     +                            '     (      ^L)     *      ^+     +      ^                        '     )      A*     *      *     =+      Y+     +                                         Z'     '      0'     (      VL)     h)      0h)     )      V)     j*      0j*     *      V*     *      0*     +      V=+     Y+      0+     +      0                              Z'     i(      0~(     (      QL)     )      0)     )      Q)     )      )     *      0=+     Y+      0+     +      0                        i(     i(      Pi(     L)      )     )      P*     =+      Y+     +                                (     (      P(     I)      ^*     *      P*     =+      ^Y+     +      ^                             Z'     (      0(     G)      ]L)     *      0*     =+      ]=+     Y+      0Y+     +      ]+     +      0                          '     '      P'     K)      _L)     *      _*     *      P*     +      _                                D(     H(      PH(     )      w )     )      P)     )      V)     )      P)     )      w *     =+      w Y+     ~+      w                       +     +      P+     =+      VY+     ~+      V                   )     L)      1~+     +      1                  &     &      P                    +     +      U+     -      U                          +     +      T+     W,      ^W,     -      T-     -      ^-     -      T                  +      ,      \                            +     +      V+     ,      v,     0,      ]0,     8,      Q8,     C,      v-     -      v                        +     +      v  $ &3$p"+     +      v  $ &3$p "+     ,      P-     -      P                 +     +      | v  $ &3$p8                      4,     i-      \p-     -      \-     -      \                      C,     ,      Vp-     -      V-     -      V                    ,     ,      _-     -      _                  ,     ,      P                           C,     ,      0,     ,      P,     o-      _p-     -      0-     -      _-     -      0                        j,     m,      Pm,     m-      ^p-     -      ^-     -      ^                        ,     ,      P,     @-      V-     -      P-     -      V                   3-     p-      0-     -      0                  +     +      P                     .     ..      U..     \1      U                           .     2.      T2.     .      ^.     1      T1     1      ^1     \1      T                  8.     a.      ]                            N.     S.      \S.     v.      |v.     o0      V0     0      V1     1      |1     \1      V                        S.     Z.      |  $ &3$p"Z.     ^.      |  $ &3$p "^.     .      P1     1      P                 S.     Z.      } |  $ &3$p8                      .     v/      ^0     0      ^1     \1      ^                      .     ;/      ]0     0      ]P1     \1      ]                    .     i/      _1     \1      _                      O/     [/      P[/     0      0     1                              /     /      P/     /      }/     0      0     1                              /     /      P/     /      }/     0      0     1                            /     /      P/     0      0     1                           /     0      ^0     0      ^0     1      ^                             .     i/      0i/     m/      Pm/     0      _0     0      _0     0      00     1      _1     \1      0                        .     .      P.     U0      \0     0      \1     \1      \                                /      /      P /     U0      U0     Y0      PY0     0      \0     0      0     0      0     1      \1     P1                                  ;/     N/      PN/     0      ]0     0      ]0     1      ]1     1      P1     P1      ]                     /     0      _0     0      _0     0      _                     /     0      \0     0      \0     0      \                   b0     0      10     1      1                  =.     N.      P                    `1     1      U1     4      U                        `1     1      T1     62      ^62     4      T4     4      ^                  1     1      V                              1     1      S1     1      s1      2      \ 2     ^2      s^2     i2      s~4     ,4      s4     4      s                      1     1      s  $ &3$p"1     1      s  $ &3$p "1     1      P                      1     2      V4     c4      V4     4      V                        	2     2      P2     4      w 4     4      w4     4      w                      2     4      \4     4      \                    i2     2      S,4     c4      S                          2     2      02     2      _2     4      _4     c4      0c4     4      _                  3     3      P                          2     3      03     23      P23     4      w4     4      04     4      w                        M2     Z2      PZ2     4      ^4     $4      P$4     4      ^                            2     2      P2     2      V53     F3      P[3     _3      Pc4     k4      Pk4     4      V                      2     2      P2     4      w4     4      w                        2     3      P3     4      V4     4      P4     4      V                  G3     K3      P                   3     4      04     4      0                  1     1      P                    4     5      U5     9      U                          4     
5      T
5     5      ]5     #9      T#9     29      ]29     9      T                  5     <5      _                            )5     .5      S.5     T5      sT5     5      V5     #9      w#9     29      s29     9      w                      .5     55      s  $ &3$p"55     95      s  $ &3$p "95     D5      P                        @5     5      _7     7      _u8     8      _#9     29      _                          ~5     5      P5     *7      w 7     7      w u8     8      w 29     9      w                         5     7      ]7     7      ]u8     8      ]29     9      ]                        5     r6      S7     7      Su8     8      S29     R9      S                                 5     6      06     6      _6     7      _7     7      07     t8      _u8     8      08     8      U8     #9      _29     9      _                          6     6      P6     7      w7     u8      w8     #9      w9     9      w                       7     7      ]7     p8      ]8     #9      ]9     9      ]                            !7     '7      P'7     .7      s.7     7      w7     u8      w8     #9      w9     9      w                            *7     .7      P.7     7      w 7     j8      w j8     u8      v8     #9      w 9     9      w                        *7     7      V7     l8      V8     #9      V9     9      V                	                 5     6      06     6      P6     7      w7     7      07     u8      wu8     8      08     #9      w29     9      09     9      w                            5     5      P5     7      ^7     7      P7     r8      ^u8     #9      ^29     9      ^                              26     66      P66     7      v7     8      v8      8      P 8     ?8      S8     #9      v29     9      v                        V6     n6      P6     6      P6     6      P29     :9      P                          r6     6      P6     D7      S8     8      SR9     Z9      PZ9     9      S                  6     6      P                    8     8      P8     9      S                     P7     7      w7     7      w9     #9      w                     P7     7      ^7     7      ^9     #9      ^                   .8     u8      19     9      1                  5     )5      P                    9     9      U9     <      U                          9     9      T9     :      ^:     |<      T|<     <      ^<     <      T                     9     9      \[;     ;      V0<     J<      V                        9     9      V9     :      v:     \:      ]|<     <      v                        9     9      v  $ &3$p"9     9      v  $ &3$p "9     :      P|<     <      P                 9     9      | v  $ &3$p8                        $:     ;      _;     0<      _J<     w<      _<     <      _                    3:     :      V;     +<      V                    :     :      V<     <      V                  :     :      P                         3:     :      0:     ;      ;     0<      0J<     w<      0<     <      0                          \:     `:      P`:     l;      ];     0<      ]J<     w<      ]<     <      ]                         :     ;      0;     ;      _0<     J<      _J<     w<      0w<     |<      _                        :     :      P:     ;      \;     |<      \<     <      \                        :     :      P:     [;      VJ<     R<      PR<     w<      V                     [;     ;      _0<     J<      _w<     |<      _                   ;     ;      1w<     |<      1                  9     9      P                    <     <      U<     A      U                          <     <      T<     f=      \f=     `A      T`A     oA      \oA     A      T                  <     =      _                            <     <      ^<     =      ~=     @      VJ@     `A      V`A     oA      ~oA     A      V                      <     <      ~  $ &3$p"<     <      ~  $ &3$p "<     	=      P                          =     >      _?     ?      _J@     o@      _@     @      _`A     oA      _                            <=     @=      P@=     >      ?     ?      J@     @      @     @      oA     A                                R=     `>      ]?     ?      ]J@     y@      ]@     @      ]oA     A      ]                      =     =      ^?     ?      ^@     @      ^                                 R=     =      0=     =      ^=     "?      ^?     ?      0J@     @      ^@     @      0@     @      U@     @      ^oA     A      ^                    
>     R>      _oA     {A      _                      s>     w>      Pw>     >      y@     @                                >     >      P>     ?      ?     J@      @     `A      A     A                                  >     >      P>     >      >     ?      ?     J@      @     `A      A     A                                >     >      P>     ?      ?     J@      @     `A      A     A                             >     ?      ]?     E@      ]@     `A      ]A     A      ]                
                 R=     |>      0|>     >      P>     >      ?     ?      0J@     y@      0y@     @      P@     @      @     @      0oA     A      0                            {=     =      P=     ?      \?     ?      P?      @      \J@     `A      \oA     A      \                                />     3>      P3>     >      ?      @       @     @      P@     C@      \y@     @      {A     A      A     A      \                              R>     j>      Pj>     ?      _?     I@      _y@     @      _@     `A      _{A     A      PA     A      _                    	A     A      PA     IA      ^                     .?     ?      ?     ?      IA     `A                           .?     ?      \?     ?      \IA     `A      \                   @     J@      1A     A      1                  <     <      P                    P     i      Ui           U                        P     m      Tm           ]           T           ]                  t           S                                     ^           ~           \           ~           ~                               ~  $ &3$p"           ~  $ &3$p "                            s ~  $ &3$p8                            0                  y           P                               U           U                                       T     :      ]:     )      T)     R      ]R           T           ]                                Vɚ           ]֛           ]                          ؙ     ݙ      ^ݙ           ~     $      \)           \           ~                    ݙ           ~  $ &3$p"           ~  $ &3$p "                 ݙ           v ~  $ &3$p8                        )      1֛           1                               VR           V                        :     F      PF     ɚ      ]R     ֛      ]           ]                   ɚ     )      1֛           1                      )      1                  Ǚ     ؙ      P                          9      U9           U                              =      T=           ]           T           ]                  D     k      S                          [     `      ^`           ~           \           ~           ~                    `     d      ~  $ &3$p"d     h      ~  $ &3$p "                 `     d      s ~  $ &3$p8                            0                  I     [      P                               U           U                                       T     H      ]H           T           ]           T           ]                                Vk     q      ]           ]                                       ^           ~           \           ~           \           ~                               ~  $ &3$p"           ~  $ &3$p "                            v ~  $ &3$p8                  H     k      ]                    ;           V           V                 u           1                             P                    9     9      U9     ;      U                            9     9      T9     Y:      ]Y:     :      T:     :      ]:     ;      T;     ;      ]                     9     :      Vm:     :      ^:     ;      ^                          9     :      ^:      :      ~ :     :      \:     ;      \;     ;      ~                    :     :      ~  $ &3$p":     :      ~  $ &3$p "                 :     :      v ~  $ &3$p8                    Y:     :      } :     ;      }                     E:     :      V:     ;      V                   m:     :      ]:     ;      ]                 :     :      1                  9     9      P                     ;     8;      U8;     `<      U                             ;     <;      T<;     ;      ];     <      T<     2<      ]2<     Q<      TQ<     `<      ]                     B;     h;      V;     ;      ]2<     Q<      ]                          X;     ];      ^];     z;      ~z;     <      \<     Q<      \Q<     `<      ~                    ];     a;      ~  $ &3$p"a;     e;      ~  $ &3$p "                 ];     a;      v ~  $ &3$p8                   ;     <      12<     Q<      1                    ;     ;      V2<     Q<      V                   ;     <      12<     Q<      1                 ;     <      1                  G;     X;      P                    <     <      U<     =      U                            <     <      T<     =      ]=     l=      Tl=     =      ]=     =      T=     =      ]                     <     <      V=     E=      ]=     =      ]                          <     <      ^<     <      ~<     g=      \l=     =      \=     =      ~                    <     <      ~  $ &3$p"<     <      ~  $ &3$p "                 <     <      v ~  $ &3$p8                   <     l=      
Q=     =      
Q                    <     V=      V=     =      V                   =     l=      
Q=     =      
Q                 I=     l=      1                  <     <      P                    `w     xw      Uxw     x      U                            `w     |w      T|w     x      ]x     4x      T4x     Wx      ]Wx     tx      Ttx     x      ]                     w     w      Vx     x      ]Wx     tx      ]                            w     w      ^w     w      ~w     /x      \/x     3x      ~4x     tx      \tx     x      ~                    w     w      ~  $ &3$p"w     w      ~  $ &3$p "                 w     w      v ~  $ &3$p8                   w     4x     
      Wx     tx     
                          w     x      VWx     tx      V                 x     4x      1                  w     w      P                         
      U
     
      U                                   T           ]           T     
      ]                                 \           p      
      \                      *     /      V/           v     
      v                    /     6      v  $ &3$p"6     :      v  $ &3$p "                 /     6      | v  $ &3$p8                       *      P                         .      U.     n      U                                 2      T2           ]           T     B      ]B     _      T_     n      ]                     8     ^      V           ^B     _      ^                          N     S      ^S     p      ~p           \     _      \_     n      ~                    S     W      ~  $ &3$p"W     [      ~  $ &3$p "                 S     W      v ~  $ &3$p8                              0           P                               VB     _      V                            1                  =     N      P                    p           U           U                        p           T           ]           T           ]                             S                                     ^           ~           \           ~           ~                               ~  $ &3$p"           ~  $ &3$p "                            s ~  $ &3$p8                            0                             P                        p           U           S           Y     ~      U                         ؀      P؀     \      ]                 ɀ          
                       ɀ                             ɀ           V                                   U           S           U           U                             P                                            @     h      Uh           ^     N      w N     l      ~l     ]      w ]     @      U@           w            U     #      w #     s      Us           w            U           ^           U                                      @     |      T|     ]      ]     @      T@                      T     #      #     s      Ts                      T                      T                                    n           P     '      S     s      S     %      S#           S           6     d      R           S           S           S                             P                                     x     ]      0     s      \@           0     #      0#     E      \           \6     d      \           \s           0           \           0                                                 P           V%     7      V           V     6      Vd     R      V           V     s      V           V           V           V                               P           S                                    S     ]      0]     '      V2     <      V     s      V     %      V#           V           6     d      R           V           V           V                             x     ]      0@           0     #      0           T           Ts           0           0                                     P           \@           \     #      \           \                      =     O      _@     j      _s           _                                     Q     ]      ~@           ~     #      ~s           ~                                   8      ^8     ]      @     j      j           ^           ^     #      s                                   o     ~      P~     ]      V@     j      Vs           V                                                                                                                     O      SO           _           \           _     x      Sx           sx           _     "      \"     k      _k           \           _     V      ^V           _     %      \%           S           sx           S@     #      S#     g      _g           \           _     -      S-     J      _J           S           _6     _      S_     d      _d     R      SR     w      _|           \                      _           \                      _     ?      \?     D      D     g      _l           \                      S           ^                      _           S           S           _           \                      S                             E      Vj           V     #      V           V                      P     T      PT           \d     x      \                         ]      \s           \                               P                                            VU           V           V                               J      V           P                      V6     d      V                               \           \                               P           P                                 Q           |           Q                                            &      U&           \           U           \           U           \     )      U)           \     r      Ur           \           U                                            *      T*     $      _$           T           _     )      T)     r      _r           T           _     r      Tr           _           T                          *      Q*                                              P     Q      \Q     X      P           \                                   5           \           U           \           U           \     )      U)           \     r      Ur           \           U                                       P     U      ^X           ^     )      ^     r      ^           ^                        C           ]           ])           ]r           ]                                       P     S      ]X           ]     )      ]     r      ]           ]                                              5           V     )      ^)     Z      VZ     i      vx     ]      V]     p      vxp           V           vx     ,      VX           V     m      Vm     r      Pr           V           P           ^           P           V                                     ^           ^)     B      ^B     G      PG     r      ^                                       U           S           U           S           U            S                                         T           V           U           T           V           T            V                6     6                       6     6      P                6     6      s                  a           
`                 a           V                   a           S           U                               \            \                               P           P                                   Q           |           q           Q                            
      U
           \           U                           "      P"           S           P                      T      
`                      T      \                        "      P"     T      S                n     n                       n     n      |                 n     n      P                                    н           U     q      \q     |      U|           \           U           \     "      U"     J      \J     U      UU     ~      \                                                н           T     `      V`     |      T|           V           T           V     Q      TQ     }      V}           T           V           T           V     "      T"     ,      V,     s      Ts     ~      V                   ֿ           0           V                    ֿ           P                                            _     +      P+           _                 ¿           ]                    ¿     ƿ      Pƿ                                        P                               P           S                              A     A      UA      B      U B     B      UB     &B      V&B     fC      UfC     D      VD     D      U                       A     A      U B     B      UB     &B      V8B     D      V                                      A     A      0 B     B      0B     B      PB     &B      S&B     OB      0OB     ]B      P]B     B      SB     B      0B     B      PB     C      SC     C      PC     C      SC     D      s                                U           U                                             #      T#     L      SL     ^      T^           S     B      TB           S           T     C      SC     u      Tu           S           T           S                              0     L      V^           V                              J      0J     ^      P           P           PW     n      P                                          
            P     L      ]^           ]B     W      ]W     n      
 n           ]           P                                          0           U     ~      V~           T           U'     U0.(            V.     ;      U;           V           U'     U0.(      0      V0           U'     U0.(            V     g      U'     U0.( l           U'     U0.(                                         0           T           ]           T'     T0.(            ].     ;      T;           ]           T'     T0.(      0      ]0     i      T'     T0.( i           ]     g      T'     T0.( l           T'     T0.(                         0     Y      QY     -      _-     .      Q.           _                                       \           \{     |      P|           \     0      \i           \                                   P     T      \           \           \                                 \M     y      \l     z      \                        !      Vl           V                           M      ^y           ^l           ^                                      P      M      \y           \z           P           \                 ;     Q      Q                  K     {      \                                                       ^           V           vx           V           vx           V           ]           V0           V           ~           ^           ^     g      Vl           ]           V                               #      Q#     =      =     A      QA                                                   *      U*           ]           U     2      ]                             *      U*           ]           U     2      ]                            ;           V           v     )      Vt           V9     ]      V]     b      Pb           V                        l           \     z      \z           P     2      \                               ]           ]                               P           P                                 Q           }           Q                                     U             _             U             _                                     T             ]             T             ]                                                     Q      ]       ^]             Q             ^             Q             ^             Q      )       ^)      D       QD      $       ^$      ;       Q;             ^                                     ]       0             0             P      )       0D      $       0$      5       P5      ;       V;             0                                 ^$      ;       ^                                     U             _             U             _                      A      ]       V             V             V                                     P      &       \D      V       \             \                                                     V             v             vx             V             vx      =       V=      v       \             \      )       VD      $       V$      ;       \;             V             P             V                        F             \             \             P             \                   $      5       P5      ;       V                 $      ;       ^                 $      ;       ]                                     U             ]             U             ]                      J             V             P      $       V                        y      }       P}             \$      6       \             \                                        $       V$      @       vx      &       V&      7       vx7      F       VF      h       \             V$             V             P             V                            ;       \      *       \*      /       P                J      S       V                                                   :       U:             ]             U      ?       ]?      T       UT             ]             U             ]             U             ]             U             ]             U             ]                           $              0       `       ]`      a       Pa      ?       0?      T       ]T             0                                     P      Y       \T      f       \r             \                                  5       Va             V             V             V             V             V                                                    K             V             vx!             V             vx             V      ^       \a             \      ?       V?      T       \T             V             \             V             \             V             P             \             V             \             V                        |             \q             \             P             \                        `     q      Uq           S           U           S                    v           S           S                    v           P           P                      ~           Q           s           Q                                           U      5      ^5           U           ^           U           ^     
      U                          
       T
      
                                  
       Q
      :      \:     
      Q                                                         V             v             vp5           ^           ~x     }      ^}           VA     r      Vr           ^           V4           ^           V           V     
      ^
     
      V
     
      ^                      +     l      V4     F      V
     
      V                                 ^A     r      ^           ^                             >      ^           ^     4      ^
     
      ^                               T
     
      T                      ,      0       P0      <      ]A     
      ]                        B      F       PF      6      w 6     A      A     
      w                       s      @      _A           _     
      _                                                        T                                                              U     I      SI           U                                            T           \           U           T           \           U           T           \                  ?     Q      P                      
     
      U
           S     0      U                          
           P     R      VX     t      V{           V     0      V                               U           U                                    M       UM             S             U      <       S<             U             S             U                                    p       Tp             V             T             V      *       T*             V             V                             9      M       UM             S             U      <       S<             U             S             U                      ^      f       Pf             \             \                                              U             V             U      
       U
              V              U             V             U                                        T             S             T      d       S             S                               v             U             V             U      
       U
              V              U             V             U                      A      I       PI             \             \                                      j       Uj             V             U             U              V              U             V             U                                       T             S             T      D       S             S                               V      j       Uj             V             U             U              V              U             V             U                      !      )       P)             \             \                                    U      ~      \~           U           \                                   T           ]           T           ]                      #     +      P+     {      S           S                             .      U.     k      \k     q      Uq     r      U                           2      T2     m      ]m     r      T                      C     G      PG     h      Sh     q      T                             +      U+           ]           U           ]                             /      T/           ^           T           ^                                              :           \           V5           V           vx           V           v           V           vx           V	     I      VI     c      \c           V     -       \-      2       P2      Z      VZ     b      Pb           V                        v           V     
       V
             P      2       V                                  ]      U]     *      S*     d      Ud           S           U           S                              a      Ta     [      \[     d      Td           \                      Z     [      \[     d      Td           \                          Z     *      S*     d      Ud           S           U           S                              p           ]           }     *      ]*     A      Sd           ]           ]           P           ]                           _      ^d           ^           P                        `u     u      Uu     u      Uu     u      Uu     ~      ]                          `u     u      Tu     u      Tu     u      Tu     u      u     ~      T                          `u     u      Qu     u      \u     u      Pu     u      Qu     ~      \                    u     u      Qu     ~      \                  u     u                        u     ~      ]                          u     \v      V\v     fv      vfv     kv      vp|     |      V|     |      P|     |      V                    u     u      Pu     ~      _                    u     u      Pu     ~                            v     |      ^|     |      P|     ~      ^                        ~     ~      U~           S           U           S                    ~     8      V           V                    .     =      0=           V                   =     Z      \g           \                        P     n      Tn     y      Vy     ~      T~           V                    W     }      \~           \                      С     ݡ      Uݡ           S           U                                 P           V            T                               Ի      TԻ           V     !      T!     N      VN     Ž      T                             Ի      QԻ           ^           Q     Ž      ^                           ϼ      \N     R      \           \                                     P     ϼ      V     !      VN     R      Vb           V                           ϼ      _N     R      _b           _                         ¼      V           V                         ¼      P           P                                 Q     ¼      v           Q                  A     N      P                b     m      ^                  t             P                                T      h       Uh             Q             P             Q             U             Q             P             Q             U                                     U      6       S7      F       SG      M       U                                   U      N       VN      Y       U                                   T      N       \N      Y       T                        S       S                                     &       U&      i       Si      j       Uj      w       Sw      x       Ux             U             S                                 :       T:      ;       T;      r       Px             T             h                  O      j       R                                    +       U+      1       V1      \       U\             V             U             V             U                                +       T+      1       S1      \       T\      p       Sp             T                             1       0\      p       0p             P             S                                   ,       0,      7       P\      l       P             P             \             \             0                                 1       0\             0             P             \             P             \                            p             U             S             U             S             U             U                              p             T             Q             \             T             \             Q             T                            p             Q             ]             Q             ]             T             Q                     t             0             P             V                                     U      F       UF      o       Uo      p       U                                         T      $       \$      '       T'      F       \F      k       Tk      p       T                                         Q      "       V"      '       Q'      F       VF      o       Qo      p       Q                                        0      &       ]&      '       P'      ?       ]?      F       PF      p       0                           !       S'      <       S?      F       S                            3       U3      }       U}             U                              3       T3      z       Vz      }       T}             T                                 3       03      p       \p      u       Pu      |       \|      }       P}             0                          &       0&      m       Sp      y       S                                           U             S             U             S             U             U             U                                           T             T             h             T'     T0.(              T             T'     T0.(              T                                             U             U             U             U             U             U             U      s       S                                    0             0      q       ]q      s       P                        s       V                            <       \M      W       PW      s       \                                  0             U             T             V             P              V       $       U$      u       Vu      {       U{             V                            0      |       T|             ]             T      u       ]u      {       T{             ]                       4             0             ^      u       ^u             0                       4             0             \      u       \u             0                       4             0             _      u       _u             0                          4             0             0              S       I       0V      u       Su             0                          !       U!      "       U                          !       T!      "       T                                 Q      "       Q                                             U      Z       \Z      [       U[             \             U             U             U             \                                                 T             S             P      W       S[             S             T             S             T             T             S                                             Q      X       VX      [       P[             V             Q             Q             Q             V                          E       0[             0             v0             0                          
      
       U
      
       U
              U       @       U@             U                               
      
       0
             0      $       P@      D       0D      J       PJ      e       0e      g       Pg             0                                         
      
       0
      
       0
      
       S
      
       0
      
      
 #     
      
       0
      	      
 #     	             0      8       S8      ?       T@      H       0H      J       SJ      e       0e      g       ug      g       0g      |      
 #     |             0                       
      %       0%      3       P4      ?       P@             0                                        	      	       U	      	       T	      +
       \+
      .
       U.
      3
       U3
      =
       \=
      C
       UC
      Z
       \Z
      ]
       U]
      s
       \s
      v
       Uv
      
       \                            	      	       T	      	       S	      .
       T.
      T
       ST
      v
       Tv
      
       S                            	      	       Q	      .
       Q.
      7
       Q7
      =
       Q=
      G
       QG
      
       Q                                      	      	       R	      -
       ]-
      .
       R.
      7
       R7
      =
       ]=
      G
       RG
      \
       ]\
      ]
       R]
      u
       ]u
      v
       Rv
      
       ]                                     	      	       T	      	       S	      )
       V)
      .
       P.
      ;
       S;
      =
       P=
      T
       ST
      ]
       T]
      q
       Vq
      v
       Pv
      
       S                            ;	       U;	      <	       U<	      	       U                                         U             U             U             U      R       UR             U                                        0             U             P             U      1       P1      W       XW             U                                          0             U             P             U             u       5       U5      {       P{      |       r |             P                                    0             R             0             R                              Q       UQ      d       Vd             U             V             U                            G       TG      Q       XQ             T                              E       QE      d       \d             Q             \             Q                     .      R       	R      c       P             P                                     PO      V       P             P             u              u                                                 P             Q      N       Pi             P             Q             P             u B$L@$             u<$:$u B$L@$!            + u<$:$u B$L@$!u6$
!              u<$:$u6$
!q !            + u<$:$u B$L@$!u6$
!             P                                 U             U                          0      V       UV      x       \x      y       Uy             U      {       \                          0      V       TV      v       Vv      y       Ty             T      {       V                                     P             S             P      {       S                              \                               S                  [      u       S                                  -       U-             V             U             V             U      &       V                                  *       T*             \             T             \             T      &       \                                     S             S             U      &       S                              R      h       Ph             ]             P             ]             ]      	       P	      &       ]                          8      L       QL      a       Pa      d       Qd      o       Pw             Q                                  Q      (       P                                    0       S        US       b        Vb       g        Ug       v        Vv       w        Uw               U               V               U               V               U                                S                                      U       #        U#       )        U                         "        S                                       U             P             U             P             U                                   U             Q             Q                               T                               U                                 U             Q                             K       UK      Y       UY             U                             K       TK      Y       TY             T                    C      K       TK      Y       T                    C      K       UK      Y       U                              U                               T                                               U      "       V"      %       U%      a       Va      d       Ud      s       Us             V             U             V                                               T             S      %       T%      :       S:      d       Td      l       Sl      s       Ts             T             S                                                 S             P      !       S!      $       \$      %       P%      `       S`      c       \c      d       Ps             S             S                                    "       V"      %       U%      a       Va      d       Us             V             U             V                        
             0R      T       0             \             S             \                   s             0             \             P                              8       U8      S       US      i       Ui             U                                  C       TC      R       SR      S       TS      i       Ti      |       P|             S                   ;      S       Ui             U                          ;      C       TC      R       SR      S       Ti      |       P|             S                                                      7       U7      =       \=      A       UA             \             U             U             \             U             U             U             \      1       U1             \             U             U             \                                                  4       T4      ~       S~             T             S             T             S             T             T      1       T1             T             T             S             T             S                                                  A       QA             V             Q             Q             V             Q             Q             Q             V      1       Q1             V             Q             Q             V                                  +      A       QA             V             Q             Q             Q             V1             V             Q             V                                +      =       T=             S             S             T             T             S1      i       S             S                                  +      A       UA             \             U             U             U             \1             \             U             \                                      0<      i       ]i             S             0             ]                                    `             U             V             U             V             U             U             V             U             U      
       V                                S      
       S                    p      ~       U~             U                                 p             P                              =       U=             S             U      p       S                              A       TA             T             T      p       T                                 V      k       V                                 ]D      k       ]                                  0             PD      k       0                                       U             \             U             \             U                            !       T!      ?       V?             T                                 P                                    2             0             P             \             0                  ?             V                          P             U             V      p       Up             V             U                        P             T      m       ]m      p       Tp             ]                       }      ;       0;      G       PG      L       ^p             0                               U                                      0      #       P#      +       V             0             P                                         P      )       S)      *       U+      L       S             S             S                                       U             S             U      D       SD      J       U                                       T             \             T      &       \&      J       T                                    p             P      
       P9      J       P                                    P             1             P      I       ]                                               U             U             U             U             U             U             U      5       U5      E       	                                                       T      .       V.      5       U5             T             T             V             T             T             V             T             V      0       T0      E       V                                               Q             Q             Q             Q             Q             H             Q      0       Q0      E       H                                                     R             S             R             R             S             R             R             S             R      (       S(      0       R0      E       S                                      0      (       P(             \      @       0@      E       P                                     w       0w             V             P             0             P      )       V)      0       P0      E       0                             9       09      =       P=             ^      E       0                             J       0J      N       PN             ]      E       0                                                   U      =       \=      D       UD      f       \f             U             \      #       U#      P       \P      {       U{             	             U                                             T      ;       V;      C       UC      D       TD             V             V      '       T'             V                                               Q      ?       ]?      D       QD             ]             Q             ]             Q      '       Q'             ]                                         R      :       SD             S             S      '       R'             S                                                0             P             \             0             0             P             0             P             0             P                                    0             ]             P             0                                    0             P             V             0                                    0             P             S             0                                  0      2       T+      9       0                                       U      B       SB      z       Uz             S             U                            S       0X             0             P             0                                 4       U4      f       Vf             U             V             U                       $      R       0R      V       PV             \             0                            @      L       pf      j       Pj             V             P             p             P                        p             U             S             U             S                     t             0             0             ]                     t             0             V             V                                       U      N       VN      O       p O      g       Vg      h       U                             .       0.      R       PR      f       Sf      h       P                                     U             U             U             U                                     T             T              T              T                        p             U             S             P      }       S                            p             T             \             T      =       \=      Z       TZ      }       \                                           U             S             U             S             U      1       S1      c       U                                  0             P      c       0                                   U      6       S6             U                                 T             T                           T       0T      e       Pe      j       0q             0                           L       0L      e       Qq             0                                      p             U             U             U             U             U             T             U             U             U             U             U                                    p             T             T             T             T             T             T             T             T             T             T                              
             U      ]       V]      a       Ua             V             U             U      a       V                            
             T      {       \{             T      /       \/      S       TS      a       \                                 
      e       0e             ]              0              P      !       ]!      1       01      S       ]S      \       P\      a       ]                               )       p{             P             \!      1       p1      S       \                                  W      
 I     W      a       Pa             _             P      !       _!      1      
 I     1      a       _                             
      #
       U#
      '
       S'
      .
       U.
      t
       St
      x
       Ux
      
       S                          
      3
       03
      =
       U=
      ]
       0x
      
       U
      
       U
      
       0                     
      U
       0U
      e
       \x
      
       0
      
       \
      
       0                         
      
       0
      '
       V.
      u
       Vu
      x
       Px
      
       V                      P	      \	       U\	      {	       S{	      |	       U                   T	      e	       0e	      |	       P                   T	      ]	       0]	      d	       P                                   P             \             \                               P                             %        U%       <        V<       =        U                           )        T)       =        T                          ;        S                  *       =        P                *       *        @                *       *        V                *       *        P                                         U             S             U             S             U             U                               P                                 U      {       U                                   P      P       VS      {       V                      F      J       PJ      O       SO      S       P                                 U             U                                   P      d       \|             \                                    U       	        U                                    T       	        T                                   U             S             U                                   P             \             \                                       P             V             P      :       Vg             V                                   U             S             p                                P                      `      m       Um      y       Sy             U                     h      m       Um             S             S                  r             P                   r      y       0y             q p                     @      O       UO      V       U                                     U             S      1       U1      9       U                             3       U3      T       VT      Y       U                           7       T7      Y       T                           7       Q7      Y       Q                     $      3       U3      T       VT      Y       U                    0      J       SJ      X       Q                    8      L       PL      X       T                        `      l       Ul             S             U             U                    P       w        Ux              U                         x              
 %                   
                    
 [%                   
 l%                   
 %                   
 %                   
 K%                   
 %                 
 I                                            U             S             U             S             U                               P                                 S             U                                         U      (	       S(	      )	       U)	      ?	       S?	      @	       U@	      C	       U                              (	       S(	      )	       U)	      ?	       S?	      @	       U                    	      )	       P7	      >	       P                                    	      	       U	      	       U	      	       U	      	       U	      	       U	      	       U	      	       U	      	       U	      	       U	      	       U                        	      	       U	      	       U	      	       U	      	       U                                   U             U             U                                       T             V             T             V             T                                 S             S                                *       U*             S             U             U             S                                  `       T`             V             T             T             V             T                          &      `       T`             V             T             V             T                      &      *       U*             S             S                    2      `       U             U                              P      o       Uo      z       Sz             Q             U             U             U             U                              P      o       To      }       V}             T             T             T             T             T                              P      o       Qo             \             R             Q             Q             Q             Q                 T             0                        k      o       Qo             \             R             Q                        k      o       To      }       V}             T             T                        k      o       Uo      z       Sz             Q             U                  p             P                    W      h       Ph      *       Q                 W      w       
                  W      w       0                   W      h       Ph      w       Q                                     U             ]             U             ]                                       T      P       _P             T             _             T                                    U             ]             U             ]                                 \             \                                   P             ^             ^                                   P             S             S                                              P       VP             _             v             _             \      '       V'      0       vx             V             \                   &       V&      +       |                          <       P             P                            P             U      )
       S)
      A
       UA
             S             U      
       S                        P             T      n       }n             p}      
       }                                        U      )
       S)
      A
       UA
             S             U      
       S                          &	       ]s             ]                        f      n       Pn      :
       \A
      s       \      
       \                                   P      @
       _A
      
       _                                   P      >
       ^A
      
       ^                                            L       \L             V      &	       V&	      S	       ]S	      }	       V}	      	       vx4      N       ]N      S       vS      n       Vn      s       }s             \                          /       Ps             P                                        U       l       ]l      q       Uq      J       ]                                          T       @       _@      k       Tk             _      J       T                       z               U       l       ]l      q       Uq      J       ]                           ^       \J             \                                     P       n       ^q      J       ^                                     P       g       Sq      J       S                                               @       V@      ^       _^             \             V             vxJ      f       _f      k       vk             V             \                          V             |                          ,       Pk      w       P                              T      U       UU      U       \U      0W       U0W      8W       \8W      CY       UCY      xY       \xY      \       U                            T      #U       T#U      V       w V      V       V      4W       w 4W      ?W       ?W      \       w                             T      #U       Q#U      V       ^V      V       QV      <W       ^<W      ?W       Q?W      \       ^                            T      #U       R#U      V       _V      V       RV      >W       _>W      ?W       R?W      \       _                             T      U       UU      U       \U      0W       U0W      8W       \8W      CY       UCY      xY       \xY      \       U                      U      U       V0W      6W       V"Y      xY       V                          .U      2U       P2U      V       SV      V       UV      5W       S?W      \       S                     .U      V       ]V      :W       ]?W      \       ]                  U      U       P                                         .U      U       0U      U       PU      V       \V      V       PV      V       VV      0W       \0W      ?W       0?W      CY       \CY      xY       0xY      Y       VY      Z       \Z      #Z       V#Z      \       \                                                              GU      KU       TKU      U       U      U       TU      U       yxU      U       YU      U       U      U       YU      V       VV      V       \V      V       |V      V       \V      0W       V?W      "Y       V"Y      >Y       >Y      CY       PCY      sY       sY      xY       PxY      Y       \Y      Z       VZ      Z       \Z      #Z       P#Z      >Z       V>Z      CZ       PCZ      \       V                      lU      U       PCY      OY       PUY      ZY       P                      \V      zV       PCZ      OZ       PPZ      UZ       P                  V      V       P                                               U             V      b       Ub      z       Vz      R       UR      s       Vs             U             V      !       U                          !       T!      !                                     !       Q!      a       _a      b       Qb      !       _                                              U             V      b       Ub      z       Vz      R       UR      s       Vs             U             V      !       U                                     \b      z       \R      s       \             \                      -      1       P1      X       Sb      !       S                   -      ]       ]b      !       ]                               P                                -             0             P      N       \b      z       0z      R       \R      s       0s             \             0      !       \                                     C             ^      ʒ       Vʒ      Ғ       vҒ      N       Vb      z       ^z      R       VR      n       ^n      s       Ps             V             P             ^      !       V                      g             P             P             P                                                                        ˁ       Uˁ             _             U             _             U             _      ȅ       Uȅ             _             U      r       _r      :       U:             _      *       U*      b       _b             U      Ɏ       _Ɏ             U      Ǐ       _Ǐ             U             _      }       U}      A       _A             U      ӑ       _ӑ             U                                                                        ρ       Tρ      (       ](             T             ]             T             ]      ȅ       Tȅ             ]             T      r       ]r      :       T:             ]      *       T*      b       ]b             T      Ɏ       ]Ɏ             T      Ǐ       ]Ǐ             T             ]      }       T}      A       ]A             T      ӑ       ]ӑ             T                              ρ       Qρ             ^             Q             ^                                                                       ˁ       Uˁ             _             U             _             U             _      ȅ       Uȅ             _             U      r       _r      :       U:             _      *       U*      b       _b             U      Ɏ       _Ɏ             U      Ǐ       _Ǐ             U             _      }       U}      A       _A             U      ӑ       _ӑ             U                                      Ɂ             \             \      s       \ȅ             \E             \:      y       \      Ɏ       \      Ǐ       \ݏ      M       \}      ӑ       \ۑ             \                      ہ      ߁       P߁             S             S                        $       P                   ہ             V             V                                                              ہ      (       0(      ,       P,      v       ]             0             0      ȅ       ]ȅ             0             ]      r       0r      :       ]:             0      *       ]*      b       0b             ]      Ɏ       0Ɏ             ]      Ǐ       0Ǐ             ]             0      }       ]}      A       0A             ]      ӑ       0ӑ             ]                                                                                                XR      R       XR      Z       xZ      p       Xς             T             T      8       _8      @       @             _             \             |      v       \      s       _s      ȅ       \ȅ             X                   E       \E             _r             _      :       \      *       _F      K       Pb      y       _y             \Ɏ             \             P             T      Ǐ       Ǐ      ݏ       \ݏ             _             P             P      M       _M      }       \A             _ӑ      ۑ       \ۑ             _                      /      F       PK      W       P]      b       P                      ׂ             P             P      Ǐ       P                            ݃       PǏ      ׏       P؏      ݏ       P                                  p{      {       U{      {       V{      {       U{      G|       VG|      G}       UG}      b}       Vb}             U             V             U                        p{      {       T{      {       ]{      {       T{             ]                                 t{      {       U{      {       V{      {       U{      G|       VG|      G}       UG}      b}       Vb}             U             V             U                        {      {       \{      Z|       \G}      b}       \             \                      {      {       P{      {       S{             S                  L|      V|       P                   {      {       ^{             ^                               {      {       0{      Z|       0Z|      ^|       P^|      G}       \G}      b}       0b}             \             0             \                                    {      G|       _G|      j|       Vj|      r|       vr|      G}       VG}      b}       _b}             V             _             P             V             P             V                    {      {       P{                                   |      &|       P             P             P                            @b      bb       Ubb      xb       Sxb      b       Ub      b       Ub      b       Sb      b       U                            @b      bb       Tbb      {b       \{b      b       Tb      b       Tb      b       \b      b       T                            @b      bb       Qbb      }b       ]}b      b       Qb      b       Qb      b       ]b      b       Q                           Db      bb       Ubb      xb       Sxb      b       Ub      b       Ub      b       Sb      b       U                    ^b      yb       Vb      b       V                 b      b       v0                          b      b       Ub      c       Sc      c       Uc      c       Uc      c       U                        b      b       Tb      c       Vc      c       Tc      c       T                         b      b       Ub      c       Sc      c       Uc      c       Uc      c       U                   b      b       uc      c       u                      b      b       Pb      
c       ]
c      c       T                      b      b       Pb      c       \c      c       Q                    \      8\       U8\      5b       U                                \      <\       T<\      a\       \a\      h\       Th\      ]       \]      ]       T]      ]       \]      ]       T]      5b       \                                \      <\       Q<\      c\       ]c\      h\       Qh\      ]       ]]      ]       Q]      ]       ]]      ]       Q]      5b       ]                   \      8\       U8\      5b       U                        6\      _\       Vh\      \       V]      ]       VK`      `       V                            =\      ]\       Ph\      \       P\      ]       S]      ]       S]      ]       P]      5b       S                  \      \       P                        J\      g\       _h\      ]       _]      ]       _]      5b       _                               =\      \       0\      \       P\      ]       V]      ]       V]      ]       0]      K`       VK`      `       0`      5b       V                                        ~\      \       T\      \       \      \       T\      \       ^\      ]       ~]      ]       ^]      ]       ^]      F`       ^F`      K`       PK`      c`       c`      h`       Ph`      `       `      5b       ^                      \      \       Ph`      w`       P}`      `       P                              Pu      xu       Uxu      u       Vu      'w       U'w      Bw       VBw      x       Ux      x       Vx      e{       U                              Pu      |u       T|u      v       ^v      'w       T'w      Bw       ^Bw      x       Tx      x       ^x      e{       T                             Tu      xu       Uxu      u       Vu      'w       U'w      Bw       VBw      x       Ux      x       Vx      e{       U                    vu      v       \v      e{       \                      u      u       Pu      v       Sv      e{       S                   u      v       ]v      e{       ]                          v      v       Pv      v       ^v      'w       ^Bw      x       ^x      e{       ^                  u      v       P                                        u      u       _u      v       Vv      v       vv      v       Vv      'w       V'w      Bw       _Bw      x       Vx      x       _x      x       Px      x       _x      x       Vx      x       Px      e{       V                      u      u       Px      x       Px      x       P                          n      o       Uo      io       \io      q       Uq      !q       \!q      Eu       U                          n      o       To      wo       ^wo      q       Tq      !q       ^!q      Eu       T                    n      o       Qo      Eu                                n      o       Uo      io       \io      q       Uq      !q       \!q      Eu       U                      o      o       Vq      !q       Vr      r       V                      o      #o       P#o      p       Sp      Eu       S                         o      io       0io      mo       Pmo      o       \q      !q       0r      r       \                           o      wo       0wo      {o       P{o      p       ^p      q       ^q      !q       0!q      Eu       ^                   o      p       ]p      Eu       ]                          o      o       Po      p       \p      q       \!q      r       \r      Eu       \                    o      o       Po      o       Y                                        o      o       _o      p       Vp      p       vp      p       Vp      q       Vq      !q       _!q      r       Vr      r       _r      r       Pr      r       _r      r       Vr      r       Pr      Eu       V                      o      o       Pr      r       Pr      r       P                        0i      Qi       UQi      Ej       ]Ej      Fj       UFj      n       ]                       4i      Qi       UQi      Ej       ]Ej      Fj       UFj      n       ]                    Oi      Cj       \Fj      n       \                      \i      ci       Pci      @j       SFj      n       S                          _i      i       Vi      i       vi      Aj       VFj      fl       Vfl      kl       Pkl      n       V                      i      i       P:l      Gl       PHl      Ml       P                                                   I      %I       U%I      J       VJ      K       UK      L       VL      L       UL      CN       VCN      N       UN      N       VN      P       UP      rQ       VrQ      Q       UQ      :R       V:R      R       UR      R       VR      S       US      T       VT      T       U                                                 I      %I       U%I      J       VJ      K       UK      L       VL      L       UL      CN       VCN      N       UN      N       VN      P       UP      rQ       VrQ      Q       UQ      :R       V:R      R       UR      R       VR      S       US      T       VT      T       U                    #I      I       \M      #N       \                     *I      EI       PEI      K       SK      T       S                                              fI      jI       PjI      J       _J      J       PJ      K       ]K      L       _L      CN       _CN      N       ]N      N       PN      P       ]P      rQ       _rQ      Q       ]Q      :R       _:R      R       ]R      R       _R      S       ]S      T       _T      T       ]                              /I      J       ]K      L       ]L      CN       ]P      rQ       ]Q      :R       ]R      R       ]S      T       ]                               #K      'K       P'K      K       VCN      N       VN      P       VrQ      Q       V:R      R       VR      S       VT      T       V                                                     AI      I       ^I      I       \I      I       |xGJ      J       ^J      3K       \3K      <K       |<K      K       \M      N       ^N      #N       P#N      >N       \>N      CN       PCN      P       \rQ      Q       \Q      Q       PQ      Q       ^Q      Q       PQ      Q       ^:R      R       \R      S       \T      T       \                     fI      jI       PjI      K       _K      T       _                      rI      I       PM      M       P N      N       P                      OJ      mJ       PQ      Q       PQ      Q       P                                 J      J       PJ      K       ]CN      N       ]N      N       PN      P       ]rQ      Q       ]:R      R       ]R      S       ]T      T       ]                               c      Hc       UHc      c       Vc      d       Ud      e       Ve      jf       Ujf      f       Vf      %i       U                         c      Lc       TLc      ud       ]ud      zd       Tzd      %i       ]                             $c      Hc       UHc      c       Vc      d       Ud      e       Ve      jf       Ujf      f       Vf      %i       U                      Fc      c       \d      e       \jf      f       \                      Uc      ]c       P]c      pd       Szd      %i       S                   Uc      wd       ^zd      %i       ^                          c      c       Pc      sd       \zd      d       \e      jf       \f      %i       \                                        Xc      c       _c      c       Vc      c       vc      qd       Vzd      d       Vd      e       _e      jf       Vjf      f       _f      f       Pf      f       _f      f       Vf      f       Pf      %i       V                      c      c       Pf      f       Pf      f       P                      G      G       UG      bH       VbH      H       U                      G      G       PG      wH       S|H      H       S                    ^H      qH       T|H      H       T                    bH      wH       V|H      H       V                    G      {H       \|H      H       \                      F      F       UF      G       SG      G       U                        F      F       PF      !G       \$G      hG       \kG      G       \                           F      F       PF      #G       ]#G      $G       P$G      jG       ]jG      kG       PkG      G       ]                        F      F       PF      G       V$G      fG       VkG      G       V                          G      G       PG      G       S$G      eG       SkG      |G       P|G      G       S                            F      F       PF      #G       ]#G      $G       P$G      jG       ]jG      kG       PkG      G       ]                        E      E       UE      E       ^E      E       UE      F       ^                    E      E       TE      F       T                            E      E       QE      E       \E      1F       Q1F      ?F       \?F      vF       QvF      F       \                            E      E       RE      E       VE      E       RE      E       VE      1F       R1F      F       V                        E      E       XE      E       SE      E       XE      F       S                           E      E       PE      E       ]E      E       PE      vF       ]vF      F       PF      F       ]                            E      E       PE      E       ]E      E       PE      vF       ]vF      F       PF      F       ]                          D      D       UD      D       \D      D       UD      E       \E      E       U                    D      D       TD      E       T                          D      D       QD      D       SD      D       QD      >E       S>E      E       Q                          D      D       RD      D       ]D      D       RD      E       ]E      E       R                         D      D       PD      D       VD      E       PE      E       VE      E       P                          D      D       PD      D       VD      E       PE      E       VE      E       P                          0D      ND       UND      cD       \cD      hD       UhD      D       \D      D       U                    0D      ;D       T;D      D       T                          0D      ND       QND      ]D       S]D      hD       QhD      D       SD      D       Q                          0D      ND       RND      eD       ]eD      hD       RhD      D       ]D      D       R                         RD      `D       P`D      aD       VaD      D       PD      D       VD      D       P                          RD      `D       P`D      aD       VaD      D       PD      D       VD      D       P                        :      :       U:      ?       ^?      ?       U?      #D       ^                    :      :       T:      #D                             :      :       Q:      :       S:      #D       Q                    :      :       R:      #D                          :      :       0:      :       P:      #D                             :      :       0;      7;       P7;      `?       ]?      D       ]                     :      :       0?      ?       P?      @                          :      :       0>      `?       \                         :      :       0=      >       U>      >       R.B      FB       UFB      D       R                          :      :       0;      <       0<      >       \?      @       \@      A      
 8)     A      .B       0.B      3B       \                       :      :       Q:      ;       S;      ;       sp;      ~?       S?      #D       S                    :      :       0;      <       V?      .B       V                	 :      :       0                
       :      :       0<      <       P<      `?       V.B      D       V                         :      F;       0F;      N;       PN;      :?       _:?      ?       0?      D       _D      #D       0                    :      :       P:      #D                             ;      7;       P7;      `?       ]?      D       ]                   =      >       R.B      D       R                   =      >       V.B      D       V                                  
=      >       P>      >       Q>      >       P>      >       Q>      >       P>      >       \.B      7B       P7B      FB       t u "FB      ZB       t r "                  .B      D       R                  .B      D       V                 .B      D       R                     .B      B       VB      B       XB      B       xxB      B       X                            .B      B      
 uespemosB      B       [B      hC       [hC      }C       X}C      C       UC      C       UC      C       UC      C       TC      C       Q                              .B      vB      
 modnarodvB      B       PB      B       PB      lC       P}C      C       PC      C       PC      C       PC      C       XC      C       UC      C       UC      D       QD      D       q A$#@%!D      D       q A$#@%!p '                           .B      sB      
 arenegylsB      B       TB      SC       TaC      dC       T}C      C       TC      C       PC      C       PC      C       PC      D       PD      D       p  $#@%!D      D       P                      .B      sB      
 setybdetsB      WC       QaC      C       QC      C       QC      C       \C      D       \D      D       | E$#@%!                  sB      vC       UD      D      + | E$#@%!q A$#@%!'p  $#@%!'p '                  >B      B       [                 >B      vB       P                    B      B      7 x $x($!x0$!x8$!x !B      B      7 x| $x}($!x~0$!x8$!xx!                    BB      C       \C      D       r 7                      sB      B       ZB      C       v |  $ &r "C      D       v r 7 $ &r "                          :      -:       U-:      :       S:      :       T:      :       U:      :       U                        :      -:       T-:      :       V:      :       T:      :       T                         :      ?:       0?:      C:       PC:      :       ]:      :       Q:      :       0                     :      T:       0T:      `:       P:      :       0                             :      G:       0G:      S:       PS:      d:       \d:      w:       Pw:      x:       \x:      :       P:      :       0                        7      7       U7      	8       \	8      8       U8      :       \                                  7      7       T7      7       ]7      8       T8      /9       ]/9      S9       TS9      9       ]9      9       T9      9       ]9      :       T                              7      7       Q7      7       S7      8       Q8      8       S8      S9       QS9      9       S9      :       Q                           7      7       P7      8       V8       8       P 8      9       V9       :       P :      :       V                       7      7       08      X8       0X8      g8       Pg8      h8       U                       7      7       08      }8       0}8      8       P8      9       ^                            7      7       P7      8       V8       8       P 8      9       V9       :       P :      :       V                        p6      6       U6      7       S7      7       U7      7       S                            p6      6       T6      6       Q6      6       V6      7       T7      7       V7      7       T                          p6      6       Q6      6       \6      7       Q7      7       \7      7       Q                          p6      6       R6      6       ]6      7       R7      7       ]7      7       R                         6      6       06      6       P6      6       _7      O7       _~7      7       _                           6      6       07      !7       0!7      17       P17      ~7       ^~7      7       P7      7       ^                  >7      J7       U                      5      5       U5      `6       \`6      e6       U                      5      6       T6      H6       ]H6      e6       T                    5      d6       ^d6      e6       U#                 5      X6       S                         5      5       U5      5       S5      5       U5      5       S                           5      35       T35      f5       \f5      h5       Th5      5       \5      5       T                     $5      5       05      5       \5      5       \                           $5      ;5       0;5      L5       PL5      h5       Vh5      v5       Pv5      5       V5      5       V                  M5      b5       P                    p.      .       U.      4       U                          p.      .       T.      "/       V"/      0       T0      0       V0      4       T                    p.      .       Q.      4                               p.      .       R.      -0       ^-0      40       R40      4       ^                        .      .       P.      &0       S&0      30       U40      4       S                     .      .       P.      +0       ]40      4       ]                          /      /       P/      )0       \40      0       \0      :2       \m2      4       \                                        .      /       \/      /       V/      /       v/      '0       V40      0       V0      0       \0      :2       V:2      V2       \V2      [2       P[2      m2       \m2      2       V2      2       P2      4       V                      .      .       P.      +0       ]40      4       ]                      M/      k/       P[2      g2       Ph2      m2       P                    '      (       U(      e.       U                          '      
(       T
(      (       V(      -*       T-*      6*       V6*      e.       T                    '      
(       Q
(      e.                               '      
(       R
(      )       ^)      )       R)      e.       ^                        (      (       P(      )       S)      )       U)      e.       S                     ?(      F(       PF(      )       ])      e.       ]                          (      )       P)      )       \)      -*       \Q*      +       \+      e.       \                                        (      (       \(      )       V)      )       v)      )       V)      -*       V-*      Q*       \Q*      +       V+      +       \+      +       P+      +       \+      +       V+      +       P+      e.       V                      ?(      F(       PF(      )       ])      e.       ]                      (      (       P+      +       P+      +       P                        &      &       U&      y'       Vy'      ~'       U~'      '       V                    &      x'       S~'      '       S                          &      &       P&      }'       ]~'      '       ]'      '       P'      '       ]                    '      *'       T~'      '       T                   &      &       T'      '       T                     &      &       P'      '       P'      '       ]                      &      &       Q&      &       t'      '       Q                   '      *'       T~'      '       T                   '      *'       ]~'      '       ]                      '      ''       Q''      *'       t~'      '       Q                   K'      Y'       T'      '       T                   K'      Y'       ]'      '       ]                      N'      V'       QV'      Y'       t'      '       Q                        0      N       UN      ƚ       \ƚ      ˚       U˚             \                        0      R       TR      Ě       VĚ      ˚       T˚             V                      0      R       QR      ٙ       ^ٙ             Q                           4      i       0i      m       Pm             S      ƚ       |ƚ      ˚       U#˚             S                      ٙ             P      ʚ       ^˚             ^                    o      |       P             P                      [      b       Pb      Ț       ]˚             ]                          "       TU      c       T                             V                               TU      c       T                      p%      %       U%      %       S%      %       U                      p%      %       T%      %       ]%      %       T                      p%      %       Q%      %       \%      %       Q                  %      %       P                 %      %       \                 %      %       ]                 %      %       P                     D%      N%       0N%      \%       P\%      a%       0                  G%      a%       Q                          $      $       U$      ,%       ],%      -%       U-%      .%       U.%      1%       U                     $      %       S%      %       U%      '%       S                  $      %       \                      6$      :$       P:$      F$       SF$      G$       P                      ;$      E$       PE$      F$       s F$      G$       p                   $      $       P                 $      $       H                 $      $       0                 $      $       P                                 U      #       U                      q       6                      q      
                                      R      q       P                             <                            
 (                                   P                '             4                '            
                        '      =       Z=             P                      Z       9                      Z      
 .)                            Z       P                j             :                j            
 )                      m             P                             5                            
                                    P                             4                            
                                     q             qq:$"             Z             P                      d        6                      d       
 c)                                    q             qq:$"             R      d        P                q       H!       7                q       H!      
 )                      t       H!       P                U!      :"       8                U!      :"      
 )                       U!      f!       Qf!      :"       P                G"      #       8                G"      #      
 M                         G"      N"       QN"      i"       Pi"      #       Q                (#      #       8                (#      #      
                                (#      #       P#      #       Y#      #       X#      #       U#      #       T#      #       P                            ,       U,      t       \t      w       U                            0       T0      r       Vr      w       T                    4      M       PM      v       ]                      4      ;       p;      Z       SZ      a       Pa      i       S                                   U      
       V
             U                                 T             T                                 P             ]                                   p             S             P             S                              \                        P$      m$       Um$      $       ]$      $       U$      $       U                    {$      $       S$      $       V$      $       S                    {$      $       S$      $       S                  $      $       ]                      %      %       U%      &       S&      &       U                    %      m&       Vr&      &       V                       &      &       P&      d&       \r&      u&       \w&      &       \                          &      &       P&      -&       \-&      L&       RW&      d&       Rr&      u&       \w&      &       R                      &      -&       0-&      d&       ]r&      w&       0w&      &       ]                   -&      d&       Sw&      &       S                 E&      L&      	 q  $ &                 E&      L&       s                 E&      L&       R                 w&      &       U                 w&      &      
 (                       ~&      &       p                         '      '       U'      '       T'      '       U'      '       U                        '      '       T'      '       Q'      '       T'      '       T                      '      '       T'      '       Q'      '       T                      '      '       U'      '       T'      '       U                    0      ;       U;      l       U                    0      ;       T;      l       T                           4      H       0H      Y       SY      Z       PZ      g       0g      k       Sk      l       P                     4      ?       0?      T       PZ      d       P                                               U             \             T      U       \U      Z       UZ      d       Td      q       \q             U             \                                                 T             V             U             V      Z       TZ      d       Ud      o       Vo      q       Tq             T             V                                         Q      W       ]W      Z       QZ      q       ]q             Q             ]                                          0             P      S       VS      Z       PZ      o       0o      q       Pq             0                                        0      Y       ^Z      q       ^             0             P             ^                           O       SZ      q       S             S                  e      k       P                    p      {       U{             U                    p      {       T{             T                           t             0             S             P             0             S             P                     t             0             P             P                    0      ;       U;      l       U                    0      ;       T;      l       T                           4      H       0H      Y       SY      Z       PZ      g       0g      k       Sk      l       P                     4      ?       0?      T       PZ      d       P                              0      [       U[      F       _F      X       UX             _             U             S             _                              0      p       Tp             V      X       TX             V             T             T             V                            0      p       Qp      F       \F      X       QX             \             Q             \                           4             0             P      F       VX             0             P             0                                     P      F       ^X      d       Pd             ^                           W      p       0p      F       ]X             ]             0             P             ]                         W      [       U[      p       _p      F       SX             S             S                               P                                       U             V             U      "       V"      *       U                                 T      *       T                                       Q             \             Q      )       \)      *       Q                                      0             P             V             P      *       0                                   P             S      &       P                                                    :        U:       q        Sq               U               U       v       Sv             U             S             U             S             U             U             S             U      .       S                                                      :        T:       i        Vi               T               T               V              T             T             V             T             T             V             T             T              V       .       T                                                   :        T:       i        Vi               T               V              T             T             V             T             T             V             T             T              V       .       T                                                 :        U:       q        Sq               U       v       Sv             U             S             U             S             U             U             S             U      .       S                                             P       q       V             P             ^             V              ^       .       V                              :       t        \t       ~        U       y       \             \             P             \      .       \                                       P       `       ^             ^      .       ^                                       P       `       ]             ]      .       ]                                 T                    8      H       P             P                                     0      2       ]2      b       }b      o       ]              ]                    ?      P       PP      o                                            P             _             T              _                                   U             S      *       U                                 T      *       T                                   Q             V      *       Q                                   Q             V             Q                                 T             T                                   U             S             U                                   P             S             P                                 P             \                                                                                                                                                                -       -       /       >                       Z                    O      ^      }                                                  8      O      ^      }                                                                                J      Y      x                      k      m      v            0      J      Y      x                                                                    +      -      1      X      n                      +      -      1      I                                                                          @                                                                                                                          .                      K      1      `                                                          -                                              	      	      	      .	                      K	      	      
      W
      f
      
                      	      	      	      	      @
      W
      f
      
                      
      
      
      
                      
                  *                      $      $      1      S      h                                        g            x                                              0                                                                                                                                                                                                  1      q                                  ^                                                          0     g     l                               W                                                                                                           '     A                     w     w     y                                                   O     `                                                                                                                                                y     y     |                                                                                       (                     F               l                                                                          !     !     !     <"     `"     z"                     "     "     "     "                     "     #     #     $                     z$     $     $     $     $     $     $     $                     =%     =%     ?%     N%                     l%     &     @&     ?'                     &     &     &     &     ('     ?'                     }'     }'     '     '                     '     R(     (     )                     (     )     
)     <)     h)     )                     )     )     )     )                     )     *     *     +                     ?+     A+     J+     |+     +     +                     +     +     +     ,                     ,,     ,      -     -                     -     -     -     -     -     -                     =.     =.     ?.     N.                     l.     /     @/     ?0                     /     /     /     /     (0     ?0                     }0     }0     0     0                     0     R1     1     2                     1      2     	2     ;2     h2     2                     2     2     2     2                     2     3     3     F4                     f3     h3     q3     3      4     :4                     4     4     4     4                     4     z5     5     6                     65     85     A5     v5     5     
6                     ]6     ]6     _6     n6                     6     ?7     p7     7                     6     6     7     ;7     7     7                     8     8     8     '8                     H8     9     89     9                     8     8     8     9     9     9                     9     9     9     9                     :     :     :     ;                     ^:     d:     m:     :     :     ;                     G;     G;     I;     X;                     t;     ;     <     Q<                     ;     ;     ;     ;     8<     Q<                     <     <     <     <                     <     I=     p=     =                     	=     =     =     E=     =     =                     =     =     =     =                     >     >     ?     @                     ?     ?     ?     ?     ?     @     m@     @                     @     @     @     @                     @     A     A     B     @B     ZB                     B     B     B     B                     B     C     C     -D     <D     JD                     tC     vC     C     C     D     D                     }D     }D     D     D                     D     F     @F     F     F     F                     E     E     E     F     hF     F                     F     F     F     G                     ,G     3H     `H     H     H     H                     G     G     G     /H     H     H                     H     H     H     I                     ,I     %J     PJ     J     J     J                     I     I     I     !J     xJ     J                     J     J     J     J                     K     L     0L     }L     L     L                     K     K     K     L     XL     oL                     L     L     L     L                     L     M     M     M      N     $N     3N     AN                     M     M     M     M                     }N     }N     N     N                     N     ;O     hO     P                     MP     MP     OP     ^P                     |P     fQ     Q     Q     Q     Q                     %Q     'Q     0Q     bQ     Q     Q                     -R     -R     /R     >R                     aR     S     S     	S     0S     S                     S     S     	S     !S                     7T     7T     9T     GT                     hT     YU     U     U     U     U                     U     U     U     V                     /V     V      W     X     X     X                     /X     6X     :X     CX     HX     mX     X     X                     Y     Y     Y     ,Y                     OY     VY     VY     Y     Z     [     [     K]     _]     ]                     ]     ]     ]     ]                     ]     ^     ^     ^                     _     _     _     (_                     E_     _     `     P`                     `     `     `     `                     `     7a     `a     |a                     a     a     a     a                     a     gb     b     b                     b     b     b     b                     c     0d     9d     Sd                     d     d     d     d                     d     e     e     e                     'f     'f     )f     8f                     Uf     )g     8g     pg                     g     g     g     g                     g     xh     h     i                     i     i     i     i                     i     j     j     k                     k     k     k     k                     l     l     l     m                     n     n     	n     n                     6n     n      o     o                     'p     'p     )p     8p                     Vp     p      q     r                     Gr     Gr     Ir     Xr                     vr     Is     ps     s     s     s                     t     t     	t     t                     6t     	u     0u     zu     u     u                     u     u     u     u                     u     v     v     Bw     Qw     ]w                     w     w     w     w                     w     x     8x     tx                     x     x     x     x                     x     y     y     z                     Jz     Qz     Uz     ^z     cz     z     z     z                     {     {     {     {                     <{     {     |     }                     |     |     |     |     |     |     }     }                     m}     m}     o}     ~}                     }     /~     X~     |          Y                     ~     _          #                     ~     ~     ~     ~                          ɀ     ɀ     ݀                                                                   ߁                                                             B     j                                         ̈́                                    7                                    ǆ     ̆                7                     }     }                                    U          Q                     ׉     ݉                         :     Q                                                                                                                                                                                            G     G     I     X                     u     5     V     d     s                                                                          Վ                                                   (                     E               7                     w     w     y                               \     }                          ג     ג     ْ                                    ݓ                          7     7     9     H                     e          =     W                                                         ŕ     |                                                                   %     ܗ           8                     w     w     y                               T     x                                                                   Ě                                ]     ]     _     n                                                                                  Н     (     H                          D     `                                    ݟ     ݟ     ߟ                                         '                     }     }                                         У                          t     z     ~                                              =     =     ?     N                     o     -     @           @                                                                        ݨ     ݨ     ߨ                                    @                          G     G     I     X                     u                                    '     '     )     8                     U          :     H     W     q                                                         ܮ                                    :     A     E     N     S     x                                                                   .     x                               q     w     {                                              7     7     9     H                     e                                                                        ,     Ҷ                                                         ȷ                               M     M     O     ^                     |     "     P     _                     ڹ                              H     _                                                         ź     X     h     
                     G     G     I     X                     u                                                                        %          Ⱦ     j                                                         ܿ                                    :     A     E     N     S     x                                                                   ,                                                                                             M     M     O     ^                     |     "     P     _                                                   H     _                                                              9     `                          z                                                        =     =     ?     M                     n     d                               4     :     >     G     L     o                                                                   .     '     P     w                                              .     `     w                                                                                   -                     m     m     o     ~                          B     p                                                   8     h                                                                                                  J     Q     U     ^     c                                                                        <                                                                                            ]     ]     _     n                          2     `     o                                              (     X     o                                                                                             :     A     E     N     S     x                                                                   %               j                                                                                             :     A     E     N     S     x                                                                   ,                                                                                             M     M     O     ^                     |     "     P     _                                                   H     _                                                              (     @     &     0                                                                                                                      	                          8          0                                    G     G     I     X                     u                                                                        %               j                                                              h     x                          W     W     Y     h                               (                                                              <                                                                                   W     W     Y     h                               (                                                              <                                                                                            ]     ]     _     m                          s                               7     9     <     s                                    -                     N               *                     Y     [     ^                          m     m     o     }                                                                                                                                                 6     `     	                                    6                     	     	     	     	                     
                *                                                         i     i     l     {                                                         )     )     ,     ;                                                              ]                                                   	                          5     I     X                                                                                       N     `     8     G     S                                                                                                       	                          5                         )                     W     W     Y     h                               0     ^     m     y                                                              \                                                                             +     ~                               n     n     n                                                                   ~                               '     '     )     8                     V               L     p                                                                                     !     *!                     m!     m!     o!     }!                     !     "     "     z#                     `"     b"     k"     "     `#     z#                     #     #     #     #                     #     w$     $     $                     $     $     $     %                     %%     c%     %     %                     %     %     %     &                     3&     '     '     !(                     ](     ](     _(     n(                     (     V)     )     )                     )     )     )     R)     )     )                     -*     -*     /*     =*                     ^*     ,     0,     m-     |-     -                     +     +     +     ,     0-     J-                     -.     -.     /.     >.                     a.     q1     1     r2                     +1     -1     61     m1     (2     H2                     2     2     2     2                     2     94     P4     4     4     4                     5     5     5     5                     H5     6      7     7                     6     6     6     6     7     7                     8     8     8     8                     >8     9     9     9                     8     <9     9     9                     -:     -:     /:     >:                     a:     <     (<     =                     =     =     =     =                     >     )?     @?     ^@                     @     @     @     @                     @     cA     A     A                     A     A     A     A                     B     B     B     B                     B     C     C     C     C     C                     D     D     D     D                     >D     D     E     &E                     mE     mE     oE     }E                     E     F     F     #G     2G     @G                     gG     gG     iG     wG                     G     AH     PH     nH                     H     H     H     H                     H     J     (J     JK                     K     K     K     K                     K     ZM     pM     M     M     M                     -N     -N     /N     =N                     ^N     O     O     Q     Q     Q                     Q     Q     Q     R                     .R     SS     S     T     T     T                     U     U     U     U                     >U     MV     V     W                     X     X     X     'X                     HX     X     Y     %Y     4Y     BY                     wY     wY     yY     Y                     Y     qZ     Z     Z     Z     Z                     Z     Z     Z     Z                     [     [     [     [                     =\     =\     ?\     N\                     o\     ^     `^     K_                     _     _     _     _                     _     `     a     da                     a     a     a     a                     a     b     c     c     c     d                     Wd     Wd     Yd     gd                     d     ze     e     e     e     e     e     e                     f     f     f     'f                     Hf     g     @g     g     g     g                     -h     -h     /h     =h                     `h     $j     Pj     j     j     j                     k     k     k     -k                     Pk     l     m     m     m     m                     m     m     m     m                     #n     o     o     p                     p     p     p     p                     q     r     (r     r                     r     r     r     r                     r     t     t     u                     Mu     Mu     Ou     ^u                     u      w     Pw     vx                     v     v     v     w     @x     Zx                     x     x     x     x                     x     z     z     {     {     {                     |     |     |     |                     >|     C}     p}     }      ~     ~     *~     8~                     m~     m~     o~     ~~                     ~     9     P     `                                                         ΁     `                    =     L     h                                                         ΄                :                     w     w     y                                         ·                                                         >     |          .                     /     1     B     w                               }     }                                                    ƍ     ԍ                                                         >          А                          X     Z     c          0     J                                    Ǒ                               В                          -     -     /     >                     \     Q          ͔     ܔ                                         #     (     M                                              ,                     J     H     p     Ɩ     Ֆ                                         D                                              .                     S     c                               Ǚ     Ǚ     ə     ؙ                               0                                    ɚ                                     M     M     O     ^                                                                    ǡ     ǡ     ɡ     ס                                    Ǣ     ֢                                         (                     E          )     7     F     R                                                                        ]                     h                         0                                                         Ʀ     9     \     j     y                                    §     ѧ                                     O     `               +                                          ݪ                                                ݪ                           ]     ]     _     n                                                   #     ?                     i     i     l     {                                    Ȱ                                              !                     F     H     V     Ų     ز                +                     Y     Y     \     k                          r                                                                   (          <     X                                                         ܷ          0                          ׹     ׹     ٹ                                         (                     m     m     o     ~                                    ׿                                    `          0          ׿                               ,     k          ׿                     -     -     /     >                     \     Q                                                        #     (     M                                              '                     H                                              =     =     ?     N                     s     7     `               #                     W     W     Y     g                          M     p                                                                                  8                                                             
     `     w                                                                        "                     g     g     i     w                          |                    )                     ]     ]     _     m                                                                                                       #                                    =     =     ?     M                     n     w                                              -                     N     {                                                        -                     N     {                                                        .                     O               *     9     U                                                              ^     p                                              =     =     ?     N                     o               J     `                                                                             c                                                                   3               Z     i     w                                                                   @     \                                                              Y     h                                    =     =     ?     N                     l          8     N                                                                                                  s                               6     ;     ?     H     M     o                               I     I     L     [                     x                                                                             u                                              *                     =     =     ?     N                     j                _                                                   H     _                                                         O     V     Z     T     V     Y     _                                                                             .                     O               @     T     ~                                                                        p                                                                             0     Y     h     v                                                                               (     6                     m     m     o     ~                          g                               O     R     h     j     s                                    -     -     /     >                     \     '     P                                    "     +     0     Y                                                                                  1	                     m	     m	     o	     ~	                     	     p
     
                                                                                  M     M     O     ^                          ,     X     a                     O                                                                                                                                                                                                                        ,                o                                               )     X     o                                                                                  W                                         @     W                                                                                                                                                     M     M     O     ^                          Y          \"                     !     !     !     !     B"     \"                     "     "     "     "                     "     #     #     '                     %     %     &     &     &     F&     '     '                     x&     &     &      '     '     '                     '     '     '     '                     (     (     )     *                     )     )     )     %*     *     *                     -+     -+     /+     >+                     \+      ,     0,     -     -     -     -     .                     ,     ,     ,     ,                     -     -     -     .                     M.     M.     O.     ^.                     .     T/     /     2     )2     }2                     31     51     >1     u1      2     2                     2     2     2     2                     2     q4     4     6     06     8     #8     18                     m8     m8     o8     }8                     8     (:     P:     ;     ;     =                     9     9     9     9     9     (:                     =     =     =     >                     />     ?     0?     oA     ~A     A                     @     @     @     A     XA     oA                     B     B     B     B                     IB     C      D     GE     XE     @G     OG     ]G                     G     G     G     G                     G     <I     I     J      K     L     L     L                     -M     -M     /M     =M                     bM     N      O     gP     xP     RR                     \N     _N     N     N     N     N                     R     R     R     R                     R     PT     T     QU     `U     U                     'V     'V     )V     7V                     XV     W     W     [X                     X     X     X     X                     X     X     X     X     X     >Z     PZ     [     0[     t]                     Z     >Z     PZ     [     [     [     \      ]                     ]     ]     ]     ]                     ]     ]     ]     db     xb     wf     f     f                     `     `     `     a     0d     d      e     e                     f     f     f     f                     g     vh     h     h     h     h                     -i     -i     /i     >i                     ii     k      l     n                     k     k     k     k     n     (n                     n     n     n     n                     o     r     @r     Cu                     q     q     q     
r     t     t                     u     u     u     ~                     v     Dv     |      }                     =     =     ?     N                     t     v          4     H          Ɉ                          P     P               ؆     8                                    -                     S     U     ]     `     e                         +                                         0     X                     ]     ]     _     m                          B     p               Ώ                                                         3     9     =     B     X                                     ]     ]     _     n                                         ֘     N                                    ͙                          ͛          o     ~                                         ͜                                              -                     ]     ]     _     m                          <     P               ͡                     С     С     ١                                              7     7     9     H                     f               K                                                              V          ̦     ۦ                                    M                                         -                     P                         #                     K     X                               ]     ]     _     m                          ;     h                                    ʪ     ܪ     h     x                     M     M     O     ]                     ~               د                               C     C     E     T                     x                                    h     x     }                          ^     d     h     q     v          0     P                                                         8     D          '     ;     I                     (     8     =     C                                              ?     ȶ                                                                   8     h          '     Q                          Ź               '     C                     v                                    {                                                   ¼                                                                                  +     +     0     0     W     `                                    0     0     0     @                               6     6     6     >     E     Q                                                                              0     P                                                                                  p     p     w     w               .                     w     w     w                                     }     }                                              !     !     (     (                                                                       !                     (     (     (     :                                                                   -     -     /     =                     c     i     m                7     7     <     <     _     _     d     d                                    <     <     <     X                               d     d     d                                              !                                   2                     W          h                                                                                                                                                     *                                          @     h                                                              e                                                                      @     @     G     G     h     h     o     o                                                                                                                                     1                               G     G     G     h                               o     o     o                                    a                                     M	     M	     O	     ]	                     ~	     
     
     
                     -     -     /     >                     _     h                               =     =     ?     N                     o     @          *     >     L                                    <                                }     }                                                                                                       1                                              l     n     w                                                                        D     &     h          *     W                     m          *     W                                                                        8     L                               O     R     V     0     8                                                              #      P      !                     M"     M"     O"     ]"                     "     $     $     I&     ]&     i&                     &     &     &     &                     &     )     P)     ~+     +     +                     *     @+     `+     ~+                     +     +     +     +                     ,     3-     p-     -     -     -                     ,     -     -     -                     =.     =.     ?.     N.                     o.     b0     0     0     1     \1                     0/     /     1     P1                     /     /     0     0                     1     1     1     1                     1     3      4     4                     2     2     2     3     c4     4                     5     5     5     )5                     M5     .8     x8     #9     29     9                     6     6     F6     /7     29     9                     P7     n7     7     7                     9     9     9     9                     9     ;     ;     w<     <     <                     :     $;     J<     w<                     P;     R;     [;     ;     0<     J<                     <     <     <     <                     =     @     P@     `A     oA     A                     C>     >     @     @     {A     A                     .?     M?     ?     ?                     MD     MD     OD     ]D                     ~D     4F     F     G     G     !H                     ]H     ]H     _H     mH                     H     {I     I     I     I     I                     +J     +J     -J     ;J                     \J     pK     K     K     K     L                     ML     ML     OL     ^L                     L     M     M     O     P      P                     M     M     N     O     P      P                     MP     MP     OP     ^P                     P     ~Q     Q     jR                     R     R     R     R                     R     mT     T     V                     V     V     V     V                     W     X     X     Y     Y     Y                     =Z     =Z     ?Z     MZ                     nZ     [     [     \                     a     a     a     a                     7a     7a     9a     <a                     ^a     ^a     `a     ca                     a     a     a     a                     a     a     a     a                     a     a     a     a                     c     c     c     c                     c     c     c     c                     d     d     d     d                     ?d     ?d     Ad     Dd                     Ne     Ne     Pe     Se                     ue     ue     we     ze                     e     e     e     e                     e     e     e     e                     f     f     	f     f                     Kf     Kf     Mf     Pf                     rf     rf     tf     wf                     f     f     f     f                     ng     ng     pg     sg                     g     g     g     g                     g     g     g     g                     h     h     h     "h                     Dh     Dh     Fh     Ih                     kh     kh     mh     ph                     h     h     h     h                     h     h     h     h                     h     h     h     h                     i     i     	i     i                     .i     .i     0i     3i                     Ui     Ui     Wi     Zi                     |i     |i     ~i     i                     i     i     i     i                     j     j     j     	j                     Hj     Hj     Jj     Mj                     oj     oj     qj     tj                     j     j     j     j                     j     j     j     j                     j     j     j     j                     k     k     k     k                     2k     2k     4k     7k                     Yk     Yk     [k     ^k                     k     k     k     k                     k     k     k     k                     k     k     k     k                     k     k     k     k                     l     l     l     !l                     Cl     Cl     El     Hl                     l     l     l     l                     l     l     l     l                     l     l     l     l                     m     m     m     m                     ]m     ]m     _m     bm                     m     m     m     m                     m     m     m     m                     m     m     m     m                     n     n     n     n                     =n     =n     ?n     Bn                     n     n     n     n                     n     n     n     n                     n     n     n     n                     o     o     o     o                     :o     :o     <o     ?o                     ,p     ,p     .p     1p                     Sp     Sp     Up     Xp                     zp     zp     |p     p                     q     q     q     q                     <q     <q     >q     Aq                     q     q     q     q                     q     q     q     q                     %r     %r     'r     *r                     Lr     Lr     Nr     Qr                     sr     sr     ur     xr                     r     r     r     r                     s     s     s     s                     ?s     ?s     As     Ds                     fs     fs     hs     ks                     s     s     s     s                     u     u     u     u                     v     v     !v     $v                     Fv     Fv     Hv     Kv                     mv     mv     ov     rv                     v     v     v     v                     v     v     v     v                     9w     9w     ;w     >w                     `w     `w     bw     ew                     w     w     w     w                     x     x     x     x                     x     x     x     x                     x     x     x     x                     y     y     y     y                     9y     9y     ;y     >y                     `y     `y     by     ey                     y     y     y     y                     y     y     y     y                     fz     fz     hz     kz                     z     z     z     z                     z     z     z     z                     z     z     z     z                     {     {     {     {                     ){     ){     +{     .{                     P{     P{     R{     U{                     w{     w{     y{     |{                     {     {     {     {                     {     {     {     {                     {     {     {     {                     |     |     |     |                     t|     t|     v|     y|                     |     |     |     |                     |     |     |     |                     |     |     |     |                     }     }     }     }                     7}     7}     9}     <}                     b     b     d     g                                                                                                   E                                                                                                                   &                                         {                                                                                      C      C      G      Q      U      X                                  (      \      x                                        5      ;      ?      M      p                            +                          
             8      f      p                                               7      <      s                                              0      P                                                                 
                      *       *       *       2                       P       w                                                                                  '	      0	      <	                      	      	      	      	                                                              &                                        k      y      z      |                                        L      p                                                          k                      2                  k                      c                  @      H      k                            (      p                                  +      x                                  8                                              !      '                            !      '                                                                                      >      A                            >      A            q                       q       "!      %!      U!                      "!      %!      U!      "      	"      G"                      "      	"      G"      "      "      (#                      "      "      (#      #                      w&      w&      ~&      &                      &      &      &      &      '      '                      '      *'      '      '                      '      *'      '      '                      K'      K'      K'      Y'      '      '                      !(      .(      <(      ?(                      (      (      (      (      +      +                      .      .      .      .                      @/      D/      E/      g/      `2      p2                      7      7      7      7      7      7                      :      :      :      :                      ;      ;      ;      ;                      <       =      =      =      =      >      0B      D                      4D      4D      6D      ;D      JD      RD                      D      D      D      D      D      D                      E      E      E      E      E      E                      F      F      F      F      F      F                      ;I      K      K      T                      fI      I      M      N                      @J      DJ      GJ      iJ      Q      Q                      }J      J      J      J      J      J                      <U      V      V      V      V      0W      @W      \                      TU      U      HY      `Y                      PV      vV      HZ      fZ                      V      V      V      V                      p\      ]      ]      ]      ]      5b                      \      \      p`      `                      uc      c      f      f                      i      i      @l      Pl                      o      o      r      r                      u      u      x      x                      {      B}      P}                            {      "|                                        v                                        B      P      v                      Ȃ      ̂      ς                  Џ                                        ك      Џ                            ;      N      h      !                      [                                        F      T      W      w                                  U      h                                    !       $       +       +       1       i       m       p       z                     q                                                .                      0      T            .                                                                                       W      F      `                                              N      `      x                                              `      o                                                                                                   8                    `                    X                    7                    \                    `                    hb                    0g                   	                    
 Б                    0                                        e                   @e                   *                   x9                                       ؽ&                   &                   &                   &                   @&                    &                                         Pf                                                                                                                                                                        
                         P                   ?              7                   T                   u                                                                                              !                  C    P              g    !                  !                                                      ?                                     @              $    
              9                  N                  g                                                                                                                @              3                  _    @      }      ~     h                                                                    g            %                  U                                                         0                         p           g             :    0              j    0                  0                 g     !           0                                9    0            ^    @g     %       x                      y                                  y                                ?                 R                  y    
                                                       E                                                                                     0                  J                  h                                                                                          	                  0	                  Q	                  p	                  	                  	                  	                  
          <      .
                  W
                  ~
                 
                  
                  
                  
    
                 
             8    0             X    
     p      k    0                                                   A             3               _    A                                  P     n                       =    p             m                    p                 U                 p                 U             +    E             T    `            p    E                                  P                             5                  j                                     "                                 "             A    %             u    "     ~          %                 N'                 %     >          N'             B    )             m    P'     >          )                 +                 )     >          +             .    .             Y    +     >      w    .                 N0                 .     >          N0                 2             I    P0     >      i    2                 U4                 2           	    U4             H    %6                 `4               %6                 7                 06           :    7             i    9                 7               9                 ;                 9     ^      ;    ;             l    `<                  ;     @          `<                 i<                 `<     	       -    i<             W    y<                 p<     	           y<                 =                 <     @          =             >    @             j    =               @                 iB                 @               iB             4    JD             a    pB               JD                 F                 PD     t          F             /    H             _    F                H                 J                 H               J             4    L             _    J           }    L                 AN                 L               AN             ;     P             o    PN                P                 Q                  P               Q             R    T                  R               T                 U                 T           %    U             X    X                 U               X                 ]             !    X           M    ]             y    ^                 ]     o          ^                 _`                  ^     o      3     _`             k     a                  ``     +           a                  b             2!    a     +      X!    b             !    bd             !    b           !    bd             "    e             ."    pd           J"    e             x"    g             "     f           "    g             "    i             #    g           9#    i             f#    k             #    i           #    k             #    m             $    k           %$    m             R$    o             }$    m           $    o             $    r             $     p           %    r             J%    s             x%     r           %    s             %    u             %    s           &    u             G&    ]w             q&    u           &    ]w             &    x             &    `w     #      '    x             I'    z             w'    x     N      '    z             '    .}             '    z     N      (    .}             =(    m             j(    0}     =      (    m             (    ~             (    p           )    ~             4)                 `)               )                 )    F             )               *    F             6*    `             f*    P           *    `             *                 *    `           +                 H+                 t+          _      +          
       +                 +                 ,         o      >,                 l,    F             ,         V      ,    F             ,                 -    P     V      3-                 g-                 -         V      -                 -    f             .         V      =.    f             l.    Ɩ             .    p     V      .    Ɩ             .    G             1/    Ж     w      _/    G             /                 /    P     o      /                 *0    /             _0         o      0    /             0                 0    0           1                 J1    B             w1               1    B             1                 1    P           %2                 Z2                 2               2                 2                 3         l      ,3                 \3                 3                3                 3    q             4          q      !4    q             R4    ΰ             4         N      4    ΰ             4                 5    а     6      15                 a5    ɵ             5               5    ɵ             5                 6    е     N      ,6                 X6    n             6          N      6    n             6                 6    p           7                 B7    ɽ             s7                7    ɽ             7    y             7    н           8    y             P8                 8         N      8                 8                 '9         N      S9                 9    n             9          N      9    n             :                 L:    p           u:                 :                 :               ;                 B;                 v;               ;                 ;    <             <               .<    <             \<                 <    @     N      <                 <                 =         N      8=                 m=    .             =         N      =    .             =    ~             $>    0     N      E>    ~             y>                 >         N      >                 >    y             &?               C?    y             r?                 ?         N      ?                 ?                 @         N      A@                 t@    n             @          N      @    n             @                 1A    p     ,      WA                 A                 A         <      A                 B                 IB         <      mB                 B                 B                B                 C    y             IC               hC    y             C    )             C               C    )             D                 :D    0           ZD                 D    &             D         F      D    &             E                 <E    0           [E                 E    .             E         N      E    .             F                 IF    0           kF                 F    9             F         I      F    9             G                 PG    @     g      uG                 G    	             G         
      G    	             &H    9             VH    	     y      yH    9             H                 H    @            (I                 kI                 I                 I                 J                 VJ         <      J                 J                 J               K                 7K    S             gK               K    S             K                 K    `     y      !L                 ^L    )             L         I      L    )             M    y             ?M    0     I      mM    y             M                 M         I      N                 AN                 sN         ,      N    &            N                 N                 N                 
O                 :O                 hO         Y      O                 O                 O                P                 1P    9!             ^P               ~P    9!             P    #             P    @!     I      Q    #             7Q    $             iQ    #     >      Q    $             Q    %             Q    $            R    %             =R    0(             hR    %     `      R    0(             R    )             R    0(           R    )             .S    -             jS     *           S    -             S    2             T     .           'T    2             ^T    4             T    2     D      T    4             T    7             U    4           @U    7             zU    9             U    7           U    9             
V    =             5V     :           SV    =             V    m@             V    =           V    m@             	W    A             /W    p@     E      HW    A             |W    B             W    A            W    B             X    C             OX    B     K      X    C             X    5E             X    C     U      X    5E             9Y    @G             rY    @E            Y    @G             Y    }H             Y    @G     =      Z    }H             <Z    YK             hZ    H           Z    YK             Z    M             Z    `K           [    M             <[    Q             j[     N           [    Q             [    T             [    Q           \    T             6\    W             c\    T           \    W             \    BY             \    W     R      \    BY             %]    Z             R]    PY     o      r]    Z             ]    [             ]    Z     =      ]    [             ^    __             =^     \     _      a^    __             ^    sa             ^    `_           ^    sa             2_    #d             g_    a           _    #d             _    e             _    0d           `    e             O`    g             `    e           `    g             `    j             a     h           *a    j             \a    m             a    j           a    m             a    p             b    m           7b    p             qb    r             b    p           b    r             c    u             Fc    r     s      qc    u             c    x             c     u     e      d    x             <d    {             td    x     E      d    {             d    8~             e    {     X      9e    8~             pe    o             e    @~     /      e    o             f    h             ;f    p           df    h             f    I             f    p           f    I             2g    ݇             gg    P           g    ݇             g    =             g         ]      h    =             Oh    ԍ             h    @           h    ԍ             h                 i               Hi                 si                 i         e      i                 i                 j                7j                 ej                 j               j                 j                 k               2k                 dk                 k         }      k                 k                 l          |      -l                 \l                 l         D      l                 l    R             l         b      m    R             Qm    l             m    `           m    l             m                 n    p           #n                 Sn    +             n               n    +             n    ?             o    0           Eo    ?             |o    װ             o    @           o    װ             	p    +             7p         K      Xp    +             p    ǵ             p    0           p    ǵ             3q    g             iq    е           q    g             q                 q    p     6      r                 ;r    7             fr               r    7             r                 r    @           r                 -s                 as                s                 s                 s               t                 Nt    #             ~t               t    #             t                 u    0           5u                 iu                 u               u                 u    1             8v               fv    1             v    )             v    @           w    )             ?w                 yw    0           w                 w    	             ,x         I      ax    	             x                 x               
y                 @y                 ty               y                 y                 z               /z                 az    d             z         t      z    d             z                 ,{    p           Z{                 {                 {                |                 7|                 l|               |                 |    |             |               }    |             N}    k             }                }    k             }    	             ~    p           )~    	             V~    ]             ~         M      ~    ]             ~                 ~    `                            .                 K                [                 }                                                                             +      >                 k    
                                
                 n             
         ^      '    n             L                 o    p                                              с                                     ~             Q               w    ~                              ۂ         .                       2    v             c                   v                 6                                6             0                 [    @           y                                  ̈́                                     @	             M               q    @	                              ݅    @	                            ;    p             o          P          p             Ɇ                     p     ,                       Q                          ,                       ߇    ~                            @    ~             s    f                            Ȉ    f                                  p           8                 j    k"                       K          k"                 '             -    p"     K      W    '                 *                 '     9      ܊    *                 .             H     +           p    .                 }2             ̋     .     ]          }2                 @8             P    2           t    @8                 =             ܌    @8               =             2    A             `    =               A                 ]G                 A     }          ]G             F    L             x    `G               L             ӎ    aR                  M     a      .    aR             ^    U                 pR               U             ԏ    jX                  V     j          jX             @    ]             m    pX               ]                 f             ߐ    ]     	          f             /    h             b    f     N          h                 n                  i               n             1    Ru             \    n           z    Ru                 ~             Β    ~                              "    ~     
      >                 k                          0                                                        9                 p    +                      ;      ͔    +                 Ώ             5    0           [    Ώ                              Ǖ    Џ     L                       !    N             Q          .      t    N                              ʖ    P     :                                         E               f                     -             ė                   -                 ͡             E    0           g    ͡                              ˘    С     1                            Z             K         J      k    Z                              Ǚ    `                                #             E         3      f    #                              Ě    0                                             E                g                                  Ǜ                                     I             I               k    I                 Q             ל    P               Q                               ?                 n    Ž                      %          Ž                 ~                 н           1    ~             m                          *      Ԟ                                            P      5                  c                           
                           =             "               N    =                              ʠ    @               @     z                       ^                                 ѡ                     2                 2             D                 s                                  ٢         K                       *                 T                     r                 r             ˣ                                                   B                 d                                      	             ̤    	                 
             "     	           ?    
             g                                                  ʥ    L                       L          L             +                 S    P     s      n                                  ̦                                     W             Q               u    W                              ѧ    `     P                           "             I         Q      g    "                 i&             è    "     Y          i&                 +             C    p&     .      e    +                 -                 +     U      ީ    -                 \1             0     .     \      K    \1             w    4                 `1     d          4                 9                 4           %    9             U    <                 9     	          <             Ы    A                 <               A             <    D             _    D                 &H             ˬ    D               &H             (    I             [    0H               I                 
L             ߭    I                
L             :     P             r    L                P             ծ    yR                  P     Y      4    yR             o    V                 R           ԯ    V                 Z             B    V     l      k    Z                 \             հ    Z               \                 E             C                   :    P             I    a             \                  o                                                                        ѱ                                                           P             :    y             Z    y             v    1                 1                 x             Ĳ    x                                                   4             8    4             [    v             |    v                 ˏ                      K      ճ    ˏ                                                 +    T             E    T             n                                                   Ӵ                     f                 f             '    ӓ             E    ӓ             d                                      є                 є             ֵ    ؕ                 ؕ                                               ;    V             W    V             u    Ԙ                 Ԙ                 .             Ͷ    .                 [             	    [             '    r             C    r             a    ٝ             }    ٝ                 Þ                 Þ             ط    Q                 Q                 ۟             A    ۟             j                                      8                 8             ݸ    N                 N                               =                  d                                      Z             ǹ    Z                                               ,    a             I                   Z    p             t                                                     Һ                                                      >                  d                                        p             л    y                 p     	           y             8                 [                 z                                      ɦ                 ɦ             	                 '                 F                 c                     Ƨ                 Ƨ             ν                                      .             1    .             U                 w                     !                 !                                               &                 I                 n    I                 I                 s             ӿ    s                 ,             !    ,             ;                 S                 q                                      e                 e                 I                 p                I             /    ѱ             H    ѱ             d    M             ~    M                                                   ӳ                 ӳ                                               =    Y             Z    Y             u    =                 =                 q                 q                 ض                 ض             &                 H                 d                 ~                     ]                 ]                 9                 9                              <                 [                 x                                                       U                 U                 Z                 Z             
                                   @                 ^                   p                     ]                                                                                     8                  [                                                                           Z                 Z                              2                 R                 p                                                                                                          L&                H&                 D&                @&            )    <&            8    8&            B    4&            K    0&            V    ,&            b    (&            o    $&            |     &                                 *                 *                 W                 W                              -                 H    A             a    A             ~    q                 q                                                                                 3                 S                 r                                      u                 u                                               #                 A                 a    u                 u                                                                                                  -                 R    3             u    3                                                                                                                    6    	             Q    	             q                                                                                                      7    E$             [    E$             y    $                 $                 &%                 &%                 5+             #    5+             B    0             _    0                 U7                 U7                 u=                 u=                 C                 C             )    S             E    S             n    1Z                 1Z                 :[                 :[                 ]                                    ]                  e             5                  J                  c                  }                                                                                              ]             %    `             G    `             g    b                 b                 b                 b                 c                 c                 \c             7    \c             [    {d             }    {d                 d                 d                 e                                                  
                                     3     &            B    &             i    @              u    ؽ&                                                                           *                 e                 @&                  &                 &                 &                	                                                         -                     R    @[     o      0               d                                                    )                                                                                     (                     I                     U                     q                                                                   @+                                                     5                     P    `     q       ]         )       s                         =     )          b     <                                                                                                                ,    `           5                     Y                     x                                                                                                                                              4                     L                     k                                                                                                                                  `                                  >         /      J                     v                                                                                                         +                     I                     s                    `c                                                                                                "                 /                     K                     t                               *                                     b           0     +                                                F                     a               t                                                                        "                                                 <                     \                                j                         0%                                                                                                               G                     p                                              @     1                g                 
                                                 9         J      G                     j                                                                                                                         !                     E                     Y                     i                              i                N                                                                                                               2                     Q    `            ]                     y                                                                                                                              .                     S                     n               |          g                                                                                           !                     D                     S                     m                                                                                                         -                     O                      k                         @                                     T     1                                                         a                            1                     R                     e     c     <       x                   P     !                                `u     f	                                                    ,                            1    p            ?                     h                                                                                                                                                   .                     Y                     w    d     Z                                                                                                     C                ,           @     8           Ц     *       0                     R         a      b                                         `     =                                                           `	                                                 ;  "                   W                h                     v                                                   g                                &                                     `           '                     Q          	      c                                                                        u                                     9                            C                     h                                                                   0                 C     M                                                                     5                     ]                h                                                                                        `     t                                &            /               A                     d           `
      w                                                                                                                                                  0           3                     ]    P            r                     ~                                              `                                                          A     \      #                     1    @            B    @     u      V                                                                                                                                                              /                     W         	      m               }         M                                                          4               .                                P            
                     .    0     '       9         "	      L         -       b                     t                              Y                                                                                                               7    P$     g       F                     l                                                                                                                              -                     G                     n                                                                   $     f                                0     |         Џ     P           @     6      #                     G                     i                z                                                   X           @Z                                                                           %                     G                     e                         p     c           0                                     `               `7                                                                          I                     g                                               &                                                                #       !                     J                     U    	     L      f                                                                                                                                       x                                ]     .      ,                     P                              o                                                                          Ч     ;           `                                                                          K                     q                                                                                                             v                            ,                     Y                     m                                                                                                             0            '                     E                     b                {                                                                        	                                                ;                     V                                                                                                                  n          `            8                     T    b     J       a                                              P&                                                                                             .                     H                U           ?       k                                                                                                                                              F               N                     u                              D                f                                                          j                                               )        X       7               E                    R               g                       P     )                                                                                                      .                    U                    q                                                                                                                      P                                                :                    X                    x                                                                                                                                 
         P     #      1                    R        (      b                                                                                                                                                &                                                     A                    r   `     =                                   K                                                                           !      /                    =                    Y   d     <       l                                                                                                                      \     %/      ,   `     {       D                    W                       0     e                                                 P                                                                                       1                    O                    {                                                                                                    	                    	                    :	                    E	                    h	         %      	                    	        m       	                    	                    
               
                    1
                    C
   О            S
                    n
                     .annobin_Av_CharPtrPtr.c .annobin_Av_CharPtrPtr.c_end .annobin_Av_CharPtrPtr.c.hot .annobin_Av_CharPtrPtr.c_end.hot .annobin_Av_CharPtrPtr.c.unlikely .annobin_Av_CharPtrPtr.c_end.unlikely .annobin_Av_CharPtrPtr.c.startup .annobin_Av_CharPtrPtr.c_end.startup .annobin_Av_CharPtrPtr.c.exit .annobin_Av_CharPtrPtr.c_end.exit .annobin_XS_unpack_charPtrPtr.start .annobin_XS_unpack_charPtrPtr.end .annobin_XS_pack_charPtrPtr.start .annobin_XS_pack_charPtrPtr.end .annobin_XS_release_charPtrPtr.start .annobin_XS_release_charPtrPtr.end .annobin_Devel.c .annobin_Devel.c_end .annobin_Devel.c.hot .annobin_Devel.c_end.hot .annobin_Devel.c.unlikely .annobin_Devel.c_end.unlikely .annobin_Devel.c.startup .annobin_Devel.c_end.startup .annobin_Devel.c.exit .annobin_Devel.c_end.exit .annobin_XS_XML__LibXML__Devel_mem_used.start .annobin_XS_XML__LibXML__Devel_mem_used.end XS_XML__LibXML__Devel_mem_used __PRETTY_FUNCTION__.23861 .annobin_XS_XML__LibXML__Devel_refcnt.start .annobin_XS_XML__LibXML__Devel_refcnt.end XS_XML__LibXML__Devel_refcnt __PRETTY_FUNCTION__.23817 .annobin_XS_XML__LibXML__Devel_refcnt_inc.start .annobin_XS_XML__LibXML__Devel_refcnt_inc.end XS_XML__LibXML__Devel_refcnt_inc .annobin_XS_XML__LibXML__Devel_fix_owner.start .annobin_XS_XML__LibXML__Devel_fix_owner.end XS_XML__LibXML__Devel_fix_owner __PRETTY_FUNCTION__.23841 .annobin_XS_XML__LibXML__Devel_refcnt_dec.start .annobin_XS_XML__LibXML__Devel_refcnt_dec.end XS_XML__LibXML__Devel_refcnt_dec __PRETTY_FUNCTION__.23795 .annobin_XS_XML__LibXML__Devel_node_from_perl.start .annobin_XS_XML__LibXML__Devel_node_from_perl.end XS_XML__LibXML__Devel_node_from_perl __PRETTY_FUNCTION__.23755 .annobin_XS_XML__LibXML__Devel_node_to_perl.start .annobin_XS_XML__LibXML__Devel_node_to_perl.end XS_XML__LibXML__Devel_node_to_perl .annobin_xmlMemMallocAtomic.start .annobin_xmlMemMallocAtomic.end xmlMemMallocAtomic .annobin_boot_XML__LibXML__Devel.start .annobin_boot_XML__LibXML__Devel.end .annobin_LibXML.c .annobin_LibXML.c_end .annobin_LibXML.c.hot .annobin_LibXML.c_end.hot .annobin_LibXML.c.unlikely .annobin_LibXML.c_end.unlikely .annobin_LibXML.c.startup .annobin_LibXML.c_end.startup .annobin_LibXML.c.exit .annobin_LibXML.c_end.exit .annobin_LibXML_output_close_handler.start .annobin_LibXML_output_close_handler.end .annobin_LibXML_input_match.start .annobin_LibXML_input_match.end .annobin_LibXML_input_open.start .annobin_LibXML_input_open.end .annobin_LibXML_error_handler_ctx.start .annobin_LibXML_error_handler_ctx.end .annobin_LibXML_validity_warning_ctx.start .annobin_LibXML_validity_warning_ctx.end LibXML_validity_warning_ctx .annobin_LibXML_validity_error_ctx.start .annobin_LibXML_validity_error_ctx.end LibXML_validity_error_ctx .annobin_LibXML_input_read.start .annobin_LibXML_input_read.end .annobin_LibXML_read_perl.start .annobin_LibXML_read_perl.end .annobin_LibXML_get_recover.start .annobin_LibXML_get_recover.end LibXML_get_recover .annobin_LibXML_load_external_entity.start .annobin_LibXML_load_external_entity.end .annobin_XS_XML__LibXML__XPathContext_setContextSize.start .annobin_XS_XML__LibXML__XPathContext_setContextSize.end XS_XML__LibXML__XPathContext_setContextSize .annobin_XS_XML__LibXML__XPathContext_setContextPosition.start .annobin_XS_XML__LibXML__XPathContext_setContextPosition.end XS_XML__LibXML__XPathContext_setContextPosition .annobin_XS_XML__LibXML__Attr_parentElement.start .annobin_XS_XML__LibXML__Attr_parentElement.end XS_XML__LibXML__Attr_parentElement .annobin_XS_XML__LibXML_export_GDOME.start .annobin_XS_XML__LibXML_export_GDOME.end XS_XML__LibXML_export_GDOME .annobin_XS_XML__LibXML_import_GDOME.start .annobin_XS_XML__LibXML_import_GDOME.end XS_XML__LibXML_import_GDOME .annobin_XS_XML__LibXML_DISABLE_THREAD_SUPPORT.start .annobin_XS_XML__LibXML_DISABLE_THREAD_SUPPORT.end XS_XML__LibXML_DISABLE_THREAD_SUPPORT .annobin_XS_XML__LibXML__XPathExpression_DESTROY.start .annobin_XS_XML__LibXML__XPathExpression_DESTROY.end XS_XML__LibXML__XPathExpression_DESTROY .annobin_XS_XML__LibXML__RegExp_DESTROY.start .annobin_XS_XML__LibXML__RegExp_DESTROY.end XS_XML__LibXML__RegExp_DESTROY .annobin_XS_XML__LibXML__RegExp_isDeterministic.start .annobin_XS_XML__LibXML__RegExp_isDeterministic.end XS_XML__LibXML__RegExp_isDeterministic .annobin_XS_XML__LibXML__LibError_level.start .annobin_XS_XML__LibXML__LibError_level.end XS_XML__LibXML__LibError_level .annobin_XS_XML__LibXML__LibError_num2.start .annobin_XS_XML__LibXML__LibError_num2.end XS_XML__LibXML__LibError_num2 .annobin_XS_XML__LibXML__LibError_num1.start .annobin_XS_XML__LibXML__LibError_num1.end XS_XML__LibXML__LibError_num1 .annobin_XS_XML__LibXML__LibError_line.start .annobin_XS_XML__LibXML__LibError_line.end XS_XML__LibXML__LibError_line .annobin_XS_XML__LibXML__LibError_code.start .annobin_XS_XML__LibXML__LibError_code.end XS_XML__LibXML__LibError_code .annobin_XS_XML__LibXML__LibError_domain.start .annobin_XS_XML__LibXML__LibError_domain.end XS_XML__LibXML__LibError_domain .annobin_XS_XML__LibXML__XPathContext_getContextSize.start .annobin_XS_XML__LibXML__XPathContext_getContextSize.end XS_XML__LibXML__XPathContext_getContextSize .annobin_XS_XML__LibXML__XPathContext_getContextPosition.start .annobin_XS_XML__LibXML__XPathContext_getContextPosition.end XS_XML__LibXML__XPathContext_getContextPosition .annobin_XS_XML__LibXML__Namespace_nodeType.start .annobin_XS_XML__LibXML__Namespace_nodeType.end XS_XML__LibXML__Namespace_nodeType .annobin_XS_XML__LibXML__default_catalog.start .annobin_XS_XML__LibXML__default_catalog.end XS_XML__LibXML__default_catalog .annobin_XS_XML__LibXML_HAVE_THREAD_SUPPORT.start .annobin_XS_XML__LibXML_HAVE_THREAD_SUPPORT.end XS_XML__LibXML_HAVE_THREAD_SUPPORT .annobin_XS_XML__LibXML_HAVE_STRUCT_ERRORS.start .annobin_XS_XML__LibXML_HAVE_STRUCT_ERRORS.end XS_XML__LibXML_HAVE_STRUCT_ERRORS .annobin_XS_XML__LibXML_HAVE_SCHEMAS.start .annobin_XS_XML__LibXML_HAVE_SCHEMAS.end XS_XML__LibXML_HAVE_SCHEMAS .annobin_XS_XML__LibXML_HAVE_READER.start .annobin_XS_XML__LibXML_HAVE_READER.end XS_XML__LibXML_HAVE_READER .annobin_XS_XML__LibXML_LIBXML_VERSION.start .annobin_XS_XML__LibXML_LIBXML_VERSION.end XS_XML__LibXML_LIBXML_VERSION .annobin_XS_XML__LibXML__RegExp_matches.start .annobin_XS_XML__LibXML__RegExp_matches.end XS_XML__LibXML__RegExp_matches .annobin_XS_XML__LibXML__Pattern_DESTROY.start .annobin_XS_XML__LibXML__Pattern_DESTROY.end XS_XML__LibXML__Pattern_DESTROY .annobin_XS_XML__LibXML__Node_unique_key.start .annobin_XS_XML__LibXML__Node_unique_key.end XS_XML__LibXML__Node_unique_key .annobin_XS_XML__LibXML__Node_isSameNode.start .annobin_XS_XML__LibXML__Node_isSameNode.end XS_XML__LibXML__Node_isSameNode .annobin_XS_XML__LibXML__Node_hasAttributes.start .annobin_XS_XML__LibXML__Node_hasAttributes.end XS_XML__LibXML__Node_hasAttributes .annobin_XS_XML__LibXML__Node_hasChildNodes.start .annobin_XS_XML__LibXML__Node_hasChildNodes.end XS_XML__LibXML__Node_hasChildNodes .annobin_XS_XML__LibXML__Node_nodeType.start .annobin_XS_XML__LibXML__Node_nodeType.end XS_XML__LibXML__Node_nodeType .annobin_XS_XML__LibXML__Document_setVersion.start .annobin_XS_XML__LibXML__Document_setVersion.end XS_XML__LibXML__Document_setVersion .annobin_XS_XML__LibXML__Document_setStandalone.start .annobin_XS_XML__LibXML__Document_setStandalone.end XS_XML__LibXML__Document_setStandalone .annobin_XS_XML__LibXML__Document_standalone.start .annobin_XS_XML__LibXML__Document_standalone.end XS_XML__LibXML__Document_standalone .annobin_XS_XML__LibXML__Document_setEncoding.start .annobin_XS_XML__LibXML__Document_setEncoding.end XS_XML__LibXML__Document_setEncoding .annobin_XS_XML__LibXML__Document_setURI.start .annobin_XS_XML__LibXML__Document_setURI.end XS_XML__LibXML__Document_setURI .annobin_XS_XML__LibXML__Pattern_matchesNode.start .annobin_XS_XML__LibXML__Pattern_matchesNode.end XS_XML__LibXML__Pattern_matchesNode .annobin_XS_XML__LibXML__LibError_context_and_column.start .annobin_XS_XML__LibXML__LibError_context_and_column.end XS_XML__LibXML__LibError_context_and_column .annobin_XS_XML__LibXML__Dtd_publicId.start .annobin_XS_XML__LibXML__Dtd_publicId.end XS_XML__LibXML__Dtd_publicId .annobin_XS_XML__LibXML__Dtd_systemId.start .annobin_XS_XML__LibXML__Dtd_systemId.end XS_XML__LibXML__Dtd_systemId .annobin_XS_XML__LibXML__Namespace_declaredPrefix.start .annobin_XS_XML__LibXML__Namespace_declaredPrefix.end XS_XML__LibXML__Namespace_declaredPrefix .annobin_XS_XML__LibXML__Namespace_declaredURI.start .annobin_XS_XML__LibXML__Namespace_declaredURI.end XS_XML__LibXML__Namespace_declaredURI .annobin_XS_XML__LibXML__Node_namespaceURI.start .annobin_XS_XML__LibXML__Node_namespaceURI.end XS_XML__LibXML__Node_namespaceURI .annobin_XS_XML__LibXML__Node_prefix.start .annobin_XS_XML__LibXML__Node_prefix.end XS_XML__LibXML__Node_prefix .annobin_XS_XML__LibXML__Node_localname.start .annobin_XS_XML__LibXML__Node_localname.end XS_XML__LibXML__Node_localname .annobin_XS_XML__LibXML__LibError_str3.start .annobin_XS_XML__LibXML__LibError_str3.end XS_XML__LibXML__LibError_str3 .annobin_XS_XML__LibXML__LibError_str2.start .annobin_XS_XML__LibXML__LibError_str2.end XS_XML__LibXML__LibError_str2 .annobin_XS_XML__LibXML__LibError_str1.start .annobin_XS_XML__LibXML__LibError_str1.end XS_XML__LibXML__LibError_str1 .annobin_XS_XML__LibXML__LibError_file.start .annobin_XS_XML__LibXML__LibError_file.end XS_XML__LibXML__LibError_file .annobin_XS_XML__LibXML__LibError_message.start .annobin_XS_XML__LibXML__LibError_message.end XS_XML__LibXML__LibError_message .annobin_XS_XML__LibXML__Document_version.start .annobin_XS_XML__LibXML__Document_version.end XS_XML__LibXML__Document_version .annobin_XS_XML__LibXML__Document_encoding.start .annobin_XS_XML__LibXML__Document_encoding.end XS_XML__LibXML__Document_encoding .annobin_XS_XML__LibXML__Document_URI.start .annobin_XS_XML__LibXML__Document_URI.end XS_XML__LibXML__Document_URI .annobin_XS_XML__LibXML_LIBXML_DOTTED_VERSION.start .annobin_XS_XML__LibXML_LIBXML_DOTTED_VERSION.end XS_XML__LibXML_LIBXML_DOTTED_VERSION .annobin_XS_XML__LibXML__Reader_readState.start .annobin_XS_XML__LibXML__Reader_readState.end XS_XML__LibXML__Reader_readState .annobin_XS_XML__LibXML__Reader__close.start .annobin_XS_XML__LibXML__Reader__close.end XS_XML__LibXML__Reader__close .annobin_XS_XML__LibXML__Reader__DESTROY.start .annobin_XS_XML__LibXML__Reader__DESTROY.end XS_XML__LibXML__Reader__DESTROY .annobin_LibXML_set_reader_preserve_flag.start .annobin_LibXML_set_reader_preserve_flag.end LibXML_set_reader_preserve_flag .annobin_XS_XML__LibXML__Reader__setXSD.start .annobin_XS_XML__LibXML__Reader__setXSD.end XS_XML__LibXML__Reader__setXSD .annobin_XS_XML__LibXML__Reader__setXSDFile.start .annobin_XS_XML__LibXML__Reader__setXSDFile.end XS_XML__LibXML__Reader__setXSDFile .annobin_XS_XML__LibXML__Reader__setRelaxNG.start .annobin_XS_XML__LibXML__Reader__setRelaxNG.end XS_XML__LibXML__Reader__setRelaxNG .annobin_XS_XML__LibXML__Reader__setRelaxNGFile.start .annobin_XS_XML__LibXML__Reader__setRelaxNGFile.end XS_XML__LibXML__Reader__setRelaxNGFile .annobin_XS_XML__LibXML__Node_ownerNode.start .annobin_XS_XML__LibXML__Node_ownerNode.end XS_XML__LibXML__Node_ownerNode XS_XML__LibXML__Node_ownerNode.cold.7 .annobin_XS_XML__LibXML__Node_ownerDocument.start .annobin_XS_XML__LibXML__Node_ownerDocument.end XS_XML__LibXML__Node_ownerDocument .annobin_XS_XML__LibXML__Node_lastChild.start .annobin_XS_XML__LibXML__Node_lastChild.end XS_XML__LibXML__Node_lastChild .annobin_XS_XML__LibXML__Node_firstChild.start .annobin_XS_XML__LibXML__Node_firstChild.end XS_XML__LibXML__Node_firstChild .annobin_XS_XML__LibXML__Node_previousSibling.start .annobin_XS_XML__LibXML__Node_previousSibling.end XS_XML__LibXML__Node_previousSibling .annobin_XS_XML__LibXML__Node_nextSibling.start .annobin_XS_XML__LibXML__Node_nextSibling.end XS_XML__LibXML__Node_nextSibling .annobin_XS_XML__LibXML__Node_parentNode.start .annobin_XS_XML__LibXML__Node_parentNode.end XS_XML__LibXML__Node_parentNode .annobin_XS_XML__LibXML__Document_removeExternalSubset.start .annobin_XS_XML__LibXML__Document_removeExternalSubset.end XS_XML__LibXML__Document_removeExternalSubset .annobin_XS_XML__LibXML__Document_internalSubset.start .annobin_XS_XML__LibXML__Document_internalSubset.end XS_XML__LibXML__Document_internalSubset .annobin_XS_XML__LibXML__Document_externalSubset.start .annobin_XS_XML__LibXML__Document_externalSubset.end XS_XML__LibXML__Document_externalSubset .annobin_XS_XML__LibXML__Reader__preservePattern.start .annobin_XS_XML__LibXML__Reader__preservePattern.end XS_XML__LibXML__Reader__preservePattern .annobin_XS_XML__LibXML__Reader_document.start .annobin_XS_XML__LibXML__Reader_document.end XS_XML__LibXML__Reader_document .annobin_XS_XML__LibXML__Reader__getParserProp.start .annobin_XS_XML__LibXML__Reader__getParserProp.end XS_XML__LibXML__Reader__getParserProp .annobin_XS_XML__LibXML__Reader_matchesPattern.start .annobin_XS_XML__LibXML__Reader_matchesPattern.end XS_XML__LibXML__Reader_matchesPattern .annobin_XS_XML__LibXML__Node_cloneNode.start .annobin_XS_XML__LibXML__Node_cloneNode.end XS_XML__LibXML__Node_cloneNode .annobin_XS_XML__LibXML__Reader__nodePath.start .annobin_XS_XML__LibXML__Reader__nodePath.end XS_XML__LibXML__Reader__nodePath .annobin_XS_XML__LibXML__Node_nodePath.start .annobin_XS_XML__LibXML__Node_nodePath.end XS_XML__LibXML__Node_nodePath .annobin_XS_XML__LibXML__Reader_standalone.start .annobin_XS_XML__LibXML__Reader_standalone.end XS_XML__LibXML__Reader_standalone .annobin_XS_XML__LibXML__Reader__setParserProp.start .annobin_XS_XML__LibXML__Reader__setParserProp.end XS_XML__LibXML__Reader__setParserProp .annobin_XS_XML__LibXML__Reader_quoteChar.start .annobin_XS_XML__LibXML__Reader_quoteChar.end XS_XML__LibXML__Reader_quoteChar .annobin_XS_XML__LibXML__Reader_nodeType.start .annobin_XS_XML__LibXML__Reader_nodeType.end XS_XML__LibXML__Reader_nodeType .annobin_XS_XML__LibXML__Reader_depth.start .annobin_XS_XML__LibXML__Reader_depth.end XS_XML__LibXML__Reader_depth .annobin_XS_XML__LibXML__Reader_name.start .annobin_XS_XML__LibXML__Reader_name.end XS_XML__LibXML__Reader_name .annobin_XS_XML__LibXML__Reader_namespaceURI.start .annobin_XS_XML__LibXML__Reader_namespaceURI.end XS_XML__LibXML__Reader_namespaceURI .annobin_XS_XML__LibXML__Reader_localName.start .annobin_XS_XML__LibXML__Reader_localName.end XS_XML__LibXML__Reader_localName .annobin_XS_XML__LibXML__Reader_moveToNextAttribute.start .annobin_XS_XML__LibXML__Reader_moveToNextAttribute.end XS_XML__LibXML__Reader_moveToNextAttribute .annobin_XS_XML__LibXML__Reader_moveToFirstAttribute.start .annobin_XS_XML__LibXML__Reader_moveToFirstAttribute.end XS_XML__LibXML__Reader_moveToFirstAttribute .annobin_XS_XML__LibXML__Reader_moveToElement.start .annobin_XS_XML__LibXML__Reader_moveToElement.end XS_XML__LibXML__Reader_moveToElement .annobin_XS_XML__LibXML__Reader_moveToAttributeNs.start .annobin_XS_XML__LibXML__Reader_moveToAttributeNs.end XS_XML__LibXML__Reader_moveToAttributeNs .annobin_XS_XML__LibXML__Reader_moveToAttributeNo.start .annobin_XS_XML__LibXML__Reader_moveToAttributeNo.end XS_XML__LibXML__Reader_moveToAttributeNo .annobin_XS_XML__LibXML__Reader_moveToAttribute.start .annobin_XS_XML__LibXML__Reader_moveToAttribute.end XS_XML__LibXML__Reader_moveToAttribute .annobin_XS_XML__LibXML__Reader_lookupNamespace.start .annobin_XS_XML__LibXML__Reader_lookupNamespace.end XS_XML__LibXML__Reader_lookupNamespace .annobin_XS_XML__LibXML__Reader_isValid.start .annobin_XS_XML__LibXML__Reader_isValid.end XS_XML__LibXML__Reader_isValid .annobin_XS_XML__LibXML__Reader_isNamespaceDecl.start .annobin_XS_XML__LibXML__Reader_isNamespaceDecl.end XS_XML__LibXML__Reader_isNamespaceDecl .annobin_XS_XML__LibXML__Reader_isEmptyElement.start .annobin_XS_XML__LibXML__Reader_isEmptyElement.end XS_XML__LibXML__Reader_isEmptyElement .annobin_XS_XML__LibXML__Reader_isDefault.start .annobin_XS_XML__LibXML__Reader_isDefault.end XS_XML__LibXML__Reader_isDefault .annobin_XS_XML__LibXML__Reader_hasAttributes.start .annobin_XS_XML__LibXML__Reader_hasAttributes.end XS_XML__LibXML__Reader_hasAttributes .annobin_XS_XML__LibXML__Reader_value.start .annobin_XS_XML__LibXML__Reader_value.end XS_XML__LibXML__Reader_value .annobin_XS_XML__LibXML__Reader_hasValue.start .annobin_XS_XML__LibXML__Reader_hasValue.end XS_XML__LibXML__Reader_hasValue .annobin_XS_XML__LibXML__Reader_lineNumber.start .annobin_XS_XML__LibXML__Reader_lineNumber.end XS_XML__LibXML__Reader_lineNumber .annobin_XS_XML__LibXML__Reader_columnNumber.start .annobin_XS_XML__LibXML__Reader_columnNumber.end XS_XML__LibXML__Reader_columnNumber .annobin_XS_XML__LibXML__Reader_getAttributeNs.start .annobin_XS_XML__LibXML__Reader_getAttributeNs.end XS_XML__LibXML__Reader_getAttributeNs .annobin_XS_XML__LibXML__Reader_getAttributeNo.start .annobin_XS_XML__LibXML__Reader_getAttributeNo.end XS_XML__LibXML__Reader_getAttributeNo .annobin_XS_XML__LibXML__Reader_getAttribute.start .annobin_XS_XML__LibXML__Reader_getAttribute.end XS_XML__LibXML__Reader_getAttribute .annobin_XS_XML__LibXML__Reader_xmlVersion.start .annobin_XS_XML__LibXML__Reader_xmlVersion.end XS_XML__LibXML__Reader_xmlVersion .annobin_XS_XML__LibXML__Reader_xmlLang.start .annobin_XS_XML__LibXML__Reader_xmlLang.end XS_XML__LibXML__Reader_xmlLang .annobin_XS_XML__LibXML__Reader_prefix.start .annobin_XS_XML__LibXML__Reader_prefix.end XS_XML__LibXML__Reader_prefix .annobin_XS_XML__LibXML__Reader_encoding.start .annobin_XS_XML__LibXML__Reader_encoding.end XS_XML__LibXML__Reader_encoding .annobin_XS_XML__LibXML__Reader_byteConsumed.start .annobin_XS_XML__LibXML__Reader_byteConsumed.end XS_XML__LibXML__Reader_byteConsumed .annobin_XS_XML__LibXML__Reader_baseURI.start .annobin_XS_XML__LibXML__Reader_baseURI.end XS_XML__LibXML__Reader_baseURI .annobin_XS_XML__LibXML__Reader_attributeCount.start .annobin_XS_XML__LibXML__Reader_attributeCount.end XS_XML__LibXML__Reader_attributeCount .annobin_XS_XML__LibXML__Reader__newForDOM.start .annobin_XS_XML__LibXML__Reader__newForDOM.end XS_XML__LibXML__Reader__newForDOM .annobin_XS_XML__LibXML__Reader__newForFd.start .annobin_XS_XML__LibXML__Reader__newForFd.end XS_XML__LibXML__Reader__newForFd .annobin_XS_XML__LibXML__Reader__newForString.start .annobin_XS_XML__LibXML__Reader__newForString.end XS_XML__LibXML__Reader__newForString .annobin_XS_XML__LibXML__Reader__newForIO.start .annobin_XS_XML__LibXML__Reader__newForIO.end XS_XML__LibXML__Reader__newForIO .annobin_XS_XML__LibXML__Reader__newForFile.start .annobin_XS_XML__LibXML__Reader__newForFile.end XS_XML__LibXML__Reader__newForFile .annobin_XS_XML__LibXML__InputCallback_lib_init_callbacks.start .annobin_XS_XML__LibXML__InputCallback_lib_init_callbacks.end XS_XML__LibXML__InputCallback_lib_init_callbacks .annobin_XS_XML__LibXML__InputCallback_lib_cleanup_callbacks.start .annobin_XS_XML__LibXML__InputCallback_lib_cleanup_callbacks.end XS_XML__LibXML__InputCallback_lib_cleanup_callbacks .annobin_XS_XML__LibXML__Element__getNamespaceDeclURI.start .annobin_XS_XML__LibXML__Element__getNamespaceDeclURI.end XS_XML__LibXML__Element__getNamespaceDeclURI .annobin_XS_XML__LibXML__Node_getNamespace.start .annobin_XS_XML__LibXML__Node_getNamespace.end XS_XML__LibXML__Node_getNamespace .annobin_XS_XML__LibXML__Node_getNamespaces.start .annobin_XS_XML__LibXML__Node_getNamespaces.end XS_XML__LibXML__Node_getNamespaces .annobin_XS_XML__LibXML__Document_documentElement.start .annobin_XS_XML__LibXML__Document_documentElement.end XS_XML__LibXML__Document_documentElement .annobin_XS_XML__LibXML__XPathContext_getVarLookupFunc.start .annobin_XS_XML__LibXML__XPathContext_getVarLookupFunc.end XS_XML__LibXML__XPathContext_getVarLookupFunc .annobin_XS_XML__LibXML__XPathContext_getVarLookupData.start .annobin_XS_XML__LibXML__XPathContext_getVarLookupData.end XS_XML__LibXML__XPathContext_getVarLookupData .annobin_XS_XML__LibXML__XPathContext_getContextNode.start .annobin_XS_XML__LibXML__XPathContext_getContextNode.end XS_XML__LibXML__XPathContext_getContextNode .annobin_XS_XML__LibXML__externalEntityLoader.start .annobin_XS_XML__LibXML__externalEntityLoader.end XS_XML__LibXML__externalEntityLoader LibXML_old_ext_ent_loader .annobin_LibXML_save_context.start .annobin_LibXML_save_context.end LibXML_save_context .annobin_XS_XML__LibXML__XPathContext_new.start .annobin_XS_XML__LibXML__XPathContext_new.end XS_XML__LibXML__XPathContext_new .annobin_XS_XML__LibXML__Schema_DESTROY.start .annobin_XS_XML__LibXML__Schema_DESTROY.end XS_XML__LibXML__Schema_DESTROY .annobin_XS_XML__LibXML__RelaxNG_DESTROY.start .annobin_XS_XML__LibXML__RelaxNG_DESTROY.end XS_XML__LibXML__RelaxNG_DESTROY .annobin_XS_XML__LibXML__Namespace__isEqual.start .annobin_XS_XML__LibXML__Namespace__isEqual.end XS_XML__LibXML__Namespace__isEqual .annobin_XS_XML__LibXML__Namespace_unique_key.start .annobin_XS_XML__LibXML__Namespace_unique_key.end XS_XML__LibXML__Namespace_unique_key .annobin_XS_XML__LibXML__Namespace_DESTROY.start .annobin_XS_XML__LibXML__Namespace_DESTROY.end XS_XML__LibXML__Namespace_DESTROY .annobin_XS_XML__LibXML__Namespace_new.start .annobin_XS_XML__LibXML__Namespace_new.end XS_XML__LibXML__Namespace_new .annobin_XS_XML__LibXML__Attr_isId.start .annobin_XS_XML__LibXML__Attr_isId.end XS_XML__LibXML__Attr_isId .annobin_XS_XML__LibXML__Element_setNamespaceDeclPrefix.start .annobin_XS_XML__LibXML__Element_setNamespaceDeclPrefix.end XS_XML__LibXML__Element_setNamespaceDeclPrefix .annobin_XS_XML__LibXML__Element__setNamespace.start .annobin_XS_XML__LibXML__Element__setNamespace.end XS_XML__LibXML__Element__setNamespace .annobin_XS_XML__LibXML__Node_lookupNamespaceURI.start .annobin_XS_XML__LibXML__Node_lookupNamespaceURI.end XS_XML__LibXML__Node_lookupNamespaceURI .annobin_XS_XML__LibXML__Attr__setNamespace.start .annobin_XS_XML__LibXML__Attr__setNamespace.end XS_XML__LibXML__Attr__setNamespace .annobin_XS_XML__LibXML__Node_lookupNamespacePrefix.start .annobin_XS_XML__LibXML__Node_lookupNamespacePrefix.end XS_XML__LibXML__Node_lookupNamespacePrefix .annobin_XS_XML__LibXML__Attr_toString.start .annobin_XS_XML__LibXML__Attr_toString.end XS_XML__LibXML__Attr_toString .annobin_XS_XML__LibXML__Attr_serializeContent.start .annobin_XS_XML__LibXML__Attr_serializeContent.end XS_XML__LibXML__Attr_serializeContent .annobin_XS_XML__LibXML__Attr_new.start .annobin_XS_XML__LibXML__Attr_new.end XS_XML__LibXML__Attr_new .annobin_XS_XML__LibXML__DocumentFragment_new.start .annobin_XS_XML__LibXML__DocumentFragment_new.end XS_XML__LibXML__DocumentFragment_new .annobin_XS_XML__LibXML__Document_createDocumentFragment.start .annobin_XS_XML__LibXML__Document_createDocumentFragment.end XS_XML__LibXML__Document_createDocumentFragment .annobin_XS_XML__LibXML__CDATASection_new.start .annobin_XS_XML__LibXML__CDATASection_new.end XS_XML__LibXML__CDATASection_new .annobin_XS_XML__LibXML__Document_createCDATASection.start .annobin_XS_XML__LibXML__Document_createCDATASection.end XS_XML__LibXML__Document_createCDATASection .annobin_XS_XML__LibXML__Comment_new.start .annobin_XS_XML__LibXML__Comment_new.end XS_XML__LibXML__Comment_new .annobin_XS_XML__LibXML__Node_nodeValue.start .annobin_XS_XML__LibXML__Node_nodeValue.end XS_XML__LibXML__Node_nodeValue .annobin_XS_XML__LibXML__Text_substringData.start .annobin_XS_XML__LibXML__Text_substringData.end XS_XML__LibXML__Text_substringData .annobin_XS_XML__LibXML__Text_replaceData.start .annobin_XS_XML__LibXML__Text_replaceData.end XS_XML__LibXML__Text_replaceData .annobin_XS_XML__LibXML__Text_deleteData.start .annobin_XS_XML__LibXML__Text_deleteData.end XS_XML__LibXML__Text_deleteData .annobin_XS_XML__LibXML__Text_insertData.start .annobin_XS_XML__LibXML__Text_insertData.end XS_XML__LibXML__Text_insertData .annobin_XS_XML__LibXML__Text_setData.start .annobin_XS_XML__LibXML__Text_setData.end XS_XML__LibXML__Text_setData .annobin_XS_XML__LibXML__Text_appendData.start .annobin_XS_XML__LibXML__Text_appendData.end XS_XML__LibXML__Text_appendData .annobin_XS_XML__LibXML__Text_new.start .annobin_XS_XML__LibXML__Text_new.end XS_XML__LibXML__Text_new .annobin_XS_XML__LibXML__Element_addNewChild.start .annobin_XS_XML__LibXML__Element_addNewChild.end XS_XML__LibXML__Element_addNewChild .annobin_XS_XML__LibXML__Document_createRawElement.start .annobin_XS_XML__LibXML__Document_createRawElement.end XS_XML__LibXML__Document_createRawElement .annobin_XS_XML__LibXML__Element_appendTextChild.start .annobin_XS_XML__LibXML__Element_appendTextChild.end XS_XML__LibXML__Element_appendTextChild .annobin_XS_XML__LibXML__Element_appendText.start .annobin_XS_XML__LibXML__Element_appendText.end XS_XML__LibXML__Element_appendText .annobin_XS_XML__LibXML__Element_removeAttributeNode.start .annobin_XS_XML__LibXML__Element_removeAttributeNode.end XS_XML__LibXML__Element_removeAttributeNode .annobin_XS_XML__LibXML__Node_addChild.start .annobin_XS_XML__LibXML__Node_addChild.end XS_XML__LibXML__Node_addChild .annobin_XS_XML__LibXML__Document_adoptNode.start .annobin_XS_XML__LibXML__Document_adoptNode.end XS_XML__LibXML__Document_adoptNode .annobin_XS_XML__LibXML__Document_importNode.start .annobin_XS_XML__LibXML__Document_importNode.end XS_XML__LibXML__Document_importNode .annobin_XS_XML__LibXML__Document_setExternalSubset.start .annobin_XS_XML__LibXML__Document_setExternalSubset.end XS_XML__LibXML__Document_setExternalSubset .annobin_XS_XML__LibXML__Element_getAttributeNodeNS.start .annobin_XS_XML__LibXML__Element_getAttributeNodeNS.end XS_XML__LibXML__Element_getAttributeNodeNS .annobin_XS_XML__LibXML__Element_hasAttributeNS.start .annobin_XS_XML__LibXML__Element_hasAttributeNS.end XS_XML__LibXML__Element_hasAttributeNS .annobin_XS_XML__LibXML__Element_setAttributeNodeNS.start .annobin_XS_XML__LibXML__Element_setAttributeNodeNS.end XS_XML__LibXML__Element_setAttributeNodeNS .annobin_XS_XML__LibXML__Element_removeAttributeNS.start .annobin_XS_XML__LibXML__Element_removeAttributeNS.end XS_XML__LibXML__Element_removeAttributeNS .annobin_XS_XML__LibXML__Element__getAttributeNS.start .annobin_XS_XML__LibXML__Element__getAttributeNS.end XS_XML__LibXML__Element__getAttributeNS .annobin_XS_XML__LibXML__Element_setAttributeNode.start .annobin_XS_XML__LibXML__Element_setAttributeNode.end XS_XML__LibXML__Element_setAttributeNode .annobin_XS_XML__LibXML__Element_getAttributeNode.start .annobin_XS_XML__LibXML__Element_getAttributeNode.end XS_XML__LibXML__Element_getAttributeNode .annobin_XS_XML__LibXML__Element_removeAttribute.start .annobin_XS_XML__LibXML__Element_removeAttribute.end XS_XML__LibXML__Element_removeAttribute .annobin_XS_XML__LibXML__Element_hasAttribute.start .annobin_XS_XML__LibXML__Element_hasAttribute.end XS_XML__LibXML__Element_hasAttribute .annobin_XS_XML__LibXML__Element__getAttribute.start .annobin_XS_XML__LibXML__Element__getAttribute.end XS_XML__LibXML__Element__getAttribute .annobin_XS_XML__LibXML__Element_setNamespaceDeclURI.start .annobin_XS_XML__LibXML__Element_setNamespaceDeclURI.end XS_XML__LibXML__Element_setNamespaceDeclURI .annobin_XS_XML__LibXML__Element_new.start .annobin_XS_XML__LibXML__Element_new.end XS_XML__LibXML__Element_new .annobin_XS_XML__LibXML__Node_line_number.start .annobin_XS_XML__LibXML__Node_line_number.end XS_XML__LibXML__Node_line_number .annobin_XS_XML__LibXML__Node_to_number.start .annobin_XS_XML__LibXML__Node_to_number.end XS_XML__LibXML__Node_to_number .annobin_XS_XML__LibXML__Node_string_value.start .annobin_XS_XML__LibXML__Node_string_value.end XS_XML__LibXML__Node_string_value .annobin_XS_XML__LibXML_INIT_THREAD_SUPPORT.start .annobin_XS_XML__LibXML_INIT_THREAD_SUPPORT.end XS_XML__LibXML_INIT_THREAD_SUPPORT .annobin_XS_XML__LibXML__Node_toString.start .annobin_XS_XML__LibXML__Node_toString.end XS_XML__LibXML__Node_toString .annobin_XS_XML__LibXML__Node_setBaseURI.start .annobin_XS_XML__LibXML__Node_setBaseURI.end XS_XML__LibXML__Node_setBaseURI .annobin_XS_XML__LibXML__Node_baseURI.start .annobin_XS_XML__LibXML__Node_baseURI.end XS_XML__LibXML__Node_baseURI .annobin_XS_XML__LibXML__Node_removeChildNodes.start .annobin_XS_XML__LibXML__Node_removeChildNodes.end XS_XML__LibXML__Node_removeChildNodes .annobin_XS_XML__LibXML__Node_normalize.start .annobin_XS_XML__LibXML__Node_normalize.end XS_XML__LibXML__Node_normalize .annobin_XS_XML__LibXML__Node__attributes.start .annobin_XS_XML__LibXML__Node__attributes.end XS_XML__LibXML__Node__attributes .annobin_XS_XML__LibXML__Node__getChildrenByTagNameNS.start .annobin_XS_XML__LibXML__Node__getChildrenByTagNameNS.end XS_XML__LibXML__Node__getChildrenByTagNameNS .annobin_XS_XML__LibXML__Node_firstNonBlankChild.start .annobin_XS_XML__LibXML__Node_firstNonBlankChild.end XS_XML__LibXML__Node_firstNonBlankChild .annobin_XS_XML__LibXML__Node__childNodes.start .annobin_XS_XML__LibXML__Node__childNodes.end XS_XML__LibXML__Node__childNodes .annobin_XS_XML__LibXML__Node_previousNonBlankSibling.start .annobin_XS_XML__LibXML__Node_previousNonBlankSibling.end XS_XML__LibXML__Node_previousNonBlankSibling .annobin_XS_XML__LibXML__Node_nextNonBlankSibling.start .annobin_XS_XML__LibXML__Node_nextNonBlankSibling.end XS_XML__LibXML__Node_nextNonBlankSibling .annobin_XS_XML__LibXML__Node_setRawName.start .annobin_XS_XML__LibXML__Node_setRawName.end XS_XML__LibXML__Node_setRawName .annobin_XS_XML__LibXML__Node_nodeName.start .annobin_XS_XML__LibXML__Node_nodeName.end XS_XML__LibXML__Node_nodeName .annobin_XS_XML__LibXML__Node_DESTROY.start .annobin_XS_XML__LibXML__Node_DESTROY.end XS_XML__LibXML__Node_DESTROY .annobin_XS_XML__LibXML__Document_indexElements.start .annobin_XS_XML__LibXML__Document_indexElements.end XS_XML__LibXML__Document_indexElements .annobin_XS_XML__LibXML__Document_getElementById.start .annobin_XS_XML__LibXML__Document_getElementById.end XS_XML__LibXML__Document_getElementById .annobin_XS_XML__LibXML__Document_cloneNode.start .annobin_XS_XML__LibXML__Document_cloneNode.end XS_XML__LibXML__Document_cloneNode .annobin_XS_XML__LibXML__Document_setCompression.start .annobin_XS_XML__LibXML__Document_setCompression.end XS_XML__LibXML__Document_setCompression .annobin_XS_XML__LibXML__Document_compression.start .annobin_XS_XML__LibXML__Document_compression.end XS_XML__LibXML__Document_compression .annobin_XS_XML__LibXML__Document_removeInternalSubset.start .annobin_XS_XML__LibXML__Document_removeInternalSubset.end XS_XML__LibXML__Document_removeInternalSubset .annobin_XS_XML__LibXML__Document_setInternalSubset.start .annobin_XS_XML__LibXML__Document_setInternalSubset.end XS_XML__LibXML__Document_setInternalSubset .annobin_XS_XML__LibXML__Document__setDocumentElement.start .annobin_XS_XML__LibXML__Document__setDocumentElement.end XS_XML__LibXML__Document__setDocumentElement .annobin_XS_XML__LibXML__Document_createProcessingInstruction.start .annobin_XS_XML__LibXML__Document_createProcessingInstruction.end XS_XML__LibXML__Document_createProcessingInstruction .annobin_XS_XML__LibXML__Document_createEntityReference.start .annobin_XS_XML__LibXML__Document_createEntityReference.end XS_XML__LibXML__Document_createEntityReference .annobin_XS_XML__LibXML__Document_createComment.start .annobin_XS_XML__LibXML__Document_createComment.end XS_XML__LibXML__Document_createComment .annobin_XS_XML__LibXML__Document_createTextNode.start .annobin_XS_XML__LibXML__Document_createTextNode.end XS_XML__LibXML__Document_createTextNode .annobin_XS_XML__LibXML__Document_createDTD.start .annobin_XS_XML__LibXML__Document_createDTD.end XS_XML__LibXML__Document_createDTD .annobin_XS_XML__LibXML__Document_createExternalSubset.start .annobin_XS_XML__LibXML__Document_createExternalSubset.end XS_XML__LibXML__Document_createExternalSubset .annobin_XS_XML__LibXML__Document_createInternalSubset.start .annobin_XS_XML__LibXML__Document_createInternalSubset.end XS_XML__LibXML__Document_createInternalSubset .annobin_XS_XML__LibXML__Document_createDocument.start .annobin_XS_XML__LibXML__Document_createDocument.end XS_XML__LibXML__Document_createDocument .annobin_XS_XML__LibXML__Document__toString.start .annobin_XS_XML__LibXML__Document__toString.end XS_XML__LibXML__Document__toString .annobin_XS_XML__LibXML__ParserContext_DESTROY.start .annobin_XS_XML__LibXML__ParserContext_DESTROY.end XS_XML__LibXML__ParserContext_DESTROY .annobin_XS_XML__LibXML__HashTable_DESTROY.start .annobin_XS_XML__LibXML__HashTable_DESTROY.end XS_XML__LibXML__HashTable_DESTROY .annobin_XS_XML__LibXML__HashTable_new.start .annobin_XS_XML__LibXML__HashTable_new.end XS_XML__LibXML__HashTable_new .annobin_XS_XML__LibXML_load_catalog.start .annobin_XS_XML__LibXML_load_catalog.end XS_XML__LibXML_load_catalog .annobin_LibXML_NodeToSv.start .annobin_LibXML_NodeToSv.end LibXML_NodeToSv .annobin_XS_XML__LibXML_END.start .annobin_XS_XML__LibXML_END.end XS_XML__LibXML_END .annobin_XS_XML__LibXML_LIBXML_RUNTIME_VERSION.start .annobin_XS_XML__LibXML_LIBXML_RUNTIME_VERSION.end XS_XML__LibXML_LIBXML_RUNTIME_VERSION .annobin_XS_XML__LibXML__dump_registry.start .annobin_XS_XML__LibXML__dump_registry.end XS_XML__LibXML__dump_registry .annobin_XS_XML__LibXML__leaked_nodes.start .annobin_XS_XML__LibXML__leaked_nodes.end XS_XML__LibXML__leaked_nodes .annobin_XS_XML__LibXML__CLONE.start .annobin_XS_XML__LibXML__CLONE.end XS_XML__LibXML__CLONE .annobin_LibXML_report_error_ctx.start .annobin_LibXML_report_error_ctx.end LibXML_report_error_ctx .annobin_XS_XML__LibXML__Common_decodeFromUTF8.start .annobin_XS_XML__LibXML__Common_decodeFromUTF8.end XS_XML__LibXML__Common_decodeFromUTF8 .annobin_XS_XML__LibXML__Common_encodeToUTF8.start .annobin_XS_XML__LibXML__Common_encodeToUTF8.end XS_XML__LibXML__Common_encodeToUTF8 .annobin_XS_XML__LibXML__XPathExpression_new.start .annobin_XS_XML__LibXML__XPathExpression_new.end XS_XML__LibXML__XPathExpression_new .annobin_XS_XML__LibXML__RegExp__compile.start .annobin_XS_XML__LibXML__RegExp__compile.end XS_XML__LibXML__RegExp__compile .annobin_XS_XML__LibXML__Reader_finish.start .annobin_XS_XML__LibXML__Reader_finish.end XS_XML__LibXML__Reader_finish .annobin_XS_XML__LibXML__Reader_read.start .annobin_XS_XML__LibXML__Reader_read.end XS_XML__LibXML__Reader_read .annobin_XS_XML__LibXML__Reader_preserveNode.start .annobin_XS_XML__LibXML__Reader_preserveNode.end XS_XML__LibXML__Reader_preserveNode .annobin_XS_XML__LibXML__Reader_nextPatternMatch.start .annobin_XS_XML__LibXML__Reader_nextPatternMatch.end XS_XML__LibXML__Reader_nextPatternMatch .annobin_XS_XML__LibXML__Reader_copyCurrentNode.start .annobin_XS_XML__LibXML__Reader_copyCurrentNode.end XS_XML__LibXML__Reader_copyCurrentNode .annobin_XS_XML__LibXML__Reader_readOuterXml.start .annobin_XS_XML__LibXML__Reader_readOuterXml.end XS_XML__LibXML__Reader_readOuterXml .annobin_XS_XML__LibXML__Reader_readInnerXml.start .annobin_XS_XML__LibXML__Reader_readInnerXml.end XS_XML__LibXML__Reader_readInnerXml .annobin_XS_XML__LibXML__Reader_readAttributeValue.start .annobin_XS_XML__LibXML__Reader_readAttributeValue.end XS_XML__LibXML__Reader_readAttributeValue .annobin_XS_XML__LibXML__Reader_skipSiblings.start .annobin_XS_XML__LibXML__Reader_skipSiblings.end XS_XML__LibXML__Reader_skipSiblings .annobin_XS_XML__LibXML__Reader_next.start .annobin_XS_XML__LibXML__Reader_next.end XS_XML__LibXML__Reader_next .annobin_XS_XML__LibXML__Reader_nextElement.start .annobin_XS_XML__LibXML__Reader_nextElement.end XS_XML__LibXML__Reader_nextElement .annobin_XS_XML__LibXML__Reader_nextSiblingElement.start .annobin_XS_XML__LibXML__Reader_nextSiblingElement.end XS_XML__LibXML__Reader_nextSiblingElement .annobin_XS_XML__LibXML__Reader_nextSibling.start .annobin_XS_XML__LibXML__Reader_nextSibling.end XS_XML__LibXML__Reader_nextSibling .annobin_XS_XML__LibXML__Reader_getAttributeHash.start .annobin_XS_XML__LibXML__Reader_getAttributeHash.end XS_XML__LibXML__Reader_getAttributeHash .annobin_XS_XML__LibXML__Schema_validate.start .annobin_XS_XML__LibXML__Schema_validate.end XS_XML__LibXML__Schema_validate .annobin_XS_XML__LibXML__Schema_parse_buffer.start .annobin_XS_XML__LibXML__Schema_parse_buffer.end XS_XML__LibXML__Schema_parse_buffer .annobin_XS_XML__LibXML__Schema_parse_location.start .annobin_XS_XML__LibXML__Schema_parse_location.end XS_XML__LibXML__Schema_parse_location .annobin_XS_XML__LibXML__RelaxNG_validate.start .annobin_XS_XML__LibXML__RelaxNG_validate.end XS_XML__LibXML__RelaxNG_validate .annobin_XS_XML__LibXML__RelaxNG_parse_document.start .annobin_XS_XML__LibXML__RelaxNG_parse_document.end XS_XML__LibXML__RelaxNG_parse_document .annobin_XS_XML__LibXML__RelaxNG_parse_buffer.start .annobin_XS_XML__LibXML__RelaxNG_parse_buffer.end XS_XML__LibXML__RelaxNG_parse_buffer .annobin_XS_XML__LibXML__RelaxNG_parse_location.start .annobin_XS_XML__LibXML__RelaxNG_parse_location.end XS_XML__LibXML__RelaxNG_parse_location .annobin_XS_XML__LibXML__Dtd_parse_string.start .annobin_XS_XML__LibXML__Dtd_parse_string.end XS_XML__LibXML__Dtd_parse_string .annobin_XS_XML__LibXML__Dtd_new.start .annobin_XS_XML__LibXML__Dtd_new.end XS_XML__LibXML__Dtd_new .annobin_XS_XML__LibXML__Node__findnodes.start .annobin_XS_XML__LibXML__Node__findnodes.end XS_XML__LibXML__Node__findnodes .annobin_XS_XML__LibXML__Node__find.start .annobin_XS_XML__LibXML__Node__find.end XS_XML__LibXML__Node__find .annobin_XS_XML__LibXML__Document_toStringHTML.start .annobin_XS_XML__LibXML__Document_toStringHTML.end XS_XML__LibXML__Document_toStringHTML .annobin_XS_XML__LibXML__Document_toFile.start .annobin_XS_XML__LibXML__Document_toFile.end XS_XML__LibXML__Document_toFile .annobin_XS_XML__LibXML__Document_toFH.start .annobin_XS_XML__LibXML__Document_toFH.end XS_XML__LibXML__Document_toFH .annobin_LibXML_output_write_handler.start .annobin_LibXML_output_write_handler.end .annobin_LibXML_configure_namespaces.start .annobin_LibXML_configure_namespaces.end LibXML_configure_namespaces .annobin_LibXML_configure_xpathcontext.start .annobin_LibXML_configure_xpathcontext.end LibXML_configure_xpathcontext .annobin_XS_XML__LibXML__XPathContext__find.start .annobin_XS_XML__LibXML__XPathContext__find.end XS_XML__LibXML__XPathContext__find .annobin_XS_XML__LibXML__XPathContext__findnodes.start .annobin_XS_XML__LibXML__XPathContext__findnodes.end XS_XML__LibXML__XPathContext__findnodes .annobin_XS_XML__LibXML__XPathContext_lookupNs.start .annobin_XS_XML__LibXML__XPathContext_lookupNs.end XS_XML__LibXML__XPathContext_lookupNs .annobin_XS_XML__LibXML__XPathContext_registerNs.start .annobin_XS_XML__LibXML__XPathContext_registerNs.end XS_XML__LibXML__XPathContext_registerNs .annobin_XS_XML__LibXML__Node__toStringC14N.start .annobin_XS_XML__LibXML__Node__toStringC14N.end XS_XML__LibXML__Node__toStringC14N .annobin_LibXML_set_int_subset.isra.4.start .annobin_LibXML_set_int_subset.isra.4.end LibXML_set_int_subset.isra.4 .annobin_XS_XML__LibXML__Node_appendChild.start .annobin_XS_XML__LibXML__Node_appendChild.end XS_XML__LibXML__Node_appendChild .annobin_XS_XML__LibXML__Node_insertAfter.start .annobin_XS_XML__LibXML__Node_insertAfter.end XS_XML__LibXML__Node_insertAfter .annobin_XS_XML__LibXML__Node_insertBefore.start .annobin_XS_XML__LibXML__Node_insertBefore.end XS_XML__LibXML__Node_insertBefore .annobin_LibXML_reparent_removed_node.part.5.start .annobin_LibXML_reparent_removed_node.part.5.end LibXML_reparent_removed_node.part.5 .annobin_XS_XML__LibXML__Node_unbindNode.start .annobin_XS_XML__LibXML__Node_unbindNode.end XS_XML__LibXML__Node_unbindNode .annobin_XS_XML__LibXML__Node_addSibling.start .annobin_XS_XML__LibXML__Node_addSibling.end XS_XML__LibXML__Node_addSibling .annobin_XS_XML__LibXML__Node_removeChild.start .annobin_XS_XML__LibXML__Node_removeChild.end XS_XML__LibXML__Node_removeChild .annobin_XS_XML__LibXML__Node_replaceNode.start .annobin_XS_XML__LibXML__Node_replaceNode.end XS_XML__LibXML__Node_replaceNode .annobin_XS_XML__LibXML__Node_replaceChild.start .annobin_XS_XML__LibXML__Node_replaceChild.end XS_XML__LibXML__Node_replaceChild .annobin_XS_XML__LibXML__Document_validate.start .annobin_XS_XML__LibXML__Document_validate.end XS_XML__LibXML__Document_validate .annobin_XS_XML__LibXML__Document_is_valid.start .annobin_XS_XML__LibXML__Document_is_valid.end XS_XML__LibXML__Document_is_valid .annobin_XS_XML__LibXML__Pattern__compilePattern.start .annobin_XS_XML__LibXML__Pattern__compilePattern.end XS_XML__LibXML__Pattern__compilePattern .annobin_LibXML_close_perl.start .annobin_LibXML_close_perl.end .annobin_LibXML_XPathContext_pool.isra.2.start .annobin_LibXML_XPathContext_pool.isra.2.end LibXML_XPathContext_pool.isra.2 .annobin_LibXML_perldata_to_LibXMLdata.start .annobin_LibXML_perldata_to_LibXMLdata.end LibXML_perldata_to_LibXMLdata .annobin_XS_XML__LibXML__XPathContext__free_node_pool.start .annobin_XS_XML__LibXML__XPathContext__free_node_pool.end XS_XML__LibXML__XPathContext__free_node_pool .annobin_LibXML_restore_context.start .annobin_LibXML_restore_context.end LibXML_restore_context .annobin_LibXML_generic_variable_lookup.start .annobin_LibXML_generic_variable_lookup.end LibXML_generic_variable_lookup .annobin_XS_XML__LibXML__XPathContext_setContextNode.start .annobin_XS_XML__LibXML__XPathContext_setContextNode.end XS_XML__LibXML__XPathContext_setContextNode .annobin_XS_XML__LibXML__XPathContext_registerFunctionNS.start .annobin_XS_XML__LibXML__XPathContext_registerFunctionNS.end XS_XML__LibXML__XPathContext_registerFunctionNS LibXML_generic_extension_function .annobin_XS_XML__LibXML__XPathContext_registerVarLookupFunc.start .annobin_XS_XML__LibXML__XPathContext_registerVarLookupFunc.end XS_XML__LibXML__XPathContext_registerVarLookupFunc .annobin_LibXML_input_close.start .annobin_LibXML_input_close.end .annobin_LibXML_generic_extension_function.start .annobin_LibXML_generic_extension_function.end .annobin_XS_XML__LibXML__XPathContext_DESTROY.start .annobin_XS_XML__LibXML__XPathContext_DESTROY.end XS_XML__LibXML__XPathContext_DESTROY .annobin_LibXML_struct_error_callback.start .annobin_LibXML_struct_error_callback.end .annobin_LibXML_struct_error_handler.start .annobin_LibXML_struct_error_handler.end .annobin_LibXML_flat_handler.start .annobin_LibXML_flat_handler.end .annobin_LibXML_get_reader_error_data.start .annobin_LibXML_get_reader_error_data.end .annobin_LibXML_init_parser.start .annobin_LibXML_init_parser.end .annobin_LibXML_cleanup_parser.start .annobin_LibXML_cleanup_parser.end .annobin_XS_XML__LibXML__end_sax_push.start .annobin_XS_XML__LibXML__end_sax_push.end XS_XML__LibXML__end_sax_push .annobin_XS_XML__LibXML__end_push.start .annobin_XS_XML__LibXML__end_push.end XS_XML__LibXML__end_push .annobin_XS_XML__LibXML__push.start .annobin_XS_XML__LibXML__push.end XS_XML__LibXML__push .annobin_XS_XML__LibXML__start_push.start .annobin_XS_XML__LibXML__start_push.end XS_XML__LibXML__start_push .annobin_XS_XML__LibXML__processXIncludes.start .annobin_XS_XML__LibXML__processXIncludes.end XS_XML__LibXML__processXIncludes .annobin_XS_XML__LibXML__parse_sax_xml_chunk.start .annobin_XS_XML__LibXML__parse_sax_xml_chunk.end XS_XML__LibXML__parse_sax_xml_chunk .annobin_XS_XML__LibXML__parse_xml_chunk.start .annobin_XS_XML__LibXML__parse_xml_chunk.end XS_XML__LibXML__parse_xml_chunk .annobin_XS_XML__LibXML__parse_html_fh.start .annobin_XS_XML__LibXML__parse_html_fh.end XS_XML__LibXML__parse_html_fh .annobin_XS_XML__LibXML__parse_html_file.start .annobin_XS_XML__LibXML__parse_html_file.end XS_XML__LibXML__parse_html_file .annobin_XS_XML__LibXML__parse_html_string.start .annobin_XS_XML__LibXML__parse_html_string.end XS_XML__LibXML__parse_html_string .annobin_XS_XML__LibXML__parse_sax_file.start .annobin_XS_XML__LibXML__parse_sax_file.end XS_XML__LibXML__parse_sax_file .annobin_XS_XML__LibXML__parse_file.start .annobin_XS_XML__LibXML__parse_file.end XS_XML__LibXML__parse_file .annobin_XS_XML__LibXML__parse_sax_fh.start .annobin_XS_XML__LibXML__parse_sax_fh.end XS_XML__LibXML__parse_sax_fh .annobin_XS_XML__LibXML__parse_fh.start .annobin_XS_XML__LibXML__parse_fh.end XS_XML__LibXML__parse_fh .annobin_XS_XML__LibXML__parse_sax_string.start .annobin_XS_XML__LibXML__parse_sax_string.end XS_XML__LibXML__parse_sax_string .annobin_XS_XML__LibXML__parse_string.start .annobin_XS_XML__LibXML__parse_string.end XS_XML__LibXML__parse_string .annobin_LibXML_test_node_name.start .annobin_LibXML_test_node_name.end .annobin_XS_XML__LibXML__Element__setAttributeNS.start .annobin_XS_XML__LibXML__Element__setAttributeNS.end XS_XML__LibXML__Element__setAttributeNS .annobin_XS_XML__LibXML__Element__setAttribute.start .annobin_XS_XML__LibXML__Element__setAttribute.end XS_XML__LibXML__Element__setAttribute .annobin_XS_XML__LibXML__Node_setNodeName.start .annobin_XS_XML__LibXML__Node_setNodeName.end XS_XML__LibXML__Node_setNodeName .annobin_XS_XML__LibXML__Document_createAttributeNS.start .annobin_XS_XML__LibXML__Document_createAttributeNS.end XS_XML__LibXML__Document_createAttributeNS .annobin_XS_XML__LibXML__Document_createAttribute.start .annobin_XS_XML__LibXML__Document_createAttribute.end XS_XML__LibXML__Document_createAttribute .annobin_XS_XML__LibXML__Document_createRawElementNS.start .annobin_XS_XML__LibXML__Document_createRawElementNS.end XS_XML__LibXML__Document_createRawElementNS .annobin_XS_XML__LibXML__Document_createElementNS.start .annobin_XS_XML__LibXML__Document_createElementNS.end XS_XML__LibXML__Document_createElementNS .annobin_XS_XML__LibXML__Document_createElement.start .annobin_XS_XML__LibXML__Document_createElement.end XS_XML__LibXML__Document_createElement .annobin_boot_XML__LibXML.start .annobin_boot_XML__LibXML.end .annobin_dom.c .annobin_dom.c_end .annobin_dom.c.hot .annobin_dom.c_end.hot .annobin_dom.c.unlikely .annobin_dom.c_end.unlikely .annobin_dom.c.startup .annobin_dom.c_end.startup .annobin_dom.c.exit .annobin_dom.c_end.exit .annobin_domClearPSVIInList.start .annobin_domClearPSVIInList.end .annobin_domClearPSVI.start .annobin_domClearPSVI.end .annobin_domAddNsDef.start .annobin_domAddNsDef.end .annobin_domRemoveNsDef.start .annobin_domRemoveNsDef.end .annobin__domAddNsChain.start .annobin__domAddNsChain.end .annobin__domReconcileNsAttr.start .annobin__domReconcileNsAttr.end .annobin__domReconcileNs.start .annobin__domReconcileNs.end _domReconcileNs.localalias.9 .annobin_domReconcileNs.start .annobin_domReconcileNs.end .annobin_domParseChar.start .annobin_domParseChar.end .annobin_domReadWellBalancedString.start .annobin_domReadWellBalancedString.end .annobin_domAddNodeToList.start .annobin_domAddNodeToList.end .annobin_domIsParent.start .annobin_domIsParent.end .annobin_domTestHierarchy.start .annobin_domTestHierarchy.end .annobin_domTestDocument.start .annobin_domTestDocument.end .annobin_domUnlinkNode.start .annobin_domUnlinkNode.end .annobin_domImportNode.start .annobin_domImportNode.end .annobin_domName.start .annobin_domName.end .annobin_domAppendChild.start .annobin_domAppendChild.end .annobin_domRemoveChild.start .annobin_domRemoveChild.end .annobin_domReplaceChild.start .annobin_domReplaceChild.end .annobin_domInsertBefore.start .annobin_domInsertBefore.end .annobin_domInsertAfter.start .annobin_domInsertAfter.end .annobin_domReplaceNode.start .annobin_domReplaceNode.end .annobin_domGetNodeValue.start .annobin_domGetNodeValue.end .annobin_domSetNodeValue.start .annobin_domSetNodeValue.end .annobin_domGetElementsByTagName.start .annobin_domGetElementsByTagName.end .annobin_domGetElementsByTagNameNS.start .annobin_domGetElementsByTagNameNS.end .annobin_domNewNs.start .annobin_domNewNs.end .annobin_domGetAttrNode.start .annobin_domGetAttrNode.end .annobin_domSetAttributeNode.start .annobin_domSetAttributeNode.end .annobin_domAttrSerializeContent.start .annobin_domAttrSerializeContent.end .annobin_domNodeNormalize.start .annobin_domNodeNormalize.end .annobin_domNodeNormalizeList.start .annobin_domNodeNormalizeList.end .annobin_domRemoveNsRefs.start .annobin_domRemoveNsRefs.end perl-libxml-mm.c .annobin_perl_libxml_mm.c .annobin_perl_libxml_mm.c_end .annobin_perl_libxml_mm.c.hot .annobin_perl_libxml_mm.c_end.hot .annobin_perl_libxml_mm.c.unlikely .annobin_perl_libxml_mm.c_end.unlikely .annobin_perl_libxml_mm.c.startup .annobin_perl_libxml_mm.c_end.startup .annobin_perl_libxml_mm.c.exit .annobin_perl_libxml_mm.c_end.exit .annobin_PmmRegistryHashDeallocator.start .annobin_PmmRegistryHashDeallocator.end PmmRegistryHashDeallocator .annobin_PmmRegistryHashCopier.start .annobin_PmmRegistryHashCopier.end .annobin_PmmNodeTypeName.start .annobin_PmmNodeTypeName.end .annobin_PmmRegistryDumpHashScanner.start .annobin_PmmRegistryDumpHashScanner.end .annobin_PmmFreeHashTable.start .annobin_PmmFreeHashTable.end .annobin_PmmDumpRegistry.start .annobin_PmmDumpRegistry.end .annobin_PmmProxyNodeRegistryPtr.start .annobin_PmmProxyNodeRegistryPtr.end .annobin_PmmRegistryName.start .annobin_PmmRegistryName.end .annobin_PmmNewLocalProxyNode.start .annobin_PmmNewLocalProxyNode.end .annobin_PmmRegisterProxyNode.start .annobin_PmmRegisterProxyNode.end .annobin_PmmUnregisterProxyNode.start .annobin_PmmUnregisterProxyNode.end .annobin_PmmRegistryLookup.start .annobin_PmmRegistryLookup.end .annobin_PmmRegistryREFCNT_inc.start .annobin_PmmRegistryREFCNT_inc.end .annobin_PmmRegistryREFCNT_dec.start .annobin_PmmRegistryREFCNT_dec.end .annobin_PmmCloneProxyNodes.start .annobin_PmmCloneProxyNodes.end .annobin_PmmProxyNodeRegistrySize.start .annobin_PmmProxyNodeRegistrySize.end .annobin_PmmNewNode.start .annobin_PmmNewNode.end .annobin_PmmNewFragment.start .annobin_PmmNewFragment.end .annobin_PmmFreeNode.start .annobin_PmmFreeNode.end .annobin_PmmREFCNT_dec.start .annobin_PmmREFCNT_dec.end PmmREFCNT_dec.localalias.7 .annobin_PmmNodeToSv.start .annobin_PmmNodeToSv.end .annobin_PmmCloneNode.start .annobin_PmmCloneNode.end .annobin_PmmSvNodeExt.start .annobin_PmmSvNodeExt.end .annobin_PmmSvOwner.start .annobin_PmmSvOwner.end .annobin_PmmSetSvOwner.start .annobin_PmmSetSvOwner.end .annobin_PmmFixOwnerList.start .annobin_PmmFixOwnerList.end .annobin_PmmFixOwner.start .annobin_PmmFixOwner.end .annobin_PmmFixOwnerNode.start .annobin_PmmFixOwnerNode.end .annobin_PmmNewContext.start .annobin_PmmNewContext.end .annobin_PmmContextREFCNT_dec.start .annobin_PmmContextREFCNT_dec.end .annobin_PmmContextSv.start .annobin_PmmContextSv.end .annobin_PmmSvContext.start .annobin_PmmSvContext.end .annobin_PmmFastEncodeString.start .annobin_PmmFastEncodeString.end .annobin_PmmFastDecodeString.start .annobin_PmmFastDecodeString.end .annobin_PmmEncodeString.start .annobin_PmmEncodeString.end .annobin_C2Sv.start .annobin_C2Sv.end .annobin_Sv2C.start .annobin_Sv2C.end .annobin_nodeC2Sv.start .annobin_nodeC2Sv.end .annobin_nodeSv2C.start .annobin_nodeSv2C.end .annobin_PmmNodeToGdomeSv.start .annobin_PmmNodeToGdomeSv.end perl-libxml-sax.c .annobin_perl_libxml_sax.c .annobin_perl_libxml_sax.c_end .annobin_perl_libxml_sax.c.hot .annobin_perl_libxml_sax.c_end.hot .annobin_perl_libxml_sax.c.unlikely .annobin_perl_libxml_sax.c_end.unlikely .annobin_perl_libxml_sax.c.startup .annobin_perl_libxml_sax.c_end.startup .annobin_perl_libxml_sax.c.exit .annobin_perl_libxml_sax.c_end.exit .annobin_PmmSaxWarning.start .annobin_PmmSaxWarning.end .annobin_PmmSaxError.start .annobin_PmmSaxError.end .annobin_PmmSaxFatalError.start .annobin_PmmSaxFatalError.end .annobin__C2Sv.start .annobin__C2Sv.end .annobin__C2Sv_len.start .annobin__C2Sv_len.end .annobin_PmmSAXInitialize.start .annobin_PmmSAXInitialize.end PrefixHash NsURIHash LocalNameHash AttributesHash ValueHash DataHash TargetHash VersionHash EncodingHash PublicIdHash SystemIdHash .annobin_CBufferChunkNew.start .annobin_CBufferChunkNew.end .annobin_CBufferNew.start .annobin_CBufferNew.end .annobin_CBufferPurge.start .annobin_CBufferPurge.end .annobin_CBufferFree.start .annobin_CBufferFree.end .annobin_CBufferLength.start .annobin_CBufferLength.end .annobin_CBufferAppend.start .annobin_CBufferAppend.end .annobin_CBufferCharacters.start .annobin_CBufferCharacters.end .annobin_PmmSAXCloseContext.start .annobin_PmmSAXCloseContext.end .annobin_PmmGetNsMapping.start .annobin_PmmGetNsMapping.end .annobin_PSaxStartPrefix.start .annobin_PSaxStartPrefix.end .annobin_PSaxEndPrefix.start .annobin_PSaxEndPrefix.end .annobin_PmmExtendNsStack.start .annobin_PmmExtendNsStack.end .annobin_PmmNarrowNsStack.start .annobin_PmmNarrowNsStack.end .annobin_PmmAddNamespace.start .annobin_PmmAddNamespace.end .annobin_PmmGenElementSV.start .annobin_PmmGenElementSV.end .annobin_PmmGenNsName.start .annobin_PmmGenNsName.end .annobin_PmmGenAttributeHashSV.start .annobin_PmmGenAttributeHashSV.end .annobin_PmmGenCharDataSV.start .annobin_PmmGenCharDataSV.end .annobin_PmmGenPISV.start .annobin_PmmGenPISV.end .annobin_PmmGenDTDSV.start .annobin_PmmGenDTDSV.end .annobin_PmmGenLocator.start .annobin_PmmGenLocator.end .annobin_PmmUpdateLocator.start .annobin_PmmUpdateLocator.end .annobin_PSaxStartDocument.start .annobin_PSaxStartDocument.end .annobin_PSaxExternalSubset.start .annobin_PSaxExternalSubset.end .annobin_PSaxCharactersDispatch.start .annobin_PSaxCharactersDispatch.end .annobin_PSaxCharacters.start .annobin_PSaxCharacters.end .annobin_PSaxCharactersFlush.start .annobin_PSaxCharactersFlush.end .annobin_PSaxSetDocumentLocator.start .annobin_PSaxSetDocumentLocator.end .annobin_PSaxEndDocument.start .annobin_PSaxEndDocument.end .annobin_PSaxStartElement.start .annobin_PSaxStartElement.end .annobin_PSaxEndElement.start .annobin_PSaxEndElement.end .annobin_PSaxComment.start .annobin_PSaxComment.end .annobin_PSaxCDATABlock.start .annobin_PSaxCDATABlock.end .annobin_PSaxProcessingInstruction.start .annobin_PSaxProcessingInstruction.end .annobin_PSaxGetHandler.start .annobin_PSaxGetHandler.end .annobin_PmmSAXInitContext.start .annobin_PmmSAXInitContext.end .annobin_xpath.c .annobin_xpath.c_end .annobin_xpath.c.hot .annobin_xpath.c_end.hot .annobin_xpath.c.unlikely .annobin_xpath.c_end.unlikely .annobin_xpath.c.startup .annobin_xpath.c_end.startup .annobin_xpath.c.exit .annobin_xpath.c_end.exit .annobin_perlDocumentFunction.start .annobin_perlDocumentFunction.end .annobin_domXPathCompFind.start .annobin_domXPathCompFind.end .annobin_domXPathFind.start .annobin_domXPathFind.end .annobin_domXPathSelect.start .annobin_domXPathSelect.end .annobin_domXPathCompSelect.start .annobin_domXPathCompSelect.end .annobin_domXPathCompFindCtxt.start .annobin_domXPathCompFindCtxt.end .annobin_domXPathFindCtxt.start .annobin_domXPathFindCtxt.end .annobin_domXPathSelectCtxt.start .annobin_domXPathSelectCtxt.end crtstuff.c deregister_tm_clones __do_global_dtors_aux completed.7303 __do_global_dtors_aux_fini_array_entry frame_dummy __frame_dummy_init_array_entry __FRAME_END__ __GNU_EH_FRAME_HDR _fini _GLOBAL_OFFSET_TABLE_ __TMC_END__ __dso_handle _DYNAMIC _init xmlXPathObjectCopy@@LIBXML2_2.4.30 Perl_sv_setnv_mg xmlXPathRegisterFunc@@LIBXML2_2.4.30 PmmSAXInitContext xmlIsDigitGroup@@LIBXML2_2.6.0 xmlNodeDump@@LIBXML2_2.4.30 PmmRegistryREFCNT_dec xmlTextReaderQuoteChar@@LIBXML2_2.4.30 xmlStrEqual@@LIBXML2_2.4.30 xmlSaveFile@@LIBXML2_2.4.30 LibXML_flat_handler pthread_getspecific@@GLIBC_2.2.5 Perl_mg_get xmlHashCopy@@LIBXML2_2.4.30 xmlTextReaderNext@@LIBXML2_2.5.7 xmlTextReaderDepth@@LIBXML2_2.4.30 xmlTextReaderMoveToAttributeNs@@LIBXML2_2.5.0 PSaxEndDocument xmlCharInRange@@LIBXML2_2.6.0 xmlSchemaValidateDoc@@LIBXML2_2.5.8 xmlGetProp@@LIBXML2_2.4.30 CBufferPurge LibXML_cleanup_parser xmlTextReaderMoveToAttributeNo@@LIBXML2_2.5.0 PSaxComment domXPathSelect Perl_av_len Perl_get_hv xmlUnlinkNode@@LIBXML2_2.4.30 xmlNewIOInputStream@@LIBXML2_2.4.30 __xmlIndentTreeOutput nodeSv2C xmlSaveFormatFileTo@@LIBXML2_2.4.30 xmlReaderWalker@@LIBXML2_2.6.0 Perl_get_sv xmlSetGenericErrorFunc@@LIBXML2_2.4.30 PL_thr_key xmlStrcmp@@LIBXML2_2.4.30 xmlTextReaderMoveToElement@@LIBXML2_2.5.0 LibXML_error_handler_ctx xmlDocDumpMemory@@LIBXML2_2.4.30 xmlIsID@@LIBXML2_2.4.30 xmlGetNodePath@@LIBXML2_2.4.30 xmlTextReaderSetParserProp@@LIBXML2_2.5.0 Perl_newRV_noinc xmlSplitQName2@@LIBXML2_2.4.30 Perl_sv_2bool_flags abort@@GLIBC_2.2.5 xmlTextReaderGetAttributeNo@@LIBXML2_2.5.0 nodeC2Sv xmlUTF8Strsub@@LIBXML2_2.4.30 PmmGenDTDSV xmlTextReaderLookupNamespace@@LIBXML2_2.5.0 Perl_newSVpvf_nocontext xmlSchemaSetValidErrors@@LIBXML2_2.5.8 xmlTextReaderConstXmlVersion@@LIBXML2_2.6.15 xmlTextReaderConstLocalName@@LIBXML2_2.6.0 xmlReaderForIO@@LIBXML2_2.6.0 xmlInitParser@@LIBXML2_2.4.30 xmlRegisterInputCallbacks@@LIBXML2_2.4.30 domGetElementsByTagNameNS domXPathCompFindCtxt xmlTextReaderReadState@@LIBXML2_2.5.0 xmlSchemaFreeValidCtxt@@LIBXML2_2.5.8 __gmon_start__ xmlBufferCreateStatic@@LIBXML2_2.6.0 PmmGenNsName xmlFreeProp@@LIBXML2_2.4.30 xmlCleanupInputCallbacks@@LIBXML2_2.4.30 xmlTextReaderCurrentDoc@@LIBXML2_2.5.0 CBufferChunkNew xmlParseFile@@LIBXML2_2.4.30 LibXML_struct_error_handler domInsertBefore xmlTextReaderByteConsumed@@LIBXML2_2.6.18 xmlRelaxNGFreeParserCtxt@@LIBXML2_2.5.2 __assert_fail@@GLIBC_2.2.5 LibXML_init_parser htmlReadIO@@LIBXML2_2.6.0 xmlTextReaderExpand@@LIBXML2_2.5.7 xmlCharEncInFunc@@LIBXML2_2.4.30 PmmNodeToGdomeSv xmlTextReaderConstEncoding@@LIBXML2_2.6.15 xmlTextReaderConstNamespaceUri@@LIBXML2_2.6.0 xmlNewReference@@LIBXML2_2.4.30 PmmGenLocator xmlCtxtUseOptions@@LIBXML2_2.6.0 PSaxSetDocumentLocator PmmNewLocalProxyNode xmlNewDocNode@@LIBXML2_2.4.30 xmlCtxtGetLastError@@LIBXML2_2.6.0 xmlXPathFreeCompExpr@@LIBXML2_2.4.30 xmlRelaxNGNewDocParserCtxt@@LIBXML2_2.5.7 xmlTextReaderConstXmlLang@@LIBXML2_2.6.0 xmlNodeSetBase@@LIBXML2_2.4.30 xmlAddPrevSibling@@LIBXML2_2.4.30 PmmFixOwnerNode domRemoveNsDef LibXML_output_close_handler xmlTextReaderSchemaValidate@@LIBXML2_2.6.20 xmlRegFreeRegexp@@LIBXML2_2.4.30 PmmSaxWarning xmlXPathNewBoolean@@LIBXML2_2.4.30 xmlXPathNodeSetAdd@@LIBXML2_2.4.30 xmlHashSize@@LIBXML2_2.4.30 xmlGetIntSubset@@LIBXML2_2.4.30 PmmContextSv xmlSchemaNewParserCtxt@@LIBXML2_2.5.8 xmlC14NDocDumpMemory@@LIBXML2_2.4.30 xmlTextReaderIsValid@@LIBXML2_2.5.7 Perl_warn_nocontext Perl_sv_2mortal xmlTextReaderSetSchema@@LIBXML2_2.6.20 PmmFixOwnerList domReplaceChild Perl_sv_vsetpvfn xmlSchemaParse@@LIBXML2_2.5.8 xmlHashFree@@LIBXML2_2.4.30 xmlNewNode@@LIBXML2_2.4.30 xmlHashScan@@LIBXML2_2.4.30 xmlDocCopyNode@@LIBXML2_2.4.30 PmmFixOwner xmlNewChild@@LIBXML2_2.4.30 Perl_sv_setpv __xmlSaveNoEmptyTags xmlXPathNewFloat@@LIBXML2_2.4.30 xmlTextReaderHasValue@@LIBXML2_2.4.30 xmlCheckVersion@@LIBXML2_2.4.30 xmlFindCharEncodingHandler@@LIBXML2_2.4.30 xmlDocSetRootElement@@LIBXML2_2.4.30 xmlFreeDoc@@LIBXML2_2.4.30 PmmSetSvOwner _C2Sv_len xmlNoNetExternalEntityLoader@@LIBXML2_2.4.30 xmlHashCreate@@LIBXML2_2.4.30 xmlTextReaderGetAttributeNs@@LIBXML2_2.5.0 xmlParseCharEncoding@@LIBXML2_2.4.30 xmlIsCombiningGroup@@LIBXML2_2.6.0 Perl_free_tmps xmlNewDtd@@LIBXML2_2.4.30 xmlSetDocCompressMode@@LIBXML2_2.4.30 xmlSchemaValidateOneElement@@LIBXML2_2.6.14 xmlTextReaderRelaxNGValidate@@LIBXML2_2.5.7 xmlNewInputFromFile@@LIBXML2_2.4.30 xmlBufferCCat@@LIBXML2_2.4.30 xmlTextReaderRead@@LIBXML2_2.4.30 _ITM_deregisterTMCloneTable xmlTextReaderIsNamespaceDecl@@LIBXML2_2.6.15 domGetAttrNode Perl_newSVsv PSaxProcessingInstruction Perl_newXS_deffile xmlRelaxNGFree@@LIBXML2_2.5.2 CBufferFree xmlGetDocCompressMode@@LIBXML2_2.4.30 xmlNewDocComment@@LIBXML2_2.4.30 __xmlParserVersion domXPathCompSelect PmmSAXCloseContext CBufferLength xmlSetListDoc@@LIBXML2_2.4.30 LibXML_output_write_handler PmmNarrowNsStack __xmlGenericErrorContext PmmNewFragment xmlTextReaderPreserve@@LIBXML2_2.6.0 PmmREFCNT_dec xmlParserInputBufferPush@@LIBXML2_2.4.30 xmlStrlen@@LIBXML2_2.4.30 xmlPatternMatch@@LIBXML2_2.6.3 xmlTextReaderAttributeCount@@LIBXML2_2.4.30 xmlXPathCastToString@@LIBXML2_2.4.30 xmlNewProp@@LIBXML2_2.4.30 PL_hash_seed strlen@@GLIBC_2.2.5 xmlTextReaderHasAttributes@@LIBXML2_2.4.30 xmlAddSibling@@LIBXML2_2.4.30 domXPathFindCtxt _ITM_registerTMCloneTable xmlNodeGetBase@@LIBXML2_2.4.30 Perl_xs_handshake xmlHashAddEntry@@LIBXML2_2.4.30 PmmEncodeString domTestDocument domAddNsDef PmmFreeHashTable xmlCharEncOutFunc@@LIBXML2_2.4.30 PmmGenElementSV xmlHashRemoveEntry@@LIBXML2_2.4.30 PmmSaxFatalError domNodeNormalizeList xmlValidateDtd@@LIBXML2_2.4.30 xmlNodeSetContent@@LIBXML2_2.4.30 LibXML_input_open xmlNodeAddContent@@LIBXML2_2.4.30 xmlMemUsed@@LIBXML2_2.4.30 __cxa_finalize@@GLIBC_2.2.5 domAddNodeToList Perl_sv_catpv xmlGetNsList@@LIBXML2_2.4.30 xmlGetNsProp@@LIBXML2_2.4.30 CBufferAppend Perl_sv_setref_pv PROXY_NODE_REGISTRY_MUTEX xmlTextReaderConstBaseUri@@LIBXML2_2.6.0 PmmFastEncodeString xmlRelaxNGNewMemParserCtxt@@LIBXML2_2.5.2 LibXML_input_read xmlTextReaderIsEmptyElement@@LIBXML2_2.4.30 xmlBufferFree@@LIBXML2_2.4.30 xmlTextReaderNextSibling@@LIBXML2_2.6.0 PmmFreeNode xmlBufferLength@@LIBXML2_2.4.30 PmmRegistryDumpHashScanner xmlRegexpIsDeterminist@@LIBXML2_2.4.30 xmlXPathCompiledEval@@LIBXML2_2.4.30 xmlHasNsProp@@LIBXML2_2.4.30 xmlStrchr@@LIBXML2_2.4.30 xmlRelaxNGValidateDoc@@LIBXML2_2.5.2 XS_pack_charPtrPtr PSaxCDATABlock Perl_pop_scope xmlCopyNamespace@@LIBXML2_2.4.30 xmlReaderForDoc@@LIBXML2_2.6.0 xmlTextReaderCurrentNode@@LIBXML2_2.5.0 PmmGenPISV xmlRelaxNGNewValidCtxt@@LIBXML2_2.5.2 Perl_newSVrv xmlCopyProp@@LIBXML2_2.4.30 xmlSetTreeDoc@@LIBXML2_2.4.30 domRemoveChild xmlTextReaderReadAttributeValue@@LIBXML2_2.5.0 EXTERNAL_ENTITY_LOADER_FUNC PSaxStartDocument xmlXPathNewContext@@LIBXML2_2.4.30 LibXML_input_match Perl_call_sv strerror@@GLIBC_2.2.5 domRemoveNsRefs Perl_sv_setsv_flags xmlXIncludeProcessFlags@@LIBXML2_2.6.3 xmlNewDocProp@@LIBXML2_2.4.30 xmlSetProp@@LIBXML2_2.4.30 PmmRegisterProxyNode xmlAttrSerializeTxtContent@@LIBXML2_2.6.6 XS_unpack_charPtrPtr Perl_sv_isa Perl_sv_setpvn xmlSetExternalEntityLoader@@LIBXML2_2.4.30 domInsertAfter xmlXPathRegisterNs@@LIBXML2_2.4.30 xmlXPathFreeObject@@LIBXML2_2.4.30 LibXML_test_node_name Perl_sv_free2 PmmGenCharDataSV PmmFastDecodeString xmlSchemaNewMemParserCtxt@@LIBXML2_2.5.8 CBufferCharacters xmlXPathCompile@@LIBXML2_2.4.30 Perl_stack_grow Perl_block_gimme xmlCreateMemoryParserCtxt@@LIBXML2_2.4.30 domNodeNormalize htmlDocDumpMemory@@LIBXML2_2.4.30 xmlCreatePushParserCtxt@@LIBXML2_2.4.30 PmmGenAttributeHashSV PSaxStartPrefix PmmSvContext xmlNewNs@@LIBXML2_2.4.30 xmlGetLineNo@@LIBXML2_2.4.30 domParseChar PmmRegistryREFCNT_inc valuePush@@LIBXML2_2.4.30 PmmSvNodeExt xmlCharEncCloseFunc@@LIBXML2_2.4.30 CBufferNew LibXML_input_close PmmRegistryHashCopier Perl_sv_newmortal xmlTextReaderGetAttribute@@LIBXML2_2.5.0 domReplaceNode xmlTextReaderNodeType@@LIBXML2_2.4.30 Perl_av_fetch xmlMalloc@@LIBXML2_2.4.30 xmlNewText@@LIBXML2_2.4.30 xmlTextReaderClose@@LIBXML2_2.5.0 PSaxCharacters xmlXPathNodeSetCreate@@LIBXML2_2.4.30 Perl_xs_boot_epilog xmlTextReaderIsDefault@@LIBXML2_2.4.30 xmlTextReaderConstValue@@LIBXML2_2.6.0 xmlSaveFormatFile@@LIBXML2_2.4.30 Perl_sv_catsv_flags xmlXPathCastNodeToNumber@@LIBXML2_2.4.30 xmlStrcat@@LIBXML2_2.4.30 xmlRelaxNGFreeValidCtxt@@LIBXML2_2.5.2 htmlReadDoc@@LIBXML2_2.6.0 xmlXPathOrderDocElems@@LIBXML2_2.5.6 xmlCharStrndup@@LIBXML2_2.4.30 PSaxCharactersFlush Perl_sv_2nv_flags LibXML_load_external_entity _domReconcileNsAttr xmlXPathFreeContext@@LIBXML2_2.4.30 xmlSearchNsByHref@@LIBXML2_2.4.30 PmmExtendNsStack xmlReaderForFile@@LIBXML2_2.6.0 getenv@@GLIBC_2.2.5 LibXML_get_reader_error_data PSaxGetHandler __xmlGenericError xmlSchemaSetParserErrors@@LIBXML2_2.5.8 Perl_call_method xmlIsExtenderGroup@@LIBXML2_2.6.0 xmlNewComment@@LIBXML2_2.4.30 xmlUTF8Strlen@@LIBXML2_2.4.30 domTestHierarchy PmmNewNode htmlReadFile@@LIBXML2_2.6.0 PmmSaxError PSaxEndElement __errno_location@@GLIBC_2.2.5 xmlEncodeEntitiesReentrant@@LIBXML2_2.4.30 xmlTextReaderGetParserProp@@LIBXML2_2.5.0 xmlRegexpExec@@LIBXML2_2.4.30 xmlLoadCatalog@@LIBXML2_2.4.30 xmlXPathCompiledEvalToBoolean@@LIBXML2_2.6.27 __bss_start xmlXPathStringFunction@@LIBXML2_2.4.30 xmlGetCharEncodingHandler@@LIBXML2_2.4.30 PmmGetNsMapping xmlTextReaderReadOuterXml@@LIBXML2_2.5.0 Perl_newSV PmmUpdateLocator xmlXPathEval@@LIBXML2_2.4.30 xmlXPathCastNodeToString@@LIBXML2_2.4.30 Perl_mg_set xmlSetNs@@LIBXML2_2.4.30 Perl_sv_vcatpvfn __stack_chk_fail@@GLIBC_2.4 domNewNs Perl_sv_vcatpvf perlDocumentFunction xmlValidateDocument@@LIBXML2_2.4.30 xmlTextReaderGetParserColumnNumber@@LIBXML2_2.6.17 _C2Sv Perl_newSViv xmlSchemaFreeParserCtxt@@LIBXML2_2.5.8 Perl_newSVnv PmmRegistryName domXPathCompFind Perl_hv_common_key_len xmlGcMemSetup@@LIBXML2_2.5.7 xmlTextReaderGetErrorHandler@@LIBXML2_2.5.2 xmlTextReaderConstName@@LIBXML2_2.6.0 PSaxExternalSubset xmlTextConcat@@LIBXML2_2.4.30 xmlStrndup@@LIBXML2_2.4.30 xmlSchemaNewValidCtxt@@LIBXML2_2.5.8 xmlSetNsProp@@LIBXML2_2.4.30 domIsParent xmlXPathNsLookup@@LIBXML2_2.4.30 xmlTextReaderRelaxNGSetSchema@@LIBXML2_2.5.7 strcpy@@GLIBC_2.2.5 xmlOutputBufferCreateIO@@LIBXML2_2.4.30 xmlRelaxNGParse@@LIBXML2_2.5.2 Perl_gv_add_by_type xmlCleanupParser@@LIBXML2_2.4.30 xmlTextReaderMoveToAttribute@@LIBXML2_2.5.0 PmmRegistryLookup xmlParseChunk@@LIBXML2_2.4.30 xmlMemMalloc@@LIBXML2_2.4.30 PmmProxyNodeRegistrySize xmlSetStructuredErrorFunc@@LIBXML2_2.6.0 xmlNewDocFragment@@LIBXML2_2.4.30 Perl_sv_isobject LibXML_struct_error_callback xmlIOParseDTD@@LIBXML2_2.4.30 xmlTextReaderReadInnerXml@@LIBXML2_2.5.0 xmlStrncat@@LIBXML2_2.4.30 xmlRegisterDefaultInputCallbacks@@LIBXML2_2.4.30 xmlInitializeCatalog@@LIBXML2_2.4.30 xmlMemStrdup@@LIBXML2_2.4.30 xmlXPathRegisterVariableLookup@@LIBXML2_2.4.30 Perl_croak_nocontext PmmSAXInitialize domReadWellBalancedString xmlAddChild@@LIBXML2_2.4.30 domXPathFind xmlParseBalancedChunkMemory@@LIBXML2_2.4.30 xmlNodeSetName@@LIBXML2_2.4.30 xmlBufferContent@@LIBXML2_2.4.30 domAttrSerializeContent xmlReaderForFd@@LIBXML2_2.6.0 xmlGetExternalEntityLoader@@LIBXML2_2.4.30 xmlNewDoc@@LIBXML2_2.4.30 domClearPSVI XS_release_charPtrPtr xmlCreateFileParserCtxt@@LIBXML2_2.4.30 xmlBufferCreate@@LIBXML2_2.4.30 xmlHashLookup@@LIBXML2_2.4.30 PmmSvOwner strncpy@@GLIBC_2.2.5 xmlXPathNodeSetMerge@@LIBXML2_2.4.30 xmlTextReaderMoveToNextAttribute@@LIBXML2_2.5.0 domName xmlRelaxNGNewParserCtxt@@LIBXML2_2.5.2 valuePop@@LIBXML2_2.4.30 _domAddNsChain domAppendChild xmlFreeDtd@@LIBXML2_2.4.30 xmlSchemaFree@@LIBXML2_2.5.8 boot_XML__LibXML__Devel Perl_safesysmalloc xmlStrdup@@LIBXML2_2.4.30 PmmNewContext domImportNode Perl_newSVpv PmmContextREFCNT_dec xmlGetNoNsProp@@LIBXML2_2.5.2 domClearPSVIInList xmlXPathFreeNodeSet@@LIBXML2_2.4.30 xmlDocGetRootElement@@LIBXML2_2.4.30 PmmNodeTypeName xmlNewCDataBlock@@LIBXML2_2.4.30 xmlBuildURI@@LIBXML2_2.4.30 xmlXPathRegisterFuncNS@@LIBXML2_2.4.30 xmlParseDTD@@LIBXML2_2.4.30 stderr@@GLIBC_2.2.5 Perl_av_push Perl_sv_2iv_flags domUnlinkNode __snprintf_chk@@GLIBC_2.3.4 xmlNewDocText@@LIBXML2_2.4.30 domSetAttributeNode PmmProxyNodeRegistryPtr xmlIsBaseCharGroup@@LIBXML2_2.6.0 xmlSplitQName@@LIBXML2_2.4.30 xmlFreeNodeList@@LIBXML2_2.4.30 PL_memory_wrap Perl_croak_xs_usage xmlFreeTextReader@@LIBXML2_2.4.30 Perl_croak fwrite@@GLIBC_2.2.5 xmlTextReaderGetParserLineNumber@@LIBXML2_2.6.17 LibXML_read_perl PmmCloneProxyNodes xmlPatterncompile@@LIBXML2_2.6.3 PmmAddNamespace xmlIsBlankNode@@LIBXML2_2.4.30 Perl_safesysfree xmlKeepBlanksDefault@@LIBXML2_2.4.30 Perl_call_pv xmlFree@@LIBXML2_2.4.30 Perl_push_scope xmlFreeNode@@LIBXML2_2.4.30 _edata Perl_newSV_type xmlReconciliateNs@@LIBXML2_2.4.30 xmlTextReaderMoveToFirstAttribute@@LIBXML2_2.5.0 LibXML_close_perl xmlRegexpCompile@@LIBXML2_2.4.30 _domReconcileNs xmlDocDumpFormatMemory@@LIBXML2_2.4.30 xmlGetID@@LIBXML2_2.4.30 xmlXPathNewCString@@LIBXML2_2.4.30 PmmUnregisterProxyNode Perl_savetmps xmlCopyNode@@LIBXML2_2.4.30 domXPathSelectCtxt xmlFreeParserCtxt@@LIBXML2_2.4.30 xmlReplaceNode@@LIBXML2_2.4.30 Perl_sv_derived_from PSaxEndPrefix xmlXPathNewNodeSet@@LIBXML2_2.4.30 xmlTextReaderConstPrefix@@LIBXML2_2.6.0 boot_XML__LibXML domGetElementsByTagName memcpy@@GLIBC_2.14 xmlTextReaderStandalone@@LIBXML2_2.6.15 PSaxStartElement xmlFreePattern@@LIBXML2_2.6.3 Perl_newSVpvn PmmNodeToSv xmlCopyDtd@@LIBXML2_2.4.30 PmmDumpRegistry xmlSearchNs@@LIBXML2_2.4.30 xmlMallocAtomicLoc@@LIBXML2_2.5.9 xmlMemRealloc@@LIBXML2_2.4.30 xmlTextReaderPreservePattern@@LIBXML2_2.6.3 xmlFreeNsList@@LIBXML2_2.4.30 xmlStrncmp@@LIBXML2_2.4.30 xmlAllocParserInputBuffer@@LIBXML2_2.4.30 xmlFreeNs@@LIBXML2_2.4.30 Perl_markstack_grow Perl_sv_setiv_mg xmlBufferAdd@@LIBXML2_2.4.30 Perl_newRV xmlCreateIntSubset@@LIBXML2_2.4.30 PSaxCharactersDispatch xmlFreeParserInputBuffer@@LIBXML2_2.4.30 PmmCloneNode xmlRegisterDefaultOutputCallbacks@@LIBXML2_2.4.30 xmlParseDocument@@LIBXML2_2.4.30 domGetNodeValue xmlNewPI@@LIBXML2_2.4.30 Perl_sv_2pv_flags domSetNodeValue xmlMemFree@@LIBXML2_2.4.30 xmlCopyDoc@@LIBXML2_2.4.30  .symtab .strtab .shstrtab .note.gnu.build-id .gnu.hash .dynsym .dynstr .gnu.version .gnu.version_r .rela.dyn .rela.plt .init .plt.sec .text .fini .rodata .eh_frame_hdr .eh_frame .note.gnu.property .init_array .fini_array .data.rel.ro .dynamic .got .bss .comment .gnu.build.attributes .debug_aranges .debug_info .debug_abbrev .debug_line .debug_str .debug_loc .debug_ranges                                                                               8      8      $                              .   o       `      `                                  8             X      X      H0                          @             7      7      =%                             H   o       \      \                                 U   o       `      `                                 d             hb      hb                                 n      B       0g      0g      x*                          x                                                       s             Б      Б      `                            ~             0      0      P                                                                                              e     e                                                @e     @e     t                                           *     *                                               x9     x9     ~                                                                                                  ؽ&     ؽ                                               &                                                    &                                                     &          P                                        @&     @                                               &           P                                    0                     -                                          Pf     0                                                       @     `                             ,                          9	                            8                     ُ     /                             F                          	                            R     0                    ļ                            ]                     H     IJ                            h                                                                                  0      "                   	                      V     
                                                  Aa     v                             PK     k\|4Ī      LibXML/.packlistnu [        /usr/local/lib64/perl5/XML/LibXML.pm
/usr/local/lib64/perl5/XML/LibXML.pod
/usr/local/lib64/perl5/XML/LibXML/Attr.pod
/usr/local/lib64/perl5/XML/LibXML/AttributeHash.pm
/usr/local/lib64/perl5/XML/LibXML/Boolean.pm
/usr/local/lib64/perl5/XML/LibXML/CDATASection.pod
/usr/local/lib64/perl5/XML/LibXML/Comment.pod
/usr/local/lib64/perl5/XML/LibXML/Common.pm
/usr/local/lib64/perl5/XML/LibXML/Common.pod
/usr/local/lib64/perl5/XML/LibXML/DOM.pod
/usr/local/lib64/perl5/XML/LibXML/Devel.pm
/usr/local/lib64/perl5/XML/LibXML/Document.pod
/usr/local/lib64/perl5/XML/LibXML/DocumentFragment.pod
/usr/local/lib64/perl5/XML/LibXML/Dtd.pod
/usr/local/lib64/perl5/XML/LibXML/Element.pod
/usr/local/lib64/perl5/XML/LibXML/ErrNo.pm
/usr/local/lib64/perl5/XML/LibXML/ErrNo.pod
/usr/local/lib64/perl5/XML/LibXML/Error.pm
/usr/local/lib64/perl5/XML/LibXML/Error.pod
/usr/local/lib64/perl5/XML/LibXML/InputCallback.pod
/usr/local/lib64/perl5/XML/LibXML/Literal.pm
/usr/local/lib64/perl5/XML/LibXML/Namespace.pod
/usr/local/lib64/perl5/XML/LibXML/Node.pod
/usr/local/lib64/perl5/XML/LibXML/NodeList.pm
/usr/local/lib64/perl5/XML/LibXML/Number.pm
/usr/local/lib64/perl5/XML/LibXML/PI.pod
/usr/local/lib64/perl5/XML/LibXML/Parser.pod
/usr/local/lib64/perl5/XML/LibXML/Pattern.pod
/usr/local/lib64/perl5/XML/LibXML/Reader.pm
/usr/local/lib64/perl5/XML/LibXML/Reader.pod
/usr/local/lib64/perl5/XML/LibXML/RegExp.pod
/usr/local/lib64/perl5/XML/LibXML/RelaxNG.pod
/usr/local/lib64/perl5/XML/LibXML/SAX.pm
/usr/local/lib64/perl5/XML/LibXML/SAX.pod
/usr/local/lib64/perl5/XML/LibXML/SAX/Builder.pm
/usr/local/lib64/perl5/XML/LibXML/SAX/Builder.pod
/usr/local/lib64/perl5/XML/LibXML/SAX/Generator.pm
/usr/local/lib64/perl5/XML/LibXML/SAX/Parser.pm
/usr/local/lib64/perl5/XML/LibXML/Schema.pod
/usr/local/lib64/perl5/XML/LibXML/Text.pod
/usr/local/lib64/perl5/XML/LibXML/XPathContext.pm
/usr/local/lib64/perl5/XML/LibXML/XPathContext.pod
/usr/local/lib64/perl5/XML/LibXML/XPathExpression.pod
/usr/local/lib64/perl5/auto/XML/LibXML/LibXML.so
/usr/local/share/man/man3/XML::LibXML.3pm
/usr/local/share/man/man3/XML::LibXML::Attr.3pm
/usr/local/share/man/man3/XML::LibXML::AttributeHash.3pm
/usr/local/share/man/man3/XML::LibXML::Boolean.3pm
/usr/local/share/man/man3/XML::LibXML::CDATASection.3pm
/usr/local/share/man/man3/XML::LibXML::Comment.3pm
/usr/local/share/man/man3/XML::LibXML::Common.3pm
/usr/local/share/man/man3/XML::LibXML::DOM.3pm
/usr/local/share/man/man3/XML::LibXML::Devel.3pm
/usr/local/share/man/man3/XML::LibXML::Document.3pm
/usr/local/share/man/man3/XML::LibXML::DocumentFragment.3pm
/usr/local/share/man/man3/XML::LibXML::Dtd.3pm
/usr/local/share/man/man3/XML::LibXML::Element.3pm
/usr/local/share/man/man3/XML::LibXML::ErrNo.3pm
/usr/local/share/man/man3/XML::LibXML::Error.3pm
/usr/local/share/man/man3/XML::LibXML::InputCallback.3pm
/usr/local/share/man/man3/XML::LibXML::Literal.3pm
/usr/local/share/man/man3/XML::LibXML::Namespace.3pm
/usr/local/share/man/man3/XML::LibXML::Node.3pm
/usr/local/share/man/man3/XML::LibXML::NodeList.3pm
/usr/local/share/man/man3/XML::LibXML::Number.3pm
/usr/local/share/man/man3/XML::LibXML::PI.3pm
/usr/local/share/man/man3/XML::LibXML::Parser.3pm
/usr/local/share/man/man3/XML::LibXML::Pattern.3pm
/usr/local/share/man/man3/XML::LibXML::Reader.3pm
/usr/local/share/man/man3/XML::LibXML::RegExp.3pm
/usr/local/share/man/man3/XML::LibXML::RelaxNG.3pm
/usr/local/share/man/man3/XML::LibXML::SAX.3pm
/usr/local/share/man/man3/XML::LibXML::SAX::Builder.3pm
/usr/local/share/man/man3/XML::LibXML::SAX::Generator.3pm
/usr/local/share/man/man3/XML::LibXML::Schema.3pm
/usr/local/share/man/man3/XML::LibXML::Text.3pm
/usr/local/share/man/man3/XML::LibXML::XPathContext.3pm
/usr/local/share/man/man3/XML::LibXML::XPathExpression.3pm
PK     k\y      Parser/.packlistnu [        /usr/local/lib64/perl5/XML/Parser.pm
/usr/local/lib64/perl5/XML/Parser/Encodings/Japanese_Encodings.msg
/usr/local/lib64/perl5/XML/Parser/Encodings/README
/usr/local/lib64/perl5/XML/Parser/Encodings/big5.enc
/usr/local/lib64/perl5/XML/Parser/Encodings/euc-kr.enc
/usr/local/lib64/perl5/XML/Parser/Encodings/ibm866.enc
/usr/local/lib64/perl5/XML/Parser/Encodings/iso-8859-15.enc
/usr/local/lib64/perl5/XML/Parser/Encodings/iso-8859-2.enc
/usr/local/lib64/perl5/XML/Parser/Encodings/iso-8859-3.enc
/usr/local/lib64/perl5/XML/Parser/Encodings/iso-8859-4.enc
/usr/local/lib64/perl5/XML/Parser/Encodings/iso-8859-5.enc
/usr/local/lib64/perl5/XML/Parser/Encodings/iso-8859-7.enc
/usr/local/lib64/perl5/XML/Parser/Encodings/iso-8859-8.enc
/usr/local/lib64/perl5/XML/Parser/Encodings/iso-8859-9.enc
/usr/local/lib64/perl5/XML/Parser/Encodings/koi8-r.enc
/usr/local/lib64/perl5/XML/Parser/Encodings/windows-1250.enc
/usr/local/lib64/perl5/XML/Parser/Encodings/windows-1251.enc
/usr/local/lib64/perl5/XML/Parser/Encodings/windows-1252.enc
/usr/local/lib64/perl5/XML/Parser/Encodings/windows-1255.enc
/usr/local/lib64/perl5/XML/Parser/Encodings/x-euc-jp-jisx0221.enc
/usr/local/lib64/perl5/XML/Parser/Encodings/x-euc-jp-unicode.enc
/usr/local/lib64/perl5/XML/Parser/Encodings/x-sjis-cp932.enc
/usr/local/lib64/perl5/XML/Parser/Encodings/x-sjis-jdk117.enc
/usr/local/lib64/perl5/XML/Parser/Encodings/x-sjis-jisx0221.enc
/usr/local/lib64/perl5/XML/Parser/Encodings/x-sjis-unicode.enc
/usr/local/lib64/perl5/XML/Parser/Expat.pm
/usr/local/lib64/perl5/XML/Parser/LWPExternEnt.pl
/usr/local/lib64/perl5/XML/Parser/Style/Debug.pm
/usr/local/lib64/perl5/XML/Parser/Style/Objects.pm
/usr/local/lib64/perl5/XML/Parser/Style/Stream.pm
/usr/local/lib64/perl5/XML/Parser/Style/Subs.pm
/usr/local/lib64/perl5/XML/Parser/Style/Tree.pm
/usr/local/lib64/perl5/auto/XML/Parser/Expat/Expat.so
/usr/local/share/man/man3/XML::Parser.3pm
/usr/local/share/man/man3/XML::Parser::Expat.3pm
/usr/local/share/man/man3/XML::Parser::Style::Debug.3pm
/usr/local/share/man/man3/XML::Parser::Style::Objects.3pm
/usr/local/share/man/man3/XML::Parser::Style::Stream.3pm
/usr/local/share/man/man3/XML::Parser::Style::Subs.3pm
/usr/local/share/man/man3/XML::Parser::Style::Tree.3pm
PK     k\J_    Parser/Expat/Expat.sonu 7m        ELF          >    p-      @       x         @ 8 	 @ % $                                8      8                   0:     0:!     0:!                               :     :!     :!                              8      8      8      $       $                     8      8      8                            Std    8      8      8                            Ptd                                     Qtd                                                  Rtd   0:     0:!     0:!                                 GNU C@i`k,
?Xi2       h         @2   h   j       BE|T$19qX                            \                     }                     X                                           C                                          %                                           &                                                               v                                                                  '                     U                     n                                                               j                     /                     P                                                                                                                                                                                             r                                                               <                                           e                                           Q                                                                G                                                                                                                                                   j                                                                                      _                                           z                     f                                          7                                                                                    C                     "                                          p                      v                     L                     U                                          l                                                               D                                          A                                                               8                                                                                                                                                                        *                                          ~                                                                                    >                     j                     ,                                                                 \                     
                                          F   "                                                              0                                              (@!                 8@!                      _      	    (@!              __gmon_start__ _ITM_deregisterTMCloneTable _ITM_registerTMCloneTable __cxa_finalize libpthread.so.0 PL_thr_key pthread_getspecific Perl_sv_2iv_flags Perl_sv_newmortal Perl_sv_setiv_mg Perl_croak_xs_usage XML_GetErrorCode XML_GetCurrentByteIndex XML_GetCurrentColumnNumber XML_GetCurrentLineNumber Perl_hv_common_key_len XML_ErrorString Perl_sv_catpvf_nocontext Perl_push_scope Perl_savetmps Perl_call_method Perl_pop_scope Perl_sv_catsv_flags Perl_free_tmps Perl_stack_grow Perl_markstack_grow XML_Parse Perl_sv_2pv_flags __stack_chk_fail XML_SetCharacterDataHandler XML_SetProcessingInstructionHandler XML_SetCommentHandler XML_SetCdataSectionHandler XML_SetUnparsedEntityDeclHandler XML_SetNotationDeclHandler XML_SetExternalEntityRefHandler Perl_sv_2bool_flags Perl_sv_2uv_flags XML_SetElementHandler XML_SetUnknownEncodingHandler XML_SetNamespaceDeclHandler Perl_newSVsv Perl_sv_setsv_flags Perl_sv_2mortal XML_SetEndCdataSectionHandler Perl_call_sv XML_SetStartCdataSectionHandler XML_GetInputContext Perl_newSVpvn Perl_newSViv XML_GetCurrentByteCount Perl_newSVpv Perl_sv_derived_from Perl_safesysfree Perl_croak_nocontext Perl_safesysmalloc Perl_sv_setref_pv Perl_get_hv Perl_sv_setpv XML_GetSpecifiedAttributeCount Perl_newSV Perl_sv_setpvn XML_SetDefaultHandler XML_SetDefaultHandlerExpand XML_DefaultCurrent Perl_sv_catpvn_flags strchr Perl_av_push Perl_av_len Perl_sv_setiv XML_GetBase XML_SetBase XML_SetXmlDeclHandler XML_SetEndDoctypeDeclHandler XML_SetStartDoctypeDeclHandler XML_SetAttlistDeclHandler Perl_sv_catpv XML_SetElementDeclHandler Perl_newSV_type Perl_newRV_noinc Perl_gv_stashpv Perl_sv_bless XML_SetEntityDeclHandler XML_ExternalEntityParserCreate Perl_call_pv XML_ParserFree Perl_gv_add_by_type memcpy Perl_safesyscalloc XML_ParserCreate_MM XML_SetUserData XML_SetParamEntityParsing strlen Perl_safesysrealloc Perl_av_clear Perl_sv_free2 Perl_av_pop XML_GetBuffer XML_ParseBuffer strncmp Perl_newRV boot_XML__Parser__Expat Perl_xs_handshake Perl_newXS_deffile Perl_xs_boot_epilog libexpat.so.1 libperl.so.5.26 libc.so.6 _edata __bss_start _end GLIBC_2.2.5 GLIBC_2.14 GLIBC_2.4                                                                                                                     U          ui	                       &     ii   1     ui	         0:!             .      8:!            -      @:!            @:!     `:!            g     h:!                 p:!                 x:!                 @!            @      @!                   @!            0      ?!                   ?!        $           ?!        3           ?!        ]           ?!        c           <!                   <!                   <!                   <!                   <!                   <!                   <!                   <!                   <!        	           <!        
           <!                    =!                   =!                   =!                   =!                    =!                   (=!                   0=!                   8=!                   @=!                   H=!                   P=!                   X=!                   `=!                   h=!                   p=!                   x=!                   =!                   =!                   =!                   =!                    =!        !           =!        "           =!        #           =!        %           =!        &           =!        '           =!        (           =!        )           =!        *           =!        +           =!        ,           =!        -            >!        .           >!        /           >!        0           >!        1            >!        2           (>!        4           0>!        5           8>!        6           @>!        7           H>!        8           P>!        9           X>!        :           `>!        ;           h>!        <           p>!        =           x>!        >           >!        ?           >!        @           >!        A           >!        B           >!        C           >!        D           >!        E           >!        F           >!        G           >!        H           >!        I           >!        J           >!        K           >!        L           >!        M           >!        N            ?!        O           ?!        P           ?!        Q           ?!        R            ?!        S           (?!        T           0?!        U           8?!        V           @?!        W           H?!        X           P?!        Y           X?!        Z           `?!        [           h?!        \           p?!        ^           x?!        _           ?!        `           ?!        a           ?!        b           ?!        c           ?!        d           ?!        e           ?!        f           ?!        g           HH! HtH     5! %!  h    h   h   h   h   h   h   h   qh   ah	   Qh
   Ah   1h   !h   h   h   h   h   h   h   h   h   h   h   qh   ah   Qh   Ah   1h   !h   h   h   h    h!   h"   h#   h$   h%   h&   h'   qh(   ah)   Qh*   Ah+   1h,   !h-   h.   h/   h0   h1   h2   h3   h4   h5   h6   h7   qh8   ah9   Qh:   Ah;   1h<   !h=   h>   h?   h@   hA   hB   hC   hD   hE   hF   hG   qhH   ahI   QhJ   AhK   1hL   !hM   hN   hO   hP   hQ   hR   hS   hT   hU   hV   hW   qhX   ahY   QhZ   Ah[   1h\   !h]   h^   h_   h`   ha   hb   %]! D  %U! D  %M! D  %E! D  %=! D  %5! D  %-! D  %%! D  %! D  %! D  %! D  %! D  %! D  %! D  %! D  %! D  %! D  %! D  %! D  %! D  %! D  %! D  %! D  %! D  %! D  %! D  %! D  %! D  %}! D  %u! D  %m! D  %e! D  %]! D  %U! D  %M! D  %E! D  %=! D  %5! D  %-! D  %%! D  %! D  %! D  %! D  %! D  %! D  %! D  %! D  %! D  %! D  %! D  %! D  %! D  %! D  %! D  %! D  %! D  %! D  %! D  %! D  %! D  %}! D  %u! D  %m! D  %e! D  %]! D  %U! D  %M! D  %E! D  %=! D  %5! D  %-! D  %%! D  %! D  %! D  %! D  %! D  %! D  %! D  %! D  %! D  %! D  %! D  %! D  %! D  %! D  %! D  %! D  %! D  %! D  %! D  %! D  %! D  %}! D  %u! D  %m! D  %e! D  %]! D  %U! D  %M! D  H=! H! H9tH6! Ht	        H=! H5z! H)HHH?HHtH! HtfD      ==!  u+UH=!  HtH=>! d! ]     w    SL  LV1A   HHHI)Ax?St9~3DʃTt(CH  HDHBI9u[@ T$tKH  [DHcH AWAVAUIATUSHH! ;;H(;HPxHJHHxLc2H@JH)Hg  ;EfMcN,    ;H@J@%   =      ;H@J,   HHIċ;t;H@@#   _HHI$;P4H@@Lc$>;H@Nt(E%A      E   M   LeIn;;HhLH(H[]A\A]A^A_ ;HhH@H@Hl ZfD  H@JH L`     ;LHHpH5  Lff.     @ AWAVAUIATUSHH! ;-;H(#;HPxHJHHxLc2H@JH)Hg  ;EfMcN,    ;H@J@%   =      ;H@J,   HHIċ;;H@@#   HHL;Lcb;H@Nt(E%AC      E   M   LeIn;;HhLH(H[]A\A]A^A_    ;HhH@H@Hl ZfD  H@JH L`     ;LHHlH5  Lff.     @ AWAVAUIATUSHH! ;M;H(C;HPxHJHHxLc2-H@JH)Hg  ;EfIcL$    ;H@H@%   =      ;H@H,   HH.Iŋ;;H@@#   HHL;I;H@Nl E%Ac      E   M   LuIm;7;Hh,LH(H[]A\A]A^A_    ;Hh H@H@Hl ZfD  H@HH Lh     ;LHHlH5  Lff.     @ AWAVAUIATUSHH<! ;m;H(c;HPxHJHHxLc2MH@JH)Hg  ;EfMc'N,    ;H@J@%   =      ;H@J,   HHNIċ;;H@@#   HHL,;I;McH@Nt(E%A      E   M   LeIn;T;HhILH(H[]A\A]A^A_@ +;Hh H@H@Hl ZfD  H@JH L`     ;LHH#oH5  Lff.     @ AWAVAUIATUSHH\	! ;;H(;HPxHJHHxLc2mH@JH)Hg  ;EfMcGN,    ;H@J@%   =      ;H@J,   HHnIċ;;H@@#   HHL\;I;McH@Nt(E%A      E   M   LeIn;t;HhiLH(H[]A\A]A^A_@ K;Hh@H@H@Hl ZfD  #H@JH L`     ;LHHCoH5  L/ff.     @ AWAVIAUATIUSH(H}! ;M,$;L8IE HhHE1A    j    HHH  AZA[HtHH @uH([]A\A]A^A_fD  IE ;HpHt$4HE1A    j Ht$   HHU  \AXAYIMu@Ht;H @   <   % =
  txLiI	@ MtLLI(LH-HMIH  LH5R  QH} H1^_H([]A\A]A^A_fLLT$LHD$?LILHD$HMH~  RLD$H5  HHT$ H} 1i;ZYH;H9;;HHxLaL`xLT$L;   U  ;LT$LH+HHHA$;LT$H@ L)H<  IE ;LT$MgIG[LT$H@ L)H   I;II$4L ;*   H5o  Hf;AL ED;L ;;HhPH;hXR;H([H]A\A]A^A_eD  ;Ml$Hm M$$   HLHMV@ ;H띋;xLL   HELT$I;LT$LHLT$I;0LL   HLT$IAWAVAUIATUSHH! ;;H(;HPxHJHHxLc2H@JH)H  ;EfIcL$    ;H@H@%   =     };H@H,n   HHIƋ;T;H@@#   ?HgHŹ   1H5  L>LcE   ;U;H@Nt A      E   M   LmIn;;HhLH(H[]A\A]A^A_    ;HhH@H@Hl BfD  kH@HH Lp     1Lv/;9LHH{\H5O  Lg    AWAVIAUATUSHH! dH%(   HD$1;;L ;HPxHJHHx*HcH@HI)IA  ;DmMcN$    ;H@J@%   =     j;H@N,[   LHIŋ;Hc;;H@L4,;H@@#   H?HAF%   =      IIvHPH$1LLcE  ;U;H@Nl A      E   M   LuIm;;HhuIL HD$dH3%(      H[]A\A]A^A_@ C;Hh8H@H@Hl AF%   =   ;HL   HH$HH@JH Lh     1L;LHHH5  LfAWAVIAUATUSHH<  dH%(   HD$1;];L S;HPxHJHHx*>HcH@HI)IA  ;DmMcN$    ;H@J@%   =     ;H@N,   LH;Iŋ;Hc;H@L4;H@@#   HHAF%   =      IIvHPH$L   |;LcRE	  ;BU;H@Nl A"      E   M   LuIm;;HhIL HD$dH3%(      H[]A\A]A^A_f;HhH@H@Hl AF%   =   ;HL   HUH$H f     [H@JH Lh     1Lf;)LHHkH5w  LW2fUSHHH   Ht;E        <   
         H   Ht4E        <   
    H   Ht4E        <   
    H   Ht3E    ~    <   
    H   HtEE      F  e  HE HtH@H  H  D  H   Ht4E        <   
  q  H   Ht4E        <}   
  i  H   Ht3E      }  <u   
  a  H[]f.       HE H
H@H  H{11@   HE HH@HD  H{19@   HE HH@H  H{1q@    HE H!H@H  H{11Rf  HE HzH@H  H{1\@ '  HE HH@H  H{19d@ tsHE HH@HP  H{H1[]    o  f  <HE ff.@(#        HE ff.@(zo    O    =HE ff.@(&$    O  v  MHE ff.@(4      ~  HE ff.@(      V  =HE ff.@(.$#      .  MHE ff.@(4    < 
        tHU Hz  ?HE ff.@(#@ HU Hz  @ HU Hz  ]v@ HU Hz  e@ HU Hz  @ HU Hz  mn@ HU Hz  @ HU Hz  @ HvHE80VdD  HHE80D  HHE80D  H&HE80D  H7HE80.%D  HgHE80UD  HHE80uD  HQ  81HHi     H!  8R1HH     H  8"1HHt     H  81HHu}     H  81HHE     Ha  81HHM<     H1  8b1HH     H  821HHH[]fD  H  8   HHD  H  8   HHZpD  H  8   HH2D  HY  8   HA  8r   HHxD  H  8J   HH D  H  8"   HHD  H  8   pHE80>ff.      AVIAUATUSH  ;;L ;HPxHJHHx*HcH@HI)IA	  ;DmMcjN$    ;H@J@%   =      @;H@N,1   LHIŋ;Hc;H@H@%  =  tX;H@H,   HHI} 9G0s"GH;;HhJT%H[]A\A]A^H@HH @  H@JH Lh QH5  LAVAUIATUSH  ;C;H(9;HPxHJHHxLc2#H@JH)H   ;EfIcL$    ;H@H@%   =   t|;H@H,   HH(HLm LAEhubH1111H*;;HhxJT%H[]A\A]A^    [H@HH Hh f.     I}11H5Z  LrfAWAVIAUATUSHH  ;;L(;HPxHJHHx*HcH@HI)IA  ;DeMcJ    ;H@HL$J@%   =     ;H@N4v   LHIƋ;HcVM.;H@L<I   H   4HHiM   ;HM   M9t
   LLHG;H@J,;;H8  H9tEu-;HhLl$IL(H[]A\A]A^A_ HH;@ H@JH Lp     cM   ;H8  M6ELHz;I   7H5  Lmff.     fAWAVIAUATUSHH  ;;L(;HPxHJHHx*HcH@HI)IA  ;DeMcJ    ;H@H$J@%   =     v;H@N,g   LHIŋ;HcGMu ;H@M   H,My  $LHYI   IHr  H9t&;Ht$Ht$   HH0Ht'E      ux<tt 
  td1Lj;H@N<;;H8  I9tAG  v;HhkL4$IL0H[]A\A]A^A_ft;HE HtH@H57p  H{HpHE80e^f      AHE ff.@(z,H5o  "@ H@JH Lh c    I   L8  H;HHI   fD  kLH;f     HU H5Eo  Hz  7D  ;)1HHH5o  [T     ;   HHyH5s  L(     AWAVIAUATUSHH|  ;;L(;HPxHJHHx*HcH@HI)IA  ;DeMcdJ    ;H@H$J@%   =     6;H@N,'   LHIŋ;HcMu ;H@M   H,My  LHI   IHr  H9t&;Ht$Ht$   HHHt'E      ux<tt 
  td1L;cH@N<;T;H8  I9tAG  6;Hh+L4$IL0H[]A\A]A^A_ft;HE HtH@H5&  H{HpHE80e^f      AHE ff.@(z,H5i&  "@ H@JH Lh c    kI   L8  H;MHHI   fD  +LH;f     HU H5%  Hz  7D  ;1HHlH5%  [T     ;   HH9H5E  L     AWAVIAUATUSHH<  ;m;L(c;HPxHJHHx*NHcH@HI)IA  ;DeMc$J    ;H@H$J@%   =     ;H@N,   LHGIŋ;HcMu ;H@M   H,My  LHI   IHr  H9t&;Ht$uHt$   HHHt'E      ux<tt 
  td1L*;#H@N<;;H8  I9tAG  ;HhL4$IL0H[]A\A]A^A_ft;HE HtH@H5G'  H{HpHE80e^f      AHE ff.@(z,H5&  "@ KH@JH Lh c    +I   L8  H;HHBI   fD  LH@;f     HU H5U&  Hz  7D  ;1HH,H5%&  [T     ;y   HHH5  L     AWAVIAUATUSHH  ;-;L(#;HPxHJHHx*HcH@HI)IA  ;DeMcJ    ;H@H$J@%   =     ;H@N,   LHIŋ;HcMu ;H@M   H,My  dLHI   IHr  H9t&;Ht$5Ht$   HHpHt'E      ux<tt 
  td1L*;H@N<;;H8  I9tAG  ;HhL4$IL0H[]A\A]A^A_ft;HE HtH@H5w&  H{HpHE80e^f      AHE ff.@(z,H5&  "@ H@JH Lh c    I   L8  H;HHI   fD  LH ;f     HU H5%  Hz  7D  ;i1HHH5U%  [T     ;9   HHH5  Lh     AWAVIAUATUSHH  ;;L(;HPxHJHHx*HcH@HI)IA  ;DeMcJ    ;H@H$J@%   =     v;H@N,g   LHIŋ;HcGMu ;H@M   H,My  $LHYI   IHr  H9t&;Ht$Ht$   HH0Ht'E      ux<tt 
  td1Lz;H@N<;;H8  I9tAG  v;HhkL4$IL0H[]A\A]A^A_ft;HE HtH@H5$  H{HpHE80e^f      AHE ff.@(z,H5Y$  "@ H@JH Lh c    I   L8  H;HHI   fD  kLH;f     HU H5#  Hz  7D  ;)1HHH5#  [T     ;   HHyH5  L(     AWAVIAUATUSHH|  ;;L(;HPxHJHHx*HcH@HI)IA  ;DeMcdJ    ;H@H$J@%   =     6;H@N,'   LHIŋ;HcMu ;H@M   H,My  LHI   IHr  H9t&;Ht$Ht$   HHHt'E      ux<tt 
  td1L;cH@N<;T;H8  I9tAG  6;Hh+L4$IL0H[]A\A]A^A_ft;HE HtH@H55  H{HpHE80e^f      AHE ff.@(z,H5I5  "@ H@JH Lh c    kI   L8  H;MHHI   fD  +LH;f     HU H54  Hz  7D  ;1HHlH54  [T     ;   HH9H5  L     AWAVIAUATUSHH<  ;m;L(c;HPxHJHHx*NHcH@HI)IA  ;DeMc$J    ;H@HL$J@%   =     ;H@N4   LHFIƋ;HcM.;H@L<ImxH   HHMux;HM   M9t   LLH;fH@J,;W;H8  H9tEu3>;Hh3Ll$IL(H[]A\A]A^A_f     HH`;@ H@JH Lp     Mux;H8  M3LH;IEx7H5  L AWAVIAUATUSHH<  ;m;L(c;HPxHJHHx*NHcH@HI)IA  ;DeMc$J    ;H@HL$J@%   =     ;H@N4   LHFIƋ;HcM.;H@L<ImpH   HHMup;HM   M9t   LLH;fH@J,;W;H8  H9tEu3>;Hh3Ll$IL(H[]A\A]A^A_f     HH`;@ H@JH Lp     Mup;H8  M3LH;IEp7H5  L AWAVIAUATUSHH<  ;m;L(c;HPxHJHHx*NHcH@HI)IA  ;DeMc$J    ;H@H$J@%   =     ;H@N,   LHGIŋ;HcMu ;H@M   H,My  LHٿI   IHr  H9t&;Ht$uHt$   HHHt'E      ux<tt 
  td1Lڿ;#H@N<;;H8  I9tAG  ;HhL4$IL0H[]A\A]A^A_ft;HE HtH@H5g  H{HpHE80e^f      AHE ff.@(z,H5	  "@ KH@JH Lh c    +I   L8  H;HHBI   fD  LH@;f     HU H5u   Hz  7D  ;詾1HH,H5E   [T     ;y   HHH5{  L訽     AUIATUSHH   ;1I       ;H(Hѿ;
Hb;;HPxLbL`xL;      ;ԽHH+HHHA$;軽H@ H)H   IE ;HHE 蘽H(;I   臽H   H;p;HhPeH;hX/;XH[H]A\A]fD  H[]A\A]D  ;)HQ    ;HII&;HH   HƹH3ff.      AUIATUSHH  ;豼I       ;H(虼HQ;芼H;{;HPxLbL`xhL;      ;THH+HHHA$;;H@ H)H   IE ;HHE H(;I   H   H藽;;HhPH;hX/;ػH[H]A\A]ffD  H[]A\A]D  ;詻HѼ    ;葻HɼI&;yHH   HFH3ff.      AUIATUSHH   ;1;H('H߼;Hp;	;HPxLbL`xL;      ;HH+HHHA$;ɺH@ H)H   IE ;HHE 覺H(;I   蕺H   H%;~;HhPsH;hX;fH[H]A\A]@ ;IHq    ;1HH   HH]fD  ;	HAIf     AWAVIAUATUSHH  ;͹;L(ù;HPxHJHHx*讹HcH@HI)IA  ;DeMc脹J    ;H@H$J@%   =     V;H@N,G   LH觵Iŋ;Hc'Mu ;H@M   H,My  LH9I   IHr  H9t&;Ht$ոHt$   HHHt'E      ux<tt 
  td1L誹;胸H@N<;t;H8  I9tAG  V;HhKL4$IL0H[]A\A]A^A_ft;HE HtH@H5GH{HpHE80e^f      AHE ff.@(z,H5"@ 諷H@JH Lh c    苷I   L8  H;mHH袶I   fD  KLH蠷;f     HU H5UHz  7D  ;	1HH茳H5%[T     ;ٶ   HHYH5  L     AVIAUATUSHH-^  dH%(   HD$1} ~} L s} HPxHJHHx]HcLH@HH)HHd  } DkIMc)} H@J@%   =     } H@N,   LHVIŋ} Hcյ} H@H؋@%   =     貵} H@H袵   HHHT$HLH  Lc,$LIr%1    IMH9wIA} 
u9}IHcL$HcHHH9C  1E1
HH9t:
uHL)DD9}HJL)EDDˋ} H@ L)H   } IǴHcLHɶ} H讴HH} ID$薴IcH[} H耴HHմ} I$iL HD$dH3%(      H[]A\A]A^D  ;H@JH Lh D    H@HH X x}  LL   HͰIL)A։H5  L@ AVAUIATUSHHn  dH%(   HD$1;菳;L 腳;HPxHJHHxLc2oH@JI)IA>  ;AnHcHL,    ;H@H@%   =      ;H@L$   LHoIHT$HL,IH   LشHc4$;AIǲLIcHɴIċ;诲LH;I蚲H@L$;苲;Hh耲LH(HD$dH3%(   uaH[]A\A]A^D  SH@HH Lp C    ;11H5  H IbH5A  LY4@ UHSHHH  8HHH踱H    H[]f.     AWIAVAUAATIUSHHf  HT$;蒱;H(舱H@;yHѰ;j;HPxLrLpxWL;     ;CHH+HHHA;+H@ H)HZ  I$HEM1  1L;ILHJH|$HEH   1;IǰLH;HEA   Euw袰HP  HE ;H 荰H(;I$   {H   H;d;HhPYH;hX3;LH[H]A\A]A^A_֭fD  +Hh   ;HA    ;;H8  HEA?H8  ? ;ѯH8  fD  ;蹯HH   H膬HfD  ;葯HɰI7AWAVIAUIATIUSHH&  H4$;DD$N;H(DH;5H荮;&;HPxLzLxxL;     ;HH+HHHA;H@ H)H ^  I$H<$1HE;H$踮H4$HHEM  1L;I苮LHHEM   1Li;I_LH贮HE D$;tvAHh  HE(;H(,H(;I$   H   H誯;;HhPH;hX2;H[H]A\A]A^A_uD  ˭HP   ;蹭H    ;衭H8  BfD  ;艭H8  fD  ;qHH   H>HfD  ;IH聮I3f     AWMAVIAUIATUSHH  H$;Ht$;H(;HPxLbL`xL;     ;ͬHH+HHHA$;贬H@ H)Hl  IE ;LeHE葬H@ L)Hq  H|$1Il$p;HD$dHt$H跬H<$ ;ID$  @H@ H)H  H<$1Le!;H$H4$HjHE;M  H@ L)H  1LMt$;HͫHH"ID$Mtx;豫H@ L)H   1LIn;I艫LHޫ;IFsH(;I   bHH   [H]A\A]A^A_@ ;Lf     LL	t#H@ H)Hk  ;LeH8  HE;MMd  H@ L)H  ;Mt$ɪH8  ID$f     ;詪LL   HvIfD  ;聪HH   HNH6fD  ;YLL   H&IXfD  ;1HH   HHrfD  ;	LL   H֦ImfD  ;HI;ɩLL   H薦IfD  ;衩HH   HnHsLff.      AWAVIAUMATIUSH(H  Ht$;HL$LL$8;H(.H;Hw;;HPxLzLxxL;     ;HH+HHHA;ѨH@ H)H(  I$H|$1HE;I袨LHHEM2  1L;IvLH˨HEH|$1[;IQLH覨HE M   1L/;I%LHzHE(H|$1H0;ILHQ;HE H(;I$   ԧH   Hd;轧;HhP貧H;hX    ;衧H([H]A\A]A^A_+ ;聧H詨    ;iH8  DfD  ;QH8  fD  ;9HH   HH^fD  ;HIIAVIAUIATUSH  ;;H(֦H莨;ǦH;踦;HPxLbL`x襦L;      ;葦HH+HHHA$;xH@ H)H   IE 1LHHEQ;IGLH蜦;HE 1H(;I    H   H谧;	;HhPH;hX;[]HA\A]A^遣;٥H    ;HH   H莢H?fD  ;虥HѦIf     AWIAVIAUIATUSHH&  ;W;H(MH;>H薤;/;HPxLbL`xL;   '  ;HH+HHHA$;H@ H)H   IE 1LHHE;I辤LH1LHE;I蛤LH;HE 腤H(;I   tH   H;];HhPRH;hX    ;AH[H]A\A]A^A_ˡ ;!HI    ;	HH   H֠HfD  ;HIAVIAUIATUSH  ;谣;H(覣H^;藣H;舣;HPxLbL`xuL;     ;aHH+HHHA$;HH@ H)H   IHEM   1L;ILHhHE;HH(;   H50  H+;Ԣ;HhPɢH;hX;輢[]HA\A]A^L@ ;衢Hɣ    ;艢H8  vfD  ;qHH   H>HfD  ;IH聣If     AWIAVIAUIATUSHHֶ  ;;H(H赣;HF;ߡ;HPxLbL`x̡L;   _  ;踡HH+HHHA$;蟡H@ H)H  IHEM   1Lt;IjLH迡HEM   1LH;I>LH蓡HE;H$H(;   H5h  HV;;HhPH;hX;H[H]A\A]A^A_q;ɠH    ;豠H8  sfD  ;虠H8  /fD  ;聠HH   HNHfD  ;YH葡If     AVAUIATUSH  ;#;L ;HPxHJHHxLc2H@JI)IA  ;AnHcܟ;L$    H@L,şH+  LH#   ;褟;H@HH@@%   =   tw肟;H@HHho   HHϛHH  ПH  ğH輟;5;Hh*JT%H[]A\A]A^f     H@HH@H Hh H=  1H5J  L)f     G    ǝ    AWAVIAUATUSH8H-\  } 茞} H聞} HPxHJHHxD*jIcH@HH)H5  } EeMc@N4    } H@J@%   =     } H@J   1HHӜHË} AMc} H@J@%   =   +  辝} H@N,讝   LH} =/  v;t\臝L8  } xLH͝} HbH@J} R} HXFIL0H8[]A\A]A^A_ÐDK,DC.HfAfAEALHLHQ  HH9hC  A   fPw BD+EI(  IBD+uMcHCDL$(DD$ HL$L\$HD$萜LHsH葞  I脛DL$(DD$ HL$L\$HfDfD@1ft0ΉtHH=   uLDL$,HDD$(LHT$HHL$ HHt$HT$HL$ H  H<	DL$,HT$1Ht$DD$(fEH  EH4  tk LcσHDLHLL  IDHD	DHDIDHfAfDIo@AoHIoPQ$oXY4D9uA1L3fEt+     HcL  Aq0  ffAp9u݋} HT$1H֜} HHT$HHHHS  1H5
  Htk} Ht$ȚHIDj HT$A$   HHt$ XZD  蓚H@JH @ {H@JHXz} bH5{  1H豜HHw  HiH=  1`A(   sE1E1hH5  L[ff.     AWAVAUIATUSHH  ;ݙ;L ә;HPxHJHHxLc2轙H@JI)IA-  ;AnHc薙L$    ;H@H@%   =      l;H@L,]   LH轕Aŋ;C;H@@#   .HVD辙;I;I
LLp.MI;;H@H,LHH4;͘;HhLH(H[]A\A]A^A_D  裘;蜘q    苘H@HH Dh -H5  L踗     AWAVAUIATUSHH  ;=;H(3;HPxHJHHxLc2H@JH)Hg  ;EfMcN,    ;H@J@%   =      ͗;H@J,辗   HHIċ;褗;H@@#   菗H跙HL|;Lcr;H@Nt(E%AS      E   M   LeIn;';HhLH(H[]A\A]A^A_    ;HhH@H@Hl ZfD  ӖH@JH L`     ;豖LHHlH5|  Lߕff.     @ AUIATIUSHH-1  } a1H7} HLLLHH蛗K    HH[]A\A]fD  AWIAVIAUAATUSHHƪ  ;;H(H襗;ޕH6;ϕ;HPxLbL`x輕L;      ;訕HH+HHHA$;菕H@ H)H   IIcLHHE;I^LH賕;HE HH(;I   7H   Hǖ; ;HhPH;hX;H[H]A\A]A^A_钒f;H    ;єHH   H螑H8fD  ;詔HIf     AWIAVAUATIUSH(H9  HD$hLt$`T$;H4$HD$HD$pDD$HD$D;H(:H;+H胓;;HPxLjLhx	L;   <  ;HH+HHHAE ;ܓH@ H)H(+  I$H<$1HE;H$譓H4$HHEM  Hct$L;I}LHғHEMu  1L[;IQLH覓H|$HE H  1-;I#LHxH|$HE(H   1;ILHJHE0D$Lm0;u`ӒL(;I$   H   HQ;誒;HhP蟒H;hXY;蒒H([H]A\A]A^A_@ sH@ L)H   ;IX;Hh  IE o    ;9Ha    ;!H|$H8  HE(H;H8      ;H8  fD  ;ёH8  TfD  ;蹑HIf     ;虑HH   HfHfD  ;qLL   H>IfD  AWIAVIAUAATUSHH  ;';H(HՒ;Hf;;HPxLbL`xL;      ;ؐHH+HHHA$;运H@ H)H   IIcLHHE;I莐LH;HE xH(;I   gH   H;P;HhPEH;hX;8H[H]A\A]A^A_f;HA    ;HH   HΌH8fD  ;ُHIf     AWAVIAUATUSHHl  ;蝏;L(蓏;HPxHJHHx*~HcH@HI)IA  ;DeMcTJ    ;H@H$J@%   =     &;H@N,   LHwIŋ;HcMu ;H@M   H,M  ԎLH	I   IH  H9t&;Ht$襎Ht$   HHHt/E         <    
  tt1LAFh   ;@H@N<;1;H8  I9tAG(  ;HhL4$IL0H[]A\A]A^A_    tCHE HzH@H5HgH\HE80QJfD        )HE ff.@(zH5I
@ KfD  KH@JH Lh 3    +I   L8  H^;HHBI   ffD  LH@;f     HU H5Hz  `'D  ;詌1HH,H5u3,     ;y   HHH5s  L訋     AWAVAUIATUSHH  ;-;L #;HPxHJHHxLc2H@JI)IA}  ;AnHcL4    ;H@H@%   =   1  輋;H@L$譋   LHIMe L=o    I$    It$PLDHHt$t;gHt$1Hq  H豌H5  LAD$h   &LnLLAD$h|   ;Md$PLH@;ILHK;IH@L$;Ҋ;HhǊLH(H[]A\A]A^A_f{pfD  苋fD  苊H@HH Lh H5p  L踉     AVAUIATUSH  ;C;H(9;HPxHJHHxLc2#H@JH)H   ;EfIcL$    ;H@H@%   =   tT׉;H@H,ȉ   HH(H;詉;Hh螉JT%H[]A\A]A^D  胉H@HH Hx H5o  L賈 AUIATUSHcHHoPHt3H  85HHL[HA   ]HA\A]$@ IHLID$PH[]A\A]fAWI|   AVAUIATUHSHH  HH9
  L%{  II)A<$褈HLE1j A0   DHHԉH{1IXZtHM   I7F   <    
     LH2A<$H&HLHA<$LH脅A<$M/HcHLH׉A<$ ۇHHH轉K D  HH[]A\A]A^A_@ HH1[]A\A]A^A_     %   A<$=   uHHch     Ht$fHt$   HăA<$Hch     AWAVAUIATUSH8H  dH%(   HD$(1;;L ;HPxHJHHxD2IcH@HI)IA  ;AnHcÆ;H    H@H$L<訆AV;H@HcL$蒆AV;AH@HcMcL,uH@N4AG%   =   9  IMH@HD$AD$%   =   <  I$MD$H@HD$ HT$LD$H|H|$ IH48H91  LD$1fA AHH9uLL$LF|MM9s*I1IK<fD  ATHH9uMMA  IVLIuLI;zLHυ;IeH@L,;V;HhKL$$IL HD$(dH3%(   uqH8[]A\A]A^A_f;LHT$   HI@ ;HT$    LH較IHD$     HH5,o  Lff.     AWAVAUIATUSHHL  ;};L s;HPxHJHHxLc2]H@JI)IA#  ;AnHc6L$    ;H@H@%   =      ;H@L,   LH]HE;IH   ҃;IȃLLpMI;诃;H@H,蠃LHH;苃;Hh考LH(H[]A\A]A^A_ cH@HH Hx 诀;IHj<;I2I8  H@L,H5Ji  LbfAVIAUATUSH  ;;L ;HPxHJHHx*ԂHcH@HI)IA  ;DmMc誂N$    ;H@J@%   =      耂;H@N,q   LH~Iŋ;HcQH@H,UuAt<1% =
  t,L4;;HhJT%H[]A\A]A^Ð      u
Hu@ ;H   1H诀Hf.     軁H@JH Lh IH5Bi  L     AWAVIAUATUSHH<  ;m;L(c;HPxHJHHx*NHcH@HI)IA  ;DeMc$J    ;H@H$J@%   =     ;H@N,   LHG}Iŋ;HcǀMu ;H@M   H,My  褀LHI   IHr  H9t&;Ht$uHt$   HH谀Ht'E      ux<tt 
  td1L~;#H@N<;;H8  I9tAG  ;HhL4$IL0H[]A\A]A^A_ft;HE HtH@H5H{HpHE80e^f      AHE ff.@(z,H5"@ KH@JH Lh c    +I   L8  H;HHB~I   fD  ~LH@;f     HU H5Hz  7D  ;~1HH,{H5[T     ;y~   HHzH5f  L}     AWAVIAUATUSHH  ;-~;L(#~;HPxHJHHx*~HcH@HI)IA  ;DeMc}J    ;H@H$J@%   =     };H@N,}   LHzIŋ;Hc}Mu ;H@M   H,My  d}LH|I   IHr  H9t&;Ht$5}Ht$   HHp}Ht'E      ux<tt 
  td1Lz;|H@N<;|;H8  I9tAG  |;Hh|L4$IL0H[]A\A]A^A_ft;HE HtH@H5'H{HpHE80e^f      AHE ff.@(z,H5"@ |H@JH Lh c    {I   L8  H;{HH{I   fD  {LH |;f     HU H55Hz  7D  ;i{1HHwH5[T     ;9{   HHwH5b  Lhz     AWAVIAUATUSHH  ;z;L(z;HPxHJHHx*zHcH@HI)IA  ;DeMczJ    ;H@H$J@%   =     vz;H@N,gz   LHvIŋ;HcGzMu ;H@M   H,My  $zLHYyI   IHr  H9t&;Ht$yHt$   HH0zHt'E      ux<tt 
  td1Lx;yH@N<;y;H8  I9tAG  vy;HhkyL4$IL0H[]A\A]A^A_ft;HE HtH@H5H{HpHE80e^f      AHE ff.@(z,H5Y"@ xH@JH Lh c    xI   L8  H;xHHwI   fD  kxLHx;f     HU H5Hz  7D  ;)x1HHtH5[T     ;w   HHytH5_  L(w     AWAVIAUATUSHH|  ;w;L(w;HPxHJHHx*wHcH@HI)IA  ;DeMcdwJ    ;H@H$J@%   =     6w;H@N,'w   LHsIŋ;HcwMu ;H@M   H,My  vLHvI   IHr  H9t&;Ht$vHt$   HHvHt'E      ux<tt 
  td1L*v;cvH@N<;Tv;H8  I9tAG  6v;Hh+vL4$IL0H[]A\A]A^A_ft;HE HtH@H5g  H{HpHE80e^f      AHE ff.@(z,H5	  "@ uH@JH Lh c    kuI   L8  H;MuHHtI   fD  +uLHu;f     HU H5u   Hz  7D  ;t1HHlqH5E   [T     ;t   HH9qH5\  Ls     AWIAVAUATMUSH(H9  Ht$;HT$HL$DL$VtH(M     H=K\  9;I/tLLHu;tH \  LHu;tHu;sHJs;s;HPxLjLhxsL;     ;sHH+HHHAE ;sH@ H)H z  IH|$1HE;IusLHsH|$1HEZ;IPsLHsH|$1HE5;I+sLLm(H|s;HE sLHfsHE(MtD$ue;rL(;I   rH   Hmt;r;HhPrH;hX   ;rH([H]A\A]A^A_4p@ ;rH@ L)H   ;InrHh  IE j    T$HQZ  H=@Z  HD19I);)rHQsk@ ;rHH   HnHdfD  ;qH!sIf     ;qLL   HnI5ff.      AWAVIAUATUSHHL  ;}q;L(sq;HPxHJHHx*^qHcH@HI)IA  ;DeMc4qJ    ;H@H$J@%   =     q;H@N,p   LHWmIŋ;HcpMu ;H@M   H,My  pLHoI   IHr  H9t&;Ht$pHt$   HHpHt'E      ux<tt 
  td1L
n;3pH@N<;$p;H8  I9tAG  p;HhoL4$IL0H[]A\A]A^A_ft;HE HtH@H5  H{HpHE80e^f      AHE ff.@(z,H5i  "@ [oH@JH Lh c    ;oI   L8  H;oHHRnI   fD  nLHPo;f     HU H5  Hz  7D  ;n1HH<kH5  [T     ;n   HH	kH5V  Lm     AWAVAUATUHSHH  ;An   Ho;I*nLHj;In   H5*V  Hm;ImLLHl;Du mLHo;ImHMLj A$      HHU  nEA[A^   E t<v*wH} tu   HL[]A\A]A^A_Ðtf     H}1E;H;mHILj A$   Hǹ   H`U  en_AXHi|  ;L4l   LHl;IlHMLj A$      HHU  nAYAZ!D  ;l   HnMHD$t7E1IcAHH};IolHt$LH/lD9}w̋;RlHt$Hi;H;lHILj A$      HHdT  emXZff.      AWIAVAUIATIUSHH  ;k;H(kHm;kHkLNLI#l;k;HPxLbL`xkL;     ;ukHH+HHHA$;\kH@ H)H   IE 1LHHE5;I+kLHk;HEkLHjk;HE jH(;I   jH   H~l;j;HhPjH;hX&;jH[H]A\A]A^A_Ihf     ;jHk    ;jHH   HNgHfD  ;YjHkIf     AWAVIAUATUSHH~  ;j;L(j;HPxHJHHx*iHcH@HI)IA  ;DeMciJ    ;H@H$J@%   =     i;H@N,i   LHeIŋ;HcwiMu ;H@M   H,My  TiLHhI   IHr  H9t&;Ht$%iHt$   HH`iHt'E      ux<tt 
  td1Le;hH@N<;h;H8  I9tAG  h;HhhL4$IL0H[]A\A]A^A_ft;HE HtH@H5H{HpHE80e^f      AHE ff.@(z,H5y"@ gH@JH Lh c    gI   L8  H;gHHfI   fD  gLHg;f     HU H5Hz  7D  ;Yg1HHcH5[T     ;)g   HHcH5cO  LXf     AWAVIAUMATU1SH8H{  Ht$H$;HL$dH%(   HD$(1fM&I$      ;H(fHVh;fHe;f;HHxLyLxxmfL;   P  ;YfHH+PHHA;Af1H@ H)HMHH91  I$H<$HEHD  1;IeLHPfHE;eHt$1He;IeLH!fHEM  1LLm 観;IeLHeHE ;eL(;I$   teH   Hg;[eH    LLhMtAz L$   H5&P  L1Tr;eL(;e;L`PeL;`Xr;dHbHL$(dH3%(   R  H8[]A\A]A^A_fD  ;dH8  fD  Lm    Ic     ;dHez@ I$;HhidH   E1j HL  HHA    eZYIHtH L$@ulH5N  LMq     ;	dHAeIf     ;HL$cHL$HHH`Hf     Ht$1LL$`LHaHHl$Hc;I/cHT$HHheHD$;ID$gc;HPxHjHhxTcL$H;     ;L$8cLH+PHHE ; cL$H@ L)Hi  I;MUIIEbL(;b
   H5M  Hc;b;L(b;H  H@H8   bH  H@H8 ;  b;H  H@H8   pbH  H@H ;@   Qb;H  H@H8 	  5bH  H@H ;@     b;H  H@H8 c
  aH  H@H ;x}  a;H  H@H8 C  aH  H@H ;@% =
  9  f        Im IME%   =   i  HE H@ ŃI͉$Mt$M?MaLLH/cH|$_I$    t~;#a;HPxLzLxxaL;     ;`LIH+PHHAI$;IE `L(;M$   `   LHVb;`L(;`;H  H@H8   `H  H@H8    ;m`;H  H@H8   Q`H  H@H ;@ 
  2`;H  H@H8 ;  `H  H@H ;@     _;H  H@H8   _H  H@H ;x  _;H  H@H8 R
  _H  H@H @% =
    @ $I3     [_;H  H@H8   ?_H  H@H ;@   _;H  H@H8   _H  H@H H8   ;^;H  H@H8 	  ^H  H@H ;H Hx  ^I;H  H@H8 ,  ^H  H@H ;@%   =   	  ^^;H  H@H8 j  B^H  H@;H(-^HHT$    H\HHD$ Hx]HT$ H	  ;$    1;    ];H  H@H8   ]H  H@H ;@5  ];H  H@H8 u  ]H  H@H H8 ;e];H  H@H8 '  I]H  H@H H Hx	  ;&];H  H@H8 h  
]H  H@H ;@%   =     \;H  H@H8 E	  \H  H@;L \L   1H[HLi    $   1 f.     k\;H  H@H8   O\H  H@H ;@     -\;H  H@H8   \H  H@H @t?;[;H  H@H8 
  [H  H@H H Hx  ;[H  H@H8 l	  ;[H  H@H @;|[;H  H@H8 ;  `[H  H@H fHf.B(   E  #[;H  H@H8   [H  H@H ;@     Z;H  H@H8   ZH  H@H ;@t?Z;H  H@H8 :	  ZH  H@H ;H Hx  oZ;H  H@H8 M  SZH  H@H ;@4Z;H  H@H8 	  ZH  H@H f;Hf.B(   EX8 Y;H  H4$YH4$1H[H@Y;L  Y1LHr[H@Y;H  H4$rYH4$1HD[H@VY;L  HY1LH[H@-Y;H  H4$YH4$1HZH@H$X   HH[U;H${X;L  X1LHZH@X;L  X1LHwZH@X;H  H4$wXH4$1HIZH@,;TX;H  H@H8 `  8XH  H@;L #X1LHTX;H  H@H8 A  WH  H@H0;H4$WH4$1HYT;W;L  W1LHYH@W;H  H4$WH4$1HTYH@fW;L  XW1LH+YH@=W;H  H4$+WH4$1HXH@W;L  W1LHXH@rV;H  H4$VH4$1HXH@;VHWL$H_;VLL   HhSL$IqwV;H  H@H8   [VH  H@H0;H4$BVH4$   HR;:%V;H  H@H8   	VH  H@;L U   LHtRU;H  H@H8   UH  H@H HpU;L  U1LHgWH@yU;H  H4$gUH4$1H9WH@KU;L  =U1LHWH@"U;L  U1LHVH@T;H  H4$TH4$1HVH@T;H  H@H8    TH  H@H ;H H@HD$ T;H  H@H8   rTH  H@H HhFHHSR;DTH|UI1/T;L  !T1LHUH@T;H  H4$SH4$1HUH@S;L  S1LHUH@S;H  H4$SH4$1HoUH@S;L  sS1LHFUH@;VS;H  H@H8 >  :SH  H@H H Hx ;S;H  H@H8 V  RH  H@H H@80R;H  H@H8 <  RH  H@H H Hx A;R;H  H@H8   ~RH  H@H ;H@80oZR;H  LR1HHTH@;/R;L  !R1LHSH@{R;H  H4$QH4$1HSH@Q;H  Q1HHSH@}Q;H  H4$QH4$1HoSH@6Q;L  sQ1LHFSH@_XQ;H  H4$FQH4$1HSH@*Q;L  Q1LHRH@SQ;L  P1LHRH@P;H  P1HHRH@MP;H  P1HHtRH@NP;H  H4$oPH4$1HARH@SP;H  H4$APH4$1HRH@%P;L  P1LHQH@O;L  O1LHQH@O;H  H4$OH4$1HQH@7O;L  O1LHjQH@AWAVIAUATUSHH,d  ;]O;L SO;HPxHJHHx*>OHcH@HI)IAV  ;DmMcO;N4    H@N$NU;H@HcHcL<N;H@H@%   =   E  N;H@H,N   HHKAŋ;N;H@@#  NHPHMt4AG      :  <2   
    HD$          NIMtAD$M'      M;IG@IL`MH   E1j LA    HH[6  OY^HtGL Mt?AD$    o  N  <F   
  2  f.     I;L`rMHE1H3  j LA       HNA\ZH<  H H0  @&  H@DIGAGh	AGhEe  I;L`LHE1A    j    LHHg5  !NAZA[H  H H  @  H@;IGIL`LHE1A    j    LHH5  MAXAYH}  H Hq  @g  H@;IG IL`9LHE1A    j LHǹ   H4  cM^_H.  H H"  @  H@H|$H`  H5`  IG(rKHH5HI9HMgLLJH3  H5,	  LL1H5  L#HI;LhuKH   E1j H4  LHA    LZYHD   L(Mt<AE      L  <D   
  0       1LfK;J;H@Nl0E%AJ     E  M   LeIm;J;HhJIL0H[]A\A]A^A_@ {J;HhpJH@H@Hl fD  /  I$HH@H  AOhf.        IHHRH  %   =   ]  IGHD$       IE HH@HT  AOh   D  H|$1H5^  -IID  {IH@HH Dh     w     Iff.B(6+        tI$Hz  zI$ff.@(a@    tIU Hz  IE ff.@(@ ;H   1LHWGHD$8D  IHz  ]D  H	IW:0=D  ;)H1LHD    ;H1LHD8    ;G1LH\DAG ;GLHHEfD  ;G   f.     HID$805@ HWIE80ED  ;9G   LHC@ ;G   LHCH=%2  1&GH=?2  1GH=a2  1
GH=2  1FH51/  LFff.     fAWHAVAUIATUSHHHdH%(   HD$81D(  HŅ~3p1I	fD  HAD xH@BAHBH9uL-Z  L5_[  A} M  FIHLj HE1A    LKG^_IH  L8AG   A} EH:-  LH2C   IHhE%   =      HE H@ HPH{HHpHH)HH  H)΁   H  HHǃ      f8   H   HoHH     H\$8dH3%(   r  HH[]A\A]A^A_A} E   HHgAZf<% =
  A} DA} L0DH{FA} DH
DA} DA} HpxL~LxxDL;     A} vDLH+pHHAA} \DH@ L)Hb  A} I?DHcLHAFA} I%DLHzDA} IDL0A} D   H5/  HDA} L5Y  CHLj LE1A    HEA} ICA} HhPCZYH;hX   A} CH)AMt,M>AG<% =
  @ 1Hǃ          Hǃ      +C1H5B-  HzEIH@X  HtcA} fA} BHDPA} BLL   H?IzA} BHCI.@H=,  1BH=.  Bff.      C    AWAVIAUIATUSHHW  H4$;FBAnhEfHL8AF0AF0Et1D9L$  Dd$AV4Av8IF@9t  Av0AV44   IV(Iv H<$HD$;Eu9MfpMt0AD$    
  uk<tg 
  tW    InAHT$HHGAAFh  H[]A\A]A^A_D  H<$1MHD$s /  I$HtH@H8
  I}  
  MfII<$ uM)IID$H$@HB;@H9@;@;HHxLaL`x@L;   8
  ;@LH+HHHH<$ A$	  ;@H@ L)HH;$	  IMgIGHD$IGI} H    IV(Iv LIǋ;2@IL$LHH$~@ID$I}H  ;@H$H;Inp?H   HA;?;HhP?H;hX_  ;?HX=;!;In?HH[H]A\A]A^A_A@    Hǉt$H@T$IF@AV8AV4aD  M   Mt<AD$    :
  s  <k   
  W      M   Mt<AD$    	  k  <c   
  O      M   Mt<AD$    E	  c  <[   
  G      M   Mt5AD$    5	  [  <S   
  ?  M   Mt;AD$    ^	  Z  <R   
  >  fD  M   Mt<AD$        <   
        M   Mt<AD$        <   
        M   Mt<AD$        <   
        AFH    Dd$fD  _  tI$Hz  RI$ff.@(9@ ?  I$HH@HU  I~H5A;w      I$HH@H  I~H5і=      I$HH@H)  I~H5L8    7  I$HH@H  I~H}H5~9    tI$Hz  uI$ff.@(zfD  1qI0f     1M|$IP;H$E;H4$H;ID$M@   I$HbH@H  I~H58?       I$HjH@H  I~H5d8G       I$HrH@Hu  I~H5y48O    ;a:H;@   tI$Hz  oI$ff.@(SH@   tI$Hz  gI$ff.@(K@@ 7  tI$Hz  [I$ff.@(B@ _  tI$Hz  WI$ff.@(;0@   tI$Hz  I$ff.@(q@   tI$Hz  oI$ff.@(SH@ 81LH5;d       tI$Hz  BI$ff.@()@ I$H+H@H9HID$80"f     ;71LHl43;71LHK4RfD  ;71LH$4$    ;y71LH3%;X71LH3#fD  ;171LH3    ;	71LH3D    HOID$80<@ 6   LHC3; @ ;6H$LLHo3IH$   ;s6H7IHID$80HH.ID$80HID$80PHID$80tHjID$80WHID$80|HID$80H;5   LH28;|5   LH1;`5   LH1';D5   LH1t;(5   ;5   LH1;4   LH{1
;41LHb1;4   L$$ff.      AVAUIATUSHRI  ;4;H(y4;HPxHJHHxLc2c4H@JH)H   ;EfIc=4L$    ;H@H@%   =   tl4;H@H,4   HHh0H ;H(3HtUvNU;3;Hh3JT%H[]A\A]A^D  3H@HH H@ f.     HH55H5  L2@ AVAUATUH-&H  SH} R3} LcL(C3LHX3S4  KHIċ} Ѕu6LsxMt-AN      uPtK΁ 
  t; C42MtAT$j  AT$[]A\A]A^f       IH3  H@Hm  2H@4} x2H1} h2} HHxLqLpxT2L;     } ?2LH+pHHA} &2H@ L)HM  H} MeIIE1L(} Lkx1L   H3} 1} LhP1L;hX   } 1HQ/C4} fD  tStIHx  tIff.@( y[L]HA\A]A^2D  C11LH-} S49HtIF80    0   LH{-} fD  } 0H 2
 } 0LL   H-ID  } 0H1IAH=  10f.     AVAUIATUH-#E  S} R0} HG0} HPxHJHHxLc200H@JH)H  } EfIc	0L$    } H@H؋@%   =   [  /} H@H/   HH.,IIH{@/0LkPMt} /AUA  AULkpMt} y/AU  AULkxMt} T/AU  AUL   Mt} ,/AUo  AUL   Mt} /AUw  AUL   Mt} .AU?  AUL   Mt} .AUG  AUL   Mt} .AU  AUL   Mt} d.AU  AUL   Mt} <.AU  AUL   Mt} .AU  AUL   Mt} -AU  AUL   Mt} -AU  AUL   Mt} -AU  AUL   Mt} t-AU  AUL   Mt} L-AUO  AUL   Mt} $-AUW  AUL   Mt} ,AU  AUL   Mt} ,AU   AUH8-L`+} ,} HX,JT#H[]A\A]A^ ,H@HH Lp     LH.     LH-LH-pLH-HLH-LH-xLH-@LH-LH-pLHu-LHe-LHU-LHE-PLH5-LH%-LH-LH-LH,LH,H5Y  Lq*AWAVIAUATUSHhH?  Ht$(;dH%(   HD$X1*M>;H(HD$P    L|$*H,;*H*IX ;  *;HPxLbL`x*L;     ;*HH+PHHA$;h*H@ H)H  HD$(;HHE D*H(;:*   H5  Hv';A*H A*  L HhAD$j  <b   
  N  HD$H    ;)H(HD$HD$ H   HD$PHD$8D  E   t$ L%IHx  ;)H(HD$HxX   Ht$HT$HLA   (Ht$HHt$PDL(;A1)H(E  ;);LxP)L;xXa;)H**ERHD$;HxX   (;HhP(H;hX  ;(HV&DHT$XdH3%(     Hh[]A\A]A^A_%   =      I$IT$H@HT$HD$HH|$HW`HJH9~HL$H)L`J4!HOX9@8>^<
THqHL$HH<%6Ld$H,;'HT$H   LH&HD$HD$HlD  ;';HHxLaL`x'L;   a  ;'HH+HHHA$;'H@ H)H  HD$(;HHEHD$HEHD$0HE R'H(;H'   H5*  H$;A*'H A  HhH @u<t% =
  (  HL$AD$$%   =   uBHHqHPHT$PHtHcD$ H9  LE14&;&H(Ht$PZ;&HT$8Ht$   Hb%HT$PH     ;i&HH   H6#HfD  ;A&Hy'I1LV3HD$;HxX 5&HL$0HtQ   Q;%H|$    HL$Q   ;Qf;%H&@ %1Hy#;HD$%   HP'D$    HD$0;g%H&I;P%HH   H"HHt$H&;BHt$0H&H=  11%H=  1#%H=  1%H=  1%#H=  1$@ AWIAVAUATUSHHl9  dH%(   HD$1;$;L($;HPxHJHHx*n$HcH@HI)IA\  ;DuMcD$N,    ;H@J@%   =   g  $;H@N4$   LHk IƋ;Hc#;H@L<#;H@@#   #H%HAGtIWB}  <	-  t/%   =      IIwHPH$   L"Lc;b#;H@Nt(E%AC#   &  E  M   LeIn;#;Hh#IL(HD$dH3%(     H[]A\A]A^A_ ";Hh"H@H@Hl fD  "H@JH Lp     ;"HL   H^!H$HfIG;L`a"HL#;IL"LH"LHLcfD  LLLcD  ;	"LHHK H5  L7! fAWAVIAUATUSHH6  ;!;L !;HPxHJHHx*!HcH@HI)IA,  ;DmMct!N$    ;H@J@%   =     J!;H@N,;!   LHIŋ;!!U;H@HcHcL4!;H@L< ;H@@#    H
#ME HAG   <    
     I@X    LLw;Lc ; ;H@Nt E%Ag       E   M   LmIn;; ;Hh0 IL H[]A\A]A^A_  ;Hh ME H@H@Hl AG$%   =   uIH@I@`IGI@X$fD  ;LD$LD$   LHIP`{LD$@ H@JH Lh O    ;iLHHH5t  L    USHH3  ;(L[  HT  HHR  1;;;HfH5  H;H)H5  H;H<H5  H;H3H5  H;yHH5  H;\HE1H5  H;?H(/H5  Hi;"HZH5  HL;HnXH5  H/;HUH5
  H;HQH5  H;HWNH58  H;HʍH5C  H;tHJH5N  H;WHGH5i  H;:H#DH5|  Hd;HAH5  HG; HH5  H*;H<H5  H;HH5  H;HH5  H;H5H5  H;oHؚH5  H;RH;H5  H|;5HH5  H_;HaeH5  HB;HH5  H%;HwH5  H;HjH5  H;HM!H5  H;H&H5  H;jH$H5  H;MH"H5'  Hw;0HɂH52  HZ;HH5E  H=;H?|H5H  H ;HzH5S  H;HfH5^  H;H`H5i  H;HXH5|  H;eH=H5  H;HHH5  Hr;+HT<H5  HU;H5  H@H8;H[H] HH   parser ErrorMessage ErrorContext position_in_context :
 parser, sv parser, index parser, extfin_sv parser, extent_sv parser, notation_sv parser, unprsd_sv parser, cmnt_sv parser, proc_sv parser, char_sv parser, end_sv parser, start_sv parser, endcd_sv parser, startcd_sv parser, lines NamespaceEnd NamespaceStart enc XML::Parser::Encinfo data, size code parser, dflt_sv parser, base parser, xmldec_sv parser, doctypfin_sv parser, doctyp_sv parser, attdcl_sv #REQUIRED #IMPLIED ' parser, eledcl_sv XML::Parser::ContentModel Type Quant Tag Children parser, entdcl_sv Parser self_sv, enc_sv, namespaces NoExpand New_Prefixes Namespace_Table Namespace_List ParseParamEnt getline getline method call failed read read method call failed read error parser, result parser, ioref, delim 2.47 v5.26.0 Expat.c XML::Parser::Expat::ParseDone XML::Parser::Expat::SetBase XML::Parser::Expat::GetBase XML::Parser::Expat::SkipUntil ? * +        
%s at line %ld, column %ld, byte %ld%s enc is not of type XML::Parser::Encinfo XML::Parser::Expat::Encoding_Table      Can't find XML::Parser::Expat::Encoding_Table   name, xml_namespace, table, list        Can't find parser entry in XML::Parser object   XML::Parser::Expat::Do_External_Parse   Handler couldn't resolve external entity        XML::Parser instance missing Context    XML::Parser instance missing New_Prefixes       XML::Parser instance missing Namespace_Table    XML::Parser instance missing Namespace_List     XML::Parser::Expat::load_encoding       Entry in XML::Parser::Expat::Encoding_Table not an Encinfo object       endElement: Start tag serial number stack underflow     Ran out of memory for input buffer      The input buffer is not large enough for read UTF-8 decoded string      XML::Parser::Expat::ParserCreate        XML::Parser::Expat::ParserRelease       XML::Parser::Expat::ParserFree  XML::Parser::Expat::ParseString XML::Parser::Expat::ParseStream XML::Parser::Expat::ParsePartial        XML::Parser::Expat::SetStartElementHandler      XML::Parser::Expat::SetEndElementHandler        XML::Parser::Expat::SetCharacterDataHandler     XML::Parser::Expat::SetProcessingInstructionHandler     XML::Parser::Expat::SetCommentHandler   XML::Parser::Expat::SetDefaultHandler   XML::Parser::Expat::SetUnparsedEntityDeclHandler        XML::Parser::Expat::SetNotationDeclHandler      XML::Parser::Expat::SetExternalEntityRefHandler XML::Parser::Expat::SetExtEntFinishHandler      XML::Parser::Expat::SetEntityDeclHandler        XML::Parser::Expat::SetElementDeclHandler       XML::Parser::Expat::SetAttListDeclHandler       XML::Parser::Expat::SetDoctypeHandler   XML::Parser::Expat::SetEndDoctypeHandler        XML::Parser::Expat::SetXMLDeclHandler   XML::Parser::Expat::PositionContext     XML::Parser::Expat::GenerateNSName      XML::Parser::Expat::DefaultCurrent      XML::Parser::Expat::RecognizedString    XML::Parser::Expat::GetErrorCode        XML::Parser::Expat::GetCurrentLineNumber        XML::Parser::Expat::GetCurrentColumnNumber      XML::Parser::Expat::GetCurrentByteIndex XML::Parser::Expat::GetSpecifiedAttributeCount  XML::Parser::Expat::ErrorString XML::Parser::Expat::LoadEncoding        XML::Parser::Expat::FreeEncoding        XML::Parser::Expat::OriginalString      XML::Parser::Expat::SetStartCdataHandler        XML::Parser::Expat::SetEndCdataHandler  XML::Parser::Expat::UnsetAllHandlers    XML::Parser::Expat::ElementIndex        ;  O         P   0L      0  |  p,  px  !  $  .X   0  `1  p3$  6p  9  0=  p@T  C  F  H8	  J	  0N	  O 
  0Qp
  R
  U
  X<  Z  Z   ]  P_@  c  e   g  hd  Pj  @l  m0  mD  mX  r   t    vL  `v  w  0{  |h  0       @    @  H  p    0   pl      P       @d            (      $  `d       @L             zR x  $      @   FJw ?:*3$"       D   0             \       Ev
ERH   |   H   FBB E(A0A8D@=
8A0A(B BBBDH         FBB E(A0A8D@9
8A0A(B BBBHH     p   FBB E(A0A8D@9
8A0A(B BBBHH   `     FBB E(A0A8D@<
8A0A(B BBBEH        FBB E(A0A8D@<
8A0A(B BBBE     ,   BBE B(D0A8D`hhKpYhB`U
8A0A(B BBBGXhKp[hB`ohXpOhA`D
8A0A(B BBBC}hKpghA`
8A0D(B BBBJ   H     <   FBB E(A0A8D@Q
8A0A(B BBBHH     ~   FBE B(A0A8DP
8A0A(B BBBEH   @  $   FBE B(A0A8DP
8A0A(B BBBCD     h"
   AAG 
AAKx
CAL/
AAG<     P(p   FEB A(A0
(A BBBA  <     )>   FBE A(A0
(A BBBH   H   T  *   FBE B(A0A8DP]
8A0A(B BBBDH     D,8   FBE B(A0A8DP
8A0A(B BBBCH     8/8   FBE B(A0A8DP
8A0A(B BBBCH   8  ,28   FBE B(A0A8DP
8A0A(B BBBCH      58   FBE B(A0A8DP
8A0A(B BBBCH     88   FBE B(A0A8DP
8A0A(B BBBCH     ;8   FBE B(A0A8DP
8A0A(B BBBCH   h  =   FBE B(A0A8DPW
8A0A(B BBBJH     ?   FBE B(A0A8DPW
8A0A(B BBBJH      dA8   FBE B(A0A8DP
8A0A(B BBBCL   L  XDr   FEA A(D0
(A DBBKD
(A ABBF   L     Er   FEA A(D0
(A DBBKD
(A ABBF   8     FW   FEA A(D0
(A DBBI H   (  G8   FBE B(A0A8DP
8A0A(B BBBC@   t  J   FEB A(A0D@O
0A(A BBBF@     |M   FBE A(A0D@G
0A(A BBBF$     N6    ADG gAA H   $	  O?   FEB E(D0A8DP]
8A0D(B BBBKH   p	  QG   FBE E(D0A8DP~
8A0D(B BBBJH   	  S   FEE E(A0A8DP
8I0D(B BBBIH   
  |Vo   FBE E(D0A8D`
8A0D(B BBBH<   T
  Xw   FEE A(A0
(A EBBF   H   
  Y   FEE E(A0A8D@(
8A0D(B BBBH<   
  D[   FEE A(A0
(A EBBI  H      \   FEE E(A0A8D@2
8A0D(B BBBF<   l  H^g   FBE A(A0
(A BBBJ       x_	            t_	       X     p_   FBE B(A0A8Dp_
8A0A(B BBBBlxHYxAp H   0  c   FBB E(A0A8D@3
8A0A(B BBBFH   |  e   FBB E(A0A8D@9
8A0A(B BBBH4     fZ    BED A(D0@(D ABBH      f   FEE E(A0A8D@
8A0D(B BBBGH   L  h:   FEB B(D0A8D`
8A0D(B BBBIH     k   FEE E(A0A8D@
8A0D(B BBBGH     Plh   FBE B(A0A8DP
8A0A(B BBBHH   0  to   FBB E(A0A8DP~
8A0A(B BBBC<   |  q    FBE A(A0
(A BBBF   H     qn    FEA A(G0[
(G JEBIW(A ABB   l     q   BJB E(A0D8DPtXH`^XAP
8D0A(B BBBED
8F0A(B BBBM H   x  <s   FBB E(A0A8Dp
8A0A(B BBBCH     u   FBB E(A0A8D@
8A0A(B BBBD<     vx   FEB A(A0
(A BBBB   H   P  x8   FBE B(A0A8DP
8A0A(B BBBCH     {8   FBE B(A0A8DP
8A0A(B BBBCH     }8   FBE B(A0A8DP
8A0A(B BBBCH   4  8   FBE B(A0A8DP
8A0A(B BBBCH        FEB B(D0A8D`
8A0D(B BBBIH     8   FBE B(A0A8DP
8A0A(B BBBCx     |R   BBB B(A0D8DPXH`_XBPm
8D0A(B BBBBiXH`[XBPrXH`\XBPXH`[XAPH     `   FEB E(D0A8D@*
8A0D(B BBBNH     Ԍ8   FBE B(A0A8DP
8A0A(B BBBCX   ,  ȏ   FBE E(A0C8Dp
8A0A(B BBBGcxJYxAp          FBE B(A0A8DP{XJ`YXAP^XL`XXAPVXK`YXBPyXK`YXBPyXK`XXAPXJ`YXAP
8A0A(B BBBEl      $"   FEB E(A0A8GEWA
8A0A(B BBBA6GnA      	       d        FBE E(A0A8DP
8A0A(B BBBF
8D0D(B BBBI   <     H,   FBE A(A0
(A BBBF   P   L  8   FBB A(H0
(A BBBJQ
(D EBBJ   <     O   FBE A(H0
(A BBBD  L     \   BBE B(A0A8Dt
8A0A(B BBBA   H   0     FEB B(A0A8DP
8A0A(B BBBDH   |     FBE B(A0A8DP
8A0A(B BBBD(     _   EAD ICD                    GNU                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              .      -      @:!                             g                           U                                                                                0:!                          8:!                   o    `                                
       ;                           <!            H	                                        0             h      	                             o           o          o           o          o    
                                                                                       :!                     !       !      0!      @!      P!      `!      p!      !      !      !      !      !      !      !      !       "      "       "      0"      @"      P"      `"      p"      "      "      "      "      "      "      "      "       #      #       #      0#      @#      P#      `#      p#      #      #      #      #      #      #      #      #       $      $       $      0$      @$      P$      `$      p$      $      $      $      $      $      $      $      $       %      %       %      0%      @%      P%      `%      p%      %      %      %      %      %      %      %      %       &      &       &      0&      @&      P&      `&      p&      &      &      &      &      &      &      &      &       '      '       '      0'                                                                      |               @            0      GCC: (GNU) 8.5.0 20210514 (Red Hat 8.5.0-20)             GA$3a1 p-      p-               GA$3a1                        GA$3a1       (              GA$3a1 p-      ).               GA$3p1113  0.                     GA$running gcc 8.5.0 20210514            GA$annobin gcc 8.5.0 20210514            GA$plugin name: annobin              GA*GOW *            GA*             GA+stack_clash            GA*cf_protection             GA*FORTIFY               GA+GLIBCXX_ASSERTIONS             GA*             GA!              GA+omit_frame_pointer             GA*             GA!stack_realign            GA*FORTIFY     0.      .              GA+GLIBCXX_ASSERTIONS   0.      .              GA*FORTIFY     .      0              GA+GLIBCXX_ASSERTIONS   .      0              GA*FORTIFY     0      2              GA+GLIBCXX_ASSERTIONS   0      2              GA*FORTIFY     2      a4              GA+GLIBCXX_ASSERTIONS   2      a4              GA*FORTIFY     a4      A6              GA+GLIBCXX_ASSERTIONS   a4      A6              GA*FORTIFY     A6      !8              GA+GLIBCXX_ASSERTIONS   A6      !8              GA*FORTIFY     !8      ;              GA+GLIBCXX_ASSERTIONS   !8      ;              GA*FORTIFY     ;      =              GA+GLIBCXX_ASSERTIONS   ;      =              GA*FORTIFY     =      n@              GA+GLIBCXX_ASSERTIONS   =      n@              GA*FORTIFY     n@      B              GA+GLIBCXX_ASSERTIONS   n@      B              GA*FORTIFY     B      "M              GA+GLIBCXX_ASSERTIONS   B      "M              GA*FORTIFY     "M      N              GA+GLIBCXX_ASSERTIONS   "M      N              GA*FORTIFY     N      O              GA+GLIBCXX_ASSERTIONS   N      O              GA*FORTIFY     O      Q              GA+GLIBCXX_ASSERTIONS   O      Q              GA*FORTIFY     Q      (U              GA+GLIBCXX_ASSERTIONS   Q      (U              GA*FORTIFY     (U      hX              GA+GLIBCXX_ASSERTIONS   (U      hX              GA*FORTIFY     hX      [              GA+GLIBCXX_ASSERTIONS   hX      [              GA*FORTIFY     [      ^              GA+GLIBCXX_ASSERTIONS   [      ^              GA*FORTIFY     ^      (b              GA+GLIBCXX_ASSERTIONS   ^      (b              GA*FORTIFY     (b      he              GA+GLIBCXX_ASSERTIONS   (b      he              GA*FORTIFY     he      mg              GA+GLIBCXX_ASSERTIONS   he      mg              GA*FORTIFY     mg      mi              GA+GLIBCXX_ASSERTIONS   mg      mi              GA*FORTIFY     mi      l              GA+GLIBCXX_ASSERTIONS   mi      l              GA*FORTIFY     l      "n              GA+GLIBCXX_ASSERTIONS   l      "n              GA*FORTIFY     "n      o              GA+GLIBCXX_ASSERTIONS   "n      o              GA*FORTIFY     o      q              GA+GLIBCXX_ASSERTIONS   o      q              GA*FORTIFY     q      Ht              GA+GLIBCXX_ASSERTIONS   q      Ht              GA*FORTIFY     Ht      <w              GA+GLIBCXX_ASSERTIONS   Ht      <w              GA*FORTIFY     <w      x              GA+GLIBCXX_ASSERTIONS   <w      x              GA*FORTIFY     x      6y              GA+GLIBCXX_ASSERTIONS   x      6y              GA*FORTIFY     6y      {              GA+GLIBCXX_ASSERTIONS   6y      {              GA*FORTIFY     {      }              GA+GLIBCXX_ASSERTIONS   {      }              GA*FORTIFY     }                    GA+GLIBCXX_ASSERTIONS   }                    GA*FORTIFY                         GA+GLIBCXX_ASSERTIONS                       GA*FORTIFY           w              GA+GLIBCXX_ASSERTIONS         w              GA*FORTIFY     w      /              GA+GLIBCXX_ASSERTIONS   w      /              GA*FORTIFY     /      ǈ              GA+GLIBCXX_ASSERTIONS   /      ǈ              GA*FORTIFY     ǈ                    GA+GLIBCXX_ASSERTIONS   ǈ                    GA*FORTIFY           '              GA+GLIBCXX_ASSERTIONS         '              GA*FORTIFY     '      9              GA+GLIBCXX_ASSERTIONS   '      9              GA*FORTIFY     9      I              GA+GLIBCXX_ASSERTIONS   9      I              GA*FORTIFY     I                    GA+GLIBCXX_ASSERTIONS   I                    GA*FORTIFY                         GA+GLIBCXX_ASSERTIONS                       GA*FORTIFY           q              GA+GLIBCXX_ASSERTIONS         q              GA*FORTIFY     q      ڔ              GA+GLIBCXX_ASSERTIONS   q      ڔ              GA*FORTIFY     ڔ      g              GA+GLIBCXX_ASSERTIONS   ڔ      g              GA*FORTIFY     g                    GA+GLIBCXX_ASSERTIONS   g                    GA*FORTIFY           7              GA+GLIBCXX_ASSERTIONS         7              GA*FORTIFY     7                    GA+GLIBCXX_ASSERTIONS   7                    GA*FORTIFY                         GA+GLIBCXX_ASSERTIONS                       GA*FORTIFY                         GA+GLIBCXX_ASSERTIONS                       GA*FORTIFY                         GA+GLIBCXX_ASSERTIONS                       GA*FORTIFY                         GA+GLIBCXX_ASSERTIONS                       GA*FORTIFY           T              GA+GLIBCXX_ASSERTIONS         T              GA*FORTIFY     T                    GA+GLIBCXX_ASSERTIONS   T                    GA*FORTIFY           h              GA+GLIBCXX_ASSERTIONS         h              GA*FORTIFY     h                    GA+GLIBCXX_ASSERTIONS   h                    GA*FORTIFY                         GA+GLIBCXX_ASSERTIONS                       GA*FORTIFY           (              GA+GLIBCXX_ASSERTIONS         (              GA*FORTIFY     (      h              GA+GLIBCXX_ASSERTIONS   (      h              GA*FORTIFY     h      R              GA+GLIBCXX_ASSERTIONS   h      R              GA*FORTIFY     R                    GA+GLIBCXX_ASSERTIONS   R                    GA*FORTIFY                         GA+GLIBCXX_ASSERTIONS                       GA*FORTIFY                         GA+GLIBCXX_ASSERTIONS                       GA*FORTIFY                         GA+GLIBCXX_ASSERTIONS                       GA*FORTIFY                         GA+GLIBCXX_ASSERTIONS                       GA*FORTIFY           C              GA+GLIBCXX_ASSERTIONS         C              GA*FORTIFY     C      r              GA+GLIBCXX_ASSERTIONS   C      r              GA*FORTIFY     r                    GA+GLIBCXX_ASSERTIONS   r                    GA*FORTIFY           R              GA+GLIBCXX_ASSERTIONS         R              GA*FORTIFY     R                    GA+GLIBCXX_ASSERTIONS   R                    GA*FORTIFY                         GA+GLIBCXX_ASSERTIONS                       GA*FORTIFY                         GA+GLIBCXX_ASSERTIONS                       GA*FORTIFY           <             GA+GLIBCXX_ASSERTIONS         <             GA*FORTIFY     <     	             GA+GLIBCXX_ASSERTIONS   <     	             GA*FORTIFY     	                  GA+GLIBCXX_ASSERTIONS   	                  GA*FORTIFY                       GA+GLIBCXX_ASSERTIONS                      GA$3p1113  p-      p-                GA$running gcc 8.5.0 20210514            GA$annobin gcc 8.5.0 20210514            GA$plugin name: annobin              GA*GOW *            GA*             GA+stack_clash            GA*cf_protection             GA*FORTIFY               GA+GLIBCXX_ASSERTIONS             GA*             GA!              GA+omit_frame_pointer             GA*             GA!stack_realign             GA$3p1113  p-      p-                GA$running gcc 8.5.0 20210514            GA$annobin gcc 8.5.0 20210514            GA$plugin name: annobin              GA*GOW *            GA*             GA+stack_clash            GA*cf_protection             GA*FORTIFY               GA+GLIBCXX_ASSERTIONS             GA*             GA!              GA+omit_frame_pointer             GA*             GA!stack_realign             GA$3p1113  p-      p-                GA$running gcc 8.5.0 20210514            GA$annobin gcc 8.5.0 20210514            GA$plugin name: annobin              GA*GOW *            GA*             GA+stack_clash            GA*cf_protection             GA*FORTIFY               GA+GLIBCXX_ASSERTIONS             GA*             GA!              GA+omit_frame_pointer             GA*             GA!stack_realign             GA$3p1113  p-      p-                GA$running gcc 8.5.0 20210514            GA$annobin gcc 8.5.0 20210514            GA$plugin name: annobin              GA*GOW *            GA*             GA+stack_clash            GA*cf_protection             GA*FORTIFY               GA+GLIBCXX_ASSERTIONS             GA*             GA!              GA+omit_frame_pointer             GA*             GA!stack_realign             GA$3a1                    GA$3a1                    GA$3a1                        GA$3a1 (     -     ,             0.                            K      "<    pG  0.                v#  9   C  int @         r     t      3  "   h  #   p2  $   x5  '          	9    
     
   #     
G         	9    
      '     f
  *!  
Z   h
    '  !  C  '  H  	%!  4  `  	'   ,  	)-  G  	9   )  	-    	-  6  	9   M  	9   M  	-  /  	9   i*  	L   ?  	L   ;  	@   L,  	L   8  	L     q#  	L   V  	L   _7  	L   YK  	!L   
     
@~  )  
Or  a7  
l  8    	z  QI  z    9     	9    >  c    	  v>       !   H  R  1  T#   K  U#   
  z  V  B  (vn  :A  x@    '  y-  0  z@   f  |-  H  @   5  G  P  G  3     C  
  1-  (C	  )  E  ";  F  j   GL         	9   ' 3  H  
    =       %  5"  
  a  M  -  6     j5  2  YG    $     -  a     $G  "  d   J  m         !     !6  >  !     !-     !   
  
a  *    
           
  N    
  +            @    G+  7  
=  W        @    	  W*     q*      
       -    
        -    
       
  SB  W  G    
           
  (    
  %       s.  "2  
8  M      @    C  'Z  
`  u         u  -  ?  0    1  =  @2    G  
            @    B  R    f  
  .      @     @            B  ~;  
A  e                 r  
x               {N  Z  +        
  @                	.  map .   :  	     R       @   >  	9    @   R        
>        -r  
x  @            
X   E  -    @7   /  (   J  ;  b  N  ,  Z  @    L     	9    4  !2	  G  '   #  (	@   @t!  )  H   B	  	9     J3  S2	    t	    @   M  	   pN  N	  8	  D  :   /  ;r   ?	    A
@    8,  B
@     Ct	   G
  D  I   /  Jr    Kt	    OQ
  D  Q   /  Rr  !  S
@   M  T  4  U   au
    c   T2  d   ^
    eQ
  w
  gZ    Y
  C  [   .
  ]G  5  h
u
   l
  O  nL    0  o
@    t    v   %B  w
@   1  x-   p3    5  '  <	  @  D	  _rt L	  A  V
  ;  i
  O  p
  aI  y
   @     	9    $	  a5  &	@       (	@     *	@      0	@   '>  {	     |    @        
  
       	9   @   -    -    {  K  
-  }  !K  #1  $-  M  2@   A  7@     ;@   -  W     ;8    =     N  
          	9    
    8:    
    v    
    N=    
    !  (  
(  2  
@    D     :  (  @    "     =  
=     /    !}     !G  (  !w    !M    !)       
    c    
    71  	  
	    2    
  (  C  3  
3  =  H  H  
H  R  V  ]  
]  g  
  r  
  }  
    
    
-    
    
    
    
    
#    
8    
M    
b    )    @  (  	  !    F  {  b  l  
b  J  r  (K       r  	9        	9        	9    M    /  	4      ':    K    !    	9    L  .  !K  0f   ;  5  w  =  J  >    @r  Y0  A~      C	@   $'  Ef  (	  J  0>  N  8-  P	  @  [  H8  \  XM)  ]  h7  j  x !    	9    -    	9    iM    8  @     L   kM    8  @     L   |  @     4H  XJ  6	@    )  7	@    
   H  )   --  >   .-  b>  !  :  !	-   WI  !
K    !@   E  !      "b  %  "d	-   J%  "e
K  !  "f@     "g@   3  "h
K   	   "B  !#  "	-   !?L  "
K  !(  "@   !8  "	-    (#  "D{  !  "F	-   !9  "G
K  !rM  "H@    "C  #  !  #   AG  #  *  #   8  # !    #!
        	9    "$.  #%+  !  #'   AG  #(  *  #)   8  #*!    #+
   #DIR $7  ]@  $IV %vL   <  $UV %w9   $NV %Ee  2  '  c  &@     %/
-   $OP %1
  %op ('t  l!  '7   )  '7    'P  &  'zN  &1  '-  	 &>  '-   &!?  '-   &K  '-   &0  '-   &+H  '-   &`  '-   &;  '-     'C6  "?  'C6  # $COP %2
  'cop P(y  !l!  (z7   !)  (z7  !  (zP  !&  (zzN  (1  (z-  	 (>  (z-   (!?  (z-   (K  (z-   (0  (z-   (+H  (z-   (`  (z-   (;  (z-   !  (zC6  "!?  (zC6  #!X  (}6  $!	  (zN  (!I  (-  0!%  (
6  8!|&  (
6  <!,  (U  @!i6  (V  H   %8
    `'  l!  '7   )  '7    'P  &  'zN  &1  '-  	 &>  '-   &!?  '-   &K  '-   &0  '-   &+H  '-   &`  '-   &;  '-     'C6  "?  'C6  #  '
7  (;  '
7  0!0  ' zN  8!>  '6  @!   '	'P  H!`	  'YP  P! 5  '
7  X (  %<
$   K  P'U  !l!  '7   !)  '7  !  'P  !&  'zN  (1  '-  	 (>  '-   (!?  '-   (K  '-   (0  '-   (+H  '-   (`  '-   (;  '-   !  'C6  "!?  'C6  #!  '
7  (!;  '
7  0!$  '
7  8!  '
7  @!B'  '
7  H   %G
b  )  %)  67  )#6   *Iop )$7  Y8  )%6  #	  )'6  K  )(6     )*d  (  ),u6  0
!  )-u6  4K  )/d  8  )0u6  @  )1u6  D#  )36  HiE  )4K  P%  )5K  X1  )6K  `w'  )86  h  ):d  pNH  )<d  x  )=d  7  )AC6    )CM  :  )E7  +  )H!P  >  )KXG    )LXG  7  )N7  OJ  )O7  5H  )^d6    )`C6  ]N  )aC6  K?  )b6  `0  )nC6  5  )u86  EJ  )z7  +  ){7  .7  )}X  !  )~6  _9  )d  >  )6  +J  )<   +-!  )6  +
  )6  +  )XG  +$  )d   +  )d  (+-  )N  0+1$  ))  8+I*  ))  P+  ))  h+*2  )5  +|  )5  ,ISv )6  +  )d  +9  )7  ,Ina )  +H  )   +]  )  +-  )6   +(  )6  (,Irs )6  0+  )6  8+  )6  @+  )6  H+;  )   P+K  )6  X+gJ  )6  `+D  )6  h+  )7  p+  )W  x+h#  )W  +m9  )U  +%%  )6  `+B  )"=  h+I  )7  p+:D  )7  x+S  )7  +o0  )6  +7-  )6  +bF  )-  +  )  +4  )d6  +F  )C6  +  )7  +   )7  +i;  )7  +  )6    ) d    )c  D  )/c  "  )=+d  @?  )?K   M  )@-  
  )B6  D  )D6    )F@   ^   )I@   n   )JK   ]  )K6  (y  )L6  0?  )M6  8,  )N-  @A  )O   H[  )P6  PO  )Q6  X}  )T6  `!  )Ud  huC  )V   p  )X7  x!  )Y7  y*  )Z7  z  )[7  {  )\7  |  )]7  }  )^7  ~  )_7  :
  )a-  w  )b6  &  )dW    )fu6  I  )hu6    )lu6  rE  )o@     )pd    )s6  p  )t6  @  )u6  5?  )v6  3  )w6  N  )z6  E  )}6  x5  )6  
  )6  xK  )6  V  )6   &  )6   @  )6    )6    )d     )7  8l(  )7  @I  )6  H&  )6  PL  )6  X"  )6  `  )6  hT  )6  pE  )6  x&  )-  P  )B  >  )7    )7  00  )7    )7  6/  )X  G  )@     )@   4  )-  B  )d  3:  )-    )6  c(  )6  1+  )6  8  )@   $  )u6  O  )7  B  )7  U3  )d6      )@     )u6   H  )u6  >B  )e  :  )7  >  )	e    )t     )B  p  )N  xp  )zN  O  )zN  g2  )B  :  )@     )6  *  )7    ) 7  ?  )7    )7  O  )?  1"  )?    )3  =  )3  -Ian )	6  #N  )6  ,  )6  `+  )6  $8  )6  =  )K    )-  (&  )9    )!e  D8  )#6  `T  )%6  d  )'
`  hmB  ))6  p,?  )+u6  xy(  ),zN  4	  ).zN  6  )/zN  oL  )1zN  !  )3zN  0F  )6-  (  )7-     )8-     )96  A  ):C6  %  );7    )=C6  7  )>7  ?  )F7  G  )G7     )L0c  3  )N7  f  )S4  Q  )W@   ,  )Y7  >  )[-  C  )\6  o  )a6  P&  )b6  ;5  )c6   	I  )d6  	"  )f6  	  )g6  	H5  )j6   	N  )k6  (	  )l6  0	9  )m6  8	k)  )n6  @	*@  )o6  H	3  )p6  P	1  )re  X	L  )s/e  	kK  )t/e  (
:  )u6  
	(  )v6  
)  )w6  
5  )x6  
)  )y6  
$  )z7  
;  )|7  
~5  )}I  
;  )~  
4   )?e  
O  )C6  
A  )7  
M  )7  
H>  )6   ;$  )6  G  )Oe  i,  )6  C  )     )6  (@  )6  0'  )Ue  8+  )zN  @  )zN  H?  )[e  P6  )7  X  )7  `t  )9  h6  )ae  pd  )ae  xK  )6  c  )6  J  )6  1  )6  (  )6  m  )6  8  )c    )6  4  )6  <K  )L     )1`  2  )1`  i+  )1`  D1  )T`  -  )a`    )`    )7   .  )7  P  )6  u  )7  '  )6     )7  (@  )ge  0O  )d  8  ){c  @F  ) id  L  )	me    )
@   8#  )_  '  )"se  rO  )-hN    )/   $SV %O
)  )  %sv *)  5  *   /  *6  :  *6    *;   $AV %P
*  %av *F*  5  *>   /  *6  :  *6    *D>   $HV %Q
R*  %hv **  5  *N?   /  *6  :  *6    *>   $CV %R
*  %cv **  5  *>>   /  *6  :  *6    *=   A>  %S
*   g!  *4+  !5  *=   !/  *6  !:  *6  !  *?   $GP %T
@+  %gp P++  H  +
6   +  +tN  R>  +
B  U.  +
6  P  +
6  A  +
7   =  +
6  (?  +
B  0
  +
6  8&>  +-  @&.  +-   @{/  +@  H $GV %U
+  %gv *<,  5  *=   /  *6  :  *6    *4=   'io * ,  !5  *?   !/  *6  !:  *6  !  *T?   #  %W
,     `(?,  ![2  (CY     ]H  `(U-  !b  (	C6   !/)  (	C6  !}>  (
d6  !O   (
u6  !  (
u6  !1  (
u6  !H9  (X  !P  (XG  !  (K   !S  (
u6  (!5  (X  0 0  %Z
b-    0,-  x0  ,)A     ,[  D  ,
d6  1O  ,
   +  ,	C6  1#  ,K    ,
6   =  ,-  ( $XPV %[
-  'xpv  *,.  !8  *7   !.  * A  !\  *  !s  */A   T  %\
9.     (*.  !8  *7   !.  * A  !\  *  !s  *TA  !J  *@    !  %]
.   q
  (* .  !8  *7   !.  * A  !\  *  !s  *yA  !Z+  *@      %^
.     0*`/  !8  *7   !.  * A  !\  *  !s  *A  !J  *	@   !(  *
t@  (   %b
m/  M  (-/  8  -
7   .  - A  =  -K  J  -K  /  -
6      %c
/     .0  8  .
7   .  . A  5  .  |  .     %d
0   J  0*4{0  !8  *57   !.  *5 A  !\  *5  !s  *5A  !J  *6@   !(  *7t@  (   %e
0  9O  h/L1  8  /7   .  / A  \  /  s  /O  /6  /7   l:  /AO  (l  /cO  0  /O  8.  /-  @A  /O  HV  /B  P9C  /6  X%  /A  \A  /u6  ` D  %h
Y1     *^d2  !8  *_7   !.  *_ A  !\  *_  !s  *_B  !J  *`@   !]&  *b.=  (!O  *o<B  0!63  *q	<  8!z  *r	<  @!2  *s	<  H!LG  *t-  P!9  *u
6  X!$  *v-  `!I  *w
6  h!?  *x-  p!  *y
6  x!;  *z
   !  *{	C6   0  %i
v2  d2  5  @,2    ,Z   J  ,Z  $  ,Z  0E  ,Z  C  ,Z   M  ,Z  (B  , [  0  ,Z  8 $ANY %j
2  .any %3  /z  %  /Z#  %6  /E  %6  /  %6  /  %6  /?  %7  /!  %7  /a"  %-  /  %K  /B  %
u6  /   %
6  /  %	<  /%  %	M  /F  %
L   /i7  %
7  /  %  /E  %07    ?  %{4  !K  %|_   !F  %}  !
  %~   a  %l
+4   
>  0%4  !/  %_   !  %M  !  %M  !  %_  !   %_   !  %_  (   %m
4   u$  (*b4  !9  *c6   !+  *dM  !D2  *e*7  !  *f*7  !5&  *g6      %q
4    0?5  5  0K   !  0&N  &  0'
6  :  0(
6   $PAD %r
)     %s
Y5    (0+5    0,K     0-N    0.K    0/zN  B&  00
6      %t
5  
  00L86  O  0M-   >  0M7  )  0MN  :  0M6  6  0M6  #0  0M6   I  0M@   $3  0MC6  (d  0MC6  ) #I8 14  #U8 1!  C6  #I16 1G  S6  #U16 1   d6  #I32 1@   u6  #U32 1-  6  06  6  6  1 6  AH  16  '  1<6  T9  %w6  
N  %yu  
)  6  
6  6  
+  
)  
F*  
  $  7  *7  *7     
U  
7  5M  218  +  23@      26	-    27	-  }B  28	-  9  29	-   4  2:	-  (  2;	-  07  2<	-  8}#  2=	-  @  2@	-  H$  2A	-  PT  2B	-  XN6  2D8  `J  2F8  hx6  2H@   pk  2I@   to/  2J  x=  2M     2N4  &  2O8  ;A  2Q8  L  2Y  ($  2[8    2\9  L  2]8  h  2^	  L  2_
-   J  2`@     2b9   9M  367  2  2+  
8  
67     8  	9     
8  %$  
8    
9     9  	9    `  4*9  
8  6  4*9    4*9  25  5@      _9  1 T9    5_9  15  5@     5_9  #  6<9  l  m  6>9  
9  !  6N9    !  77	  96  8:  E  8	u6  1/  8-  0/  8	7  5  8	6   96  89  3-  *:  V,   a#  &  (  .D    .  !  =>  p  	6!  
c       r    e   K  *:  #HE *:  %he . :  ?  .$
"=     .%@  ~  .)gU   #HEK *:  %hek .-;  6  ..6     ./u6  X?  .58   *;    *-  *  *<  #  *M  \  *Y  !  *6  !  *=  H  *6  B  *=    *(=    *.=   =  9=  8  97   .  9 A  \  9  s  9C  |+  9uD   GI  9C  (.  97  0I  96  8P*  9K  @k  9K  H  9  PE  9{D  X	0  96  `E  96  d9;  9  h$
  96  p4  96  t#  9D  xi  9K  5  9-  %  96  1  9K  fN  9K    9K  &  9K  &&  9-  &2  9-  	  9B   
;  
"=  
:  
4+  
9  *=    *-  *  *<  #  *M  \  *Y  !  *6  !  *=  H  *6  B  *=    *(=    *.=   
0  *>>    *-  *  *<  #  *M  \  *Y  !  *6  !  *=  H  *6  B  *=    *(=    *.=   
{0  *>    *-  *  *<  #  *M  \  *Y  !  *6  !  *=  H  *6  B  *=    *(=    *.=   
`/  *N?    *-  *  *<  #  *M  \  *Y  !  *6  !  *=  H  *6  B  *=    *(=    *.=   
/  4*?  /  *-  /*  *<  /#  *M  /\  *Y  /!  *6  /!  *=  /H  *6  /B  *=  /  *(=  /  *.=   
L1  4*t@  /  *-  /*  *<  /#  *M  /\  *Y  /!  *6  /!  *=  /H  *6  /B  *=  /  *(=  /  *.=   52  *@  /"  *Y  /X>  *7  /9  *6  /M  *7   5J  *@  /1  *<  /:  *M  /L  *@  /  *7   
:  5O  *)A  /  *)A  /,  *   
U-  4*TA  />%  *  /d  *-   4*yA  />%  *  /d  *-   4*A  />%  *  /d  *-   4*A  />%  *  /d  *-   4*5A  />%  *5  /d  *5-   B;  *:6  B  *7  B   
*  
A  
4  4*_<B  />%  *_  /d  *_-   4*laB  /.  *maB  /F  *n	   
+  (  rB  1 gB  ^.  :rB    9B  +  9C6     9	C6  9  9	d6     9B    (9&C  w  9'K   0  9(K  e  9)	6  `  9*	6  \  9+K    >  9-;C  ?  9.C6   :  9/;C   B  KC  	9    ;  9:C  &  9;K   *end 9<K  $  9CK   ;  9DKC  
*  C  9C  >%  9  d  9-   u+  h9pD  H  9D   /	  9#E    9aE  C  9{E  ;  9E   ^O  9E  (  9E  0K  9 F  8  9)F  @I0  9MF  H  9{E  PD  9rF  XH  9F  ` C  
pD  
C  
C  =  9;  	  9D  =  9K   5  9D   
K  6  9D  C  D  *7  6  6   
D  u6  #E  *7  C  -  -  -  K  6    6   
D  -  [E  *7  C  6     -  -  6  [E   
D  
)E  6  {E  *7  C   
gE  E  *7  C   
E  E  *7  C  6  6   
E  E  *7  C  6  E   
)  E  
E  u6   F  *7  C  E  6   
E  6  )F  *7  C  6  6  6   
F  6  MF  *7  C  E  6   
/F    lF  *7  C  lF   
4  
SF  C  F  *7  6  @   7  uD  C  F  6  6   
7  
xF  6P9h	RG  rex 9iRG   !>  9jXG  !%  9l6  !5  9n-  !1  9o   !fN  9p  (!  9q  0!e/  9r)A  8pos 9sK  @!	  9tC6  H 
D  
  U:  9uF  6 9|	G  !^:  9}G   !  9~G  !  9-H  !G	  9-   
^G     x9G  !&  9	@    !q  9-  u 9P}M   
G  )$  9\-H  !
  9]KN   3  9^-H  xK  9^"-H   
G  7  9kG    9u6  69fH  !jH  9G    69	H  !jH  9G   !$
  9
6  !4  9
6  cp 9@H   6 9H  !jH  9G   !$
  9
6  !4  9
6  cp 9@H  !  9H   
B  6@9I  !jH  9G   !$
  9
6  !4  9
6  cp 9@H  !5  96  !  97  !
  9I   me 9H  (!R  9I  0!  96  8!  9d6  <!  9d6  > 
d6  
C6  6@9AJ  !jH  9G   !   9G  !6  9$G  !  9C  cp 9@H   !hL  9@H  $!  96  (B 9H  0!d  9-  8 69J  !jH  9G   !@  9
u6  !8  9
u6  me 9H   6 9	J  !jH  9G   !Z  9G  !  9
6  !M  9-   69J  val 9
@     689dK  !jH  9G   !   9G  me 9H  B 9H  cp 9@H   !O  97  $!  9@   (!'  9"@   ,!  9#-  0 6(9&K  !jH  9(G   !-  9)G  cp 9*@H  !hL  9+@H  !  9,-  !@  9-u6   !  9.u6  $ 6`91L  !jH  93G   c1 94
@   c2 94@   cp 95@H  !$
  96
6  !4  97
6  !)8  98
u6  !'  99
u6   !O  9:7  $A 9;H  (B 9;H  0me 9<H  8!F  9=L  @!E  9>L  N C6  L  	9    6h9A}M  !  9B
6   cp 9C@H  !$
  9D
6  !4  9E
6  c1 9F
@   c2 9F@   !=  9G-  !(  9H-   !'  9I
@   (min 9J
@   ,max 9J@   0A 9KH  8B 9KH  @!F  9LL  H!E  9ML  V 4h9>N  /7  93H  /^:  9 ^G  7yes 9MH  /  9fH  /  9H  /}2  9H  /#  9I  /4  9AJ  /N5  9J  /   9J  /-  9$J  /H  9/dK  /w  9?K  /  9NL     9QG  >N  [N  	9     $  9_G  $  ;K9   
<,  ,  0K  0!N  :  0"N     0#N    0$N   
L5  
?5  0N  E  0	N    0%N   
N  
N  
N  
5  0MO  Y;  0M7  9+  0MB   /AO  >%  /  d  /-   /cO  5  /7     /2   /O  x)  /7    /B   /O  A6  /6  C  /@   /O    /B     /   '	 P  L  'zN  sv '6  iv '<  uv 'M   B  'O  7  P  *7   
P  
 P  4'YP  /&  '7  /!F  'zN  /A-  '6   4'
~P  /i%  '7  /0  'zN   +  0<1P  m  <3	-   /  <4	-  @  <6r  cH  <7~  ;  <8	-  "'  <9	-   B  <:	-  ( q	   =*)Q  1  =,-   +  =--  +  =.~  A  =/K   ".;   >HQ  `2  >MQ   +~  >VQ  +t  >[Q   +7  >bQ   +  >i   +@*  >nQ       Q  89       Q  89       Q  89       Q  89   w K  H?+RR    ?--   m  ?.-  u  ?/L     ?0L     ?1L      ?2L   (	  ?4L   0J  ?6L   8N  ?89   @ P@h	U  !0  @j-   !B  @k	-   !  @qU  !  @u-  !   @v	-    !^  @yP  (!  @z-  H!D  @{	-   P!  @}U  X!$  @  `!l&  @-  !T%  @	-   !  @$U  !?  @@   !  @-  !  @	-   !9  @k  ! 6  @-  !  @	-   !2  @*U  ! 7  @@   !yH  @B  J  @-     @	-   "  @0U    @~P    @-  HmF  @	-   P}  @6U  X  @  `.  @-  S5  @	-   N  @<U    @Q    @-     @	-   #  @BU  $   @HU  \   @	-    P  @HU  5  @NU  ]  @	-     @NU   &4  @-  (""  @	-   06  @-  8M  @	-   @R4  @	@   H 
)Q  
P  
  
k  
B  
~P  
  
Q  
{  
  \(  @RR  
7  .&U  =  .'6  x%  .(	-      ( U  4K  (!U   D  ("B	  &  (#@   K  ($7    (%d6   
U  
  ((U  /  (U  K8  
  
U   @/  (('[V  !#  ((
7   !k  (*N  cv (+
B  !5  (-
u6  !J  (.6     )  ((3V  !#  (4
7   !k  (6N  cv (7
B  gv (9
6  !A  (:
6       0(uW  !#  (v
7   !)  (x
6  !;0  (y
7  !O  (z
6  cv ({
B   !M;  (|W  ( 
U  4(:W  7svp (6  7gv (6   6(`W  ary (
6   ix (
<   6(W  !:  (
u6   ix (
<   6(W  cur (	<   end (	<   6(W  cur (6   end (6   4(X  7ary (:W  //  (`W  / >  (W  /D  (W    K  0(hX  !  (hX   !.  (W  !5  (6  !;  (W  !L  (
N  ( 
   ;  (X  !J  (7   !6  (6   40(X  /  (V  /G@  ([V  /'  (V  /@  (X  /w1  (nX   
t   I  X(Y  !D  ( 	C6   !Q  (	C6  !F  (
d6  !o  (
u6  !  (K  !.8  (K  !  (-  !y  (
6   !8  (	
6  (!-  (
-  0!-  (-  8!w	  (-  @!f  (  H!  (C  P 4`(@Y  /(  (A,  /I  (BX    c9  0(bZ  !,  (6   !{  (bZ  !  (hZ  !B  (hZ  !{  (u6   !'  (u6  $!  (u6  (!  (u6  , 
,  
Y  0  (Y  @   Z  *7  6  )A   
{Z  6  Z  *7  6  )A   
Z  @   Z  *7  6  )A  6     u6   
Z  @    [  *7  )A  lF   
Z  
d2  A	J[  *val A:   &  AG    Au6    AB     A[  #  (A[  
  A[   D   A6  _,  A-  J  A-    A6    
V[  F$  A V[  "K  A"v_  4   A&v_   <  A':  h0  A(@     A+@   '  A-@   /  A.|_   &  A/|_  (*ps A0|_  08  A4
u6  8  A5
u6  <  A6-  @)'  A7-  H8  A8	C6  P.  A9	C6  Q(  A;	C6  R4  A<
7  SJ  A=
u6  Tc  A>
7  X;  A?
7  `  A@
6  hV"  AA
d6  p,  ABd6  r  AC
u6  t1  AD
6  x&  AE
u6    AF
u6  '  AG	M  L  AH	M  N  AI7  N  AJ	C6  %  AK
d6  /  AL
u6  9  AM
7  6  AN
6    AO_  G   AP
6  b,  AQ-  vJ  AT-  sJ  AU-  B"  AV-  N  AW-  .  AX-  m  AY-  -  A^6  9  A_
d6  d-  A`	C6    Aa	C6  +3  Ab
7   +  Ac.=  +6N  Ad
6  +  Af_  +  Ag
_  @+SE  Ah	C6  T+_-  Ai	C6  U+x9  Aj	C6  V+B  Ak	C6  W+i>  AlX  X+  Am
  `+L  An6  `+92  Ao6  d+AA  Ar<  h+N  As<  p+  At   x+U)  Av7  y9*  Ax-  x9  Ay-  x9z  Az-  x9;  A{-  x+-  A}7  {+  A~	C6  | 
[  
J[  
[  :  _  	9    u6  _  	9    K  A[  
3  
_    
_     %`  !  %*7   !3  %$`  !K  %$`   
_  1  %Q`  
`  
"`  @   1`  *7     %R>`  
D`  T`  *7  6     %S`  E  %Un`  
t`  7  `  *7  6   H  %V`  
`  `  *7      `  1 `  B  %u`  oD  %w`    %y`    %{`  /  %}`  7  %`    %`  .B  %`    %`  4  %`  :  %`  M#  %`     ba  	9    Ra  4%  %ba  '  %`  eC  %`    %`  0  %`  \E  %`    %`  '3  %`  b%  %`  8  %`    %`    %`    %N6  '  %N6  F  %N6     :b  	9   @ *b    %:b    %`     ib  	9    Yb  
  %ib    %ib    %_9  G   b  1 b  >  %b  $  %rB  *C  %rB  ^  %rB  *1  %rB  !  b  1 W  %b    %rB     c  1 3G  %c  
  %`  }*  -  %nc  4      :E  N  ;  C  *   "  %_9    K  H%Fc  pad %Gc    )  c  	9    *  %Pc  
c  c  *7  7   1>  %ac  
c  u6  c  *7  6  6   +  %fP  O   %gd  
d  7  +d  *7  7     %hc  2  %iEd  
Kd  @   id  *7  -    aU     %l`     %sd  fn %t07   ptr %u   n?  %vvd  
2  
u6  
nZ  
[N  
>N  
_  -  d  	9    
   
@   <  d  	9    
   
d  
6    e  	9    6  /e  	9   	 6  ?e  	9    C6  Oe  	9    
4  
7  
TU  
9  
-  
  6  e  	9   " 7  %p6    %p6    B_9  4  B&_9  c  e  1 S@  Be  d  e  1   Bce  
  B6  _6  e  1 e  ,  B	e  p6  f  1 f  7  B	f  &  B	`    B	e  N6  Rf  1 Gf  a8  B	Rf  .  C&6    C(*7    C-6  %  C17  9  C47  m2  CK9  D  CL9  (  CX6    C[d  &L  C\@   @  C]@   *  Ca<  6  Ce6  ?   Cf6  *  Ci  U  C6  *  C6  OM  C@   O-  C@   W6  C8d  /9  C7  J  CM  '  C6    C)    C7  !  g  	9    	  Cg  8  %4`  O  %6`     g  	9    g  IC  Dg  q2  g  	9    g    Dg  N6  h  	9    h    %Nh  7  5h  1 *h  :)  %b5h  <  %c5h  h"  %d5h  6  %e5h  X1  %f5h  KA  %g5h  
   4%Zh  7nv %ZY  7u8 %Zh   h  C6  h  	9    2  %Zh  4%[h  7nv %[Y  7u8 %[h   h    %[h     i  	9   ; i  :D4  Fi  K  DExi  *min E!   *len E!  B  E   .  Exi  )/  Exi  $ !  i  	9    &  E)i  "#  Ei    E    $+  E   	  E	.  +  Ei  +  Eh   
i  r  Ei  "u  0E!Hj    E#-   >  E$
  -%  E%   , C  E&   .*map E'	.  0 
  E(i  ; :	,l  ,  ;6   *p <    >6  0  ?6    @7   JL  A6  (  C-  0  D-  4.  E-  8?  F,l  @#  H-  Hu8  J6  P#  K
-  X{L  L
  `<ns N-  h&[/  O-  h&  P-  h,  T6  p0  U6  x?@  V6    W6  @  X6  B  Y6    [6    \6     ]6  _M  ^6    _6  h  `6    b6    c6  &  e6    f6  I  h6  C,  i6   
-  :  jTj  =8  m7  	0@!       dl  	9    =#  oTl  	 @!     -  l  	9    =D  qzl  	`:!     >ms "  	@!     ?PL       _      w  @7  *7         Acv B  A   =   B?  @   Cax u6     z   DN5  6  Esp 6  D  u6  FI     
G     G     cz H     pz m  IUIQ	G     IR	?     IX	:      G     cz G     cz G     cz H)     }z m  IT	     IQ	       G0     cz HF     }z 7n  IT	      IQ	`       GM     cz Hc     }z pn  IT	H     IQ	       Gj     cz H     }z n  IT	h     IQ	p@       G     cz H     }z n  IT	     IQ	 	      G     cz H     }z o  IT	     IQ	=       G     cz H     }z To  IT	O     IQ	;       G     cz H     }z o  IT	     IQ	pg       G     cz H     }z o  IT	      IQ	pe       G     cz H.     }z o  IT	0     IQ	0b       G5     cz HK     }z 8p  IT	`     IQ	^       GR     cz Hh     }z qp  IT	     IQ	[       Go     cz H     }z p  IT	     IQ	@       G     cz H     }z p  IT	     IQ	pX       G     cz H     }z q  IT	      IQ	0U       G     cz H     }z Uq  IT	P     IQ	Q       G     cz H     }z q  IT	     IQ	O       G      cz H     }z q  IT	     IQ	       G     cz H3     }z  r  IT	     IQ	`       G:     cz HP     }z 9r  IT	     IQ	0       GW     cz Hm     }z rr  IT	@     IQ	       Gt     cz H     }z r  IT	h     IQ	       G     cz H     }z r  IT	     IQ	p       G     cz H     }z s  IT	m     IQ	       G     cz H     }z Vs  IT	     IQ	`       G     cz H     }z s  IT	     IQ	Pt       G     cz H     }z s  IT	     IQ	       G"     cz H8     }z t  IT	     IQ	       G?     cz HU     }z :t  IT	8     IQ	       G\     cz Hr     }z st  IT	`     IQ	0       Gy     cz H     }z t  IT	     IQ	P6       G     cz H     }z t  IT	     IQ	p4       G     cz H     }z u  IT	     IQ	2       G     cz H     }z Wu  IT	     IQ	       G     cz H     }z u  IT	@     IQ	        G
     cz H      }z u  IT	`     IQ	P       G'     cz H=     }z v  IT	     IQ	       GD     cz HZ     }z ;v  IT	     IQ	@w       Ga     cz Hw     }z tv  IT	     IQ	q       G~     cz H     }z v  IT	     IQ	pi       G     cz H     }z v  IT	0     IQ	N       G     cz H     }z w  IT	X     IQ	.       G     cz H     }z Xw  IT	     IQ	0M       G     cz H     }z w  IT	     IQ	@      G     cz J     z  Kn-  X@           {  @7  X*7        Acv XB      B?  Z@   Csp Z6      Cax Zu6      LN5  Z6      L  Zu6  [  Y  M3  z  L  ^      Ls  `6      L(  b@   7  /  L&  c6      M3  y  D  @   Ccbv {      M 4  ay  F    D);  
@   L  -  7  5  H     z 4y  IU~ IR1 Go     cz N     z IT IQw IR2  G     cz H     z y  IT|  G     cz H     z y  IT|  H     1g y  IU~  N     1g IU~ IT   M04  1z  L  z<  `  Z  G     cz G     cz N	     z ITv IQ|   G     cz G     cz G     cz H     z uz  IT~ IQ2 G     cz G$     cz G9     cz GA     z G     cz G%     cz G0     cz GM     cz  O            #{  L  |H      G     cz G     cz  Py }       p3  ZL{  Qy      Gs     cz G}     cz G     cz H	     z {  IU IT	      G	     z  
2l  KL  ?0M      p      ~  @7  ?*7    
  Acv ?B  O  G  B?  A@   Csp A6      Cax Au6      LN5  A6      L  Au6      M   a}  L  E  P  L  L,  G-      O,N             |  Ccbv {      G=N        GM      cz GM      cz GM      cz HM      z }  IT} IQ2 GM      cz GN      cz GN      cz H,N      { F}  ITv IQ2 GeN      cz G}N      cz  O=N             }  L  SH      GDN      cz GON      cz  Py WM          A}  Qy      GMM      cz GWM      cz GlM      cz NN      z IU~ IT	s       K  (.            Ѐ  @7  (*7  	  	  Acv (B  `	  X	  B?  *@   Csp *6  	  	  Cax *u6  
  
  LN5  *6  
  
  L  *u6  
  
  M     L  .  5  1  L(  0@   o  k  L&  16      M   &  Ccbv {{       M   y  L  8<      G/      cz G0      cz N0      z ITv IQ|   G9/      cz Gc/      cz Gr/      cz H/      z   ITv IQ2 G/      cz G/      cz G/      z G/      cz G50      cz G@0      cz G]0      cz  O0             ^  L  :H  V  T  G0      cz G0      cz  Py .        P   *  Qy |  z   G.      cz G.      cz G/      cz N0      z IU} IT	0       K,  N      >      1  @7  *7      Acv B      B?  @   Csp 6  r  p  Cax u6      LN5  6  B  >  L  u6      M  z  L        M  (  Ccbv d{  	    HWO       ˁ  IU}  HjO      {   IUv IT0IQ0 HvO      "{   IUv IT0IQ0 NO      /{ IT0IQ0  GO      cz G)O      cz G8O      cz HHO      z l  ITv IQ2 GO      cz  OvO               L  #H  A  ?  G}O      cz GO      cz  Py N        P    Qy g  e   GN      cz GN      cz GN      cz NO      z IU} IT	0       K  
pi      8        @7  
*7      Acv 
B      B?  
@   Csp 
6  ]  [  Cax 
u6      LN5  
6      L  
u6  ~  |  M    L  
      LC,  
6  	    L(  
6  Z  R  M    Ccbv S{      L #  T      G\j      cz Hgj      <{ x  IT  Gj      cz Hj      I{   ITIQv IR2 Hj      V{   IU}  Gj      cz Gj      cz Gk      cz Gk      cz Hk      <{   ITv  Gl      cz H l      z 3  IT  GWl      cz Hdl      c{ ]  ITv IQ0 Gl      cz Nl      c{ ITv IQ2  Gi      cz G
j      cz Gj      cz H)j      z ȅ  IT} IQ2 G9j      cz Gk      cz  Ok             (  L  H      G
k      cz Gk      cz  Py i        p  
Q  Qy      Gi      cz Gi      cz Gi      cz Nl      z IU~ IT	       KF  
q      8        @7  
*7      Acv 
B    
  B?  
@   Csp 
6      Cax 
u6      LN5  
6  H  @  L  
u6      M  L  L  
      LI  
6  L  F  L(  
6      M     Ccbv A{      LhG  B!  R  H  Gq      cz Hr      <{   IT  G+r      cz H@r      I{   ITIQv IR2 Hvr      p{ +  IU}  G}r      cz Gr      cz Gus      cz Gs      cz Hs      <{ w  ITv  Gs      cz Hs      z   IT  Gs      cz Ht      c{ ƈ  ITv IQ0 G't      cz N7t      c{ ITv IQ2  G|q      cz Gq      cz Gq      cz Hq      z 1  IT} IQ2 Gq      cz GUs      cz  Or               L  
H      Gr      cz Gr      cz  Py =q          
  Qy      G3q      cz G=q      cz GRq      cz NHt      z IU~ IT	,       K%  
@w              @7  
*7      Acv 
B  W  M  B?  
@   Csp 
6      Cax 
u6      LN5  
6  r  n  L  
u6      M   :  L  
      L(  
6  =  5  MP    F)  .@   @Fh  .@   DL  /       Hx      }{ ?  IU~ ITw IQD H(x      { W  IU~  G9x      cz HGx      {   IT| IQ~  $ & Gx      cz Nx      { IT	g     IQ0  Gw      cz Gw      cz Gw      cz Hx      z   IT| IQ2 GQx      cz H\x      z   IT|  Gfx      cz Gx      cz  Onx               L  
H      Gux      cz Gx      cz  Py {w          
  Qy ;  9   Gqw      cz G{w      cz Gw      cz Hx      z   IU} IT	0      Gx      z  K  
      g      {  @7  
*7  b  ^  Acv 
B      B?  
@   Csp 
6      Cax 
u6  3  '  LN5  
6      L  
u6      M@  Ď  Cenc 
{  J  H  Mp  7  Ctmp 
	<  o  m  G\      cz G~      cz G      cz H      z )  ITv IQ2 G      cz  G$      cz G;      cz HM      { v  IT} IQ	m      G      { G      { Hċ      {   IUv  N      { IU	       Oċ             	  L  
H      Gˋ      cz G֋      cz  Py           
2  Qy      G݊      cz G      cz G      cz N'      z IU} IT	i       
i  K  )
P              @7  )
*7      Acv )
B  "    B?  +
@   Csp +
6      Cax +
u6      LN5  +
6  +  #  L  +
u6      M    L:  /
	-      Lh  1
@   x   t   L(  3
6        M   .  Cemh   F!  <!  LKE  -  !  !  L C  -  +"  %"  M@    L  {  "  "  Csv 6  "  "  Cpfx i  /#  )#  Ebm h  L  
@   #  #  Ci 
@   #  #  M  P  Cc    +%  %%   M  ӑ  L8  i  v%  t%  PEz p            RVz  Sy              $       Qz %  %  Rz Qz %  %    PEz Ѝ           QVz %  %   TEz                     1  QVz &  &   T'z                     f  Q8z 5&  3&   PEz Ï        P    RVz  Gy      cz Gp      cz H      {   ITIQ}  H      { ڒ  IU
 H      {   IU H      {   IU1$ G      cz H      { 4  IT0 G      cz H      { n  ITs IQ	m     IR G8      cz H\      {   ITIQIR IX$IYs  G      cz H      |   IT	      IQ0 NА      { IU	H       S'z l       l              Q8z `&  ^&    G      cz G      cz G      cz H      z w  ITs IQ0IR2 G      cz GB      cz GR      cz Hb      z   IT} IQ2 G      cz H      z   IT}  G      cz Gm      cz G      cz  O             M  L  
H  &  &  G      cz G      cz  Py           +
v  Qy &  &   Gt      cz G      cz G      cz N      z IU~ IT	       
Hj  K@F  
               @7  
*7  &  &  Acv 
B  '  '  B?  
@   Csp 
6  '  '  Cax 
u6  '  '  LN5  
6  F(  B(  L  
u6  (  (  M  Η  L  
@   (  (  D(  
	-  D&  
6  Cret    )  	)  Gj      cz G      cz G      cz H      z   IT} IQ2 G      cz Gґ      cz Gڑ      z H      | <  IU}  G      cz G      cz H      z n  IU  G      cz G      cz H,      &|   ITv IQ}  G]      cz Gd      cz Gu      cz  O,               L  $
H  E)  C)  G3      cz G>      cz  Py -          
<  Qy k)  i)   G#      cz G-      cz GC      cz N      z IU} IT	       K=  
            6  @7  
*7  )  )  Acv 
B  )  )  B?  
@   Csp 
6  8*  2*  Cax 
u6  *  *  LN5  
6  +  +  L  
u6  n+  l+  M    L  
  +  +  L(  	
@   +  +  L&  

6  ,  ,  M@  Ǚ  L  
<  V,  R,  G      cz GO      cz N]      z ITv IQ|   G	      cz G3      cz GB      cz HR      z   ITv IQ2 G\      cz Gq      cz Gy      z H      3| J  IU|  G      cz G      cz G      cz G-      cz  Oғ             Ě  L  
H  ,  ,  Gٓ      cz G      cz  Py ͒          
  Qy ,  ,   GÒ      cz G͒      cz G      cz Nq      z IU} IT	0       KI  	2              @7  	*7  ,  ,  Acv 	B   -  -  B?  	@   Csp 	6  -  -  Cax 	u6  .  -  LN5  	6  .  .  L  	u6  .  .  M  0  L  	  3/  //  L(  	L   o/  i/  L&  	6  /  /  M   x  L  	<  /  /  G3      cz G?4      cz NM4      z ITv IQ~   G2      cz G#3      cz G23      cz HB3      z   ITv IQ2 GL3      cz Ga3      cz Gi3      z Ht3      @|   IU}  G~3      cz G3      cz G 4      cz G4      cz  O3             u  L  	H  .0  ,0  G3      cz G3      cz  Py 2          	  Qy T0  R0   G2      cz G2      cz G2      cz Na4      z IU} IT	0       K  	p4              @7  	*7  {0  w0  Acv 	B  0  0  B?  	@   Csp 	6  !1  1  Cax 	u6  v1  j1  LN5  	6  2   2  L  	u6  W2  U2  M    L  	  2  2  L(  	@   2  2  L&  	6  3  3  M  )  L  	<  ?3  ;3  G5      cz G6      cz N-6      z ITv IQ|   G4      cz G5      cz G5      cz H"5      z m  ITv IQ2 G,5      cz GA5      cz GI5      z HT5      M|   IU|  G^5      cz G5      cz G5      cz G5      cz  O5             &  L  	H  w3  u3  G5      cz G5      cz  Py 4        `  	O  Qy 3  3   G4      cz G4      cz G4      cz NA6      z IU} IT	0       K	  	P6            I  @7  	*7  3  3  Acv 	B  4  3  B?  	@   Csp 	6  j4  d4  Cax 	u6  4  4  LN5  	6  M5  I5  L  	u6  5  5  M0    L  	  5  5  L(  	@   6  6  L&  	6  N6  J6  M`  ڡ  L  	<  6  6  G`7      cz G7      cz N8      z ITv IQ|   G6      cz G6      cz G6      cz H7      z   ITv IQ2 G7      cz G!7      cz G)7      z H47      Z| ]  IU|  G>7      cz G7      cz G7      cz G7      cz  O7             ע  L  	H  6  6  G7      cz G7      cz  Py }6           	   Qy 6  6   Gs6      cz G}6      cz G6      cz N!8      z IU} IT	0       KmA  	0              @7  	*7  7  	7  Acv 	B  N7  F7  B?  	@   Csp 	6  7  7  Cax 	u6  8  7  LN5  	6  8  8  L  	u6  8  8  MP  C  L  	  #9  9  L(  	@   ]9  Y9  L&  	6  9  9  M    L  	<  9  9  G1      cz G_2      cz Nm2      z ITv IQ|   G1      cz GC1      cz GR1      cz Hb1      z Ϥ  ITv IQ2 Gl1      cz G1      cz G1      z H1      g|   IU|  G1      cz G2      cz G 2      cz G=2      cz  O1               L  	H  	:  :  G1      cz G1      cz  Py 0           	  Qy /:  -:   G0      cz G0      cz G0      cz N2      z IU} IT	0       K  	              @7  	*7  V:  R:  Acv 	B  :  :  B?  	@   Csp 	6  %;  #;  Cax 	u6  R;  H;  LN5  	6  ;  ;  L  	u6  <  <  M   _  L  	  d<  R<  L(  	6  '=  =  M0  ۧ  L    =  =  Ccbv {  +>  '>  G      cz H      t| @  ITIQ	g     IR0 Hʟ      | e  IU} IT	       Hҟ      | }  IU}  H      |   IU} IT  G      cz H       <{   IT|  GU      | Ge      |  G      cz GD      cz GS      cz Hc      z   IT| IQ2 G
      cz H      z D  IT|  G      cz Gu      cz  O'               L  	H  c>  a>  G.      cz G9      cz  Py ݞ          	ͨ  Qy >  >   GӞ      cz Gݞ      cz G      cz N      z IU} IT	0       K  s	               @7  s	*7  >  >  Acv s	B  >  >  B?  u	@   Csp u	6  R?  P?  Cax u	u6  ?  u?  LN5  u	6  "@  @  L  u	u6  u@  s@  M  e  L  y	  @  @  OK               Ccbv {  @  @  GP      |  G      cz G)      cz G8      cz HH      z W  ITv IQ2 G}      cz  OP               L  	H  @  @  GW      cz Gb      cz  Py Ǡ        p  u	Ӫ  Qy A  A   G      cz GǠ      cz Gݠ      cz N      z IU} IT	0       KP$  @	              @7  @	*7  EA  AA  Acv @	B  A  ~A  B?  B	@   Csp B	6  A  A  Cax B	u6  B  
B  LN5  B	6  B  B  L  B	u6  C  C  M`  ˭  L>  F	6  BC  >C  L_  H	6  |C  xC  LG  J	6  C  C  L3  L	6  C  C  L(  N	6  0D  &D  M  d  F_C  c  F<  c  L@  d-  D  D  LP  e-  5E  )E  L  f-  E  E  Cbp g-  3F  !F  L!  h-  "G  G  G      { Ht      d   IU|  H      {   IU|  G      cz H      z 6  IT IQIR2 G      cz N$      z IT| IQIR2  G=      cz GX      cz Gn      cz G      cz G      cz H      z   IT}  G      cz  O               L  n	H  G  G  G      cz G      cz  Py         0  B	9  Qy H  H   G      cz G      cz G      cz GE      z NT      z IU} IT	x       Kr7  Pt            R  @7  *7  6H  2H  Acv B  H  oH  B?  @   Csp 6  PI  HI  Cax u6  I  I  LN5  6  J  J  L  u6  J  J  M  ϱ  L    -K  )K  L9  	@   gK  cK  F)  '@   @Fh  (@   DCpos )   K  K  L  *   K  K  L  +   DL  @L  LT(  ,   L  zL  L  -@   L  L  L'  -@   7M  -M  Ccnt .@   M  M  Gt      cz Gt      cz G
u      cz Hu      z `  IT} IQ2 G+u      cz GNu      cz G^u      cz Hnu      z   ITs IQ2 Hu      }{ Ȱ  IU} ITw IQD Gv      cz G9v      cz HGv      {   IT} IQs  $ & GRv      cz H]v      z +  ITs  Gjv      cz Huv      { V  IT~  $ & Gv      cz Hv      z {  ITs  Gv      cz Gv      cz Gv      cz G w      cz Nw      | IT| IQ| IR2  Py t            Qy &N  $N   Gt      cz Gt      cz Gt      cz H7w      z D  IU~ IT	?      G<w      z  KH  `              @7  *7  MN  IN  Acv B  N  N  B?  @   Csp 6  O  O  Cax u6  IO  ?O  LN5  6  O  O  L  u6  P  P  M  3  L    MP  IP  D(  6  M     Cret    P  P  G      | G.      cz G8      cz HD      z   IU  GQ      cz G`      cz Hn      &|   ITv IQ}  G      | Għ      cz GΧ      cz  Gʦ      cz G      cz G      cz H      z %  IT} IQ2 G      cz  On             x  L  H  P  P  Gu      cz G      cz  Py             Qy Q  Q   G      cz G      cz G      cz N      z IU} IT	0       KyF        x      :  @7  *7  6Q  2Q  Acv B  wQ  oQ  B?  @   Csp 6  Q  Q  Cax u6  	R  Q  LN5  6  R  R  L  u6  'S  %S  M    L    aS  ]S  LB  6  S  S  M  $  Cb -  S  S  Hܨ      |   IU}  G      cz N1      z ITv IQ0IR2  GV      cz G      cz G      cz H      z h  IT} IQ2 G      cz GE      cz  Oܨ             ȶ  L  H  S  S  G      cz G      cz  Py         P    Qy T  T   G      cz G      cz G,      cz Nh      z IU~ IT	       K?!  p      8        @7  *7  ET  AT  Acv B  T  ~T  B?  @   Csp 6  U  U  Cax u6  AU  7U  LN5  6  U  U  L  u6  5V  3V  M    L    qV  kV  Lh  6  V  V  L(  6  W  	W  M@    LT  +  wW  mW  Ccbv {  W  W  G\      cz Hg      <{   IT  G      cz H      I{   ITIQv IR2 H֪      | ˸  IU}  Gݪ      cz G      cz Gի      cz G      cz H      <{   ITv  G      cz H       z <  IT  GW      cz Hd      c{ f  ITv IQ0 G      cz N      c{ ITv IQ2  Gܩ      cz G
      cz G      cz H)      z ѹ  IT} IQ2 G9      cz G      cz  O             1  L  H  ;X  9X  G
      cz G      cz  Py           Z  Qy aX  _X   G      cz G      cz G      cz N      z IU~ IT	       K        8        @7  *7  X  X  Acv B  X  X  B?  @   Csp 6  WY  UY  Cax u6  Y  zY  LN5  6  Y  Y  L  u6  xZ  vZ  M  U  L    Z  Z  L  6  [  Z  L(  6  T[  L[  M     L5    [  [  Ccbv {  3\  -\  G      cz H      <{   IT  G˭      cz H      I{   ITIQv IR2 H      | 4  IU}  G      cz G,      cz G      cz G3      cz H>      <{   ITv  GU      cz H`      z   IT  G      cz H      c{ ϼ  ITv IQ0 Gǯ      cz Nׯ      c{ ITv IQ2  G      cz GJ      cz GY      cz Hi      z :  IT} IQ2 Gy      cz G      cz  OE               L  H  ~\  |\  GJ      cz GU      cz  Py ݬ          ý  Qy \  \   GӬ      cz Gݬ      cz G      cz N      z IU~ IT	       KI  `      8        @7  `*7  \  \  Acv `B  ]  ]  B?  b@   Csp b6  ]  ]  Cax bu6  ]  ]  LN5  b6  B^  :^  L  bu6  ^  ^  M    L  f  ^  ^  L_M  h6  F_  @_  L(  j6  _  _  M  t  LQ/     _  _  Ccbv {  v`  p`  Cset @   `  `  Gܰ      cz H      <{ h  IT  G      cz H       I{   ITIQv IR2 HV      |   IU}  G]      cz Gl      cz GU      cz Gs      cz H~      <{   ITv  G      cz H      z #  IT  Gײ      cz H      c{ M  ITv IQ0 G      cz N      c{ ITv IQ2  G\      cz G      cz G      cz H      z   IT} IQ2 G      cz G5      cz  O               L  {H  `  `  G      cz G      cz  Py         `  bA  Qy #a  !a   G      cz G      cz G2      cz N(      z IU~ IT	       KCD  A0      8        @7  A*7  Ja  Fa  Acv AB  a  a  B?  C@   Csp C6  b  b  Cax Cu6  Fb  <b  LN5  C6  b  b  L  Cu6  :c  8c  MP  <  L  G  vc  pc  L   I6  c  c  L(  K6  d  d  M    L    |d  rd  Ccbv {  d  d  G      cz H'      <{   IT  GK      cz H`      I{   ITIQv IR2 H      |   IU}  G      cz G      cz G      cz G      cz H      <{ g  ITv  Gյ      cz H      z   IT  G      cz H$      c{   ITv IQ0 GG      cz NW      c{ ITv IQ2  G      cz Gʳ      cz Gٳ      cz H      z !  IT} IQ2 G      cz Gu      cz  OŴ               L  [H  @e  >e  Gʴ      cz Gմ      cz  Py ]           C  Qy fe  de   GS      cz G]      cz Gr      cz Nh      z IU~ IT	       K3  "`      8      \  @7  "*7  e  e  Acv "B  e  e  B?  $@   Csp $6  \f  Zf  Cax $u6  f  f  LN5  $6  g  f  L  $u6  }g  {g  M@    L  (  g  g  L  *6  h  h  L(  ,6  Yh  Qh  Mp  F  L!    h  h  Ccbv {  8i  2i  GL      cz HW      <{ :  IT  G{      cz H      I{ l  ITIQv IR2 Hƺ      }   IU}  Gͺ      cz Gܺ      cz GŻ      cz G      cz H      <{   ITv  G      cz H      z   IT  GG      cz HT      c{   ITv IQ0 Gw      cz N      c{ ITv IQ2  G̹      cz G      cz G	      cz H      z   IT} IQ2 G)      cz G      cz  O               L  <H  i  i  G      cz G      cz  Py           $  Qy i  i   G      cz G      cz G      cz N      z IU~ IT	       K        8        @7  *7  i  i  Acv B  j  	j  B?  @   Csp 6  j  j  Cax u6  j  j  LN5  6  Gk  ?k  L  u6  k  k  M    L  	  k  k  L  6  Kl  El  L(  6  l  l  M    L    m  l  Ccbv {  {m  um  G      cz H      <{   IT  G      cz H      I{   ITIQv IR2 H&      }   IU}  G-      cz G<      cz G%      cz GC      cz HN      <{ 9  ITv  Ge      cz Hp      z ^  IT  G      cz H      c{   ITv IQ0 G      cz N      c{ ITv IQ2  G,      cz GZ      cz Gi      cz Hy      z   IT} IQ2 G      cz G      cz  OU             S  L  H  m  m  GZ      cz Ge      cz  Py         p  |  Qy m  m   G      cz G      cz G      cz N      z IU~ IT	S       K`3  O              @7  *7  n  n  Acv B  Xn  Ln  B?  @   Csp 6  n  n  Cax u6  o  o  LN5  6  o  o  L  u6  p  p  M    L    =p  9p  L  6  yp  sp  L(  6  p  p  M@    Ccbv {  ,q  &q  GP      cz HP      <{   ITv  GP      cz H	Q      I{ '  IT~ IQ IR2 GQ      cz GQ      cz GeQ      cz HpQ      z f  ITv  GQ      cz GQ      cz NQ      <{ IT   GLP      cz G{P      cz GP      cz HP      z   IT~ IQ2 GP      cz G}Q      cz  O3Q             9  L  H  wq  uq  G8Q      cz GCQ      cz  Py P          b  Qy q  q   GP      cz GP      cz G"P      cz NQ      z IU~ IT	       K,  Q      8        @7  *7  q  q  Acv B  	r  q  B?  @   Csp 6  r  r  Cax u6  r  r  LN5  6  ;s  3s  L  u6  s  s  M  ]  L    s  s  L&  6  ?t  9t  L(  6  t  t  M    L  t!  t  t  Ccbv v{  ou  iu  GR      cz HR      <{   IT  GS      cz H S      I{ $  ITIQv IR2 HVS      } <  IU}  G]S      cz GlS      cz GUT      cz GsT      cz H~T      <{   ITv  GT      cz HT      z   IT  GT      cz HT      c{   ITv IQ0 GU      cz NU      c{ ITv IQ2  G\R      cz GR      cz GR      cz HR      z B  IT} IQ2 GR      cz G5T      cz  OS               L  H  u  u  GS      cz GS      cz  Py R            Qy u  u   GR      cz GR      cz G2R      cz N(U      z IU~ IT	       K1  0U      8      }  @7  *7  v  v  Acv B  Lv  @v  B?  @   Csp 6  v  v  Cax u6  w  v  LN5  6  ~w  vw  L  u6  w  w  M	    L    3x  -x  L  6  x  |x  L(  6  x  x  M	  g  Lj.  ce  9y  /y  Ccbv d{  y  y  GV      cz H'V      <{ [  IT  GKV      cz H`V      I{   ITIQv IR2 HV      '}   IU}  GV      cz GV      cz GW      cz GW      cz HW      <{   ITv  GW      cz HW      z   IT  GX      cz H$X      c{ @  ITv IQ0 GGX      cz NWX      c{ ITv IQ2  GU      cz GU      cz GU      cz HU      z   IT} IQ2 GU      cz GuW      cz  OV               L  H  y  y  GV      cz GV      cz  Py ]U        P	  4  Qy #z  !z   GSU      cz G]U      cz GrU      cz NhX      z IU~ IT	       K-  pX      8        @7  *7  Jz  Fz  Acv B  z  z  B?  @   Csp 6  {  {  Cax u6  F{  <{  LN5  6  {  {  L  u6  :|  8|  M@
  /  L    v|  p|  L  6  |  |  L(  6  }  }  Mp
    LCN  Q".  |}  r}  Ccbv S{  }  }  G\Y      cz HgY      <{   IT  GY      cz HY      I{   ITIQv IR2 HY      4}   IU}  GY      cz GY      cz GZ      cz GZ      cz HZ      <{ Z  ITv  G[      cz H [      z   IT  GW[      cz Hd[      c{   ITv IQ0 G[      cz N[      c{ ITv IQ2  GX      cz G
Y      cz GY      cz H)Y      z   IT} IQ2 G9Y      cz GZ      cz  OZ             t  L  H  @~  >~  G
Z      cz GZ      cz  Py X        
    Qy f~  d~   GX      cz GX      cz GX      cz N[      z IU~ IT	       KZ=  h@      h      \  @7  h*7  ~  ~  Acv hB  ~  ~  B?  j@   Csp j6  \  Z  Cax ju6      LN5  j6      L  ju6  }  {  M@    L  n      LB  p6  \  V  L(  r6      Mp  F  L  <    	  Ccbv ={      G,      cz H7      <{ -  IT  G[      cz Hp      I{ _  ITIQv IR2 H      | w  IU}  G      cz GϜ      cz G      | G՝      cz G      cz H      <{   ITv  G      cz H       z   IT  GW      cz Hd      c{   ITv IQ0 G      cz N      c{ ITv IQ2  G      cz Gڛ      cz G      cz H      z   IT} IQ2 G	      cz G      cz  O               L  H      G      cz G      cz  Py m          j  Qy      Gc      cz Gm      cz G      cz N      z IU~ IT	       K  J[      8        @7  J*7  9  5  Acv JB  ~  r  B?  L@   Csp L6      Cax Lu6  5  +  LN5  L6      L  Lu6  )  '  M     L  P  e  _  L@  R6      L(  T6      M0    L  +u  k  a  Ccbv ,{    ކ  G\      cz H\      <{   IT  G\      cz H\      I{   ITIQv IR2 H]      A}   IU}  G]      cz G,]      cz G^      cz G3^      cz H>^      <{ 9  ITv  GU^      cz H`^      z ^  IT  G^      cz H^      c{   ITv IQ0 G^      cz N^      c{ ITv IQ2  G\      cz GJ\      cz GY\      cz Hi\      z   IT} IQ2 Gy\      cz G]      cz  OE]             S  L  cH  /  -  GJ]      cz GU]      cz  Py [        
  L|  Qy U  S   G[      cz G[      cz G[      cz N^      z IU~ IT	       Ki@  +^      8      .  @7  +*7  |  x  Acv +B      B?  -@   Csp -6  K  I  Cax -u6  x  n  LN5  -6      L  -u6  l  j  M  w  L  1      L  36      L(  56  H  @  M    L2  %M      Ccbv {  '  !  G_      cz H_      <{   IT  G`      cz H `      I{ >  ITIQv IR2 HV`      N} V  IU}  G]`      cz Gl`      cz GUa      cz Gsa      cz H~a      <{   ITv  Ga      cz Ha      z   IT  Ga      cz Ha      c{   ITv IQ0 Gb      cz Nb      c{ ITv IQ2  G\_      cz G_      cz G_      cz H_      z \  IT} IQ2 G_      cz G5a      cz  O`               L  EH  r  p  G`      cz G`      cz  Py _          -  Qy      G_      cz G_      cz G2_      cz N(b      z IU~ IT	       KX4  0b      8        @7  *7      Acv B      B?  @   Csp 6      Cax u6      LN5  6  6  .  L  u6      M    L        L?@  6  :  4  L(  6      M    LF  %      Ccbv 	{  j  d  Gc      cz H'c      <{ u  IT  GKc      cz H`c      I{   ITIQv IR2 Hc      [}   IU}  Gc      cz Gc      cz Gd      cz Gd      cz Hd      <{   ITv  Gd      cz Hd      z 0  IT  Ge      cz H$e      c{ Z  ITv IQ0 GGe      cz NWe      c{ ITv IQ2  Gb      cz Gb      cz Gb      cz Hb      z   IT} IQ2 Gb      cz Gud      cz  Oc             %  L  &H      Gc      cz Gc      cz  Py ]b        P  N  Qy ۏ  ُ   GSb      cz G]b      cz Grb      cz Nhe      z IU~ IT	       KL'  pe            }  @7  *7      Acv B  G  ;  B?  @   Csp 6  ѐ  ϐ  Cax u6      LN5  6  y  q  L  u6      M@    L    ,  (  L0  6  h  b  L(  6      Mp  g  Ccbv {      GYf      cz Hdf      <{   ITv  Gf      cz Hf      I{   IT~ IQ IR2 Gf      cz Gf      cz Gf      cz H g      z 8  ITv  G-g      cz GHg      cz NSg      <{ IT   Ge      cz Gf      cz Gf      cz H*f      z   IT~ IQ2 G:f      cz Gg      cz  Of               L  H  f  d  Gf      cz Gf      cz  Py e          4  Qy      Ge      cz Ge      cz Ge      cz Nmg      z IU~ IT	       K"  pg            c  @7  *7      Acv B      B?  @   Csp 6      Cax u6      LN5  6  *  "  L  u6      M    L    ݕ  ٕ  L,  6      L(  6  j  b  M   M  Ccbv {  ̖  Ɩ  GYh      cz Hdh      <{   ITv  Gh      cz Hh      I{   IT~ IQ IR2 Gh      cz Gh      cz Gh      cz H i      z   ITv  G-i      cz GHi      cz NSi      <{ IT   Gg      cz Gh      cz Gh      cz H*h      z   IT~ IQ2 G:h      cz Gi      cz  Oh               L  H      Gh      cz Gh      cz  Py g            Qy =  ;   Gg      cz Gg      cz Gg      cz Nmi      z IU~ IT	
       Kx:  ;            D  @7  *7  d  `  Acv B      B?  @   Csp 6  7  1  Cax u6      LN5  6  -  )  L  u6    ~  M    L        L(  @   	    L&  6  C  ?  M    L  <  }  y  G=      cz G=      cz N=      z ITv IQ}   GY<      cz G<      cz G<      cz H<      z   ITv IQ2 G<      cz G<      cz G<      z H<      z ?  IU~ IT	g     IQ0IR1 G<      cz Gm=      cz Gx=      cz G=      cz N=      r IU~ IT0  O:=               L  H      GA=      cz GL=      cz  Py <        `    Qy ۚ  ٚ   G<      cz G<      cz G3<      cz N=      z IU} IT	0       KC
  =      ~        @7  *7      Acv B  I  ;  B?  @   Csp 6      Cax u6  H  6  LN5  6      L  u6      M@    L    ̝  Ɲ  Csv 6      L(  @   U  O  L&  6      Mp    Ulen   Cs 
-      Ccbv {  )  '  H!?      z   IU} IR0 G?      cz H@      z   IT~ IQw IR2 N:@      r IU} IT0  M  C  L  <  S  M  GT?      cz GG@      cz NU@      z ITv IQ~   Gl>      cz G>      cz G>      cz H>      z   IT} IQ2 G>      cz G>      cz G>      cz G>      z G4?      cz G?      cz G?      cz G@      cz  Oy?             5  L  H      G?      cz G?      cz  Py ->          ^  Qy ڟ  ؟   G#>      cz G->      cz GB>      cz Hi@      z   IU~ IT	h      Gn@      z  K   ~ 	             @7  ~*7      Acv ~B  F  :  B?  @   Csp 6  Ԡ  Π  Cax u6  /    LN5  6      L  u6  w  u  M4  e  L        LA  6      L#  6  %  !  L(  @   _  [  L&  6      M4  X  DP1  	6  Ccbv {      Hi
     1g   IU} IT~  Gs
     cz GL     cz Ne     z IT IQ#`IR2  M 5    L  <  c  _  G
     cz G     cz N     z ITv IQ}   G	     cz G	     cz G	     cz H	     z   IT} IQ2 G	     cz G	     cz G	
     cz G
     cz G&
     z Gz
     cz G
     cz G
     cz Gu     cz  O
              L  H      G
     cz G
     cz  Py M	       p4    Qy      GC	     cz GM	     cz Gb	     cz N     z IU~ IT	%       K  [p@              @7  [*7      Acv [B  /  !  B?  ]@   Csp ]6  ӥ  ͥ  Cax ]u6  .    LN5  ]6      L  ]u6  v  t  M0    L  a      Csv c6      L(  e@   ;  5  L&  f6      M`    Ccbv {      Ulen   Cs 
-      HA      z ~  IU} IR1 GA      cz GxB      cz HB      z   IT~ IQw IR2 NB      r IU} IT0  M  (  L  w<  9  3  GA      cz GB      cz NB      z ITv IQ~   G@      cz GA      cz G%A      cz H5A      z l  IT} IQ2 GEA      cz GTA      cz GiA      cz GqA      z GA      cz GEB      cz GPB      cz GB      cz  OB               L  yH      G
B      cz GB      cz  Py @           ]C  Qy      G@      cz G@      cz G@      cz HB      z   IU~ IT	h      GB      z  KO        O      C @7  *7      Acv B  ,     B?  @   Csp 6      Cax u6    ٪  LN5  6      L  u6  ٫  ׫  M '   L  	      M)  : Ccbv U{  M  I  V  E_p _   V  E_p b   V  E_p e   V  E_p h   V  E_p k   V  E_p n   V  E_p q   V  E_p t   V"  E_p w   V4  E_p z   VF  E_p }   VX  E_p    Vj  E_p    V|  E_p    V  E_p    V  E_p    V  E_p    V  E_p    V  E_p    Py b        @,  _7  Qy     Qy     Wy P,  Xy     N      h} IT}    Py         ,  b  Qy K  G  Qy     Wy ,  Xy     N      h} IT}    Py         ,  e  Qy     Qy I  E  Wy ,  Xy     Nk      h} IT}    Py          -  hZ  Qy Ӯ  Ϯ  Qy   	  Wy -  Xy I  C  N[      h} IT}    Py         @-  k  Qy     Qy ѯ  ͯ  Wy P-  Xy     N      h} IT}    Py $        -  n  Qy [  W  Qy     Wy -  Xy Ѱ  ˰  N{      h} IT}    Py L        -  q}  Qy     Qy Y  U  Wy -  Xy     N      h} IT}    Py t         .  t  Qy   ߱  Qy     Wy .  Xy Y  S  N      h} IT}    Py         @.  w?  Qy     Qy   ݲ  Wy P.  Xy     N      h} IT}    Py         .  z  Qy k  g  Qy     Wy .  Xy   ۳  N      h} IT}    Py         .  }  Qy /  +  Qy i  e  Wy .  Xy     N      h} IT}    Py          /  b  Qy     Qy -  )  Wy /  Xy i  c  N      h} IT}    Py <        @/    Qy     Qy     Wy P/  Xy -  '  N      h} IT}    Py d        /  $ Qy {  w  Qy     Wy /  Xy     N      h} IT}    Py         /   Qy ?  ;  Qy y  u  Wy /  Xy     N+      h} IT}    Py          0   Qy     Qy =  9  Wy 0  Xy y  s  N      h} IT}    Py         @0  G Qy Ǹ  ø  Qy     Wy P0  Xy =  7  NK      h} IT}    Py         0   Qy     Qy Ź    Wy 0  Xy     N;      h} IT}    Py ,        0  	 Qy O  K  Qy     Wy 0  Xy ź    N      h} IT}    GQ      { Gb      cz G      cz G      cz G      cz G      cz G$      cz GL      cz Gt      cz G      cz G      cz G      cz G      cz G<      cz Gd      cz G      cz G      cz G      cz G      cz G,      cz HH      { % IUs  NP      u} IU~   G      cz G"      cz G2      cz HB      z ~ ITs IQ2 G}      cz  OP              L  VH      GX      cz Gd      cz  Py         &   Qy 7  5   G      cz G      cz G      cz N      z IU} IT	0       K!J  `      ,       @7  *7  ^  Z  Acv B      B?  @   Csp 6       Cax u6  1  #  LN5  6  м  ̼  L  u6  #  !  M%   L    [  Y  M@%   Ccbv K{    ~  Mp%  D C_p M       Py         %  M Qy     Qy 1  -  Wy %  Xy m  g  N{      h} ITv    G      cz  G      cz G      cz G      cz H      z  ITv IQ2 GU      cz  O(             J L  H      G/      cz G:      cz  Py         $  s Qy ߾  ݾ   G}      cz G      cz G      cz N      z IU} IT	0       KD               @7  *7      Acv B  G  ?  B?  @   Csp 6      Cax u6      LN5  6      L  u6  
    M`"   L,  6  N  @  L   6      LI  @       L(    e  S  L&  6  &     M"   Ccbv {  }  o  Cpep         Cenc 
-      Cspp 
6  x  l  VD	 E_p 	   Ty                     	y	 Qy      H      } 	 IU1IT
  H      } 	 IU
 IT4 G      cz H2      { 	 IT| IQ	     IR8IX IY0 G      cz H      { 9
 IT| IQ	I     IR7IX IY0 G	      cz H/      { {
 IT| IQ	     IR<IX IY0 Gh      cz H      { 
 IT| IQ	     IR?IX IY0 G      cz H      { 
 IT| IQ	     IR>IX IY0 H.      } 3 IUIT	@!     IQ	 @!      HG      /{ e IU| IT	Ј      IQ	0       HV      }  IU| IT  Hl      {  IU| IT	      IQ	       H}      "{  IU| IT	P      IQ0 G      cz H      { ! IT} IQ	     IR=IX IY0 H
      } 9 IU|  Hs      } e IUIT	@!     IQ0 Gw      cz H      z  IT IQ0IR2 G      cz H      c{  IT| IQ0 G      cz H      c{  IT} IQ0 G'      cz H4      c{  IT  Go      cz G      cz H      c{ D IT| IQ2 G      cz H      c{ n IT} IQ2 H
      {  IU	(      H      {  IU	P      H&      {  IU	      N4      { IU	       M #  : L  <  #    G0      cz GO      cz N]      z ITv IQ|   G      cz G      cz G      cz G@      cz GO      cz H_      z  ITv IQ2 Gi      cz G~      cz G      z G      cz G      cz G      cz G      cz  OU             9 L  H  [  Y  G\      cz Gg      cz  Py         0"  b Qy      G      cz G      cz G      cz NC      z IU~ IT	l       YD   Zcbv "{   K   C      "
       Acbv #{      H_E      [}  IT0 HE      N} ) IT0 HE      A} @ IT0 H	F      } \ IT0IQ0 H?F      4} s IT0 HwF      '}  IT0 [F      }  IT0 G~J      cz HJ      c{  ITv  GJ      cz HJ      c{  ITv IQ0 GJ      cz HJ      c{  ITv IQ0 GK      cz HK      c{ D ITv IQ0 G>K      cz HKK      c{ i ITv  GnK      cz H{K      c{  ITv IQ0 GK      cz HK      c{  ITv IQ0 GK      cz HK      c{  ITv IQ0 GK      cz HL      c{  ITv IQ2 G&L      cz H6L      c{ ; ITv IQ2 GNL      cz H^L      c{ e ITv IQ2 GvL      cz GL      cz HL      c{  ITv IQ2 GL      cz HL      c{  ITv IQ2 GL      cz HL      c{  ITv IQ2 GM      cz  K>9        n        @    o  e  @x8  '       Alen 3@       Ccbv {  @  6  Gˡ      cz [      }  IQTIR	Q $ &IX2 N      Tx IU} ITs   \&  _@   P      "      M @()  _      @>  _+       @u  _?  P  D  L  a	6      Cenc b{      L  c@       Ci d@       F  eM O              Cc m
   u  o   M@#   Csp }6      D'  ~	@   Mp#  < L  d  0  ,  G_      cz Gt      cz G      cz GC      cz GK      }  G1      cz G=      cz GE      } GN      cz GV      } G      cz G      cz H      {  ITw IQv  $ & G      cz H      z  IT  G      cz G      cz H      }  IT	     IQ4 G"      cz HA      { Z IT~ IQ| IRv IX IY0 GM      cz GZ      cz Go      cz Gw      ~ G	      cz G      ~ G      cz N2      | IT~ IQ~ IR1  Ty h       h      6       $ Qz h  f  Qz     Qz      H      ~ < IU}  G      cz H      { x IT~ IQ| IRv IX IY0 G,      cz H>      {  IT IQ	m      G      cz H	      z  ITv IQ2 G      cz H      |  IT	      IQ0 GX      z Hf      { 1 IU	H      Nr      { IU	          ] 	9   ) \  ;@   0.             S ]:  ;  UAseq ;,   
    Cenc <{  D  B  L.  =i  k  g  L'  >@       L,  ?@       ^    LO2  B!  W  O  LGG  C!      L  D!  K  E  L	L  E	@         \*  @                O/ @        @'     [  W  @B         @9     P  B  @Z         Csp 6      L'  @     O  Cret @       L  @     Y  Ccbv {    c  _        M0    L  d  `  V  G      cz G      cz G      cz G      cz G      }  M`   - Ls  
6      L  	@   f  b  ^p   L1/  6      M   , LK        L6  -  3    M    L  d      G      cz G      cz G      cz GJ      cz GR      }  M!   L   
-  u  q  Ulen   Ty                     * Qz     Qz     Qz     N      +~ ITv   GZ      cz Gz      cz G      cz G      cz G      cz H      z  ITv IQIR2 G      { G5      cz GQ      cz Gr      cz G      cz G      cz G      cz H      6~  ITv IQ0 G(      cz G6      cz HC      6~ > ITv IQ0 G(      cz G6      cz HC      6~ u ITv IQ0 GQ      cz G_      cz Nl      6~ ITv IQ0  M !   C_sv 
6      M`!   C_p 
  X  T   G      cz N      z ITv IQ2  M!  l L  d      G      cz G      cz G      cz G      cz G      }  HS      C~  IU~ ITIQ0 H^      |  IU~  Hn      |  IUv  Gx      cz H      P~  ITv IQ G      cz G      cz G      cz H)      } 9 IT	     IQ: G2      cz G<      cz GX      cz Gt      cz G      cz G      cz G      cz G      cz G	      cz G(      cz GD      cz G      cz H      P~  IT IQ~  H      u}   IU G(      cz G:      cz HJ      ]~ D  IT| IQ4 GQ      cz G[      cz Gw      cz G      cz G      cz G      cz G      cz G      cz G(      cz GG      cz Gc      cz G      cz G      cz G      cz G      cz G      cz G7      cz G%      cz GA      cz G`      cz G|      cz G      cz G      cz G      cz G      cz G      cz G:      cz GO      cz Ha      z ! IT| IQ0IR2 Hl      r ! IU~  G      cz G      cz G      cz G      cz G
      cz G&      cz GI      cz Ge      cz G      cz G      cz G      cz G      cz G      cz G7      cz GR      cz Gn      cz G      cz G      cz G      cz G      cz G%      cz G7      cz HE      6~ &# ITw IQ0 GS      cz Ga      cz Hn      6~ ]# IT| IQ0 G|      cz G      cz H      6~ # ITw IQ0 G      cz G      cz H      6~ # IT| IQ0 G      cz G      cz H      6~ $ ITw IQ0 G%      cz G3      cz H@      6~ ;$ IT| IQ0 GN      cz G\      cz Hi      6~ r$ IT| IQ0 Gw      cz G      cz H      6~ $ ITw IQ0 G      cz G      cz G      cz H      c{ $ IT| IQ0 G      cz G      cz G)      cz H7      c{ 3% ITw IQ0 GC      cz GQ      cz H^      6~ j% IT| IQ0 Gl      cz G~      cz H      6~ % ITw IQ0 G      cz G      cz H      6~ % IT| IQ0 G      cz G      cz H      6~ & ITw IQ0 G      cz G      cz H      6~ H& IT| IQ0 G      cz G,      cz H:      6~ & ITw IQ0 Ge      cz Hx      | & IT} IQ} IR2 G      cz G      cz G      cz H      c{ & ITw IQ2 G      cz G      cz G      cz H      c{ 9' IT| IQ2 G&      cz GB      cz G^      cz Gl      cz Hy      6~ ' IT| IQ0 G      cz G      cz H      6~ ' ITw IQ0 G      cz G      cz H      6~ ' IT| IQ0 G      cz G      cz H      6~ 0( IT| IQ0 G      cz G      cz H'      6~ h( ITw IQ0 G      cz G      cz H      6~ ( IT| IQ0 G      cz G      cz H      6~ ( ITw IQ0 G(      cz G6      cz HC      6~ ) IT| IQ0 GQ      cz Gc      cz Hq      6~ F) ITw IQ0 G      cz G      cz H      6~ }) IT| IQ0 G      cz G      cz G      cz G      cz G'      cz GC      cz Gf      cz G      cz G      cz G      cz H      6~ * IT| IQ0 G      cz G      cz H      6~ T* ITw IQ0 GQ      cz Gc      cz Hq      6~ * ITw IQ0 G      cz G      cz H      6~ * IT| IQ0 G      cz G      cz H      6~ * ITw IQ0 G      cz G      cz H      6~ 2+ IT| IQ0 G      cz G      cz H      6~ i+ IT| IQ0 G      cz G      cz H      6~ + ITw IQ0 G      cz G      cz H      6~ + ITw IQ0 G      cz G      cz H      6~ , IT| IQ0 G      cz G      cz H      6~ G, IT| IQ0 G-      cz G?      cz HM      6~ , ITw IQ0 G[      cz Gi      cz Nv      6~ IT| IQ0  G      cz H      { , ITv IQ	e     IR6IX IY0 N      r IU~ IT	        GF      cz Gb      cz Gj      } Gq      cz Gy      } G      cz H      y - IUw IT0 G      cz H      z - IT  G      cz H*      { - ITIQ0 G4      cz H?      z - IT  HZ      y . IUXIT0 Gd      cz Ho      z =. IT  Gz      cz G      cz H      ]~ t. ITv IQ2 G      cz H      r . IU~ IT	      G      cz G      cz G      cz G      cz G      ~ G?      cz Gw      cz G      ~ G      cz H/      | A/ ITv IQv IR Gz      z  K  }            o3 @        @>     N  D  @B         @9         @Z       {  Csp 6      Ccbv {      M  `0 L  d  o  g  G~      cz G~      cz G3~      cz G      cz G'      }  G~      cz GL~      cz Go~      cz H~      y 0 IUIT0 G~      cz H~      z 0 IT G~      cz H~      y 0 IUw IT0 G~      cz H~      z 1 ITw  G
      cz H)      y I1 IURIT0 G3      cz H>      z n1 ITv  GO      cz Hm      y 1 IU IT0 Gw      cz H      z 1 IT|  G      cz G      cz [      ]~ 1 IQ4 G      cz G      cz G      cz G7      cz GW      cz Hj      | R2 IT~ IQ~ IR1 G      cz H      | 2 ITv IQv IR1 G      cz H      | 2 IT| IQ| IR1 Gπ      cz H      | 2 ITv IQv IR1 G      cz H
      | 3 IT| IQ| IR1 G7      cz HJ      | B3 IT| IQ| IR1 G_      cz Nr      | ITv IQv IR1  Ko        o      6 @        @J/     6  2  @B     v  n  @9         @Z         @L.     |  x  Csp 6      Ccbv {      M   4 L  d  (  "  G      cz G      cz G      cz G      cz G      }  Gȁ      cz Gҁ      cz Gځ      } G      cz G      } G/      cz HT      y 5 IUIT0 G^      cz Hi      z '5 IT  H      y D5 IU~ IT0 G      cz H      z i5 IT~  H      y 5 IUIT0 G      cz H      z 5 IT~  Hт      y 5 IU} IT0 Gۂ      cz H      z 5 IT}  H      y 6 IUIT0 G      cz H      z 36 IT}  G      cz G,      cz H<      ]~ j6 ITv IQ4 GC      cz GN      cz G_      cz Ju      ~ G      cz G      ~ G      cz G      cz Gǃ      cz Nڃ      | ITv IQv IR6  K  g@y      ?      9 @  g  y  q  @'  h       @(  i   C  ?  @HB  j@     {  Csp k6      Ccbv l{      M  7 L  qd  l  d  Gy      cz Gy      cz Gy      cz Go{      cz Gw{      }  Gny      cz Gxy      cz Gy      } Gy      cz Gy      } Gy      cz Hz      y f8 IU IT0 Gz      cz Hz      z 8 IT  H/z      y 8 IUIT0 G9z      cz HDz      z 8 IT~  G^z      cz Gsz      cz Gz      cz Hz      ]~ 9 ITv IQ4 Gz      cz Gz      cz Gz      cz Jz      ~ Gz      cz Gz      cz Gz      ~ Gz      cz G{      cz G/{      cz GG{      cz NZ{      | ITv IQv IR4  Kl  Vo      W      ; @  V      Csp W6  =  /  Ccbv X{      M  : L  ]d  -  '  Go      cz G
p      cz Gp      cz Gp      cz Gp      }  Go      cz Go      cz Go      } Go      cz Go      } G7p      cz GZp      cz Gkp      cz H{p      ]~ ; ITv IQ4 Gp      cz Gp      cz Gp      cz Jp      ~ Gp      cz Gp      ~ Gp      cz Np      | ITv IQv IR1  KI  ={      G      > @  =  ~  v  @>  >       @9  ?   N  F  @Z  @       @=*  A@       Csp B6  l  P  Ccbv C{      M  < L  Hd      G{      cz G{      cz G|      cz G}      cz G}      }  G{      cz G{      cz G{      } G{      cz G{      } G|      cz H=|      y < IUw IT0 GH|      cz HT|      z "= ITw  Hk|      y ?= IU~ IT0 Gu|      cz H|      z d= IT~  H|      y = IU} IT0 G|      cz H|      z = IT}  G|      cz G|      cz G|      cz H|      ]~ = ITv IQ4 G|      cz G}      cz G}      cz J+}      ~ G5}      cz GG}      cz GO}      ~ G_}      cz Gw}      cz G}      cz N}      | ITv IQv IR5  KM  p      :      B @:    @  8  @>         @  	@   $     @P     f  \  @=   	@       @B  !       ]9  "    ]Z  #   ]L.  $   Csp %6  x  T  Ccbv &{      M  ? L  +d  N  D  G      cz G      cz G      cz GG      cz GO      }  G      cz GƖ      cz GΖ      } GՖ      cz Gݖ      } G$      cz HH      y N@ IUw IT0 GS      cz H_      z t@ ITw  Hy      Tx @ IU IT $ & G      cz H      z @ IT  H      y @ IU~ IT0 G      cz H      z A IT~  Hӗ      y !A IUIT0 Gݗ      cz H      z FA IT}  H      y ]A IT0 G      cz H      z A IT}  G-      cz G?      cz HO      ]~ A ITv IQ4 GV      cz Ga      cz Gn      cz J      ~ G      cz G      cz Gǘ      cz GϘ      ~ Gߘ      cz G      cz G      cz G/      cz Gg      cz Hz      | B ITv IQv IR6 G      cz N      | IT} IQ} IR1  K  p            F @:        @(*     (  $  @A     d  `  @         @/         @n1  @   C ? Csp 6   { Ccbv {    L#  6  , " M  C L  d    G      cz G0      cz GD      cz G      cz G      }  G      cz HǶ      y D IU	     IT1 GѶ      cz H߶      j~ ID IT~ IQ|  G      cz H      j~ {D IT~ IQ	      G      cz G      } G      cz G      } G]      cz H      y D IUIT0 G      cz H      z  E IT}  H      y E IUIT0 G      cz H      z DE IT}  H˷      y cE IUIT0 Gշ      cz G      z G      cz H      z E IT~  G      cz G#      cz H3      ]~ E ITv IQ4 G:      cz GE      cz GV      cz Jl      ~ Gw      cz G      cz HǸ      y `F IU          0.( IT0 G׸      cz G߸      ~ G      cz H      | F ITv IQv IR5 G7      cz NJ      | IT} IQ} IR1  K'               jI @:      @>     Y Q @!      Csp 6   
 Ccbv {    L   6    M@  G L  d  C = Gd      cz Gw      cz G      cz G      cz G      }  G)      cz G3      cz G;      } GB      cz GJ      } HR      o ,H IU|  H]      { DH IU|  G      cz H˿      y nH IU IT0 Gտ      cz H      z H IT|  G      cz H      z H IT~  G      cz G      cz H"      ]~ H ITv IQ4 G)      cz G4      cz GA      cz JW      ~ Gg      cz Go      ~ G      cz N      | ITv IQv IR3  K              K @      @x8  +     Alen 7@   b Z Csp 6    Ccbv {  Y S M  QJ L  d    G1      cz GD      cz GX      cz GW      cz G_      }  G	      cz G      cz G      } G"      cz G*      } Gq      cz H      Tx J IU IT}  $ & G      cz H      z J IT|  G      cz Gɕ      cz Hٕ      ]~ K ITv IQ4 G      cz G      cz G      cz J      ~ G      cz G      ~ G/      cz NB      | ITv IQv IR2  KD  0            M @      @&  '  c	 [	 Csp 6  	 	 Ccbv {  
 
 M  lL L  d  
 
 Gx      cz G      cz G      cz G      cz G      }  GP      cz GZ      cz Gb      } Gi      cz Gq      } G      cz H      y L IU} IT0 G      cz H      z L IT|  G      cz G      cz H%      w~ :M IT	M     IQ4 G,      cz G7      cz GD      cz JT      ~ G_      cz Gg      ~ Gw      cz G      cz N      | ITv IQv IR2  K4  Ј            NP @    ) ! @&  )    Auri A    Csp 6  j V Ccbv {  H B M  N L  d    G!      cz G4      cz GH      cz G      cz G      }  G      cz G      cz G      } G      cz G      } Ga      cz H      y O IU~ IT0 G      cz H      z 9O IT|  H      y VO IU} IT0 G      cz H͉      z {O IT|  G܉      cz G      cz H      w~ O IT	Z     IQ4 G      cz G      cz G      cz J/      ~ G7      cz G?      ~ GO      cz Gg      cz G      cz N      | ITv IQv IR3  K:  l      r      R @      Csp 6   w Ccbv {  > 4 M0  Q L  d    Gm      cz Gm      cz G,m      cz Gm      cz Gm      }  Gl      cz Gl      cz Gl      } Gl      cz Gl      } GEm      cz Ghm      cz Gym      cz Hm      ]~ Q ITv IQ4 Gm      cz Gm      cz Gm      cz Jm      ~ Gm      cz Gm      ~ Gn      cz Nn      | ITv IQv IR1  Kn  x0n      r      S @  x  #  Csp z6    Ccbv {{  r h M`  R L  d    Gn      cz Gn      cz Gn      cz Goo      cz Gwo      }  GOn      cz Ggn      cz Gon      } Gvn      cz G~n      } Gn      cz Gn      cz Gn      cz H	o      ]~ MS ITv IQ4 Go      cz Go      cz G(o      cz J:o      ~ GWo      cz G_o      ~ Go      cz No      | ITv IQv IR1  K  d       w      U @  d  S K @x8  d+     Csp f6  %  Ccbv g{    MP  T L  ld    GH      cz G[      cz Go      cz Gg      cz Go      }  G       cz G*      cz G2      } G9      cz GA      } G      cz H      y U IU~ IT0 G      cz HĄ      z *U IT|  Gτ      cz G      cz H      ]~ aU ITv IQ4 G      cz G      cz G      cz J      ~ G'      cz G/      ~ G?      cz NR      | ITv IQv IR2  KiI  O            GX @  O  T L @K  O3     @:  OG   "  Csp Q6    Ccbv R{    M  V L  Wd  k e Gх      cz G      cz G      cz G      cz G'      }  G      cz G      cz G      } G      cz Gʅ      } G      cz H8      y .W IU IT0 GB      cz HM      z SW IT|  H[      y pW IU~ IT0 Ge      cz Hp      z W IT|  G{      cz G      cz H      ]~ W ITv IQ4 G      cz G      cz G      cz JՆ      ~ G߆      cz G      ~ G      cz N
      | ITv IQv IR3  K1  -            ?[ @  -    @>  -(   L H Csp /6    Ccbv 0{  ` V L(*  16    M&  .Y L  >d  i c G      cz G      cz G      cz Gh      cz Gp      }  V@Y E_p K   Py #         &  KY Qy   Qy   Wy `&  Xy A ; J      h}   G      cz G      cz H      ~ Y IT|  G#      cz Gx      cz G      } G      cz G      } G      cz G      cz G      cz H!      ]~ QZ IT} IQ4 G)      cz G5      cz GG      cz GO      ~ G      cz H      c{ Z IT~ IQ0 G      cz H      c{ Z IT~ IQ2 G(      cz G0      ~ G@      cz HS      | #[ IT} IQ} IR2 N      { IU	P       K74              b @      @>  *   =  @  =d    Csp 6  b B Ccbv {    D  	6  LH6  -  0 ( L{"  -    D  	6  DIL  	6  L(*  	6      Ox      0       d\ Lw,  -  s! o! G      ~  M#  x^ LvB  d  ! ! M $  \ L  d  " ! G.      cz GA      cz GU      cz G      cz G      }  M@$  ] LA  	6  b" ^" G      d G      cz H      z 2] IT  H      y I] IT0 H      y `] IT0 G      cz N      z ITw   G      cz G      } G      cz G'      } Gy      cz G      cz G      cz H      ]~ ] ITv IQ4 G$      cz G/      cz G@      cz GH      ~ G      cz G      ~ G_      cz Nq      | IT IQ IRw   P        p$  a Q " " Ht      [} ^ IT	       H      N} ^ IT	       H      A} ^ IT	        H;      } )_ IT	0n      IQ	l       H      4} H_ IT	       HL      '} g_ IT	}       H      } _ IT	        G      cz H$      c{ _ IT| IQ0 G8      cz HE      c{ _ IT| IQ0 G_      cz Hl      c{ ` IT| IQ0 G      cz H      c{ )` IT|  G      cz H      c{ S` IT| IQ0 G      cz H      c{ }` IT| IQ0 G      cz H      c{ ` IT| IQ0 Gh      cz Hx      c{ ` IT| IQ2 G      cz H      c{ ` IT| IQ2 G      cz H      c{ %a IT| IQ2 G      cz H      c{ Oa IT| IQ2 G      cz G      cz H      c{ a IT| IQ2 G      cz H      c{ a IT| IQ2 G!      cz H.      c{ a IT|  GB      cz  G      cz H+      d 	b IUw  Gy      cz H      ~ 6b ITv IQ H      y Tb IUw IT0 G[      cz Jt      ~ Ge      cz Hr      c{ b IT| IQ0 G=      cz NM      c{ IT| IQ2  K2              d @    .# &# As +   # # Alen 2@   # # Csp 6  g$ [$ Ccbv {  $ $ M  c L  d  E% ?% G      cz G      cz G(      cz G'      cz G/      }  Gٙ      cz G      cz G      } G      cz G      } GA      cz Hh      Tx d IU IT}  $ & Gr      cz H}      z ;d IT|  G      cz G      cz H      ]~ rd ITv IQ4 G      cz G      cz GȚ      cz Jޚ      ~ G      cz G      ~ G      cz N      | ITv IQv IR2  \#  6              1g @>     % % @$  %7  & |& @  46  ' & Cpos 	-  ' ' Cret 6  ' ' M  f LI  6  H( B( M   f L,  @   ( ( H΢      y e IUv IT~  Gڢ      cz H      ~ e IT} IQv  G      cz H      ~ #f IT}  G      cz H      P~ Nf IT} IQv  G%      cz H3      P~ yf ITs IQv  G      cz N      z ITIQ2  G\      cz H|      { f IT IQv IR~ IX0IY0 N      y IUsIT0  H1      ~ g IUv IT| `h      y IUUIT0  \H   @         \      o @     ( ( @A   &6  6) 2) Csp "6  ) n) LR?  #	6  * * L  $	6  + + LD  %
-  , , F1  &
  Ubr '
  L+  (@   , , L  )@   G- 5- Cret *@   !. . amsg +
-   Ccbv ,{  / . b  -
-   M 1  j Ccnt 5	@   / / L$  6
6   0 0 M`1  h L  8d  q0 i0 GX      cz Gk      cz G      cz G     cz G     }  Op            li Cchk I-  0 0 H     ~ >i IU	| ~"# G     cz N     z IT| IQIR2  G      cz G      cz G      cz H      w~ i IT	     IQ2 G      cz G2     cz G     cz H     | j ITv IQv IR1 N)     { IU	       M1  }m L6  `-  v1 j1 M 2  hl Ccnt m@   2 1 L  n6  {2 q2 Ctb o	-  2 2 MP2  j L  qd  ,3 (3 G7     cz GJ     cz G^     cz G     cz G     }  Ty A      A            Ek Qz d3 b3 Qz 3 3 Qz 3 3 NL     +~ IU}   Gw     cz G     cz G     cz H     w~ k IT	     IQ2 G     cz GS     cz Gg     cz H~     z k IT~IQIR2 G     cz H     | l ITv IQv IR3 H     { -l IU	      H     { Ll IU	      N<     { IU	       Py       2  hl Qz 3 3 Qz 3 3 Qz $4 "4 N     +~ IU} IT~  Hm     ~ l IU~ IT G     cz G     } H     ~  m IU~ IQ|  G     cz G     cz G     cz G     cz G     ~ N     { IU	       Vm E_p    Vm E_p    Py        2  n Qy M4 G4 Qy 4 4 Wy 2  Xy 4 4 N     h} IT   Py        3  gn Qy .5 (5 Qy 5 {5 Wy @3  Xy 5 5 N     h} IT~   G      cz G/      cz G7      } G>      cz GF      } G&     cz G1     cz GB     cz GJ     ~ H     r n IU~ IT0 G     cz G     cz GG     cz GO     ~ G]     cz Hg     ~ Qo IT0 Gs     cz H     { wo IT
  G.     z  c!  6        R      r d!    .6  6 e6  7  6 6 fobj 6  #7 7 M   p f_p   7 7 G      cz N̼        IT<  OP             <q L   6  7 7 Ci @   8 
8 M  p C_p   u8 q8 GW      cz Nd        IT;  G      o G      cz H      ~ p ITIQ~  G      cz H       p IT Gž      cz N      { IT| IQ	J     IR8IX$IYv   Gּ      cz H       aq IT|  G      cz H       q IT	!     IQ1 G	      cz H      ' q IT} IQ~  G"      cz H-      { q IT~  G7      cz H]      { %r IT| IQ	;     IR4IX$IY~  H      y <r IT0 GŽ      cz H      { r IT| IQ	F     IR3IX$IYv  G      cz H      { r IT~ IQ1 G      cz NB      { IT| IQ	@     IR5IX$IY~   g=  08            _w d    8 8 herr (-  k9 Y9 fsp 6  C: +: fcbv {  A; 9; e  	6  ; ; M  w ee&  6  5< +< eh   	@   < < M  u e'  @   < < M0  t e  d  9= 1= G.:      cz GA:      cz G_:      cz G;      cz G;      }  G:      cz G:      } G:      cz G':      } Gx:      cz G:      cz G:      cz G:      cz H:      w~ t IT	Q     IQ2 G:      cz G;      cz G;      cz G;      cz G%;      cz J;;      ~ GT;      cz Hj;      4 u ITv IR2 Gw;      cz G;      ~ G;      cz H;      | eu IT| IQ| IR1 G;      cz N;      | IT IQ IR1  G8      cz H8      { u ITIQ	D     IR<IX IY0 H09      g| u IU|  G79      | HM9      @| v IU|  HX9      M| +v IU|  Hc9      Z| Cv IU|  H9      A tv IT	     IQ~ IXs IY}  H9      g| v IU|  G9      | H9      @| v IU|  H9      M| v IU|  H9      Z| v IU|  N:      A IT	     IQIXIY~   GR8      cz Gh8      cz N8      { ITv IQ	7     IR<IX IY0  gb*  0      	       w hp   = = `9      { IUU  cJ          	       x hp   = = hs -   > > `      ~ IUUITT  cV    @      	       Tx dh  -   P> L> `I      { IUU  c  6        Z       y hs -  > > hlen   > > fsv 6  3? -? G      cz H      ~ x IT0 G      cz NŔ      t| ITs IQ| IR}   c  6   y      6       y hs -  ? |? hlen   ? ? fsv 6  "@  @ Gy      cz N(y      { ITs IQv   i&M  y j7  *7  ksv 6  lmrc 6    nNN  6  y ksv 6   n  u6  y j7  *7   oJ    'z j8    j     j%  -    nL  1Z  Ez j$  1Z   n7'  "N  cz j$  "N   p.  .  G`p    Hpj  j  H/	p    Hp&  &  )pE  E  Hp2  2  HpzM  zM  HpC  C  HpGK  GK  Hp1  1  HzpF  F  Hbq>M  >M  pB  B  HpE  E  3p
  
  pH  H  }p$  $  H	pA  A  H(p    Tp5  5  H~p    Pp2(  2(  pE  E  p\  \  H	pI"  I"  H 	p<  <  Hp    H
p      Hp-  -  H
p    HpJ  J  Hp-  -  Hp    HpP	  P	  pF(  F(  Hp    p&  &  p8  8  p0  0  pD:  D:  pN  N  Hp"  "  dp%  %  pL  L  \p*  *  Hnp7  7  paA  aA  r      p	  	  qp?O  ?O  mr0  0  rG  G  p/  /  rpA  A  p    ypF  F  up    Gp    Dp`  `  @p/*  /*  HFp    p#  #  H
p4  4  p    p
   
   p)  )  Kpx   x   Hp+  +  Hp!  !  H
p    HBpI  I  Hp}
  }
  H	p;  ;  HpM  M  IsJ  @  J p    Hp-.  -.  p#  #  HpX  X  Hp    Hpk  k  Hra  a  Hp+  +  H
r'   '   Hr`?  `?  Hr    Hr    Ir-  -  Ip    ,p:  :  /p?3  ?3  Hp    Hp9  9  Hpr   r   H{p9  9  Hp:  :  Hp    H" %   :;9I  $ >  $ >  & I  :;9   :;9I8  I  	! I/  
 I   <     7 I  :;9  :;9   :;9I  &   >I:;9  (   '   I  'I   :;9I  :;9   :;9I8   :;9I8  >I:;9  :;9   :;9I  4 :;9I?<  4 :;9I?<   :;9  ! :;9I8  ":;9  # :;9I  $ :;9I  %:;9  & :;9I8  ':;9  ( :;9I8  ):;9  * :;9I8  + :;9I8  , :;9I8  - :;9I8  .:;9  / :;9I  05 I  1!   2 :;9  3>I:;9  4:;9  5:;9  6:;9  7 :;9I  8! I/  9 :;9I8  :4 :;9I  ;:;9  < :;9I8  =4 :;9I  >4 :;9I  ?.?:;9'@B  @ :;9IB  A :;9IB  B. ?:;9'I<  C4 :;9IB  D4 :;9I  E4 :;9I  F4 :;9I  G 1  H1  I B  J B1  K.:;9'@B  L4 :;9IB  MU  N1  O  P1RBUXYW  Q 1B  R 1  S1RBXYW  T1RBXYW  U4 :;9I  V  W1U  X4 1B  Y.:;9'   Z :;9I  [B1  \.:;9'I@B  ] :;9I  ^U  _
 :;9  `B1  a4 :;9I  b4 :;9I  c.:;9'I@B  d :;9IB  e4 :;9IB  f4 :;9IB  g.:;9'@B  h :;9IB  i.:;9'   j :;9I  k :;9I  l  m4 :;9I  n.:;9'I   o.?:;9'I 4  p. ?<n:;9  q. ?<n  r. ?<n:;9  s. ?<n:;   ,   K        /usr/lib64/perl5/CORE /usr/include/bits /usr/include/bits/types /usr/lib/gcc/x86_64-redhat-linux/8/include /usr/include/sys /usr/include /usr/include/netinet  Expat.xs    Expat.c    inline.h   byteswap.h   string_fortified.h   __locale_t.h   stddef.h   locale_t.h   types.h   types.h   time_t.h   __sigset_t.h   struct_timespec.h   thread-shared-types.h   pthreadtypes.h   expat_external.h   expat.h   stdint-uintn.h   setjmp.h   setjmp.h   __sigval_t.h   siginfo_t.h   signal.h   unistd.h   getopt_core.h   sockaddr.h   socket.h   in.h   stat.h   time.h   time.h   errno.h   netdb.h   netdb.h   dirent.h   dirent.h   perl.h   math.h   op.h   cop.h   intrpvar.h   sv.h   gv.h   mg.h   av.h   hv.h   cv.h   pad.h   handy.h   struct_FILE.h   FILE.h   stdio.h   sys_errlist.h   perlio.h   iperlsys.h   perly.h   regexp.h   utf8.h   util.h   pwd.h   grp.h   crypt.h   shadow.h   reentr.h   parser.h   opcode.h   perlvars.h   mg_vtable.h   encoding.h    patchlevel.h   pthread.h   proto.h   string.h   <built-in>     1 	0.      K1z x.sf7=u;K#=.ZJ
-=<>:0g"Jt/JXJo
XY 
xXg!J{.y fQJKXXjX#j.J<XJJ<Kf<X  '  f z  K , z.( < J J  X .     *  t J   L        v ( 
 t 	0      }KXXmX#m.J<XJJ<Kf<X  '  f    - = X .     *  t J   L        z (  x 	2      6KXXmX#m.J<XJJ<Kf   v  f    - = X .     *  t J   L        z ( <  x 	p4      jKXXmX#m.J<XJJ<Kf<X  '  f    - = X X      *  t J   L        z (  x 	P6      jKXXmX#m.J<XJJ<Kf<X  '  f    - = X X      *  t J   L        z (  x 	08      m=\K)=3  <)f...Xt<H> #  <  <#   
c 
_=;W=;V	*w!.f.J.]<Xzz<ZW=;W=WV	.J f t f    K t   J K     = - J K W ?
  
 , > X > \uwU?<ctJ % t " X  t J X  "XKXXsX#s.J<XJJ<Kf   v  f ~   tXJX   t J   L        t ( <~  r 	=      ^Ks.XXsX#s.J.XtJ<Kf<X %  v  X < [ +   J ~   J      =  tXJXX   t J   L      < pt  ~    < '  <~  ltKs.XXtX#t.J.XtJ<Kf<X %  v  X < [ +   J ~    J      - = Y  tXJXX   t J   L      < lX  ~     < /  <~  h(|t(t X   t X   Ot X   Ot X <   
=t
 X ; " 
  	t X   Ot X   Ot X   AX 	[   	@   	@   @ 
  	A   	@   	@ X NF2  n    %    e%    %    o%    v%    %   
 z%  $
 X   " o jt 
t o vt t yt  a  a  f  `f  f  k 
uf p0 ) J ) E ) yJ   ) E ) J )X [ ( ( ( { ( (
p( 
tKXXjX#j.J.XtJ<Kf<X %  v%  X < f% t  zJ  K Z=Xf.% s    < X 	N      DKXXkX#k.J<XJJ<Kf   zt  L  zf. h <z 	O      yKXXqX#q.J.XtJ<Kf<X *  v  X < }X B .  }  t  f X  X < tff }J t  < }     	Q      ^KXXqX#q.J.XtJ<Kf<X ) '  X < }X L . }J t L }      X tX  X J!6 < f.J 	}< X  K s   <   K  } .  $  K s J )= )s J  	0U      _KXXqX#q.J.XtJ<Kf<X ) '  X < }X L . }J t L }      X tX  X J5 < f.J 	}< X  K s   <   K  } .  $  K s J )= )s J  	pX      ^KXXrX#r.J.XtJ<Kf<X ) '  X < }X L . }J t L }      X tX  X J"6 < f.J 	}< X  K s   <   K  } .  $  K s J )= )s J  	[      KXXrX#r.J.XtJ<Kf<X ) '  X < }X L . }J t L }      X tX  X J5 < f.J 	}< X  K s   <   K  } .  $  K s J )= )s J  	^      ^KXXrX#r.J.XtJ<Kf<X ) '  X < }X L . }J t L }      X tX  X J%6 < f.J 	}< X  K s   <   K  } .  $  K s J )= )s J  	0b      _KXXrX#s.J.XtJ<Kf<X ) '  X < }X L . }J t L }      X tX  X J5 < f.J 	}< X  K s   <   K  } .  $  K s J )= )s J  	pe      eKXXsX#s.J.XtJ<Kf<X *  v  X < ~X = .  }  J  < X  X < tff } t  < ~     	pg      eKXXsX#s.J.XtJ<Kf<X *  v  X < ~X = .  ~  J  < X  X < tff ~ t  < ~     	pi      KXXkX#k.J.XtJ<Kf<X ) '  X < zX N . zJ t L z      X tX  X J5 < f.J 	z< X  K s   <   K  z .  $  K s J )= )s J  	l      oKɐY*@XJ      f   K - J K W >  X uvV><, c o   f  c.KɐY*@XJ      f   K - J K W >  X uvV><, c o   f  .Kɐ[+=J     f   K - J K W >  X uuW=<-  p    KXXkX#k.J.XtJ<Kf<X ) '  X < zX N . zJ t L z      X tX  X J!5 < f.J 	z< X  K s   <   K  z .  $  K s J )= )s J  	Pt      |/s<XfoX#o<J.XJfKtL<X   v  f < t   J |.	          ,J<<'.< C , J  X>v=JO!Y
e=	=+,<	@	I\Z=	L	K<t/   = I  X  ; Y & |< J |X <  C& <   < |X T<=.X /s.XXkX#k.J<XJJ<Kf<X  ' z   / <X!-=Xt l <{t<X"k"XuX KgsY.[+=J   t  t       V L    h  X  L , L V ?  X uuW=<.I   zt  L  * r    PfKgsK-Y[+=J   t  t   K e K  X     K    K   K - K W >  X uuW=<e   p s q     KgsK-Y[+=.      f  K - J K  J  t X  Z + Y h J  J X   . J   X    Y f  t YI=XIu.y J     . J  t X      o   	   s         f    w  XWXKgsY-[+=J   t  t   K s K  X     K X     K    - K W > uW=<e  o r q    }fKא[+=J     t   K  K  X  - K W > uu-=J- e zt    dKg[+=J     t   K Y H K  X  W K   - K W > uW=X.-  yt    / fK/א[+=J     t   u    K - K W >  u-=J-  p r    EeKEg[+=J     t   u    K   K - K W >  uW=X.- e p s r    KXXkX#l.J<XJJ<Kd<X f $ . u  {           s t2w 	0      lKX 	@      mL
X 	P      KXflX#l<J<XtJ<Kt<X.  *  t < t   L {   <ptXt/;=XzpYZ
p.Xp
X	L<Y<X+ y,  < JhtrV>YY=KY L p 
  f  I  J XYWu0.v Y% " ; <% K    X =  X K p  
 pX X  Y p 
  $!   
XJf   p<  ! s =
 p J   W  M;=Xt`5    {vS9 	       hKXXlX#l.J<XJJ<Kf<X   J >  f { 
  - =
  X
 . <
 X <
 J X < =  .    t   x q  J X 	      jKXXmX#m.J<XJJ<Kf<X  '  f    - = X .     *  t J   L        z (  x# 	      m#X;=Xu<.tKg[+=J     t   =  K  X  - K W > uuW=X.- s zt     K=s-u[+=J     t   K e K  X      K   W K    W K   K I K .LuuW=<.I J  f X t  yt u W f K   s p       }Kg[+=J     t   =  K  X  - K W > uuW=X.- s zt    KXXrX#r.J.XtJ<Kf<X ) '  X < }X L . }J t L }      X tX   5;\ < f.J 	} X  K s   t   KX  } .  	$ x K s J )= )s J  	      KXXnX#n.J<XJJ<Kf<X  ' {   L  M U M Ze\t{.<X-=X.J{<X	X  < X 	      hKXXnX#n.J<XJJ<Kf   |t  X       f . uf X 	      vK
JY]EkAE?<<XZX<.y<YW!YLXd> 
f  B /=tM/tUG[.JGr t t  X Ks.XXnX#n.J<XtJ<Kf<Z,JJL,J<LdJ>:LX| < t   J #   V = 	  K
 X
IJZ	W
J=	=
gX
IJ>LY;=X!-=XȐf. {X  
0<XUX 	`      KXXoX#o.J<XJJ<Kf<X %  v |  Z , = X.<X<JX<=.t o  > |  Z , = X.<XtJf 	      _KXXoX#o.J.XtJ<Kf<X %  v  X < X | 
  < X
 X /
 -f.|.
   (  < X 	p      ^KXXoX#o.J.XtJ<Kf<X ) '  X < |X L . |J t L |      X tX  X J6 < f.J 	|< X  K s   <   K  | .  $  K s J )= )s J  	      ^KXXpX#p.J.XtJ<Kf<X ) '  X < |X L . |J t L |      X tX  X J6 < f.J 	|< X  K s   <   K  | .  $  K s J )= )s J  	      ]KXXpX#p.J.XtJ<Kf<X ) '  X < |X M . |J t L |       X tX  X J z	. < f.J 	|< X  K s   <   K  | .  $  K s J )= )s J  	0      ^KXXpX#p.J.XtJ<Kf<X ) '  X < |X L . |J t L |      X tX  X J6 < f.J 	|< X  K s   <   K  | .  $  K s J )= )s J  	p      uK=sY-X=-=XJ     t   = s K  X  s K   s K  = I  - K X  ʟuW=<..- f  f X Xs" f ut       
.KXXpX#p.J.XtJ<Kf<X ) '  X < }X L . }J t L |      X tX  X J6 < f.J 	|< X  K s   <   K  } .  $  K s J )= )s J $ 	      q$!-<X,>X,F<< t.if+zX`?9X	J =' ; K& '  j-
.Kg\*=

:>YJ     t   K Y H K  X  - K X  - K W > uvV>X.,  zt    
KXXqX#q.J.XtJ<Kf<X ) '  X < }X L . }J t L }      X tX  X J6 < f.J 	|< X  K s   <   K  } .  $  K s J )= )s J  	       ws-K]>r.<XJ   t  '   K I K    K   X,0X>
<K X  f?u" uJ  tXJ
",>
 X < l    
 
t 
Z:>XXL	Z	,Z. X f X     > -  K  W >
  
 , 0 Z , >      	           
JJ .   .
 < < <	Y</J    I J    K - K W >  K     	              !\t # & ' ) , - / 2/WK f  t   "   XC.X !  # & ' ) , - / 2        <t. (  D G H  J M N P S V Y  Z \ _ m (b D G H  J M N P S U. V Y Z \ _ m  . b) . b) .
 J X   $) $b) I5 e h Ib e h # b) E. Eb) *. *b) w. X X   
`   
&     
  a) . 0) 0b) .   - x
X    X K Kb) f. fb) . 4) 5 8 9 ; > 4b  5 8 9 ; > A   W Wb+ . )  . Qb) . Q) g) 	) 	)' 6TX ]. ]. 6) <b) <.*KXXuX#
u.J.
XtJ<Kf<Z,VJ>:Lf   J >  f ~    X J   	< . . .! . . .w . .Yg=
-K
t+ t < X X   	
4  < LdL4  < &L,L2  < L,L2  < L,LY=_KY
+  < X J   	 H=.t.   t J   L         
~(   
x<  + ' ) 
7J  
WtX    J ~    %  X   0"  X  + *I" ( t  m *< 0< *< I< (   ~ {  0f  Pf 0U
	  	P      }my< Y<=
g	=FJ_t',>  t		   w 
   < .    ut
{Y sJ i G=          X  I = W >   / I = X X t   <^1
UYu  S  X  < XWXxL
X 	      K=sK.[
`uJ=zJ=vYe_
%J9J3<v\. X J X  X 	J!fX 
  IJ   K W J  f    = I K   J   X X Y  J fLfH>>t,OhYIK wtX<tX<tX<tXX<
t
XW
="tX<tX<tX<y   X  "$$$
!6 zytJX$$$ z tHsH?wHHH z *<<
Hs@'w(o'	(( z  fyX ^   Xooxso
/fKXXuX#
u.J<
XJJ<Kf  	 ~J   < X vX  Y=Y<<
f. ufu.
 	      xKus =<\p=< J J X  X 	X.h|XYY<X < 
m  f        > ;  K  W >  s X X  X}#| <| <.|J  *J . X   zt   . XxKs!<XfuX#
u<J<
XJJ<Kt   ~t  >   JYvK<J	JYvK<J	JYvK<J	tYvK<J	tYvK<J	tYvK<J	tYvK<J	tYvK<J	tYvK<J	tYvK<J	tYvK<J	tYvK<J	tYvK<J	tYvK<J	tYvK<J	tYvK<J	tYvK<J	tYvK<J	tYvK<J	 J <uXXXXXXXXXXXXXXXXXX
 	      vsY-X>q.=
Z\*g.      f   Y - J K W ?   , > X > <LX	  =	&	Z
t
}

}fX%,>X>
  	 H>%#<  g"  ! 
 JX<JMJJXJJX y 0#J     t   [ - H K     W ?   , > X > 
L<< X J t  YX}
fX x< t n)     f(!~X=<<~t<Xt t-YX	\ ZX   X   XtXX
XX ]X 	@     Ks.XXjX#j.J.XtJ<Kf<X %  v  X < [ +   J z    J X J		Y     <t.   t J   L      < f   < z t z-=W<  b!vtKXXtX#t.J.XtJ<Kf<X %  v   V J > : L  [ +   J ~ J ~<     J  @-=Xt.    t J   L        j  ~X J ~     J     $  <  d 	     
NjX(Xt	vH0>X  Ilaststatval numchildren long long int Perl_av_push old_parser PL_locale_mutex blku_oldsaveix Iorigargc dopos Iorigargv Perl_sv_catpvn_flags si_errno keeper enc_sv __pad0 tbl_arena_next XML_CTYPE_EMPTY _spent_size Iin_utf8_CTYPE_locale XML_SetXmlDeclHandler hostent ls_prev close_paren PL_no_localize_ref lex_stuff Ilast_swash_hv xpvgv _readdir_ptr Istatcache _freeres_buf encmaphdr Icompiling XML_ParserFree Idbargs new_perl release blku_oldsp XML_StartDoctypeDeclHandler sub_error_count XML_SetUserData XML_SetProcessingInstructionHandler xpvhv PERL_CONTEXT _asctime_buffer __builtin_memcpy Inumeric_standard signgam prevcomppad Ie_script Perl_newSV_type commenthandle sv_u _servent_struct PL_sv_placeholder Ipreambleav IDBcontrol xpvio xpviv tbl_max si_tid defaulthandle Imy_cxt_size blku_old_tmpsfloor XML_GetCurrentByteIndex Imain_root Perl_call_pv xcv_outside blku_type _PerlIO __locales he_valu Iutf8_totitle _spent_struct named_buff PL_freq att_type h_length op_first Idoswitches _netent_size thrhook_proc_t next_branch PL_op_name bmsk dflthndl block_eval s_port __in6_u PL_no_wrongref in_port_t gp_refcnt prev_mark Idef_layerlist result saw_infix_sigil Irestartjmpenv save_lastloc Iwarn_locale _spent_buffer Icolors mg_obj je_old_delaymagic XML_SetStartCdataSectionHandler multi_end strchr PerlIO_list_s PerlIO_list_t COPHH scream_pos Iargvgv despatch_signals_proc_t XML_SetCharacterDataHandler getdate_err xio_flags markbeg Isharehook entstr old_regmatch_state xcv_xsub nextword Iminus_E isparam Icheckav pad_1 pad_2 Imarkstack xpvnv PL_bitcount Idump_re_max_len xcv_flags PL_warn_nl CallbackVector Istatusvalue IDBsingle utf8_substr __u6_addr8 min_offset PL_warn_nosemi pmop st_atim XS_XML__Parser__Expat_ElementIndex quant sival_int Ilast_in_gv Ireg_curpm share_proc_t XML_NotationDeclHandler Perl_av_len _call_addr ns_table long double sysid op_private lex_formbrack Perl_call_sv SVt_LAST startCdata sbu_dstr XML_cp Irunops Ipsig_pend _ctime_buffer Icomppad_name PL_magic_vtables Imarkstack_max sbu_iters si_type _IO_wide_data Ireentrant_retint Encmap_Header encinfptr INonL1NonFinalFold __spins XML_DefaultHandler nsstr __blkcnt_t PTR_TBL_t Perl_call_method xhv_max _protoent_size PL_no_symref hent_hek _grent_ptr _getlogin_buffer xivu_eval_seen eledcl_sv PL_curinterp extfin_sv __locale_data PL_hash_seed pos_flags firstmap Istack_base exec Imax_intro_pending poscache XML_ErrorString op_pmstashstartu group sbu_strend sp_inact re_scream_pos_data_s XML_SetEndDoctypeDeclHandler cop_stashoff XS_XML__Parser__Expat_GetCurrentLineNumber s_addr st_size PL_opargs pthread_key_t Iperldb lastparen si_addr_lsb Iinplace XS_XML__Parser__Expat_ParsePartial __locale_t xpvuv _pkey Perl_pop_scope XML_SetUnknownEncodingHandler IDBline PL_bincompat_options Isv_arenaroot jump PL_uudmap gp_egv newval padname states xio_bottom_gv convert _unused2 Iphase yylen strncmp subbeg nslen _asctime_size Iblockhooks end_shift __nusers sbu_oldsaveix _pwent_ptr Iosname n_addrtype Istrxfrm_max_cp lex_casemods lex_brackstack numbered_buff_STORE Iefloatsize ns_list PADLIST Ipeepp PADNAME XML_Content_Quant Iregex_pad retop program_invocation_name xcv_padlist_u minmod mymalloc xml_namespace sp_pwdp Iutf8_foldclosures PL_check Isv_yes st_serial parenfloor XS_XML__Parser__Expat_SetEndDoctypeHandler PL_op_private_bitfields Perl_sv_catpv branchlike JMPENV Imain_start qr_anoncv Istashpad _arch my_perl Perl___notused Perl_sv_setpvn Ienvgv XML_CQUANT_PLUS Iperlio Ipadname_const Perl_xs_boot_epilog newUTF8SVpvn atts Iregmatch_state prev_rex stderr Iisarev pnstab Iutf8locale proc_sv XML_GetBuffer Isignalhook XS_XML__Parser__Expat_ParseString __owner PL_No op_opt c2_utf8 __ino64_t sa_family_t sockaddr_inarp Encinfo __pthread_list_t tsiz subcoffset svu_fp namelen yy_stack_frame prefixes Idebstash enthndlr rsfp topword Perl_safesysfree XS_XML__Parser__Expat_SetCommentHandler reg_substr_datum si_stack xpadl_max Inomemok __uint8_t firstpos Idiehook prev_recurse_locinput any_ptr _readdir64_ptr CLONE_PARAMS Icompcv _vtable_offset lex_repl timespec PL_interp_size_5_18_0 PerlInterpreter cmnthndl xpadnl_max_named doctypfin_sv attdeclhndlr eldeclhndlr Perl_hv_common_key_len resume_callbacks PL_check_mutex xpvlenu_pv ILatin1 st_nlink Iminus_F re_eval_str Iscopestack_ix sp_max Iscopestack_max Perl_get_hv attributeDecl Iminus_a any_pvp Iminus_c XS_XML__Parser__Expat_SetEndCdataHandler Iminus_l Iminus_n Iminus_p Iargvout_stack dflt_sv PL_op_seq Iinitav Perl_newSVpvn Perl_newXS_deffile sin6_family free_fcn tbl_items Perl_ophook_t cache_mask PL_no_dir_func firstchars Imaxsysfd Ilocalizing limit lex_shared convert_to_unicode servent _crypt_struct_buffer PL_op_private_labels rxfree Perl_sv_2uv_flags _IO_save_end Perl_av_pop pw_name sp_lstchg curly _getlogin_size XML_UnknownEncodingHandler PL_sig_name Iunicode blku_sub qr_package Irestartop __timezone XS_XML__Parser__Expat_DefaultCurrent PL_thr_key gofs __mask_was_saved PERL_PHASE_CONSTRUCT Ilastgotoprobe cop_line XML_ParserStruct __locale_struct Isavebegin initialized XPVAV errstr userdata STRLEN userData exitlistentry op_ppaddr xpadnl_alloc XS_XML__Parser__Expat_RecognizedString Icheckav_save Idebug_pad _IO_backup_base __jmp_buf_tag lex_flags Iendav blku_oldscopesp Iutf8_idcont Icomppad_name_fill my_op rdres IHasMultiCharFold globhook_t tmpXSoff XPVCV pcontext Perl_savetmps PL_sh_path mark_stack_entry notation_sv _sys_errlist PL_hash_seed_set regnode XS_XML__Parser__Expat_ParseStream XML_UnparsedEntityDeclHandler stdin Iperl_destruct_level si_cxix XML_SetNotationDeclHandler mg_virtual padnamelist optopt interpreter PL_warn_reserved PMOP Istashpadix Perl_xs_handshake st_uid longfold sp_min _IO_read_end xcv_xsubany PADOFFSET PL_valid_types_RV Istatbuf sbu_rflags xpv_cur xpadn_flags Istderrgv xio_page_len XML_SetEndCdataSectionHandler notationDecl perl_memory_debug_header _IO_save_base newUTF8SVpv prefixes_size Iin_clean_all mark_name op_flags old_regmatch_slab unknownEncoding __ino_t reg_substr_data lex_super_state _grent_struct xcv_root_u curlym setting PL_uuemap PL_nan PL_magic_data Icustom_op_descs PL_hexdigit si_prev XPVGV bytemap _addr_bnd sp_namp _IO_write_end lex_starts Isavestack si_code Imodcount prev_curlyx XS_XML__Parser__Expat_UnsetAllHandlers Isortstash PL_mod_latin1_uc unparsedEntityDecl Istdingv svt_local sp_warn Icustom_ops CHECKPOINT XPVHV any_av _grent_buffer XS_XML__Parser__Expat_GetCurrentColumnNumber XS_XML__Parser__Expat_SetEntityDeclHandler relpos last_uni _IO_buf_base XPVIO sp_expire XPVIV pubid __uint16_t minlenret XML_CommentHandler Iofsgv TARGi_iv Idelaymagic_gid XML_Encoding xcv_gv_u Icollxfrm_mult XML_CQUANT_NONE parseparam parse_done Perl_gv_add_by_type tbl_arena_end Isavestack_ix dfltsv PL_C_locale_obj XML_ParseBuffer XML_Content sockaddr_x25 SVt_PVAV doctypeEnd sin6_flowinfo unprsd_sv XML_EntityDeclHandler xmg_magic svu_gp any_dptr intuit Extparse_Cleanup Ibody_roots si_sigval hek_len Icollation_ix XML_CTYPE_CHOICE tokenbuf op_nextop line_t curpfx mgvtbl PL_valid_types_NVX PL_runops_dbg _readdir64_size Iutf8_xidcont si_cxstack suspend_callbacks yyerrstatus Perl_sv_catpvf_nocontext _hostent_ptr XML_GetSpecifiedAttributeCount sbu_rx xcv_padlist _IO_marker PL_revision exthndlr svt_get _Bool svu_iv __prev Isort_RealCmp sbu_rxtainted xmldechndlr op_moresib _flags2 xpv_len_u Ipatchlevel xmlDecl _pwent_struct nextval svu_pv XPVNV any_gv Ihash_rand_bits sbu_orig XML_ExternalEntityRefHandler _IO_lock_t __gid_t _IO_read_ptr Iparser xpadlarr_dbg stack_max1 runops_proc_t any_hv PL_subversion Ipadlist_generation xmldec_sv SVt_PVFM __environ xpadnl_max Idefoutgv _lower Istatusvalue_posix _pwent_buffer st_serial_stackptr __ctype_tolower siginfo_t Perl_newSViv XS_XML__Parser__Expat_FreeEncoding any_iv PrefixMap max_offset Ichopset Irpeepp oldcomppad PL_fold_locale sbu_rxres SVt_PVGV Iincgv si_markoff xpadnl_fill S_POPMARK XML_SetCommentHandler PL_no_usym tv_nsec nexttype sig_slurpy Icurpm_under SVt_PVHV XS_XML__Parser__Expat_LoadEncoding entdcl_sv Sighandler_t pthread_getspecific svu_hash in6addr_loopback svu_nv lex_inpat last_lop sockaddr_ax25 eslen PL_isa_DOES ptr_tbl_arena XML_EndCdataSectionHandler Expat.c SVt_PVIO SVt_PVIV filtered Ilastfd PL_perlio_fd_refcnt Ieval_start XML_SetParamEntityParsing _readdir_struct Ilast_swash_key ls_linestr Perl_check_t _readdir_size __align Perl_gv_stashpv attdcl_sv hold PADNAMELIST SVt_PVCV PERL_PHASE_START __src xcv_hscxt any_u32 Perl_croak_nocontext _ctime_size cmod op_pmreplrootu d_ino Isavestack_max XPVUV Ilocalpatches Isv_root SVt_PVLV XS_XML__Parser__Expat_SetXMLDeclHandler p5rx op_next __saved_mask svu_rv svu_rx sockaddr_eon any_op generate_model Icurstack blim SVt_PVMG Ipadix_floor Perl_push_scope si_status xpadl_arr h_addrtype XML_SetDefaultHandlerExpand _strerror_size Idelaymagic_euid bufend Perl_newSVpv lex_inwhat any_pv PL_valid_types_PVX skipping xnv_nv PL_phase_names sin_zero Iopfreehook XS_XML__Parser__Expat_SetStartElementHandler _protoent_ptr XML_CQUANT_REP Iunitcheckav svu_uv PerlIOl skip_until ecdhndl protoent mg_len Imemory_debug_header PL_no_modify any_sv SVt_IV Itop_env __blksize_t _IO_buf_end Perl_sv_setiv short unsigned int _spent_ptr Itmps_stack Perl_safesyscalloc yy_lexshared gen_ns_name encinf nsdelim offs Perl_newSVsv Iseen_deprecated_macro _IO_codecvt Isv_undef Ipsig_name LEXSHARED XS_XML__Parser__Expat_GenerateNSName clone_params perl_drand48_t Igensym PL_fold __bsx Iregmatch_slab tline op_redoop XML_CTYPE_SEQ _hostent_struct start_tmp xio_fmt_name svt_len XML_Parser cop_hints __len h_name Ierrors pfsize PL_no_mem xpvlenu_len h_aliases _hostent_size PL_Yes op_pmreplstart hent_refcount XS_XML__Parser__Expat_OriginalString XML_DefaultCurrent saved_copy lex_sub_inwhat any_uv Itmps_floor PL_do_undump Istrxfrm_is_behaved xpadl_id Ibasetime Iop_mask Isighandlerp unreferenced xpadnl_refcnt IUpperLatin1 xio_ofp errctx _hostent_buffer cop_seq multi_start XML_Parse op_pmreplroot _shortbuf SVt_NV IDBtrace maxlen pre_prefix op_targ Ibeginav je_ret extent_sv resume_state PL_dollarzero_mutex Isv_consts pw_dir lex_casestack __bswap_16 op_lastop XS_XML__Parser__Expat_SetEndElementHandler Isub_generation blku_eval elementDecl float PL_version PL_no_security Iutf8_foldable __count unsigned char si_cxmax multi_open _kill st_rdev LOOP ILB_invlist SVt_PV XML_EndElementHandler XML_GetInputContext Perl_sv_setpv markend REENTR Imess_sv Iglobalstash Imin_intro_pending PL_perlio_mutex expect oldloc Icollxfrm_base Iutf8_perl_idcont cx_blk Istatname encoding RETVAL xnv_u XML_PARAM_ENTITY_PARSING_ALWAYS __uid_t sin6_scope_id unused blku_gimme PL_valid_types_IVX st_ctim recheck_utf8_validity Iutf8_tofold xcv_root ISB_invlist block_format in_addr_t op_sibparent tz_dsttime __data old_namesv parsepos xpadn_type_u IAssigned_invlist XML_SetCdataSectionHandler peep_t PL_my_ctx_mutex elname Perl_sv_free2 hasinternal Isv_no minlen malloc_fcn myfree __off_t realloc_fcn perl_phase Iin_clean_objs d_reclen externalEntityRef PL_mmap_page_size PERL_PHASE_DESTRUCT in_pod Perl_stack_grow XML_ElementDeclHandler gp_io Imultideref_pc buffsize bytemap_size Iors_sv xpadn_protocv XML_XmlDeclHandler xuv_u Ievalseq Iunlockhook regexp_engine mg_flags Icurstash gr_passwd Perl_markstack_grow Perl_ppaddr_t gr_gid XML_EndNamespaceDeclHandler Perl_safesysrealloc Istashpadmax XS_XML__Parser__Expat_SetExternalEntityRefHandler si_overrun endcd_sv __clock_t SVt_NULL ls_bufptr Ibeginav_save newsize start_sv __uint32_t Iorigfilename xmg_hash_index self_sv last_lop_op Inumeric_local cop_warnings PL_op_private_bitdef_ix Icop_seqmax XS_XML__Parser__Expat_SetUnparsedEntityDeclHandler Isecondgv op_pmtargetgv PL_veto_cleanup form_lex_state XS_XML__Parser__Expat_Do_External_Parse Istatgv Idestroyhook copline st_blocks _sys_siglist sbu_m sbu_s Perl_safesysmalloc save_curlyx Icomppad sub_no_recover lex_dojoin xmg_u ispfx dirent64 XML_ExternalEntityParserCreate notation gp_cvgen PL_utf8skip nothndlr XML_CharacterDataHandler xcv_file SVt_PVNV itervar_u gp_flags xiou_dirp _servent_buffer PL_op_mutex paren_names st_serial_stacksize Iregistered_mros si_uid pw_passwd lex_allbrackets ischar opval Icurcopdb block_sub entity dtsthndlr no_expand pos_magic _old_offset gp_file_hek sv_refcnt XML_SetEntityDeclHandler sockaddr_in6 dflt XML_PARAM_ENTITY_PARSING_UNLESS_STANDALONE __nlink_t tbl_ary xav_alloc si_fd nparens end_sv PL_no_func xpadn_refcnt Ieval_root old_eval_root named_buff_iter st_gid Idowarn yychar Ifirstgv mg_moremagic op_pmoffset op_pmstashoff XML_GetCurrentLineNumber PERL_SI XML_SetAttlistDeclHandler MGVTBL new_prefix_list op_static MAGIC Perl_sv_newmortal Itmps_max lblen optarg PL_latin1_lc sockaddr_ipx Ithreadhook delimsv PL_valid_types_IV_set reqorfix blku_givwhen gr_name XS_XML__Parser__Expat_SetNotationDeclHandler op_type Iutf8_perl_idstart sublen blku_oldmarksp endElement xivu_iv Iutf8_swash_ptrs _netent_ptr XML_CTYPE_MIXED Ipadname_undef preambling proto_perl byte _upper cx_u output IDBcv PL_sigfpe_saved trie Ilockhook __ctype_toupper Perl_newRV PL_inf _xnvu characterData Perl_keyword_plugin_t xio_lines_left compflags prochndl sockaddr_iso pthread_mutex_t Iin_load_module PL_memory_wrap xio_page Perl_newSV sigjmp_buf Ilaststype XS_XML__Parser__Expat_SetExtEntFinishHandler __ctype_b __list h_addr_list Iutf8_charname_continue in_my_stash XS_XML__Parser__Expat_SetElementDeclHandler xpadn_len XML_ParserCreate_MM _IO_write_ptr _strerror_buffer startElement local_patches dummy XS_XML__Parser__Expat_SetCharacterDataHandler Iunitcheckav_save PL_op_desc si_stime PL_no_aelem nsStart lastcloseparen short int ifmatch Idumpindent Ioldname preambled op_code_list xhv_keys itersave _readdir64_struct _sys_nerr IAboveLatin1 Iutf8_mark _servent_size si_signo XML_CTYPE_ANY IDBgv Ilast_swash_tmps Perl_sv_2bool_flags __names sv_any blk_u xcv_start accepted gvval IWB_invlist olddepth Iutf8cache dtendhndlr _bounds prev_eval Ipadix defsv_save _netent_buffer xcv_stash YYSTYPE xcv_gv do_ns _markers PL_keyword_plugin cop_hints_hash _fileno Icustom_op_names lex_sub_repl errmsg stdout xpadn_high re_scream_pos_data hek_hash _ttyname_buffer PL_hints_mutex Iknown_layers _netent_errno Itainting PL_op_private_bitdefs Icurcop Istack_sp XML_PARAM_ENTITY_PARSING_NEVER __ssize_t any_bool XS_XML__Parser__Expat_PositionContext XML_GetBase regmatch_info_aux Ihash_rand_bits_enabled PL_interp_size Icollation_standard __glibc_reserved lex_defer xmg_stash PL_runops_std Iorigalen sbu_maxiters sockaddr Idebug refcounted_he Icurpad PL_op_private_valid recstring XML_GetCurrentColumnNumber __time_t __daylight st_mtim s_proto sbu_targ EncodingTable d_type __dest logical Iforkprocess lex_brackets xio_top_gv Iutf8_tolower Perl_newRV_noinc PL_op_sequence recString blku_oldcop perl_mutex Icurstackinfo Istart_env lex_fakeeof lex_sub_op stashes Istashcache xnv_lines Perl_sv_bless PL_use_safe_putenv _IO_write_base p_aliases _netent_struct in_my next_off xivu_uv sin_port padnl Imodglobal in6addr_any ICmd sockaddr_at XML_GetErrorCode regmatch_info_aux_eval xcv_start_u XS_XML__Parser__Expat_ParseDone PL_no_helem_sv endCdata Perl_sv_catsv_flags basesp Igeneration IGCB_invlist Istrtab xpadl_outid xpadn_low block_givwhen regexp_paren_pair __size pret crypt_data pprivate cv_flags_t cur_top_env xpadn_typestash Iin_utf8_COLLATE_locale Ilast_swash_slen state_u PERL_PHASE_RUN _sigfault op_spare lex_op st_ino pw_gecos __pid_t parsed_sub op_last Perl_free_tmps xio_type yylval Perl_sv_derived_from GNU C17 8.5.0 20210514 (Red Hat 8.5.0-20) -m64 -mtune=generic -march=x86-64 -g -g -O2 -fexceptions -fstack-protector-strong -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection=full -fwrapv -fno-strict-aliasing -fPIC -fplugin=annobin XS_XML__Parser__Expat_GetSpecifiedAttributeCount sockaddr_dl XS_XML__Parser__Expat_SetDefaultHandler xav_fill hent_val Iorigenviron Idelaymagic_egid gp_av vlen scream_olds mg_ptr _cur_column regexp maxpos XML_Char sa_family append_error ptr_tbl Inumeric_name lazyiv _sifields SVCOMPARE_t SVt_REGEXP Ipsig_ptr gp_cv xgv_stash netent saved_curcop tv_sec blku_u16 Iprofiledata __sigset_t gp_line Imainstack Icurpm op_pmflags st_blksize xpadn_ourstash program_invocation_short_name PL_sig_num ptr_tbl_ent _hostent_errno op_slabbed Isubline Iargvoutgv Iwatchaddr Idefgv tbuff hek_key Perl_av_clear PerlExitListEntry xio_bottom_name XML_StartCdataSectionHandler gp_form Ireentrant_buffer hent_next st_serial_stack check_ix __off64_t Iunsafe Ihintgv nmstr sockaddr_in __jmp_buf IDBsignal Iutf8_charname_begin char_sv blku_format PL_ppaddr __dirstream XS_XML__Parser__Expat_SetProcessingInstructionHandler cmnt_sv sin_addr IXpv Iregex_padav PL_perlio_debug_fd blku_loop cache_offset wanted pw_uid _timer Istrxfrm_NUL_replacement XML_SetExternalEntityRefHandler __lock sig_elems PL_valid_types_NV_set XML_SetBase XS_XML__Parser__Expat_GetErrorCode gr_mem Ixsubfilename gp_hv Ipad_reset_pending opterr ioref dfoutgv Perl_sv_setsv_flags _sigchld attname xcv_depth Itaint_warn IArgv pw_shell si_next _syscall PL_no_symref_sv Iexitlist standalone XML_Memory_Handling_Suite Isubname attlim _IO_read_base PL_warn_uninit any_i32 Ihv_fetch_ent_mh XML_EndDoctypeDeclHandler UNOP_AUX_item bmap_start svt_dup __pthread_mutex_s bmsize Perl_sv_setiv_mg Inumeric_radix_sv PL_fold_latin1 xcv_outside_seq PL_magic_vtable_names nmlen PL_no_sock_func Isplitstr xcv_hek svt_free sockaddr_ns PERL_PHASE_END long long unsigned int si_addr dirent Ibody_arenas checkstr XML_ProcessingInstructionHandler _grent_size QuantChar PL_csighandlerp SVt_INVLIST Isortcop XS_XML__Parser__Expat_SetAttListDeclHandler PL_warn_uninit_sv sin_family nsEnd Isignals sbu_type si_pid mg_private dupe je_buf XS_XML__Parser__Expat_ParserCreate lazysv Itoptarget linebuff XML_ParamEntityParsing Ierrgv Perl_sv_2pv_flags svt_clear PERL_PHASE_CHECK pfxsize nexttoke PL_no_myglob Itmps_ix Isig_pending substrs XML_SetElementHandler any_svp intflags destroyable_proc_t XML_GetCurrentByteCount Ifdpid xpadlarr_alloc ival any_dxptr n_net Perl_croak_xs_usage charhndl op_pmtargetoff Icollation_name XS_XML__Parser__Expat_ErrorString Iefloatbuf _pwent_size XS_XML__Parser__Expat_SetBase oldval any_long xiou_any XML_SetUnparsedEntityDeclHandler Iexit_flags c1_utf8 Iglobhook XS_XML__Parser__Expat_SetStartCdataHandler sin6_port XML_CQUANT_OPT PL_block_type d_off bndx xio_top_name XML_CTYPE_NAME scdhndl /home/.cpanm/work/1709504180.16289/XML-Parser-2.47/Expat Iptr_table Icolorset XML_StartElementHandler __jmpbuf Ifilemode __dev_t XML_SetElementDeclHandler __kind Iexitlistlen sockaddr_un op_folded Idelaymagic PL_charclass Imarkstack_ptr block pw_gid prev_yes_state _protoent_struct op_comp XS_XML__Parser__Expat_GetBase gp_sv svu_array XML_SetNamespaceDeclHandler __pthread_internal_list whilem parse_stream IInBitmap doctypeStart XS_XML__Parser__Expat_SetDoctypeHandler mother_re __val n_aliases _sigsys processingInstruction extflags name_ent xio_fmt_gv xpadn_gen startcd_sv namespaces XS_XML__Parser__Expat_GetCurrentByteIndex cop_file Icurstname cx_subst __u6_addr16 Isv_count svt_set XS_XML__Parser__Expat_ParserRelease Idefstash Itainted tz_minuteswest Ibodytarget oldoldbufptr xav_max xiv_u _protoent_buffer st_mode savearray myrealloc Perl_sv_setref_pv _xivu _chain leave_op Iutf8_xidstart re_eval_start perl_debug_pad Istack_max svtype st_dev __u6_addr32 je_prev Iclocktick Perl_sv_2iv_flags __syscall_slong_t IXPosix_ptrs IDBsub spwd __next Iutf8_idstart je_mustcatch numbered_buff_LENGTH entpar yy_parser block_loop op_savefree Iscopestack Iformtarget prefixmap pad_offset XML_SetDefaultHandler PL_perlio_fd_refcnt_size s_aliases pnslst boot_XML__Parser__Expat lastcp Iconstpadix delimlen multi_close stat herelines Imy_cxt_list IPosix_ptrs _freeres_list xivu_namehek XS_XML__Parser__Expat_SkipUntil __pad5 __bswap_32 _ttyname_size sin6_addr Iwatchok S_SvREFCNT_dec _IO_FILE __stack_chk_fail PL_my_cxt_index doctyp_sv __tzname p_proto Perl_sv_2mortal svt_copy xnv_bm_tail XML_Content_Type sival_ptr mark_loc si_utime entityDecl xpvav Isrand_called optind strlen __mode_t sp_flag perl_key Ireplgv sa_data Ibreakable_sub_gen rsfp_filters unprsdhndl S_SvREFCNT_inc Iin_eval suboffset __sigval_t XML_StartNamespaceDeclHandler _servent_ptr lex_re_reparsing XML_AttlistDeclHandler Iutf8_toupper linestart sig_optelems PERL_PHASE_INIT Icv_has_eval XS_XML__Parser__Expat_ParserFree mg_type xpvcv XML_SetStartDoctypeDeclHandler numbered_buff_FETCH Irandom_state Iscopestack_name si_band xpadn_pv Icomppad_name_floor Idelaymagic_uid Iwarnhook Ilast_swash_klen _xmgu _sigpoll xio_dirpu cur_text __elision blku_oldpm Imain_cv                  U             U                                 T             T                                   P             V             T                          >       U>             U                                    B       TB             _             T      1       _1             T             _             T                     H      p       ]y             ^             ^                                  ]      b       Vb             v             ^             v             v             v      ,       ^,      1       v             v                        b      i       v  $ &3$p"i      m       v  $ &3$p "m             P             P                 b      i       } v  $ &3$p8                            y       ^             ^1             ^                                   _             _1             _                        g             \             \             \             \                                 V1             V                             W       ~ 1      >       ~ ^      n       ~              ~                   W      c       T                     y             \             \             \                                1             1                  M      ]       P                                  U      p        U                                      T      /        ^/       0        T0       p        ^                  "      J       \                                7      <       V<      ^       v^             ]             v             v0       E        vE       \        ]\       p        v                        <      C       v  $ &3$p"C      G       v  $ &3$p "G      e       Pa       o        P                 <      C       | v  $ &3$p8                          -        ]0       E        ]                                P                                  U                       '        0                  '      7       P                                   U       q       U                                       T              ]      b       Tb      q       ]                                    V             ^A      b       ^                                           ^              ~      U       \U             ~      A       ~b      q       ~                                   ~  $ &3$p"               ~  $ &3$p "                                v ~  $ &3$p8                    U             \      "       \                                 \A      b       \                    |             VA      b       V                                 P             |                                 \A      b       \                              1                                 P                    p               U       !       U                            p               T       !       ]!      i!       Ti!      !       ]!      !       T!      !       ]                                 V                                             ^               ~               \       !       V!      h!       ~i!      !       V!      !       ~                                   ~  $ &3$p"               ~  $ &3$p "                                v ~  $ &3$p8                    !      S!       V!      !       V                    !      f!       ]!      !       ]                 F!      i!       0                                 P                    @;      ^;       U^;      x>       U                            @;      b;       Tb;      <       ^<      |=       T|=      =       ^=      i>       Ti>      x>       ^                  h;      ;       ]                          };      ;       V;      ;       v;      <       \<      i>       \i>      x>       v                        ;      ;       v  $ &3$p";      ;       v  $ &3$p ";      ;       Pi>      w>       P                 ;      ;       } v  $ &3$p8                      ;      <       ]<      |=       ]=      i>       ]                      <      <       V<      |=       V=      i>       V                        A<      J<       PJ<      <       _<      |=       _=      i>       _                     <      <       ^<      |=       ^=      i>       ^                         <      <       0<      <       T<      |=       0=      =       0=      i>       0                 <      <       1                  m;      };       P                    B      B       UB      F       U                            B      C       TC      C       ^C      E       TE      9E       ^9E      	F       T	F      F       ^                  C      0C       ]                          C      "C       V"C      DC       vDC      D       \D      	F       \	F      F       v                        "C      )C       v  $ &3$p")C      -C       v  $ &3$p "-C      KC       P	F      F       P                 "C      )C       } v  $ &3$p8                      C      D       ]D      E       ]9E      	F       ]                      C      D       VD      E       V9E      	F       V                        C      C       PC      D       _D      E       _SE      	F       _                     C      D       ^D      E       ^9E      	F       ^                         C      >D       0>D      ED       TD      E       09E      zE       0E      	F       0                 uD      D       1                  C      C       P                    I      <I       U<I      J       U                          I      @I       T@I      I       ]I      J       TJ      J       ]J      J       T                  FI      lI       \                          \I      aI       ^aI      I       ~I      KJ       VsJ      J       VJ      J       ~                    aI      eI       ~  $ &3$p"eI      iI       ~  $ &3$p "                 aI      eI       | ~  $ &3$p8                    I      J       ^J      J       ^                        J      1J       \1J      5J       P5J      nJ       \J      J       \                        I      I       PI      J       \J      J       PJ      J       \                   >J      sJ       1J      J       1                  KI      \I       P                    \      \       U\      ]       U                        \      \       T\      ]       ]]      ]       T]      ]       ]                  \      \       \                            \      \       ^\      \       ~\      \]       V\]      ]       ~]      ]       V]      ]       ~                    \      \       ~  $ &3$p"\      \       ~  $ &3$p "                 \      \       | ~  $ &3$p8                 t]      ]       V                  t]      ]       V                 ]      ]       0                  \      \       P                     ^      ?^       U?^      b       U                         ^      C^       TC^      ^       ^^      b       Tb      b       ^                  J^      t^       S                          a^      f^       ]f^      ^       }^      _       \_      b       \b      b       }                        f^      m^       }  $ &3$p"m^      q^       }  $ &3$p "q^      ^       Pb      b       P                 f^      m^       s }  $ &3$p8                            ^      P_       S_      a       Sa      3b       43b      Pb       Sfb      b       4b      b       S                    2_      D_       P_      _       P                            P_      i_       ]i_      m_       Pm_      _       SW`      [`       P[`      3b       ]fb      b       ]                         2_      P_       S_      a       Sa      3b       4fb      b       4b      b       S                      _      ?`       y 
?`      `      
 
b      b       y 
                      _      ?`       x 
?`      `      
 
b      b       x 
                      s`      ~`       P~`      `       Q`      a                             a      a       Pa      3b       Sfb      b       S                    `      a       sa      a       p|a      sa       p                   6`      3b       _fb      b       _                                          _      _       0_      `       }`      `       _`      `       ]`      `       _|`      ~`       0 a      a       0a      a       Ua      sa       usa      xa       Uxa      a       0a      a       Pa      a       pa      a       Pb      b       ]b      b       0                      _      _       P`      `       Pb      b       P                  /a      xa       R                 Oa      sa       @                 Oa      sa       r                 _      _       s,                 _      _       s.                 ~`      `       s p "#0                 <_      <_       s                  v_      _       1                  O^      a^       P                    b      b       Ub      hd       U                            b      b       Tb      nc       ]nc      9d       T9d      Td       ]Td      Yd       TYd      hd       ]                  b      c       \                          c      c       ^c      2c       ~2c      c       V#d      Yd       VYd      hd       ~                    c      c       ~  $ &3$p"c      c       ~  $ &3$p "                 c      c       | ~  $ &3$p8                    c      c       ]#d      9d       ]                    c      c       Pc      d       ]                 c      #d       1                  b      c       P                    pd      d       Ud      Af       U                        pd      d       Td      d       ]d      2f       T2f      Af       ]                     d      d       Vie      e       ^f      2f       ^                            d      d       ^d      d       ~d      %e       \%e      ie       ~e      f       ~2f      Af       ~                    d      d       ~  $ &3$p"d      d       ~  $ &3$p "                 d      d       v ~  $ &3$p8                    %e      Ye       \e      e       \                    Ye      e       \f      2f       \                    Le      e       Vf      2f       V                   ie      e       \f      2f       \                 e      e       1                  d      d       P                    `      ~       U~      1       U                            `             T             ]             T             ]      "       T"      1       ]                                  VY             ]      "       ]                                           ^             ~             \             V      I       ~             ~"      1       ~                                 ~  $ &3$p"             ~  $ &3$p "                              v ~  $ &3$p8                          Y       ]             ]                      I      M       PM             ^      "       ^                    <             V      "       V                   Y             ^      "       ^                              1                               P                    @      ^       U^             U                        @      b       Tb             ]             T             ]                     h             V<      q       ^             ^                            ~             ^             ~             \      <       ~             ~             ~                                 ~  $ &3$p"             ~  $ &3$p "                              v ~  $ &3$p8                          )       \             \                    )             \             \                                 V             V                   <             \             \                 u             1                  m      ~       P                           >       U>      	       U                               B       TB             ]      	       T	      	       ]                     H      n       V	      Q	       ^	      	       ^                            ^      c       ^c             ~             \      	       ~|	      	       ~	      	       ~                    c      g       ~  $ &3$p"g      k       ~  $ &3$p "                 c      g       v ~  $ &3$p8                          		       \|	      	       \                    		      u	       \	      	       \                          b	       V	      	       V                   	      u	       \	      	       \                 U	      |	       1                  M      ^       P                                 U      Q       U                                     T             ]      B       TB      Q       ]                                  Vy             ^!      B       ^                                         ^             ~      5       \5      y       ~      !       ~B      Q       ~                                 ~  $ &3$p"             ~  $ &3$p "                              v ~  $ &3$p8                    5      i       \             \                    i             \!      B       \                    \             V!      B       V                   y             \!      B       \                              1                               P                    p      p       Up      hr       U                            p      p       Tp      6q       ]6q      :r       T:r      Tr       ]Tr      Yr       TYr      hr       ]                  p      p       \                          p      p       ^p      p       ~p      r       Vr      Yr       VYr      hr       ~                    p      p       ~  $ &3$p"p      p       ~  $ &3$p "                 p      p       | ~  $ &3$p8                                  6q      q       ]q      q       Uq      q       ]q      q       Uq      r       ]r      $r       U$r      *r       ]*r      4r       U4r      :r       ]                        q      q       Pq      q       \q      q       Pq      r       \                             6q      Xq       0Xq      q       _q      q       Tq      r       _r      *r       _*r      4r       T4r      :r       _                    :q      q       \r      :r       \                 q      r       1                  p      p       P                    pr      r       Ur      ms       U                        pr      r       Tr      @s       ]@s      Cs       TCs      ms       ]                  r      r       V                              r      r       ^r      r       ~r      r       \r      s       Vs      Bs       ~Cs      ^s       V^s      ms       ~                    r      r       ~  $ &3$p"r      r       ~  $ &3$p "                 r      r       v ~  $ &3$p8                  s      s       U                 s      s       u                   s      Cs       0                  r      r       P                    u      u       Uu      $x       U                        u      u       Tu      Vv       ]Vv      x       Tx      $x       ]                  u      u       \                          u      u       ^u      v       ~v      w       Vw      x       Vx      $x       ~                        u      u       ~  $ &3$p"u      u       ~  $ &3$p "u      v       Px      #x       P                 u      u       | ~  $ &3$p8                    #v      ~v       _w      w       _                    9v      v       \w      x       \                    Vv      Jw       ]w      x       ]                    cv      w       ^w      x       ^                          Jw      Nw       PNw      fw       ]fw      jw       Pjw      w       ]x      x       ]                        v      w       _w      w        p "w      %w        p "#%w      0w        p "w      x       _                          v      v       Xv      v       v      v       p "v      v      
 p "#v      v       p "x      x                             v      v       Pv      w       \x      x       P                             v      v       Pv      v       | p "v      v       | p "#v      v       | p "v      w       Xw      w       t p "#w      %w       t p "#%w      0w       t p "#x      x       P                              v      v       Tv      w       | u "w      -w       Y-w      0w       x "0w      ?w      
 t "#x      x       Tx      x       p u "                   sw      w       1x      x       1                  u      u       P                     F      MF       UMF      I       U                                   F      QF       TQF      G       ^G      H       TH      H       ^H      H       TH      H       ^H      H       TH      I       ^I      I       T                        XF      H       \H      "H       |pH      H       \H      I       \                                  nF      sF       SsF      F       sF      F       ]F      F       sF      )G       sH      H       ]H      H       sH      H       sH      I       s                      sF      }F       s  $ &3$p"}F      F       s  $ &3$p "F      F       P                 sF      }F       | s  $ &3$p8                    F      ]G       ]H      H       ]                    @G      G       SH      H       S                    PG      G       PH      H       P                        ]G      cG       p } "cG      tG       ]tG      |G       R|G      G       ]                    G      G       RH      H       R                      G      G       QG      G       RH      H       Q                      G      G       RG      H       SH      H       SH      H       Q                       G      G       0G      G       ^G      jH       ^H      H       ^H      H       0                         ]G      iG       0iG      G       TG      G       0G      G       UH      H       0                  ]F      nF       P                    0x      Nx       UNx      y       U                            0x      Rx       TRx      x       ]x      ey       Tey      y       ]y      y       Ty      y       ]                  Xx      ~x       \                          nx      sx       ^sx      x       ~x      +y       Vey      y       Vy      y       ~                    sx      wx       ~  $ &3$p"wx      {x       ~  $ &3$p "                 sx      wx       | ~  $ &3$p8                    x      x       P|y      y       U                        x      x       Px      >y       ]y      y       Py      y       ]                 >y      ey       1                  ]x      nx       P                    y      y       Uy      8{       U                        y      y       Ty      z       ^z      z       Tz      8{       ^                  y      
z       \                              y      y       Vy      z       vz      Zz       ]Zz      wz       vwz      z       v{      ${       ]${      8{       v                        y      z       v  $ &3$p"z      z       v  $ &3$p "z      %z       P){      7{       P                 y      z       | v  $ &3$p8                    rz      z       ]z      {       ]                    z      z       Vz      {       V                  z      z       T                 z      z       0                  y      y       P                    @{      ^{       U^{      x~       U                            @{      b{       Tb{      |       ^|      |}       T|}      }       ^}      i~       Ti~      x~       ^                  h{      {       ]                          }{      {       V{      {       v{      |       \|      i~       \i~      x~       v                        {      {       v  $ &3$p"{      {       v  $ &3$p "{      {       Pi~      w~       P                 {      {       } v  $ &3$p8                      {      |       ]|      |}       ]}      i~       ]                      |      |       V|      |}       V}      i~       V                        A|      J|       PJ|      |       _|      |}       _}      i~       _                         |      |       0|      |       T|      |}       0}      }       0}      i~       0                     |      |       ^|      |}       ^}      i~       ^                 |      |       1                  m{      }{       P                    ~      ~       U~             U                            ~      ~       T~      M       ^M             T      ـ       ^ـ             T             ^                  ~      ~       ]                          ~      ~       V~      ~       v~      7       \>             \             v                        ~      ~       v  $ &3$p"~      ~       v  $ &3$p "~      ~       P             P                 ~      ~       } v  $ &3$p8                      <      9       ]>             ]ـ             ]                      ^              V>             Vـ             V                                     P      =       _>             _             _                         ^             0             T>             0ـ             07             0                     ^      )       ^>             ^ـ             ^                       >       1                  ~      ~       P                          ށ       Uށ             U                                         T             ^             T             ^             T             ^                               ]                                       V      $       v$      w       \~             \             v                              	       v  $ &3$p"	             v  $ &3$p "      +       P             P                       	       } v  $ &3$p8                      |      y       ]~             ]             ]                            `       V~             V             V                              ʂ       Pʂ      }       _~             _3             _                                      0      %       T~             0      Z       0w             0                           i       ^~             ^             ^                                0             0                 U      ~       1                               P                                  U      8       U                                   "       T"      ͅ       ^ͅ      <       T<      Y       ^Y      )       T)      8       ^                  (      P       ]                          =      B       VB      d       vd             \      )       \)      8       v                        B      I       v  $ &3$p"I      M       v  $ &3$p "M      k       P)      7       P                 B      I       } v  $ &3$p8                                   ]      <       ]Y      )       ]                      ޅ             V      <       VY      )       V                              
       P
             _      <       _s      )       _                         ޅ      ^       0^      e       T      <       0Y             0      )       0                     ޅ             ^      <       ^Y      )       ^                              1                  -      =       P                    0      N       UN      h       U                            0      R       TR             ^      l       Tl             ^      Y       TY      h       ^                  X             ]                          m      r       Vr             v             \      Y       \Y      h       v                        r      y       v  $ &3$p"y      }       v  $ &3$p "}             PY      g       P                 r      y       } v  $ &3$p8                                   ]      l       ]      Y       ]                            Ќ       V      l       V      Y       V                        1      :       P:             _      l       _      Y       _                                      0             T      l       0      ʍ       0      Y       0                           ٌ       ^      l       ^      Y       ^                 Ō             1                  ]      m       P                                 U      ȕ       U                                         T      ]       ^]      ̔       T̔             ^             T      ȕ       ^                               ]                          ͒      Ғ       VҒ             v      G       \N             \      ȕ       v                        Ғ      ْ       v  $ &3$p"ْ      ݒ       v  $ &3$p "ݒ             P      Ǖ       P                 Ғ      ْ       } v  $ &3$p8                      L      I       ]N      ̔       ]             ]                      n      0       VN      ̔       V             V                                     P      M       _N      ̔       _             _                         n             0             TN      ̔       0      *       0G             0                     n      9       ^N      ̔       ^             ^                 %      N       1                        ͒       P                    !      !       U!      #       U                            !      !       T!      U"       ^U"      D#       TD#      \#       ^\#      #       T#      #       ^                  !       "       ]                          !      !       V!      "       v"      &#       \-#      #       \#      #       v                        !      !       v  $ &3$p"!      !       v  $ &3$p "!      "       P#      #       P                 !      !       } v  $ &3$p8                    m"      "       ^a#      t#       ^                      "      ,#       _-#      D#       _a#      #       _                        "      "       P"      #       V-#      D#       V}#      #       V                     "      #       ]-#      D#       ]a#      #       ]                 #      -#       1                  !      !       P                    #      #       U#      &       U                            #      #       T#      $       ^$      %       T%      &       ^&      &       T&      &       ^                  #      $       ]                          #      $       V$      $$       v$$      w%       \~%      &       \&      &       v                        $      	$       v  $ &3$p"	$      $       v  $ &3$p "$      +$       P&      &       P                 $      	$       } v  $ &3$p8                      |$      y%       ]~%      %       ]&      &       ]                      $      `%       V~%      %       V&      &       V                        $      $       P$      }%       _~%      %       _3&      &       _                         $      %       0%      %%       T~%      %       0&      Z&       0w&      &       0                     $      i%       ^~%      %       ^&      &       ^                 U%      ~%       1                  #      #       P                     '      '       U'      8*       U                             '      "'       T"'      '       ^'      <)       T<)      Y)       ^Y)      )*       T)*      8*       ^                  ('      P'       ]                          ='      B'       VB'      d'       vd'      (       \(      )*       \)*      8*       v                        B'      I'       v  $ &3$p"I'      M'       v  $ &3$p "M'      k'       P)*      7*       P                 B'      I'       } v  $ &3$p8                      '      (       ](      <)       ]Y)      )*       ]                      '      (       V(      <)       VY)      )*       V                        (      
(       P
(      (       _(      <)       _s)      )*       _                         '      ^(       0^(      e(       T(      <)       0Y)      )       0)      )*       0                     '      (       ^(      <)       ^Y)      )*       ^                 (      (       1                  -'      ='       P                    @*      ^*       U^*      x-       U                            @*      b*       Tb*      +       ^+      |,       T|,      ,       ^,      i-       Ti-      x-       ^                  h*      *       ]                          }*      *       V*      *       v*      +       \+      i-       \i-      x-       v                        *      *       v  $ &3$p"*      *       v  $ &3$p "*      *       Pi-      w-       P                 *      *       } v  $ &3$p8                      *      +       ]+      |,       ],      i-       ]                      +      +       V+      |,       V,      i-       V                        A+      J+       PJ+      +       _+      |,       _,      i-       _                         +      +       0+      +       T+      |,       0,      ,       0,      i-       0                     +      +       ^+      |,       ^,      i-       ^                 +      +       1                  m*      }*       P                    m      .m       U.m      xp       U                            m      2m       T2m      m       ^m      zo       Tzo      o       ^o      ip       Tip      xp       ^                  8m      `m       ]                          Mm      Rm       VRm      tm       vtm      n       \n      ip       \ip      xp       v                        Rm      Ym       v  $ &3$p"Ym      ]m       v  $ &3$p "]m      {m       Pip      wp       P                 Rm      Ym       } v  $ &3$p8                              m      n       ]n      n       Un      n       ]n      lo       ]lo      to       Uto      zo       ]o      ip       ]                      m      n       Vn      zo       Vo      ip       V                        n      n       Pn      n       _n      zo       _o      ip       _                           m      vn       0vn      n       Tn      lo       0lo      to       To      o       0o      ip       0                     m      n       ^n      zo       ^o      ip       ^                 n      n       1                  =m      Mm       P                    -      -       U-      0       U                            -      -       T-      M.       ^M.      /       T/      /       ^/      0       T0      0       ^                  -      -       ]                          -      -       V-      -       v-      7/       \>/      0       \0      0       v                        -      -       v  $ &3$p"-      -       v  $ &3$p "-      -       P0      0       P                 -      -       } v  $ &3$p8                      <.      9/       ]>/      /       ]/      0       ]                      ^.       /       V>/      /       V/      0       V                        .      .       P.      =/       _>/      /       _/      0       _                         ^.      .       0.      .       T>/      /       0/      0       070      0       0                     ^.      )/       ^>/      /       ^/      0       ^                 /      >/       1                  -      -       P                    0      0       U0      3       U                            0      0       T0      1       ^1      2       T2      3       ^3      3       T3      3       ^                  0      1       ]                          0      1       V1      $1       v$1      w2       \~2      3       \3      3       v                        1      	1       v  $ &3$p"	1      1       v  $ &3$p "1      +1       P3      3       P                 1      	1       } v  $ &3$p8                      |1      y2       ]~2      2       ]3      3       ]                      1      `2       V~2      2       V3      3       V                        1      1       P1      }2       _~2      2       _33      3       _                         1      2       02      %2       T~2      2       03      Z3       0w3      3       0                     1      i2       ^~2      2       ^3      3       ^                 U2      ~2       1                  0      0       P                     4      4       U4      87       U                             4      "4       T"4      4       ^4      <6       T<6      Y6       ^Y6      )7       T)7      87       ^                  (4      P4       ]                          =4      B4       VB4      d4       vd4      5       \5      )7       \)7      87       v                        B4      I4       v  $ &3$p"I4      M4       v  $ &3$p "M4      k4       P)7      77       P                 B4      I4       } v  $ &3$p8                      4      5       ]5      <6       ]Y6      )7       ]                      4      5       V5      <6       VY6      )7       V                        5      
5       P
5      5       _5      <6       _s6      )7       _                         4      ^5       0^5      e5       T5      <6       0Y6      6       06      )7       0                     4      5       ^5      <6       ^Y6      )7       ^                 5      5       1                  -4      =4       P                    @7      ^7       U^7      =9       U                            @7      b7       Tb7      7       ^7      8       T8      8       ^8      .9       T.9      =9       ^                  h7      7       ]                          }7      7       V7      7       v7      8       \8      .9       \.9      =9       v                        7      7       v  $ &3$p"7      7       v  $ &3$p "7      7       P.9      <9       P                 7      7       } v  $ &3$p8                    7      88       ^8      9       ^                      8      8       _8      8       _8      .9       _                        =8      F8       PF8      8       V8      8       V
9      .9       V                     8      8       ]8      8       ]8      .9       ]                 8      8       1                  m7      }7       P                    @9      ^9       U^9      =;       U                            @9      b9       Tb9      9       ^9      :       T:      :       ^:      .;       T.;      =;       ^                  h9      9       ]                          }9      9       V9      9       v9      :       \:      .;       \.;      =;       v                        9      9       v  $ &3$p"9      9       v  $ &3$p "9      9       P.;      <;       P                 9      9       } v  $ &3$p8                    9      8:       ^:      ;       ^                      :      :       _:      :       _:      .;       _                        =:      F:       PF:      :       V:      :       V
;      .;       V                     :      :       ]:      :       ]:      .;       ]                 :      :       1                  m9      }9       P                                 U             U                                         T             ]      1       T1      y       ]y             T             ]                                  V             ^             ^                                           ^      !       ~!      1       \1      ]       V]      u       ~Z      y       V             ~                                 ~  $ &3$p"             ~  $ &3$p "                              v ~  $ &3$p8                      u             ^1      Z       ^y             ^                          ,       ]y             ]                                 Vy             V                         ,       ]             ]                 
      1       1                               P                                 U      >       U                                           T             ^             T             ^      *       T*      9       ^9      >       T                                   \      E       ]      *       ]                                               V      4       v4      p       ]p             v             v             v             ]             v*      9       v                                     v  $ &3$p"             v  $ &3$p "      ;       P*      8       P                              | v  $ &3$p8                                   ]             ]             ]                                 ^             ^                                   ^      *       ^9      >       ^                                     P      V       V             V      *       V                               T                              }                                   ^      *       ^9      >       ^                   I             19      >       1                               P                                 U             U                                         T             ^      <       T<      Y       ^Y      z       Tz             ^                           @       \U             ^Y      z       ^                                  -      2       V2      T       vT             ]             v             v~             v~<      T       ]T      Y       vz             v                        2      9       v  $ &3$p"9      =       v  $ &3$p "=      [       Pz             P                 2      9       | v  $ &3$p8                          >       ]      <       ]                          U       ^      <       ^                          d       _      <       _                    >             ]Y      z       ]                                     P             V      <       VY      z       V                            .       X             X
             X      <                          U             ]Y      z       ]                              1                        -       P                    @      n       Un             U                              @      r       Tr             ^      g       Tg             ^             T             ^             T                     x             \             ]             ]                                               V             v             ]             v      D       v             vg             ]             v             v                                     v  $ &3$p"             v  $ &3$p "             P             P                              | v  $ &3$p8                                   ]      g       ]             ]                          y       ^      g       ^                      y             ^             ^             ^                        D      H       PH             V-      g       V             V                 g      s       }                   g      s       T                                  ^             ^             ^                                1             1                  }             P                    `      y       Uy             U                            `      }       T}      %       ]%      E       TE      a       ]a             T             ]                               S                                           ^             ~             \             S             ~E      a       S             ~                                 ~  $ &3$p"             ~  $ &3$p "                              s ~  $ &3$p8                          D       ^a             ^                          /       Sa             S                    2      F       ]x             ]                    2      F       Px             P                      6      B       QB      F       }x             Q                    W      k       ]a      x       ]                    W      k       Pa      r       P                      [      g       Qg      k       }a      r       Q                    |             ]0      @       ]                    |             P0      :       P                                   Q             }0      :       Q                                 ]       0       ]                                 P       *       P                                   Q             }       *       Q                                 ]P      `       ]                                 PP      Z       P                                   Q             }P      Z       Q                                 ]@      P       ]                                 P@      J       P                                   Q             }@      J       Q                          0       ]p             ]                          0       Pp      z       P                             ,       Q,      0       }p      z       Q                    D      X       ]`      p       ]                    D      X       P`      j       P                      H      T       QT      X       }`      j       Q                    l             ]             ]                    l             P             P                      p      |       Q|             }             Q                                 ]             ]                                 P             P                                   Q             }             Q                                 ]             ]                                 P             P                                   Q             }             Q                                 ]             ]                                 P             P                                   Q             }             Q                                  ]             ]                                  P             P                                   Q              }             Q                    4      H       ]             ]                    4      H       P             P                      8      D       QD      H       }             Q                    \      p       ]              ]                    \      p       P             P                      `      l       Ql      p       }             Q                                 ]             ]                                 P             P                                   Q             }             Q                                 ]              ]                                 P             P                                   Q             }             Q                                 ]              ]                                 P       
       P                                   Q             }       
       Q                                 ]             ]                                 P             P                                    Q             }             Q                        E       0                               P                    0      H       UH      \       U                        0      L       TL             ]             T      \       ]                  R      x       V                              h      m       ^m             ~             \             V             ~      6       V6      \       ~                    m      q       ~  $ &3$p"q      u       ~  $ &3$p "                 m      q       v ~  $ &3$p8                               P                                p              P                                 V6      M       V                                 V6      M       V                                 P6      J       P                                   Q             v6      J       Q                              0                  W      h       P                    P      n       Un             U                        P      r       Tr      ƭ       ^ƭ             T             ^                     x             \      !       ]      2       ]                                         V             v      2       ]K      d       ]d      i       v~             v                                     v  $ &3$p"             v  $ &3$p "             P             P                              | v  $ &3$p8                              έ      ׮       \L      r       \             \K             \<             \             \2      F       \                                           _L      r       _             _K             _<             _             _2      F       _                                  2      V       ]L             ]+      K       ]i             ]<             ]             ]2      l       ]             ]̵             ]                                               P      E       \      +       \F      K       P      <       \             \      2       \l             \      ̵       \                      Y      2       Vr      K       Vi             V                                    ɮ       Pɮ             _r             _      K       _      <       _             _F             _                           Y      ұ       0ұ      ٱ       Tr             0      +       1+      K       0i             02             0                                    L       r                   K             <                          2       F                                                      P             P             P^      n       P      ˰       P             P                             \                         E       \      2       \                 %      L       1                  }             P                                             U             S             U      {       S{             U             S             U             S                          ps      s       Us      s       Us      s       Us      s       \s      s       U                              ps      s       Ts      s       ]s      s       Qs      s       Ts      s       Ts      s       ]s      s       T                              ps      s       Qs      s       Ss      s       Rs      s       Qs      s       Qs      s       Ss      s       Q                         ts      s       Us      s       Us      s       Us      s       \s      s       U                           )       U)      B       U                             O       TO             ]      B       T                                   O       QO             S             Q      #       S#      (       Q(      B       S                                ڶ             P             ^             ^             P      t       ^             ^ι             ^6      B       ^                      8             P             s             P                  P      j       P                      \      j       0j      s       qs             Q             q                      j      s       w q "y             P             w q "                                     ^             ~x             ^
      #       ^                    ?             _             _                 8      n       
                      8      G       pG      [       T[      n       p                 8      n       S                                    T               z|                                U                    ,       {        S|               S                                    0       g        t z #|               t z #                                    0       %        Qp       u        Q                               G        PG       g        t g       u        t|               t                          B       G        p 3%G       P        PP       g        t 3%g       u        t3%|               t 3%                      R       c        Qc       u       	 y r $|               Q                      /       1        r q 1       D        RD               [                        Е             U             ^             U      O       ^                    Е             T      O                                     Е             Q             w              Q      8       w 8             Q             w       O       Q                              Е             R                          R      8       8      T       RT      6       6      O       R                                Е             X      %       ]%      )       U)             X      $       ]$             X             ]      O       X                                                                           1       p 1             V             v             v      4       v4      x       ]x             P      ݗ       ]             v      )       v)      8       P8             ]             V             P      ř       ]ř      ҙ       }ҙ      ֙       }x      P       ]P      k       Rk      s       }xv      ۛ       ]ۛ      ߛ       Qߛ             }x$      ̣       ]̣      ԣ       Rԣ             w       O       ]O      T       PT      E       ]J      O       ]                                                                      p      t       Pt             V)      8       VT      b       V             P      L       Vh      U       VA      Q       V             VG      u       V      ̣       VB      w       V             V7      e       V             V             VT             VR             Vҧ              VŨ             V      J       V             VŪ             V      J       Vs             VJ             V      &       V                                                                                                                    0      8       0T      m       0m      p       Pp      h       Vh             0      A       VA      V       0V             V             0      G       VG      u       0u             V             0      B       VB      w       0w             V             0      7       V7      e       0e             V             0             V             0      R       VR             0      ҧ       Vҧ             0      Ũ       VŨ             0             V      J       0J             V             0      Ū       VŪ      J       0J      s       Vs             0             V      E       0J             0             V      &       0&      O       V                                                                          0      8       0T      v       0h             0A      V       0             0G      u       0             0B      w       0             07      e       0             0             0R             0ҧ             0Ũ             0      J       0             0Ū      J       0s             0      E       0J             0      &       0                                                                           \      8       \T             \h             \A      V       \             \G      u       \             \B      w       \             \7      e       \             \             \R             \ҧ             \Ũ             \      J       \             \Ū      J       \s             \      E       \J             \      &       \                          ^      Ж       _             _      Ҙ       _Ҙ      ט       Pט             _                                         ZT      f       Zf      k       w k                          w              w                                  zT      f       z                                                                           P             _      ~       _h             _A      V       _             _G      u       _             _B      w       _             _7      e       _             _             _R             _ҧ             _Ũ             _      J       _             _Ū      J       _s             _      E       _J             _      &       _                        )      -       P-      C       VC      E       J      O                                                                          v       0h      ɞ       0ɞ      מ       PA      V       0             0G      u       0             0B      w       0             07      e       0             0             0R             0ҧ      u       0u             PŨ             0      J       0             0Ū      J       0s             0      E       0J             0      &       0                        w             V      )       V)      .       P.      T       V                                 Vu             V                 u             Q                 u             V                 u             P                   P      m       Ṿ             V                    P      m       Ṿ             V                            $       _             _             P                        O      O       UO      Q       ]Q      Q       UQ      RS       ]                          O      O       TO      gP       gP      R       TR      R       R      RS       T                                      O      O       QO      P       w P      Q       QQ      Q       w Q      BR       QBR      jR       w jR      R       QR      R       w R      "S       Q"S      JS       w JS      RS       Q                              O      O       RO      P       ^P      P       UP      Q       RQ      R       ^R      BR       RBR      RS       ^                        O      O       XO      Q       _Q      Q       XQ      RS       _                                                                    O      6P       V6P      lP       \lP      P       VP      Q       \Q      GQ       ^GQ      iQ       ViQ      mQ       p Q      Q       ^Q      Q       VQ      R       \R      =R       ^=R      BR       PBR      eR       VeR      jR       PjR      R       \R      R       PR      R       VR      R       PR      R       \R      R       PR      R       VR      S       \S      "S       P"S      ES       VES      JS       PJS      RS       \                     O      Q       ]Q      Q       UQ      RS       ]                        O      6P       \R      R       \R      R       \R      R       P                        `S      S       US      :U       \:U      EU       UEU      U       \                    `S      S       TS      U                               `S      S       QS      UT       ^UT      rU       QrU      U       ^                    `S      S       RS      U                               `S      S       XS      T       ]T      YU       XYU      U       ]                    `S      S       YS      U                                             S      T       VT      .T       v.T      eT       veT      T       vT      T       v T      T       v(T      T       vxYU      rU       v rU      U       vU      U       VU      U       PU      U       V                     S      :U       \:U      EU       UEU      U       \                      S      )T       _U      U       _U      U       P                        K      9K       U9K      L       \L      L       UL      OM       \                        K      =K       T=K      K       _K      L       TL      OM       _                    K      =K       Q=K      OM                               K      =K       R=K      L       ]L      L       RL      OM       ]                                        CK      K       VK      K       vK      L       vL      $L       v4L      >L       v >L      PL       VPL      TL       p L      L       vL      L       vL      
M       v
M      -M       V-M      2M       P2M      OM       V                     CK      L       \L      L       UL      OM       \                        tK      L       ^L      L       ^L      JM       ^JM      OM       P                        A      A       UA      wB       ]wB      |B       U|B      B       ]                            A      B       VB      !B       v!B      6B       V6B      :B       p B      B       VB      B       PB      B       V                     A      wB       ]wB      |B       U|B      B       ]                      A      uB       \|B      B       \B      B       P                        PM      xM       UxM      N       \N      N       UN      O       \                        PM      M       TM      N       w N      RO       TRO      O       w                         PM      M       QM      @N       ^@N      :O       Q:O      O       ^                        PM      M       RM      lN       ]lN      !O       R!O      O       ]                    PM      M       XM      O                                                 M      M       VM      N       vN      PN       vPN      |N       v|N      N       v N      N       v(N      N       VN      N       p N      O       v !O      :O       v:O      RO       vRO      uO       VuO      zO       PzO      O       V                     M      N       \N      N       UN      O       \                      M      N       _N      O       _O      O       P                        @h      oh       Uoh      Ij       \Ij      Tj       UTj      zk       \                          @h      h       Th      i       w i      
k       T
k      Rk       w Rk      zk       T                    @h      h       Qh      zk                                 @h      h       Rh      Ni       _Ni      j       Rj      Rk       _Rk      zk       R                    @h      h       Xh      zk                           @h      h       Yh      zk       Y                                                  h      i       Vi      #i       v#i      ^i       v^i      i       vi      i       v i      i       v(i      Kj       ]Tj      sj       ]sj      xj       }xj      j       ]j      j       v j      j       v(j      j       vj      
k       v
k      Mk       VMk      Rk       PRk      uk       ]uk      zk       P                     h      Ij       \Ij      Tj       UTj      zk       \                          h      i       ]j      j       ]j      "k       ]"k      'k       P'k      Rk       ]                        @      f       Uf      7       _7      <       U<      "       _                    @      y       Ty      "                           @      y       Qy      "                           @      y       Ry      "                               @      y       Xy      1       \1      <       X<      "       \                    @      y       Yy      "                                                   }      >       V>      [       v[             v             v             v       3       ]<      ]       ]]      b       }xq             V             ]      Պ       VՊ      ڊ       Pڊ             V             ]      "       P                     }      7       _7      <       U<      "       _                                       P      5       ^<      q       ^             P      "       ^                            V       ]             ]             P                        А             U             ]      '       U'             ]                        А             T      "       _"      '       T'             _                      А             Q      >       \>             Q                                       V             v             vpA      e       Ve      j       Pj             V                                  ]      '       U'             ]                      (      ,       P,              ^'             ^                      B             \A             \             P                        f      f       Uf      g       ^g      g       Ug      7h       ^                        f      f       Tf      g       _g      g       Tg      7h       _                        f      f       Qf      g       ]g      g       Qg      7h       ]                          f      Rg       VRg      _g       v_g      rg       vxg      h       Vh      h       Ph      7h       V                     f      g       ^g      g       Ug      7h       ^                      g      mg       \g      2h       \2h      7h       P                         Y      Y       UY      Z       ^Z      $Z       U$Z      Z       ^                         Y      Y       TY      Z       ]Z      $Z       T$Z      Z       ]                              %Y      Y       VY      Y       vY      Y       vY      Z       V9Z      RZ       vRZ      uZ       VuZ      zZ       PzZ      Z       V                     %Y      Z       ^Z      $Z       U$Z      Z       ^                      VY      Y       \9Z      Z       \Z      Z       P                        Z      Z       UZ      [       _[      [       U[      \       _                        Z      Z       TZ      [       ^[      [       T[      \       ^                        Z      Z       QZ      [       ][      [       Q[      \       ]                                  Z      B[       VB[      q[       vq[      [       v[      [       v[      [       V\      *\       v*\      B\       vB\      e\       Ve\      j\       Pj\      \       V                     Z      [       _[      [       U[      \       _                      Z      a[       \*\      \       \\      \       P                            >      >       U>      ?       ]?      ?       U?      ?       ]?      ?       U?      ?       ]                              >      >       p >      %?       V%?      /?       v/?      D?       VD?      H?       p ?      ?       p ?      ?       V?      ?       P                         >      ?       ]?      ?       U?      ?       ]?      ?       U?      ?       ]                        >      ?       \?      ?       \?      ?       P?      ?       \                             @      @       U@      A       ]A      
A       U
A      A       ]A      A       UA      rA       ]                              @      6@       p 6@      @       V@      @       v@      @       V@      @       p 
A      A       p 1A      mA       VmA      rA       P                         @      A       ]A      
A       U
A      A       ]A      A       UA      rA       ]                        c@      A       \A      JA       \JA      OA       POA      rA       \                        U      U       UU      V       ]V      V       UV      GW       ]                        U      U       TU      V       ^V      V       TV      GW       ^                          U      iV       ViV      vV       vvV      V       vxW      %W       V%W      *W       P*W      GW       V                     U      V       ]V      V       UV      GW       ]                      &V      V       \W      BW       \BW      GW       P                        PW      tW       UtW      X       ]X      X       UX      X       ]                        PW      xW       TxW      X       _X      X       TX      X       _                        PW      xW       QxW      X       ^X      X       QX      X       ^                          ~W      W       VW      W       vW      X       vpX      X       VX      X       PX      X       V                     ~W      X       ]X      X       UX      X       ]                      W      X       \X      X       \X      X       P                            `      y       Uy             S             U      q       Sq             U      V       S                    `      }       T}      V       T                                            ]             ]             }             }x*      o       ]             ]      &       ]&      +       P+      V       ]                                      S             U      q       Sq             U      V       S                                         P             \      z       \z             T      H       \H      Q       P                      w      *       ^      C       ^C      H       P                                   \o      z       \z             T                                 Po             P                            	       Q	             |o             Q                            `             U      p       ^p      s       Us      =       ^=      D       UD      "       ^                                              `             T      9       w 9      s       Ts      ۻ       w ۻ      D       TD      R       w R             T      a       w a      |       T|      $       w $      I       TI      Q       w Q      m       Tm             w       "       T                              `             Q      9       ]s             ]      ļ       }D      g       ]g      {       }{      a       ]|      "       ]                                                  9       _s      ^       _^      i       i             \             R             w D      R       _R      g       \g             w              |      a       _a      |       w |      D       _D      I       PI             _      "       \                               p       ^p      s       Us      =       ^=      D       UD      "       ^                              9       Vs      ؼ       VD      a       V|      "       V                                                  0                          \s             \D      s       \s      ¿             R             a       |      ,       Q             m                                                      s                    P      D       ¿             R             a      |       ,      Q             m             "                           N      Y       TY      s                                          ]      λ       \I      V       ]                              e       \$      I       \V      h       \h      m       P                          ļ       _g      w       _                           s             ^      R       ^      a       ^|      ,       ^Q             ^m             ^                        k      k       Uk      l       ^l      l       Ul      m       ^                        k      k       Tk      l       _l      l       Tl      m       _                        k      k       Qk      l       ]l      l       Ql      m       ]                          k      "l       V"l      /l       v/l      Bl       vxl      l       Vl      l       Pl      m       V                     k      l       ^l      l       Ul      m       ^                      k      =l       \l      m       \m      m       P                                    s       t       U t      t       Vt      u       Uu      +u       V+u      7u       U7u      8u       U8u      Wu       VWu      Yu       UYu      u       Vu      u       U                          s      s       Ts      Ut       _Ut      u       Tu      3u       _3u      u       T                            s       t       Q t      t       ]t      u       Qu      /u       ]/u      8u       Q8u      u       ]                      t      +t       P+t      _t       Su      7u       P                        _t      nt       Pnt      u       Su      u       P8u      u       S                      Ut      Vt       PVt      u       _8u      u       _                    t      t       Pt      t       V                                     U      =       ^=      @       U@             ^                                 T                                                                x       Vx             v             V             P             V@      X       VX      c       vc      g       vp             P      }       V             V$             V             V             P             V             P             V                            #             ~             ~>      B       PB      b       ~             ~             ~                          #                          ]      b       P                                                                   ~#      @       ~g             ~      $       ~             ~             ~                                         P#      @             $       ]      b       H=$                                                                     0             p 0)#      1       \             \@             0      0       \             \$             0             0                                         #       1#      1       ]1             1             P             ]@             1             0$             1             1             1                                      #       _#      @       ~@             _      $       ~$             _             ~             _             ~                                     P             ]@             ]             ]                                   \@             \             \                        6             \b      t       \y             \             \                          p             q  ~"p "            
 p ~"1             ~p "             U            
 | ~"#                            @      O       PO             ]             ]             P             ]             ]                                       P             \0      X       \             \             \                                       p              P             v0      6       v             v                                 T             T                                 \X             \                                                            T                              ]                 h                              h             ~                 h             ]                                                R                                              P             P                                   Q             #             Q                                   ~             R             ~                                 P             P                                     Q      	       ~#	             q             Q                              p             U      ]       V]      o       Uo             V             U             V             U                                  P      h       \o             \                                     P      j       ]j      o       Po             ]                                   P      h       \o             \                   <      C       PC                                  <      C       0C      J       _J      q       q      w       _                    <      C       PC                                            
      
       U
      {
       \{
      
       U
      g       \g      n       Un             \             U                                   
      !
       T!
      
       ^
      
       T
      
       ^
             P      k       ^n             ^             P                                                   +
      
       _
      m       _n      l       _l             \             |              \             \      <       ]<      s       \s      x       Px             _             P                       +
      }
       ]
      #       ]n             ]Q             ]                            ^
      m
       Pm
      s
       V
      e       Vn             V             VQ             V                          
      
       P
      
       Z             Pn      |       Z|                                 
      n       0x             1                                   P             ]             ]                              l       \x             \             P             \                     ^      ^       U^      	^       U                    P      X       UX      Y       U                    P      X       TX      Y       T                    ^      ^       U^      ^       U                      Pf      jf       Ujf      f       \f      f       U                      Pf      nf       Tnf      f       ]f      f       T                      f      f       Pf      f       Sf      f       P                      J      J       UJ      K       SK      K       U                      J      J       TJ      K       VK      K       T                  J      K       P                                     p                                                                                                                   b                      |                                                                H      b                                                                                B                      n      p      y            (      B                                                                                "                      N      P      Y                  "                      m      m      o      ~                            u                                  .      3      <      q                                  M      M      O      ^                      {      U	      	      	                      	      	      	      Q	      	      	                      
      _      p                                                                                                              A      x                                                                          
      8                                                                                                                                    .      I            *                                                                                 	                        E            *                      }      }                                                                          D            -      p                                                                                                  '      '      )      7                      X             0       a                                                                          F!      p!      !                      !      F!      !      !                      !      !      !      !                      "      #      0#      #                      z"      "      "      #      0#      H#      h#      #                      #      #      #      #                      $      U%      %      &                      $      $      $      $      $      U%      %       &       &      &                      -'      -'      /'      ='                      ^'      (      (      )*                      '      '      '      '      '      (      (      @)      `)      )*                      m*      m*      o*      }*                      *      +       ,      i-                      	+      +      +      +      +      +       ,      ,      ,      i-                      -      -      -      -                      -      /      @/      0                      I.      O.      S.      Z.      ^.      /      @/      /      /      0                      0      0      0      0                      1      U2      2      3                      1      1      1      1      1      U2      2       3       3      3                      -4      -4      /4      =4                      ^4      5      5      )7                      4      4      4      4      4      5      5      @6      `6      )7                      m7      m7      o7      }7                      7      8      8      .9                      
8      8      8      8      8      8      8      .9                      m9      m9      o9      }9                      9      :      :      .;                      
:      :      :      :      :      :      :      .;                      m;      m;      o;      };                      ;      <       =      i>                      	<      <      <      <      <      <       =      =      =      i>                      >      ?      ?      ?                      N@      @      8A      PA                      A       B      B      B                      C      C      C      C                      >C      uD      D      	F                      C      C      C      C      C      uD      D       E      @E      	F                      ]F      ]F      `F      nF                      F      F      F      jH      H      H                      KI      KI      MI      \I                      zI      >J      xJ      J                      I      J      J      J                      _K      K      8M      OM                      M      M      O      O                      O      O      O      P      R       S                      S      S      U      U                      V      QV      0W      GW                      W      W      X      X                      AY      Y      Z      Z                      Z      *[      p\      \                      \      \      \      \                      \      ]      ]      ]                      %]      t]      ]      ]                      O^      O^      R^      a^                      ^      v_      _      b                      2_      P_      _      8b      fb      b                      D_      P_      _      8b      fb      b                      _      _      _      _                      _       `      `      `      b      b                      a      a      a      sa                      @a      @a      Ea      Ja                      a      a      a      a                      b      b      b      c                      ,c      c      (d      Yd                      d      d      d      d                      d      e      e      2f                      ^e      `e      ie      e      f      2f                      f      :g       h      7h                      h      h      k      0k                      k      
l      l      m                      =m      =m      ?m      Mm                      nm      n      n      ip                      m      m      m      m      m      n      n      o      o      ip                      p      p      p      p                      p      q       r      Yr                      6q      q      q      q       r      @r                      r      r      r      r                      r       s      Hs      ^s                      t      
u      @u      u                      ht      
u      @u      u                      u      u      u      u                      u      sw      w      x                      cv      Ow      w      x                      ]x      ]x      _x      nx                      x      >y      hy      y                      x      >y      |y      y                      y      y      y      y                      z      z      z      ){                      z      z      z      {                      m{      m{      o{      }{                      {      |       }      i~                      	|      |      |      |      |      |       }      }      }      i~                      ~      ~      ~      ~                      ~            @                            I      O      S      Z      ^            @                                                                                      U                                                                U                                                -      -      /      =                      ^                  )                      Ʌ      υ      Ӆ      څ      ޅ                  @      `      )                            &                                   ]      ]      _      m                            Ō            Y                                        
            Ō            p            Y                      p      p                                                     4      7      <                      -      m      p                                              ͒                            %      P                            Y      _      c      j      n      %      P      Д                                  I                                                    X                  X      p                  O      `      E      J      O                      ]      _      d                  .                      H      k      p      v      У                            H      P      p      v                            כ      ۛ                                        %                         q                              E                      }      }                                                    %      P                            Y                  ڱ      x      P      p            8                                              !            8                            x      й      #                      &      k      
      #                                   X            h            (      m            "                            3      8      <      V      m                            ļ      X                            x                  X            h            0      X            m                            W      W      Y      h                                         M                                  @      M                                                                          @      M                                  @      M                                  p      p      q      t      u      x      ~                                        p      p      q      t      u      x      ~                            `            0      H                                                                    *      *      2      2      O      O      W      W      t      t      |      |                                                                                                      <      <      D      D      d      d      l      l                                                                                                      ,      ,      4      4      T      T      \      \      |      |                                                                                                 H                                  *      *      2      2      O      O      W      W      t      t      |      |                                                                                                      <      <      D      D      d      d      l      l                                                                                                      ,      ,      4      4      T      T      \      \      |      |                                                                                                 h                            2      2      2      F                                  W      W      W      k      h                            |      |      |            0      @                                                     0                                              P      `                                              @      P                                        0      p                            D      D      D      X      `      p                      l      l      l                                                                                                                                                                                                                                                         4      4      4      H                                  \      \      \      p                                                                                                                                                                                                                                                                 #            @             b                                                    #      a      b      y                            (      1                                                                       (                                                                  @                                  h      u      {                                                                                                                                                                                            M      M      O      ]                      ~                                              g      8                            8      g      8      `                      n      p      y                                                          -                      N                  z                                        C                        @                      J      L      U            `      z                                                     8                    `                                                                                                    0                                       	                     
  !                    @'                    p-                                        0                                      !                    8                   0:!                   8:!                   @:!                   :!                   <!                    @!                   (@!                                         8@a                                                                                                                                                       !                 
                         0.                                '     p-              <     p-              U     p-              o     p-                   p-                   p-                   p-                   p-                   0.                  .              5    0.             H    .              z    0                  .                0                  2              /    0            R    2                  a4                  2                a4              (    A6              b    p4                A6                  !8                  P6            ,    !8              H    ;              b    08            o    ;                  =                  ;                =                  n@              M    =      ~      p    n@                  B                  p@                B                  "M              2     C      "
      D    "M              s    N                  0M      p          N                  O              *    N      >      Q    O                  Q                  O                Q              5    (U              t    Q      8                           (U                  hX              .	    0U      8      [	    }            h	    hX              	    [              	    pX      8      
          o      0
    [              g
    ^              
    [      8      
           w      
    ^                  (b              Z    ^      8                          (b                  he                  0b      8      L                Z    he                  mg                  pe                mg              3    mi              m    pg                mi                  l                  pi      8      1    l      r      :    l              R    "n              h    "n                  o                  0n      r          o                  q                  o      W          q                  Ht              T    q      8          Ht                  <w                  Pt                <w              A    x              s    @w                x                  6y                   y      6           6y                  {                  @y      ?          {              (    }              B    {      G      O    }              k                                                                            w                  w              $    /              G    /              \    ǈ              o    0            u    ǈ                                    Ј                                  '                        g      .    '              D    9              X    0      	       _    9              w    I                  @      	           I                                    P                0@!            )                  Z                                                         q              )                Z    q              v    ڔ                        Z           ڔ                  g                                  g                                    p      :                         =    7              X    7                                    @      h                        "                  V                }          n                                                                              +                  B                  ]                  v                                      T                                  T              :                  e    `                                  h                        x          h              0                  e    p      8                                                    8      *                  a    (                        8          (                  h              2    0      8      ^    p            l    h                  R                  R                                    `      8      D                 P                  n                            R          `:!                                                                                     I          8      t                                                          C                              9     @!            A    @!            D                O                \    P      "      l    C                  r                  r                                          	                             R                   R              K                   |     `      ,                                                               !                  0!          O      Q!                  m!    <             !          \      !    <             !    	              "    @           ("    	             Y"                 "     	           "                 "                 "                   #    p-              #    -              #    -              ,#    (@!            ;#    8:!             b#     .              n#    0:!             "                   #    7                                  #                  #    @:!             #    :!             #                  #    (@!             #    <!             #   	                #                     $                     $                     ($                     :$                     V$                     j$                     $                     $                     $                     $                     $                     $                      $                     %                     *%                     C%                     b%                     v%                     %                     %                     %                     %                     %                     %                     %                     &                     1&    (@!             8&                     C&                     `&                     &                     &                     &                     &                     &                     &                     &                     
'                     #'                     >'                     Z'                     h'                     w'                     '                     '                     '                     '                     '                     '                     '                     (                      $(                     1(                     E(                     S(                     c(                     v(                     (                     (                     (                     (                     (                     (                     (                      )                     ,)                     8)                     "     8@!             M)                     `)         _      x)                     )                     )    (@!             )                     )                     )                     )                     )                     *                     *                     <*                     N*                     j*                     *                     *                     *                     *                     *                     *                     +                     +                     #+                     1+                     >+                     L+                     \+                      v+                     +                     +                     +                     +                     +  "                   +                     +                     ,                     ,                      .annobin_Expat.c .annobin_Expat.c_end .annobin_Expat.c.hot .annobin_Expat.c_end.hot .annobin_Expat.c.unlikely .annobin_Expat.c_end.unlikely .annobin_Expat.c.startup .annobin_Expat.c_end.startup .annobin_Expat.c.exit .annobin_Expat.c_end.exit .annobin_convert_to_unicode.start .annobin_convert_to_unicode.end convert_to_unicode .annobin_XS_XML__Parser__Expat_ElementIndex.start .annobin_XS_XML__Parser__Expat_ElementIndex.end XS_XML__Parser__Expat_ElementIndex .annobin_XS_XML__Parser__Expat_GetErrorCode.start .annobin_XS_XML__Parser__Expat_GetErrorCode.end XS_XML__Parser__Expat_GetErrorCode .annobin_XS_XML__Parser__Expat_GetCurrentByteIndex.start .annobin_XS_XML__Parser__Expat_GetCurrentByteIndex.end XS_XML__Parser__Expat_GetCurrentByteIndex .annobin_XS_XML__Parser__Expat_GetCurrentColumnNumber.start .annobin_XS_XML__Parser__Expat_GetCurrentColumnNumber.end XS_XML__Parser__Expat_GetCurrentColumnNumber .annobin_XS_XML__Parser__Expat_GetCurrentLineNumber.start .annobin_XS_XML__Parser__Expat_GetCurrentLineNumber.end XS_XML__Parser__Expat_GetCurrentLineNumber .annobin_append_error.start .annobin_append_error.end append_error .annobin_XS_XML__Parser__Expat_ParseDone.start .annobin_XS_XML__Parser__Expat_ParseDone.end XS_XML__Parser__Expat_ParseDone .annobin_XS_XML__Parser__Expat_ParsePartial.start .annobin_XS_XML__Parser__Expat_ParsePartial.end XS_XML__Parser__Expat_ParsePartial .annobin_XS_XML__Parser__Expat_ParseString.start .annobin_XS_XML__Parser__Expat_ParseString.end XS_XML__Parser__Expat_ParseString .annobin_suspend_callbacks.start .annobin_suspend_callbacks.end suspend_callbacks .annobin_XS_XML__Parser__Expat_SkipUntil.start .annobin_XS_XML__Parser__Expat_SkipUntil.end XS_XML__Parser__Expat_SkipUntil .annobin_XS_XML__Parser__Expat_UnsetAllHandlers.start .annobin_XS_XML__Parser__Expat_UnsetAllHandlers.end XS_XML__Parser__Expat_UnsetAllHandlers .annobin_XS_XML__Parser__Expat_SetExtEntFinishHandler.start .annobin_XS_XML__Parser__Expat_SetExtEntFinishHandler.end XS_XML__Parser__Expat_SetExtEntFinishHandler .annobin_XS_XML__Parser__Expat_SetExternalEntityRefHandler.start .annobin_XS_XML__Parser__Expat_SetExternalEntityRefHandler.end XS_XML__Parser__Expat_SetExternalEntityRefHandler externalEntityRef .annobin_XS_XML__Parser__Expat_SetNotationDeclHandler.start .annobin_XS_XML__Parser__Expat_SetNotationDeclHandler.end XS_XML__Parser__Expat_SetNotationDeclHandler notationDecl .annobin_XS_XML__Parser__Expat_SetUnparsedEntityDeclHandler.start .annobin_XS_XML__Parser__Expat_SetUnparsedEntityDeclHandler.end XS_XML__Parser__Expat_SetUnparsedEntityDeclHandler unparsedEntityDecl .annobin_XS_XML__Parser__Expat_SetCommentHandler.start .annobin_XS_XML__Parser__Expat_SetCommentHandler.end XS_XML__Parser__Expat_SetCommentHandler commenthandle .annobin_XS_XML__Parser__Expat_SetProcessingInstructionHandler.start .annobin_XS_XML__Parser__Expat_SetProcessingInstructionHandler.end XS_XML__Parser__Expat_SetProcessingInstructionHandler processingInstruction .annobin_XS_XML__Parser__Expat_SetCharacterDataHandler.start .annobin_XS_XML__Parser__Expat_SetCharacterDataHandler.end XS_XML__Parser__Expat_SetCharacterDataHandler characterData .annobin_XS_XML__Parser__Expat_SetEndElementHandler.start .annobin_XS_XML__Parser__Expat_SetEndElementHandler.end XS_XML__Parser__Expat_SetEndElementHandler .annobin_XS_XML__Parser__Expat_SetStartElementHandler.start .annobin_XS_XML__Parser__Expat_SetStartElementHandler.end XS_XML__Parser__Expat_SetStartElementHandler .annobin_XS_XML__Parser__Expat_SetEndCdataHandler.start .annobin_XS_XML__Parser__Expat_SetEndCdataHandler.end XS_XML__Parser__Expat_SetEndCdataHandler endCdata .annobin_endCdata.start .annobin_endCdata.end .annobin_startCdata.start .annobin_startCdata.end startCdata .annobin_doctypeEnd.start .annobin_doctypeEnd.end doctypeEnd .annobin_XS_XML__Parser__Expat_SetStartCdataHandler.start .annobin_XS_XML__Parser__Expat_SetStartCdataHandler.end XS_XML__Parser__Expat_SetStartCdataHandler .annobin_XS_XML__Parser__Expat_PositionContext.start .annobin_XS_XML__Parser__Expat_PositionContext.end XS_XML__Parser__Expat_PositionContext .annobin_XS_XML__Parser__Expat_OriginalString.start .annobin_XS_XML__Parser__Expat_OriginalString.end XS_XML__Parser__Expat_OriginalString .annobin_newUTF8SVpv.start .annobin_newUTF8SVpv.end newUTF8SVpv .annobin_xmlDecl.start .annobin_xmlDecl.end xmlDecl .annobin_doctypeStart.start .annobin_doctypeStart.end doctypeStart .annobin_notationDecl.start .annobin_notationDecl.end .annobin_unparsedEntityDecl.start .annobin_unparsedEntityDecl.end .annobin_commenthandle.start .annobin_commenthandle.end .annobin_processingInstruction.start .annobin_processingInstruction.end .annobin_nsEnd.start .annobin_nsEnd.end nsEnd .annobin_nsStart.start .annobin_nsStart.end nsStart .annobin_XS_XML__Parser__Expat_FreeEncoding.start .annobin_XS_XML__Parser__Expat_FreeEncoding.end XS_XML__Parser__Expat_FreeEncoding .annobin_myfree.start .annobin_myfree.end myfree .annobin_mymalloc.start .annobin_mymalloc.end mymalloc .annobin_XS_XML__Parser__Expat_LoadEncoding.start .annobin_XS_XML__Parser__Expat_LoadEncoding.end XS_XML__Parser__Expat_LoadEncoding EncodingTable .annobin_XS_XML__Parser__Expat_ErrorString.start .annobin_XS_XML__Parser__Expat_ErrorString.end XS_XML__Parser__Expat_ErrorString .annobin_XS_XML__Parser__Expat_GetSpecifiedAttributeCount.start .annobin_XS_XML__Parser__Expat_GetSpecifiedAttributeCount.end XS_XML__Parser__Expat_GetSpecifiedAttributeCount .annobin_newUTF8SVpvn.start .annobin_newUTF8SVpvn.end newUTF8SVpvn .annobin_defaulthandle.start .annobin_defaulthandle.end defaulthandle .annobin_entityDecl.start .annobin_entityDecl.end entityDecl .annobin_characterData.start .annobin_characterData.end .annobin_XS_XML__Parser__Expat_SetDefaultHandler.start .annobin_XS_XML__Parser__Expat_SetDefaultHandler.end XS_XML__Parser__Expat_SetDefaultHandler .annobin_XS_XML__Parser__Expat_RecognizedString.start .annobin_XS_XML__Parser__Expat_RecognizedString.end XS_XML__Parser__Expat_RecognizedString recString .annobin_XS_XML__Parser__Expat_DefaultCurrent.start .annobin_XS_XML__Parser__Expat_DefaultCurrent.end XS_XML__Parser__Expat_DefaultCurrent .annobin_recString.start .annobin_recString.end .annobin_gen_ns_name.start .annobin_gen_ns_name.end gen_ns_name .annobin_XS_XML__Parser__Expat_GenerateNSName.start .annobin_XS_XML__Parser__Expat_GenerateNSName.end XS_XML__Parser__Expat_GenerateNSName .annobin_XS_XML__Parser__Expat_GetBase.start .annobin_XS_XML__Parser__Expat_GetBase.end XS_XML__Parser__Expat_GetBase .annobin_XS_XML__Parser__Expat_SetBase.start .annobin_XS_XML__Parser__Expat_SetBase.end XS_XML__Parser__Expat_SetBase .annobin_XS_XML__Parser__Expat_SetXMLDeclHandler.start .annobin_XS_XML__Parser__Expat_SetXMLDeclHandler.end XS_XML__Parser__Expat_SetXMLDeclHandler .annobin_XS_XML__Parser__Expat_SetEndDoctypeHandler.start .annobin_XS_XML__Parser__Expat_SetEndDoctypeHandler.end XS_XML__Parser__Expat_SetEndDoctypeHandler .annobin_XS_XML__Parser__Expat_SetDoctypeHandler.start .annobin_XS_XML__Parser__Expat_SetDoctypeHandler.end XS_XML__Parser__Expat_SetDoctypeHandler .annobin_XS_XML__Parser__Expat_SetAttListDeclHandler.start .annobin_XS_XML__Parser__Expat_SetAttListDeclHandler.end XS_XML__Parser__Expat_SetAttListDeclHandler attributeDecl .annobin_attributeDecl.start .annobin_attributeDecl.end .annobin_XS_XML__Parser__Expat_SetElementDeclHandler.start .annobin_XS_XML__Parser__Expat_SetElementDeclHandler.end XS_XML__Parser__Expat_SetElementDeclHandler elementDecl .annobin_generate_model.start .annobin_generate_model.end generate_model QuantChar .annobin_elementDecl.start .annobin_elementDecl.end .annobin_XS_XML__Parser__Expat_SetEntityDeclHandler.start .annobin_XS_XML__Parser__Expat_SetEntityDeclHandler.end XS_XML__Parser__Expat_SetEntityDeclHandler .annobin_externalEntityRef.start .annobin_externalEntityRef.end .annobin_XS_XML__Parser__Expat_ParserCreate.start .annobin_XS_XML__Parser__Expat_ParserCreate.end XS_XML__Parser__Expat_ParserCreate nsdelim ms endElement startElement unknownEncoding .annobin_unknownEncoding.start .annobin_unknownEncoding.end .annobin_myrealloc.start .annobin_myrealloc.end myrealloc .annobin_startElement.start .annobin_startElement.end .annobin_XS_XML__Parser__Expat_ParserRelease.start .annobin_XS_XML__Parser__Expat_ParserRelease.end XS_XML__Parser__Expat_ParserRelease .annobin_endElement.start .annobin_endElement.end .annobin_XS_XML__Parser__Expat_ParserFree.start .annobin_XS_XML__Parser__Expat_ParserFree.end XS_XML__Parser__Expat_ParserFree .annobin_parse_stream.start .annobin_parse_stream.end parse_stream .annobin_XS_XML__Parser__Expat_Do_External_Parse.start .annobin_XS_XML__Parser__Expat_Do_External_Parse.end XS_XML__Parser__Expat_Do_External_Parse .annobin_XS_XML__Parser__Expat_ParseStream.start .annobin_XS_XML__Parser__Expat_ParseStream.end XS_XML__Parser__Expat_ParseStream .annobin_boot_XML__Parser__Expat.start .annobin_boot_XML__Parser__Expat.end crtstuff.c deregister_tm_clones __do_global_dtors_aux completed.7303 __do_global_dtors_aux_fini_array_entry frame_dummy __frame_dummy_init_array_entry __FRAME_END__ _fini __dso_handle _DYNAMIC __GNU_EH_FRAME_HDR __TMC_END__ _GLOBAL_OFFSET_TABLE_ _init XML_SetCommentHandler Perl_sv_setref_pv XML_GetBuffer Perl_sv_2iv_flags XML_SetNamespaceDeclHandler Perl_sv_2bool_flags XML_SetUnknownEncodingHandler XML_GetErrorCode Perl_newRV_noinc Perl_sv_2uv_flags Perl_stack_grow strncmp@@GLIBC_2.2.5 _ITM_deregisterTMCloneTable XML_GetCurrentByteIndex Perl_sv_catpvn_flags XML_SetEntityDeclHandler XML_ExternalEntityParserCreate XML_GetInputContext Perl_call_method XML_GetBase Perl_sv_derived_from Perl_av_len XML_GetCurrentLineNumber Perl_pop_scope XML_SetNotationDeclHandler XML_SetExternalEntityRefHandler XML_SetElementDeclHandler _edata Perl_newSV XML_SetEndDoctypeDeclHandler XML_SetUnparsedEntityDeclHandler XML_SetCdataSectionHandler strlen@@GLIBC_2.2.5 __stack_chk_fail@@GLIBC_2.4 strchr@@GLIBC_2.2.5 Perl_sv_setiv_mg PL_thr_key Perl_sv_setpv Perl_sv_catpvf_nocontext XML_GetCurrentColumnNumber XML_SetCharacterDataHandler Perl_sv_bless XML_ParserFree XML_SetXmlDeclHandler XML_SetDefaultHandler Perl_sv_2pv_flags Perl_xs_boot_epilog XML_SetUserData Perl_safesysmalloc XML_Parse XML_SetStartDoctypeDeclHandler __gmon_start__ Perl_newSVsv Perl_croak_xs_usage Perl_savetmps XML_ParseBuffer memcpy@@GLIBC_2.14 Perl_gv_stashpv XML_ParserCreate_MM XML_SetEndCdataSectionHandler XML_SetAttlistDeclHandler Perl_av_push Perl_newSVpv Perl_safesyscalloc pthread_getspecific@@GLIBC_2.2.5 XML_SetBase Perl_av_pop Perl_croak_nocontext Perl_newXS_deffile boot_XML__Parser__Expat Perl_sv_setsv_flags Perl_sv_2mortal __bss_start XML_SetParamEntityParsing Perl_safesysfree Perl_safesysrealloc XML_ErrorString Perl_call_pv Perl_sv_catsv_flags XML_SetProcessingInstructionHandler Perl_xs_handshake XML_SetDefaultHandlerExpand XML_GetSpecifiedAttributeCount XML_SetElementHandler XML_SetStartCdataSectionHandler Perl_free_tmps Perl_markstack_grow Perl_hv_common_key_len Perl_sv_setpvn Perl_newRV Perl_newSV_type Perl_sv_catpv Perl_call_sv Perl_sv_free2 Perl_push_scope _ITM_registerTMCloneTable Perl_newSViv Perl_gv_add_by_type Perl_sv_setiv XML_GetCurrentByteCount Perl_newSVpvn __cxa_finalize@@GLIBC_2.2.5 Perl_sv_newmortal XML_DefaultCurrent Perl_av_clear Perl_get_hv  .symtab .strtab .shstrtab .note.gnu.build-id .gnu.hash .dynsym .dynstr .gnu.version .gnu.version_r .rela.dyn .rela.plt .init .plt.sec .text .fini .rodata .eh_frame_hdr .eh_frame .note.gnu.property .init_array .fini_array .data.rel.ro .dynamic .got .data .bss .comment .gnu.build.attributes .debug_aranges .debug_info .debug_abbrev .debug_line .debug_str .debug_loc .debug_ranges                                                                                    8      8      $                              .   o       `      `      4                             8                          
                          @                         ;                             H   o                                               U   o                   `                            d             0      0      h                           n      B                   H	                          x                                                         s              !       !      @                            ~             @'      @'      0                                         p-      p-                                                                                                2       0     0     P                                                                                             !     !                                                8      8                                                 0:!     0:                                               8:!     8:                                               @:!     @:     @                                            :!     :                                             <!     <     X                                          @!      @     (                                           (@!     (@                                        0               (@     -                                          8@a     X@     '                             #                     hg     0                              2                     g     O                            >                                                       L                          0                             X     0               )t     !P                            c                     J     E@                            n                          `5                                                   9     %      #   )                	                      _     &,                                                        |                             PK     k\Y5c   c     NamespaceSupport/.packlistnu [        /usr/local/share/man/man3/XML::NamespaceSupport.3pm
/usr/local/share/perl5/XML/NamespaceSupport.pm
PK       t\~                    Declaration/Parser.phpnu [        PK       N\8gF  gF                LibXML/Reader.podnu 6$        PK       N\KS                mI  LibXML/SAX/Builder.podnu 6$        PK       N\8=4                  N  LibXML/SAX/Builder.pmnu 6$        PK       N\ׅF                o  LibXML/SAX/Parser.pmnu 6$        PK       N\e                x  LibXML/SAX/Generator.pmnu 6$        PK       N\V                Y  LibXML/PI.podnu 6$        PK       N\                u  LibXML/Attr.podnu 6$        PK       N\/r5  5              ͷ  LibXML/Element.podnu 6$        PK       N\8B                  LibXML/Schema.podnu 6$        PK       N\No&^&  ^&                LibXML/InputCallback.podnu 6$        PK       N\YT  YT               LibXML/Document.podnu 6$        PK       N\p[                 Gr LibXML/Dtd.podnu 6$        PK       N\iw                |z LibXML/Reader.pmnu 6$        PK       N\W	.  .               LibXML/Literal.pmnu 6$        PK       N\0O  O              * LibXML/ErrNo.podnu 6$        PK       N\"O[y#  #               LibXML/CDATASection.podnu 6$        PK       N\>w                # LibXML/XPathExpression.podnu 6$        PK       N\jTvA  A               LibXML/Boolean.pmnu 6$        PK       N\;!  !              } LibXML/Error.pmnu 6$        PK       N\b/Xf  f               LibXML/Node.podnu 6$        PK       N\m"  "              r8 LibXML/Namespace.podnu 6$        PK       N\>8%o  %o              E LibXML/Parser.podnu 6$        PK       N\i^	  ^	              > LibXML/RelaxNG.podnu 6$        PK       N\,W-  -              ޾ LibXML/XPathContext.podnu 6$        PK       N\t9UX  X               LibXML/Common.podnu 6$        PK       N\A  A               LibXML/NodeList.pmnu 6$        PK       N\)6g&  &              8 LibXML/RegExp.podnu 6$        PK       N\0                 LibXML/Devel.pmnu 6$        PK       N\;!                3 LibXML/SAX.pmnu 6$        PK       N\4R|  |              A LibXML/Number.pmnu 6$        PK       N\                GI LibXML/AttributeHash.pmnu 6$        PK       N\Ft  t              [ LibXML/Comment.podnu 6$        PK       N\q                5a LibXML/Error.podnu 6$        PK       N\So  So              ^y LibXML/ErrNo.pmnu 6$        PK       N\e呟                 LibXML/Pattern.podnu 6$        PK       N\	.Y                 LibXML/DOM.podnu 6$        PK       N\me,                   LibXML/Common.pmnu 6$        PK       N\3  3              	/ LibXML/DocumentFragment.podnu 6$        PK       N\-                2 LibXML/SAX.podnu 6$        PK       N\qP                9 LibXML/Text.podnu 6$        PK       N\R	K                O LibXML/XPathContext.pmnu 6$        PK       N\lGl  Gl  	            \ Parser.pmnu 6$        PK       N\TO  O  !            N Parser/Encodings/x-sjis-cp932.encnu 6$        PK       N\d80  0              / Parser/Encodings/iso-8859-3.encnu 6$        PK       N\M0  0               Parser/Encodings/iso-8859-5.encnu 6$        PK       N\_0  0  !            -" Parser/Encodings/windows-1252.encnu 6$        PK       N\ؒ0  0              & Parser/Encodings/iso-8859-8.encnu 6$        PK       N\Te0  0              -+ Parser/Encodings/koi8-r.encnu 6$        PK       N\Im
0  0  !            / Parser/Encodings/windows-1255.encnu 6$        PK       N\!?0  0              )4 Parser/Encodings/iso-8859-7.encnu 6$        PK       N\\^0  0  !            8 Parser/Encodings/windows-1251.encnu 6$        PK       N\lFL                )= Parser/Encodings/READMEnu 6$        PK       N\Rx0G  G  $            E Parser/Encodings/x-sjis-jisx0221.encnu 6$        PK       N\̿0  0               | Parser/Encodings/iso-8859-15.encnu 6$        PK       N\#Y0  0               Parser/Encodings/ibm866.encnu 6$        PK       N\G  G  "            w Parser/Encodings/x-sjis-jdk117.encnu 6$        PK       N\W    &             Parser/Encodings/x-euc-jp-jisx0221.encnu 6$        PK       N\0q0  0              ;q Parser/Encodings/iso-8859-9.encnu 6$        PK       N\*0  0  !            u Parser/Encodings/windows-1250.encnu 6$        PK       N\:\    '            ;z Parser/Encodings/Japanese_Encodings.msgnu 6$        PK       N\                g Parser/Encodings/euc-kr.encnu 6$        PK       N\/g    %            @ Parser/Encodings/x-euc-jp-unicode.encnu 6$        PK       N\E&                 Parser/Encodings/big5.encnu 6$        PK       N\#G  G  #            >t Parser/Encodings/x-sjis-unicode.encnu 6$        PK       N\(^R0  0               Parser/Encodings/iso-8859-4.encnu 6$        PK       N\/10  0              * Parser/Encodings/iso-8859-2.encnu 6$        PK       N\WYR  R               Parser/Expat.pmnu 6$        PK       N\T.  .              :N	 Parser/LWPExternEnt.plnu 6$        PK       N\$J  J              T	 Parser/Style/Objects.pmnu 6$        PK       N\/G-  -              ?\	 Parser/Style/Stream.pmnu 6$        PK       N\_Q                j	 Parser/Style/Subs.pmnu 6$        PK       N\'                uo	 Parser/Style/Tree.pmnu 6$        PK       N\y                x	 Parser/Style/Debug.pmnu 6$        PK       N\>7( ( 	            |	 LibXML.pmnu 6$        PK       N\(nf;  ;  
            N
 LibXML.podnu 6$        PK       j\YA  A              ;
 SAX/.packlistnu [        PK       j\O,V   V               
 SAX/Expat/.packlistnu [        PK       j\Jת                R
 SAX/Base/.packlistnu [        PK       k\D                  
 Simple/.packlistnu [        PK       k\2Ek k             
 LibXML/LibXML.sonu 7m        PK       k\|4Ī                0* LibXML/.packlistnu [        PK       k\y                t?* Parser/.packlistnu [        PK       k\J_              pH* Parser/Expat/Expat.sonu 7m        PK       k\Y5c   c               m/ NamespaceSupport/.packlistnu [        PK    U U   /   