/home/crealab/cntxt.brainware.com.co/curlssl.tar
usr/share/man/man1/curl.1000064400000401407151162237770011136 0ustar00.\" **************************************************************************
.\" *                                  _   _ ____  _
.\" *  Project                     ___| | | |  _ \| |
.\" *                             / __| | | | |_) | |
.\" *                            | (__| |_| |  _ <| |___
.\" *                             \___|\___/|_| \_\_____|
.\" *
.\" * Copyright (C) 1998 - 2018, Daniel Stenberg, <daniel@haxx.se>, et al.
.\" *
.\" * This software is licensed as described in the file COPYING, which
.\" * you should have received as part of this distribution. The terms
.\" * are also available at https://curl.haxx.se/docs/copyright.html.
.\" *
.\" * You may opt to use, copy, modify, merge, publish, distribute and/or sell
.\" * copies of the Software, and permit persons to whom the Software is
.\" * furnished to do so, under the terms of the COPYING file.
.\" *
.\" * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
.\" * KIND, either express or implied.
.\" *
.\" **************************************************************************
.\"
.\" DO NOT EDIT. Generated by the curl project gen.pl man page generator.
.\"
.TH curl 1 "November 16, 2016" "Curl 7.64.0" "Curl Manual"

.SH NAME
curl \- transfer a URL
.SH SYNOPSIS
.B curl [options / URLs]
.SH DESCRIPTION
.B curl
is a tool to transfer data from or to a server, using one of the supported
protocols (DICT, FILE, FTP, FTPS, GOPHER, HTTP, HTTPS, IMAP, IMAPS, LDAP,
LDAPS, POP3, POP3S, RTMP, RTSP, SCP, SFTP, SMB, SMBS, SMTP, SMTPS, TELNET
and TFTP). The command is designed to work without user interaction.

curl offers a busload of useful tricks like proxy support, user
authentication, FTP upload, HTTP post, SSL connections, cookies, file transfer
resume, Metalink, and more. As you will see below, the number of features will
make your head spin!

curl is powered by libcurl for all transfer-related features. See
\fIlibcurl(3)\fP for details.
.SH URL
The URL syntax is protocol-dependent. You'll find a detailed description in
RFC 3986.

You can specify multiple URLs or parts of URLs by writing part sets within
braces as in:

  http://site.{one,two,three}.com

or you can get sequences of alphanumeric series by using [] as in:

  ftp://ftp.example.com/file[1-100].txt

  ftp://ftp.example.com/file[001-100].txt    (with leading zeros)

  ftp://ftp.example.com/file[a-z].txt

Nested sequences are not supported, but you can use several ones next to each
other:

  http://example.com/archive[1996-1999]/vol[1-4]/part{a,b,c}.html

You can specify any amount of URLs on the command line. They will be fetched
in a sequential manner in the specified order. You can specify command line
options and URLs mixed and in any order on the command line.

You can specify a step counter for the ranges to get every Nth number or
letter:

  http://example.com/file[1-100:10].txt

  http://example.com/file[a-z:2].txt

When using [] or {} sequences when invoked from a command line prompt, you
probably have to put the full URL within double quotes to avoid the shell from
interfering with it. This also goes for other characters treated special, like
for example '&', '?' and '*'.

Provide the IPv6 zone index in the URL with an escaped percentage sign and the
interface name. Like in

  http://[fe80::3%25eth0]/

If you specify URL without protocol:// prefix, curl will attempt to guess what
protocol you might want. It will then default to HTTP but try other protocols
based on often-used host name prefixes. For example, for host names starting
with "ftp." curl will assume you want to speak FTP.

curl will do its best to use what you pass to it as a URL. It is not trying to
validate it as a syntactically correct URL by any means but is instead
\fBvery\fP liberal with what it accepts.

curl will attempt to re-use connections for multiple file transfers, so that
getting many files from the same server will not do multiple connects /
handshakes. This improves speed. Of course this is only done on files
specified on a single command line and cannot be used between separate curl
invokes.
.SH "PROGRESS METER"
curl normally displays a progress meter during operations, indicating the
amount of transferred data, transfer speeds and estimated time left, etc. The
progress meter displays number of bytes and the speeds are in bytes per
second. The suffixes (k, M, G, T, P) are 1024 based. For example 1k is 1024
bytes. 1M is 1048576 bytes.

curl displays this data to the terminal by default, so if you invoke curl to
do an operation and it is about to write data to the terminal, it
\fIdisables\fP the progress meter as otherwise it would mess up the output
mixing progress meter and response data.

If you want a progress meter for HTTP POST or PUT requests, you need to
redirect the response output to a file, using shell redirect (>), \fI-o, --output\fP or
similar.

It is not the same case for FTP upload as that operation does not spit out
any response data to the terminal.

If you prefer a progress "bar" instead of the regular meter, \fI-#, --progress-bar\fP is
your friend. You can also disable the progress meter completely with the
\fI-s, --silent\fP option.
.SH OPTIONS
Options start with one or two dashes. Many of the options require an
additional value next to them.

The short "single-dash" form of the options, -d for example, may be used with
or without a space between it and its value, although a space is a recommended
separator. The long "double-dash" form, \fI-d, --data\fP for example, requires a space
between it and its value.

Short version options that don't need any additional values can be used
immediately next to each other, like for example you can specify all the
options -O, -L and -v at once as -OLv.

In general, all boolean options are enabled with --\fBoption\fP and yet again
disabled with --\fBno-\fPoption. That is, you use the exact same option name
but prefix it with "no-". However, in this list we mostly only list and show
the --option version of them. (This concept with --no options was added in
7.19.0. Previously most options were toggled on/off on repeated use of the
same command line option.)
.IP "--abstract-unix-socket <path>"
(HTTP) Connect through an abstract Unix domain socket, instead of using the network.
Note: netstat shows the path of an abstract socket prefixed with '@', however
the <path> argument should not have this leading character.

Added in 7.53.0.
.IP "--anyauth"
(HTTP) Tells curl to figure out authentication method by itself, and use the most
secure one the remote site claims to support. This is done by first doing a
request and checking the response-headers, thus possibly inducing an extra
network round-trip. This is used instead of setting a specific authentication
method, which you can do with \fI--basic\fP, \fI--digest\fP, \fI--ntlm\fP, and \fI--negotiate\fP.

Using \fI--anyauth\fP is not recommended if you do uploads from stdin, since it may
require data to be sent twice and then the client must be able to rewind. If
the need should arise when uploading from stdin, the upload operation will
fail.

Used together with \fI-u, --user\fP.

See also \fI--proxy-anyauth\fP and \fI--basic\fP and \fI--digest\fP.
.IP "-a, --append"
(FTP SFTP) When used in an upload, this makes curl append to the target file instead of
overwriting it. If the remote file doesn't exist, it will be created.  Note
that this flag is ignored by some SFTP servers (including OpenSSH).
.IP "--basic"
(HTTP) Tells curl to use HTTP Basic authentication with the remote host. This is the
default and this option is usually pointless, unless you use it to override a
previously set option that sets a different authentication method (such as
\fI--ntlm\fP, \fI--digest\fP, or \fI--negotiate\fP).

Used together with \fI-u, --user\fP.

See also \fI--proxy-basic\fP.
.IP "--cacert <file>"
(TLS) Tells curl to use the specified certificate file to verify the peer. The file
may contain multiple CA certificates. The certificate(s) must be in PEM
format. Normally curl is built to use a default file for this, so this option
is typically used to alter that default file.

curl recognizes the environment variable named 'CURL_CA_BUNDLE' if it is
set, and uses the given path as a path to a CA cert bundle. This option
overrides that variable.

The windows version of curl will automatically look for a CA certs file named
\'curl-ca-bundle.crt\', either in the same directory as curl.exe, or in the
Current Working Directory, or in any folder along your PATH.

If curl is built against the NSS SSL library, the NSS PEM PKCS#11 module
(libnsspem.so) needs to be available for this option to work properly.

(iOS and macOS only) If curl is built against Secure Transport, then this
option is supported for backward compatibility with other SSL engines, but it
should not be set. If the option is not set, then curl will use the
certificates in the system and user Keychain to verify the peer, which is the
preferred method of verifying the peer's certificate chain.

(Schannel only) This option is supported for Schannel in Windows 7 or later with
libcurl 7.60 or later. This option is supported for backward compatibility
with other SSL engines; instead it is recommended to use Windows' store of
root certificates (the default for Schannel).

If this option is used several times, the last one will be used.
.IP "--capath <dir>"
(TLS) Tells curl to use the specified certificate directory to verify the
peer. Multiple paths can be provided by separating them with ":" (e.g.
\&"path1:path2:path3"). The certificates must be in PEM format, and if curl is
built against OpenSSL, the directory must have been processed using the
c_rehash utility supplied with OpenSSL. Using \fI--capath\fP can allow
OpenSSL-powered curl to make SSL-connections much more efficiently than using
\fI--cacert\fP if the --cacert file contains many CA certificates.

If this option is set, the default capath value will be ignored, and if it is
used several times, the last one will be used.
.IP "--cert-status"
(TLS) Tells curl to verify the status of the server certificate by using the
Certificate Status Request (aka. OCSP stapling) TLS extension.

If this option is enabled and the server sends an invalid (e.g. expired)
response, if the response suggests that the server certificate has been revoked,
or no response at all is received, the verification fails.

This is currently only implemented in the OpenSSL, GnuTLS and NSS backends.

Added in 7.41.0.
.IP "--cert-type <type>"
(TLS) Tells curl what type the provided client certificate is using. PEM, DER, ENG
and P12 are recognized types.  If not specified, PEM is assumed.

If this option is used several times, the last one will be used.

See also \fI-E, --cert\fP and \fI--key\fP and \fI--key-type\fP.
.IP "-E, --cert <certificate[:password]>"
(TLS) Tells curl to use the specified client certificate file when getting a file
with HTTPS, FTPS or another SSL-based protocol. The certificate must be in
PKCS#12 format if using Secure Transport, or PEM format if using any other
engine.  If the optional password isn't specified, it will be queried for on
the terminal. Note that this option assumes a \&"certificate" file that is the
private key and the client certificate concatenated! See \fI-E, --cert\fP and \fI--key\fP to
specify them independently.

If curl is built against the NSS SSL library then this option can tell
curl the nickname of the certificate to use within the NSS database defined
by the environment variable SSL_DIR (or by default /etc/pki/nssdb). If the
NSS PEM PKCS#11 module (libnsspem.so) is available then PEM files may be
loaded. If you want to use a file from the current directory, please precede
it with "./" prefix, in order to avoid confusion with a nickname.  If the
nickname contains ":", it needs to be preceded by "\\" so that it is not
recognized as password delimiter.  If the nickname contains "\\", it needs to
be escaped as "\\\\" so that it is not recognized as an escape character.

If curl is built against OpenSSL library, and the engine pkcs11 is available,
then a PKCS#11 URI (RFC 7512) can be used to specify a certificate located in
a PKCS#11 device. A string beginning with "pkcs11:" will be interpreted as a
PKCS#11 URI. If a PKCS#11 URI is provided, then the \fI--engine\fP option will be set
as "pkcs11" if none was provided and the \fI--cert-type\fP option will be set as
"ENG" if none was provided.

(iOS and macOS only) If curl is built against Secure Transport, then the
certificate string can either be the name of a certificate/private key in the
system or user keychain, or the path to a PKCS#12-encoded certificate and
private key. If you want to use a file from the current directory, please
precede it with "./" prefix, in order to avoid confusion with a nickname.

(Schannel only) Client certificates must be specified by a path
expression to a certificate store. (Loading PFX is not supported; you can
import it to a store first). You can use
"<store location>\\<store name>\\<thumbprint>" to refer to a certificate
in the system certificates store, for example,
"CurrentUser\\MY\\934a7ac6f8a5d579285a74fa61e19f23ddfe8d7a". Thumbprint is
usually a SHA-1 hex string which you can see in certificate details. Following
store locations are supported: CurrentUser, LocalMachine, CurrentService,
Services, CurrentUserGroupPolicy, LocalMachineGroupPolicy,
LocalMachineEnterprise.

If this option is used several times, the last one will be used.

See also \fI--cert-type\fP and \fI--key\fP and \fI--key-type\fP.
.IP "--ciphers <list of ciphers>"
(TLS) Specifies which ciphers to use in the connection. The list of ciphers must
specify valid ciphers. Read up on SSL cipher list details on this URL:

 https://curl.haxx.se/docs/ssl-ciphers.html

If this option is used several times, the last one will be used.
.IP "--compressed-ssh"
(SCP SFTP) Enables built-in SSH compression.
This is a request, not an order; the server may or may not do it.

Added in 7.56.0.
.IP "--compressed"
(HTTP) Request a compressed response using one of the algorithms curl supports, and
save the uncompressed document.  If this option is used and the server sends
an unsupported encoding, curl will report an error.
.IP "-K, --config <file>"

Specify a text file to read curl arguments from. The command line arguments
found in the text file will be used as if they were provided on the command
line.

Options and their parameters must be specified on the same line in the file,
separated by whitespace, colon, or the equals sign. Long option names can
optionally be given in the config file without the initial double dashes and
if so, the colon or equals characters can be used as separators. If the option
is specified with one or two dashes, there can be no colon or equals character
between the option and its parameter.

If the parameter is to contain whitespace, the parameter must be enclosed
within quotes. Within double quotes, the following escape sequences are
available: \\\\, \\", \\t, \\n, \\r and \\v. A backslash preceding any other
letter is ignored. If the first column of a config line is a '#' character,
the rest of the line will be treated as a comment. Only write one option per
physical line in the config file.

Specify the filename to \fI-K, --config\fP as '-' to make curl read the file from stdin.

Note that to be able to specify a URL in the config file, you need to specify
it using the \fI--url\fP option, and not by simply writing the URL on its own
line. So, it could look similar to this:

url = "https://curl.haxx.se/docs/"

When curl is invoked, it (unless \fI-q, --disable\fP is used) checks for a default
config file and uses it if found. The default config file is checked for in
the following places in this order:

1) curl tries to find the "home dir": It first checks for the CURL_HOME and
then the HOME environment variables. Failing that, it uses getpwuid() on
Unix-like systems (which returns the home dir given the current user in your
system). On Windows, it then checks for the APPDATA variable, or as a last
resort the '%USERPROFILE%\\Application Data'.

2) On windows, if there is no _curlrc file in the home dir, it checks for one
in the same dir the curl executable is placed. On Unix-like systems, it will
simply try to load .curlrc from the determined home dir.

.nf
# --- Example file ---
# this is a comment
url = "example.com"
output = "curlhere.html"
user-agent = "superagent/1.0"

# and fetch another URL too
url = "example.com/docs/manpage.html"
-O
referer = "http://nowhereatall.example.com/"
# --- End of example file ---
.fi

This option can be used multiple times to load multiple config files.
.IP "--connect-timeout <seconds>"
Maximum time in seconds that you allow curl's connection to take.  This only
limits the connection phase, so if curl connects within the given period it
will continue - if not it will exit.  Since version 7.32.0, this option
accepts decimal values.

If this option is used several times, the last one will be used.

See also \fI-m, --max-time\fP.
.IP "--connect-to <HOST1:PORT1:HOST2:PORT2>"

For a request to the given HOST1:PORT1 pair, connect to HOST2:PORT2 instead.
This option is suitable to direct requests at a specific server, e.g. at a
specific cluster node in a cluster of servers. This option is only used to
establish the network connection. It does NOT affect the hostname/port that is
used for TLS/SSL (e.g. SNI, certificate verification) or for the application
protocols. "HOST1" and "PORT1" may be the empty string, meaning "any
host/port". "HOST2" and "PORT2" may also be the empty string, meaning "use the
request's original host/port".

A "host" specified to this option is compared as a string, so it needs to
match the name used in request URL. It can be either numerical such as
"127.0.0.1" or the full host name such as "example.org".

This option can be used many times to add many connect rules.

See also \fI--resolve\fP and \fI-H, --header\fP. Added in 7.49.0.
.IP "-C, --continue-at <offset>"
Continue/Resume a previous file transfer at the given offset. The given offset
is the exact number of bytes that will be skipped, counting from the beginning
of the source file before it is transferred to the destination.  If used with
uploads, the FTP server command SIZE will not be used by curl.

Use "-C -" to tell curl to automatically find out where/how to resume the
transfer. It then uses the given output/input files to figure that out.

If this option is used several times, the last one will be used.

See also \fI-r, --range\fP.
.IP "-c, --cookie-jar <filename>"
(HTTP) Specify to which file you want curl to write all cookies after a completed
operation. Curl writes all cookies from its in-memory cookie storage to the
given file at the end of operations. If no cookies are known, no data will be
written. The file will be written using the Netscape cookie file format. If
you set the file name to a single dash, "-", the cookies will be written to
stdout.

This command line option will activate the cookie engine that makes curl
record and use cookies. Another way to activate it is to use the \fI-b, --cookie\fP
option.

If the cookie jar can't be created or written to, the whole curl operation
won't fail or even report an error clearly. Using \fI-v, --verbose\fP will get a warning
displayed, but that is the only visible feedback you get about this possibly
lethal situation.

If this option is used several times, the last specified file name will be
used.
.IP "-b, --cookie <data>"
(HTTP) Pass the data to the HTTP server in the Cookie header. It is supposedly
the data previously received from the server in a "Set-Cookie:" line.  The
data should be in the format "NAME1=VALUE1; NAME2=VALUE2".

If no '=' symbol is used in the argument, it is instead treated as a filename
to read previously stored cookie from. This option also activates the cookie
engine which will make curl record incoming cookies, which may be handy if
you're using this in combination with the \fI-L, --location\fP option or do multiple URL
transfers on the same invoke. If the file name is exactly a minus ("-"), curl
will instead the contents from stdin.

The file format of the file to read cookies from should be plain HTTP headers
(Set-Cookie style) or the Netscape/Mozilla cookie file format.

The file specified with \fI-b, --cookie\fP is only used as input. No cookies will be
written to the file. To store cookies, use the \fI-c, --cookie-jar\fP option.

Exercise caution if you are using this option and multiple transfers may
occur.  If you use the NAME1=VALUE1; format, or in a file use the Set-Cookie
format and don't specify a domain, then the cookie is sent for any domain
(even after redirects are followed) and cannot be modified by a server-set
cookie. If the cookie engine is enabled and a server sets a cookie of the same
name then both will be sent on a future transfer to that server, likely not
what you intended.  To address these issues set a domain in Set-Cookie (doing
that will include sub domains) or use the Netscape format.

If this option is used several times, the last one will be used.

Users very often want to both read cookies from a file and write updated
cookies back to a file, so using both \fI-b, --cookie\fP and \fI-c, --cookie-jar\fP in the same
command line is common.
.IP "--create-dirs"
When used in conjunction with the \fI-o, --output\fP option, curl will create the
necessary local directory hierarchy as needed. This option creates the dirs
mentioned with the \fI-o, --output\fP option, nothing else. If the --output file name
uses no dir or if the dirs it mentions already exist, no dir will be created.

To create remote directories when using FTP or SFTP, try \fI--ftp-create-dirs\fP.
.IP "--crlf"
(FTP SMTP) Convert LF to CRLF in upload. Useful for MVS (OS/390).

(SMTP added in 7.40.0)
.IP "--crlfile <file>"
(TLS) Provide a file using PEM format with a Certificate Revocation List that may
specify peer certificates that are to be considered revoked.

If this option is used several times, the last one will be used.

Added in 7.19.7.
.IP "--data-ascii <data>"
(HTTP) This is just an alias for \fI-d, --data\fP.
.IP "--data-binary <data>"
(HTTP) This posts data exactly as specified with no extra processing whatsoever.

If you start the data with the letter @, the rest should be a filename.  Data
is posted in a similar manner as \fI-d, --data\fP does, except that newlines and
carriage returns are preserved and conversions are never done.

Like \fI-d, --data\fP the default content-type sent to the server is
application/x-www-form-urlencoded. If you want the data to be treated as
arbitrary binary data by the server then set the content-type to octet-stream:
-H "Content-Type: application/octet-stream".

If this option is used several times, the ones following the first will append
data as described in \fI-d, --data\fP.
.IP "--data-raw <data>"
(HTTP) This posts data similarly to \fI-d, --data\fP but without the special
interpretation of the @ character.

See also \fI-d, --data\fP. Added in 7.43.0.
.IP "--data-urlencode <data>"
(HTTP) This posts data, similar to the other \fI-d, --data\fP options with the exception
that this performs URL-encoding.

To be CGI-compliant, the <data> part should begin with a \fIname\fP followed
by a separator and a content specification. The <data> part can be passed to
curl using one of the following syntaxes:
.RS
.IP "content"
This will make curl URL-encode the content and pass that on. Just be careful
so that the content doesn't contain any = or @ symbols, as that will then make
the syntax match one of the other cases below!
.IP "=content"
This will make curl URL-encode the content and pass that on. The preceding =
symbol is not included in the data.
.IP "name=content"
This will make curl URL-encode the content part and pass that on. Note that
the name part is expected to be URL-encoded already.
.IP "@filename"
This will make curl load data from the given file (including any newlines),
URL-encode that data and pass it on in the POST.
.IP "name@filename"
This will make curl load data from the given file (including any newlines),
URL-encode that data and pass it on in the POST. The name part gets an equal
sign appended, resulting in \fIname=urlencoded-file-content\fP. Note that the
name is expected to be URL-encoded already.
.RE

See also \fI-d, --data\fP and \fI--data-raw\fP. Added in 7.18.0.
.IP "-d, --data <data>"
(HTTP) Sends the specified data in a POST request to the HTTP server, in the same way
that a browser does when a user has filled in an HTML form and presses the
submit button. This will cause curl to pass the data to the server using the
content-type application/x-www-form-urlencoded.  Compare to \fI-F, --form\fP.

\fI--data-raw\fP is almost the same but does not have a special interpretation of
the @ character. To post data purely binary, you should instead use the
\fI--data-binary\fP option.  To URL-encode the value of a form field you may use
\fI--data-urlencode\fP.

If any of these options is used more than once on the same command line, the
data pieces specified will be merged together with a separating
&-symbol. Thus, using '-d name=daniel -d skill=lousy' would generate a post
chunk that looks like \&'name=daniel&skill=lousy'.

If you start the data with the letter @, the rest should be a file name to
read the data from, or - if you want curl to read the data from
stdin. Multiple files can also be specified. Posting data from a file named
'foobar' would thus be done with \fI-d, --data\fP @foobar. When --data is told to read
from a file like that, carriage returns and newlines will be stripped out. If
you don't want the @ character to have a special interpretation use \fI--data-raw\fP
instead.

See also \fI--data-binary\fP and \fI--data-urlencode\fP and \fI--data-raw\fP. This option overrides \fI-F, --form\fP and \fI-I, --head\fP and \fI-T, --upload-file\fP.
.IP "--delegation <LEVEL>"
(GSS/kerberos) Set LEVEL to tell the server what it is allowed to delegate when it
comes to user credentials.
.RS
.IP "none"
Don't allow any delegation.
.IP "policy"
Delegates if and only if the OK-AS-DELEGATE flag is set in the Kerberos
service ticket, which is a matter of realm policy.
.IP "always"
Unconditionally allow the server to delegate.
.RE
.IP "--digest"
(HTTP) Enables HTTP Digest authentication. This is an authentication scheme that
prevents the password from being sent over the wire in clear text. Use this in
combination with the normal \fI-u, --user\fP option to set user name and password.

If this option is used several times, only the first one is used.

See also \fI-u, --user\fP and \fI--proxy-digest\fP and \fI--anyauth\fP. This option overrides \fI--basic\fP and \fI--ntlm\fP and \fI--negotiate\fP.
.IP "--disable-eprt"
(FTP) Tell curl to disable the use of the EPRT and LPRT commands when doing active
FTP transfers. Curl will normally always first attempt to use EPRT, then LPRT
before using PORT, but with this option, it will use PORT right away. EPRT and
LPRT are extensions to the original FTP protocol, and may not work on all
servers, but they enable more functionality in a better way than the
traditional PORT command.

--eprt can be used to explicitly enable EPRT again and --no-eprt is an alias
for \fI--disable-eprt\fP.

If the server is accessed using IPv6, this option will have no effect as EPRT
is necessary then.

Disabling EPRT only changes the active behavior. If you want to switch to
passive mode you need to not use \fI-P, --ftp-port\fP or force it with \fI--ftp-pasv\fP.
.IP "--disable-epsv"
(FTP) (FTP) Tell curl to disable the use of the EPSV command when doing passive FTP
transfers. Curl will normally always first attempt to use EPSV before PASV,
but with this option, it will not try using EPSV.

--epsv can be used to explicitly enable EPSV again and --no-epsv is an alias
for \fI--disable-epsv\fP.

If the server is an IPv6 host, this option will have no effect as EPSV is
necessary then.

Disabling EPSV only changes the passive behavior. If you want to switch to
active mode you need to use \fI-P, --ftp-port\fP.
.IP "-q, --disable"
If used as the first parameter on the command line, the \fIcurlrc\fP config
file will not be read and used. See the \fI-K, --config\fP for details on the default
config file search path.
.IP "--disallow-username-in-url"
(HTTP) This tells curl to exit if passed a url containing a username.

See also \fI--proto\fP. Added in 7.61.0.
.IP "--dns-interface <interface>"
(DNS) Tell curl to send outgoing DNS requests through <interface>. This option is a
counterpart to \fI--interface\fP (which does not affect DNS). The supplied string
must be an interface name (not an address).

See also \fI--dns-ipv4-addr\fP and \fI--dns-ipv6-addr\fP. \fI--dns-interface\fP requires that the underlying libcurl was built to support c-ares. Added in 7.33.0.
.IP "--dns-ipv4-addr <address>"
(DNS) Tell curl to bind to <ip-address> when making IPv4 DNS requests, so that
the DNS requests originate from this address. The argument should be a
single IPv4 address.

See also \fI--dns-interface\fP and \fI--dns-ipv6-addr\fP. \fI--dns-ipv4-addr\fP requires that the underlying libcurl was built to support c-ares. Added in 7.33.0.
.IP "--dns-ipv6-addr <address>"
(DNS) Tell curl to bind to <ip-address> when making IPv6 DNS requests, so that
the DNS requests originate from this address. The argument should be a
single IPv6 address.

See also \fI--dns-interface\fP and \fI--dns-ipv4-addr\fP. \fI--dns-ipv6-addr\fP requires that the underlying libcurl was built to support c-ares. Added in 7.33.0.
.IP "--dns-servers <addresses>"
Set the list of DNS servers to be used instead of the system default.
The list of IP addresses should be separated with commas. Port numbers
may also optionally be given as \fI:<port-number>\fP after each IP
address.

\fI--dns-servers\fP requires that the underlying libcurl was built to support c-ares. Added in 7.33.0.
.IP "--doh-url <URL>"
(all) Specifies which DNS-over-HTTPS (DOH) server to use to resolve hostnames,
instead of using the default name resolver mechanism. The URL must be HTTPS.

If this option is used several times, the last one will be used.
.IP "-D, --dump-header <filename>"
(HTTP FTP) Write the received protocol headers to the specified file.

This option is handy to use when you want to store the headers that an HTTP
site sends to you. Cookies from the headers could then be read in a second
curl invocation by using the \fI-b, --cookie\fP option! The \fI-c, --cookie-jar\fP option is a
better way to store cookies.

When used in FTP, the FTP server response lines are considered being "headers"
and thus are saved there.

If this option is used several times, the last one will be used.

See also \fI-o, --output\fP.
.IP "--egd-file <file>"
(TLS) Specify the path name to the Entropy Gathering Daemon socket. The socket is
used to seed the random engine for SSL connections.

See also \fI--random-file\fP.
.IP "--engine <name>"
(TLS) Select the OpenSSL crypto engine to use for cipher operations. Use \fI--engine\fP
list to print a list of build-time supported engines. Note that not all (or
none) of the engines may be available at run-time.
.IP "--expect100-timeout <seconds>"
(HTTP) Maximum time in seconds that you allow curl to wait for a 100-continue
response when curl emits an Expects: 100-continue header in its request. By
default curl will wait one second. This option accepts decimal values! When
curl stops waiting, it will continue as if the response has been received.

See also \fI--connect-timeout\fP. Added in 7.47.0.
.IP "--fail-early"
Fail and exit on the first detected transfer error.

When curl is used to do multiple transfers on the command line, it will
attempt to operate on each given URL, one by one. By default, it will ignore
errors if there are more URLs given and the last URL's success will determine
the error code curl returns. So early failures will be "hidden" by subsequent
successful transfers.

Using this option, curl will instead return an error on the first transfer
that fails, independent of the amount of URLs that are given on the command
line. This way, no transfer failures go undetected by scripts and similar.

This option is global and does not need to be specified for each use of \fI-:, --next\fP.

This option does not imply \fI-f, --fail\fP, which causes transfers to fail due to the
server's HTTP status code. You can combine the two options, however note \fI-f, --fail\fP
is not global and is therefore contained by \fI-:, --next\fP.

Added in 7.52.0.
.IP "-f, --fail"
(HTTP) Fail silently (no output at all) on server errors. This is mostly done to
better enable scripts etc to better deal with failed attempts. In normal cases
when an HTTP server fails to deliver a document, it returns an HTML document
stating so (which often also describes why and more). This flag will prevent
curl from outputting that and return error 22.

This method is not fail-safe and there are occasions where non-successful
response codes will slip through, especially when authentication is involved
(response codes 401 and 407).
.IP "--false-start"
(TLS) Tells curl to use false start during the TLS handshake. False start is a mode
where a TLS client will start sending application data before verifying the
server's Finished message, thus saving a round trip when performing a full
handshake.

This is currently only implemented in the NSS and Secure Transport (on iOS 7.0
or later, or OS X 10.9 or later) backends.

Added in 7.42.0.
.IP "--form-string <name=string>"
(HTTP SMTP IMAP) Similar to \fI-F, --form\fP except that the value string for the named parameter is used
literally. Leading \&'@' and \&'<' characters, and the \&';type=' string in
the value have no special meaning. Use this in preference to \fI-F, --form\fP if
there's any possibility that the string value may accidentally trigger the
\&'@' or \&'<' features of \fI-F, --form\fP.

See also \fI-F, --form\fP.
.IP "-F, --form <name=content>"
(HTTP SMTP IMAP) For HTTP protocol family, this lets curl emulate a filled-in form in which a
user has pressed the submit button. This causes curl to POST data using the
Content-Type multipart/form-data according to RFC 2388.

For SMTP and IMAP protocols, this is the mean to compose a multipart mail
message to transmit.

This enables uploading of binary files etc. To force the 'content' part to be
a file, prefix the file name with an @ sign. To just get the content part from
a file, prefix the file name with the symbol <. The difference between @ and <
is then that @ makes a file get attached in the post as a file upload, while
the < makes a text field and just get the contents for that text field from a
file.

Tell curl to read content from stdin instead of a file by using - as
filename. This goes for both @ and < constructs. When stdin is used, the
contents is buffered in memory first by curl to determine its size and allow a
possible resend.  Defining a part's data from a named non-regular file (such
as a named pipe or similar) is unfortunately not subject to buffering and will
be effectively read at transmission time; since the full size is unknown
before the transfer starts, such data is sent as chunks by HTTP and rejected
by IMAP.

Example: send an image to an HTTP server, where \&'profile' is the name of the
form-field to which the file portrait.jpg will be the input:

 curl -F profile=@portrait.jpg https://example.com/upload.cgi

Example: send a your name and shoe size in two text fields to the server:

 curl -F name=John -F shoesize=11 https://example.com/

Example: send a your essay in a text field to the server. Send it as a plain
text field, but get the contents for it from a local file:

 curl -F "story=<hugefile.txt" https://example.com/

You can also tell curl what Content-Type to use by using 'type=', in a manner
similar to:

 curl -F "web=@index.html;type=text/html" example.com

or

 curl -F "name=daniel;type=text/foo" example.com

You can also explicitly change the name field of a file upload part by setting
filename=, like this:

 curl -F "file=@localfile;filename=nameinpost" example.com

If filename/path contains ',' or ';', it must be quoted by double-quotes like:

 curl -F "file=@\\"localfile\\";filename=\\"nameinpost\\"" example.com

or

 curl -F 'file=@"localfile";filename="nameinpost"' example.com

Note that if a filename/path is quoted by double-quotes, any double-quote
or backslash within the filename must be escaped by backslash.

Quoting must also be applied to non-file data if it contains semicolons,
leading/trailing spaces or leading double quotes:

 curl -F 'colors="red; green; blue";type=text/x-myapp' example.com

You can add custom headers to the field by setting headers=, like

  curl -F "submit=OK;headers=\\"X-submit-type: OK\\"" example.com

or

  curl -F "submit=OK;headers=@headerfile" example.com

The headers= keyword may appear more that once and above notes about quoting
apply. When headers are read from a file, Empty lines and lines starting
with '#' are comments and ignored; each header can be folded by splitting
between two words and starting the continuation line with a space; embedded
carriage-returns and trailing spaces are stripped.
Here is an example of a header file contents:

  # This file contain two headers.
.br
  X-header-1: this is a header

  # The following header is folded.
.br
  X-header-2: this is
.br
   another header


To support sending multipart mail messages, the syntax is extended as follows:
.br
- name can be omitted: the equal sign is the first character of the argument,
.br
- if data starts with '(', this signals to start a new multipart: it can be
followed by a content type specification.
.br
- a multipart can be terminated with a '=)' argument.

Example: the following command sends an SMTP mime e-mail consisting in an
inline part in two alternative formats: plain text and HTML. It attaches a
text file:

 curl -F '=(;type=multipart/alternative' \\
.br
         -F '=plain text message' \\
.br
         -F '= <body>HTML message</body>;type=text/html' \\
.br
      -F '=)' -F '=@textfile.txt' ...  smtp://example.com

Data can be encoded for transfer using encoder=. Available encodings are
\fIbinary\fP and \fI8bit\fP that do nothing else than adding the corresponding
Content-Transfer-Encoding header, \fI7bit\fP that only rejects 8-bit characters
with a transfer error, \fIquoted-printable\fP and \fIbase64\fP that encodes
data according to the corresponding schemes, limiting lines length to
76 characters.

Example: send multipart mail with a quoted-printable text message and a
base64 attached file:

 curl -F '=text message;encoder=quoted-printable' \\
.br
      -F '=@localfile;encoder=base64' ... smtp://example.com

See further examples and details in the MANUAL.

This option can be used multiple times.

This option overrides \fI-d, --data\fP and \fI-I, --head\fP and \fI-T, --upload-file\fP.
.IP "--ftp-account <data>"
(FTP) When an FTP server asks for "account data" after user name and password has
been provided, this data is sent off using the ACCT command.

If this option is used several times, the last one will be used.

Added in 7.13.0.
.IP "--ftp-alternative-to-user <command>"
(FTP) If authenticating with the USER and PASS commands fails, send this command.
When connecting to Tumbleweed's Secure Transport server over FTPS using a
client certificate, using "SITE AUTH" will tell the server to retrieve the
username from the certificate.

Added in 7.15.5.
.IP "--ftp-create-dirs"
(FTP SFTP) When an FTP or SFTP URL/operation uses a path that doesn't currently exist on
the server, the standard behavior of curl is to fail. Using this option, curl
will instead attempt to create missing directories.

See also \fI--create-dirs\fP.
.IP "--ftp-method <method>"
(FTP) Control what method curl should use to reach a file on an FTP(S)
server. The method argument should be one of the following alternatives:
.RS
.IP multicwd
curl does a single CWD operation for each path part in the given URL. For deep
hierarchies this means very many commands. This is how RFC 1738 says it should
be done. This is the default but the slowest behavior.
.IP nocwd
curl does no CWD at all. curl will do SIZE, RETR, STOR etc and give a full
path to the server for all these commands. This is the fastest behavior.
.IP singlecwd
curl does one CWD with the full target directory and then operates on the file
\&"normally" (like in the multicwd case). This is somewhat more standards
compliant than 'nocwd' but without the full penalty of 'multicwd'.
.RE

Added in 7.15.1.
.IP "--ftp-pasv"
(FTP) Use passive mode for the data connection. Passive is the internal default
behavior, but using this option can be used to override a previous \fI-P, --ftp-port\fP
option.

If this option is used several times, only the first one is used. Undoing an
enforced passive really isn't doable but you must then instead enforce the
correct \fI-P, --ftp-port\fP again.

Passive mode means that curl will try the EPSV command first and then PASV,
unless \fI--disable-epsv\fP is used.

See also \fI--disable-epsv\fP. Added in 7.11.0.
.IP "-P, --ftp-port <address>"
(FTP) Reverses the default initiator/listener roles when connecting with FTP. This
option makes curl use active mode. curl then tells the server to connect back
to the client's specified address and port, while passive mode asks the server
to setup an IP address and port for it to connect to. <address> should be one
of:
.RS
.IP interface
e.g. "eth0" to specify which interface's IP address you want to use (Unix only)
.IP "IP address"
e.g. "192.168.10.1" to specify the exact IP address
.IP "host name"
e.g. "my.host.domain" to specify the machine
.IP "-"
make curl pick the same IP address that is already used for the control
connection
.RE

If this option is used several times, the last one will be used. Disable the
use of PORT with \fI--ftp-pasv\fP. Disable the attempt to use the EPRT command
instead of PORT by using \fI--disable-eprt\fP. EPRT is really PORT++.

Since 7.19.5, you can append \&":[start]-[end]\&" to the right of the address,
to tell curl what TCP port range to use. That means you specify a port range,
from a lower to a higher number. A single number works as well, but do note
that it increases the risk of failure since the port may not be available.

See also \fI--ftp-pasv\fP and \fI--disable-eprt\fP.
.IP "--ftp-pret"
(FTP) Tell curl to send a PRET command before PASV (and EPSV). Certain FTP servers,
mainly drftpd, require this non-standard command for directory listings as
well as up and downloads in PASV mode.

Added in 7.20.0.
.IP "--ftp-skip-pasv-ip"
(FTP) Tell curl to not use the IP address the server suggests in its response
to curl's PASV command when curl connects the data connection. Instead curl
will re-use the same IP address it already uses for the control
connection.

This option has no effect if PORT, EPRT or EPSV is used instead of PASV.

See also \fI--ftp-pasv\fP. Added in 7.14.2.
.IP "--ftp-ssl-ccc-mode <active/passive>"
(FTP) Sets the CCC mode. The passive mode will not initiate the shutdown, but
instead wait for the server to do it, and will not reply to the shutdown from
the server. The active mode initiates the shutdown and waits for a reply from
the server.

See also \fI--ftp-ssl-ccc\fP. Added in 7.16.2.
.IP "--ftp-ssl-ccc"
(FTP) Use CCC (Clear Command Channel) Shuts down the SSL/TLS layer after
authenticating. The rest of the control channel communication will be
unencrypted. This allows NAT routers to follow the FTP transaction. The
default mode is passive.

See also \fI--ssl\fP and \fI--ftp-ssl-ccc-mode\fP. Added in 7.16.1.
.IP "--ftp-ssl-control"
(FTP) Require SSL/TLS for the FTP login, clear for transfer.  Allows secure
authentication, but non-encrypted data transfers for efficiency.  Fails the
transfer if the server doesn't support SSL/TLS.

Added in 7.16.0.
.IP "-G, --get"
When used, this option will make all data specified with \fI-d, --data\fP, \fI--data-binary\fP
or \fI--data-urlencode\fP to be used in an HTTP GET request instead of the POST
request that otherwise would be used. The data will be appended to the URL
with a '?' separator.

If used in combination with \fI-I, --head\fP, the POST data will instead be appended to
the URL with a HEAD request.

If this option is used several times, only the first one is used. This is
because undoing a GET doesn't make sense, but you should then instead enforce
the alternative method you prefer.
.IP "-g, --globoff"
This option switches off the "URL globbing parser". When you set this option,
you can specify URLs that contain the letters {}[] without having them being
interpreted by curl itself. Note that these letters are not normal legal URL
contents but they should be encoded according to the URI standard.
.IP "--happy-eyeballs-timeout-ms <milliseconds>"
Happy eyeballs is an algorithm that attempts to connect to both IPv4 and IPv6
addresses for dual-stack hosts, preferring IPv6 first for the number of
milliseconds. If the IPv6 address cannot be connected to within that time then
a connection attempt is made to the IPv4 address in parallel. The first
connection to be established is the one that is used.

The range of suggested useful values is limited. Happy Eyeballs RFC 6555 says
"It is RECOMMENDED that connection attempts be paced 150-250 ms apart to
balance human factors against network load." libcurl currently defaults to
200 ms. Firefox and Chrome currently default to 300 ms.

If this option is used several times, the last one will be used.

Added in 7.59.0.
.IP "--haproxy-protocol"
(HTTP) Send a HAProxy PROXY protocol v1 header at the beginning of the connection. This
is used by some load balancers and reverse proxies to indicate the client's
true IP address and port.

This option is primarily useful when sending test requests to a service that
expects this header.

Added in 7.60.0.
.IP "-I, --head"
(HTTP FTP FILE) Fetch the headers only! HTTP-servers feature the command HEAD which this uses
to get nothing but the header of a document. When used on an FTP or FILE file,
curl displays the file size and last modification time only.
.IP "-H, --header <header/@file>"
(HTTP) Extra header to include in the request when sending HTTP to a server. You may
specify any number of extra headers. Note that if you should add a custom
header that has the same name as one of the internal ones curl would use, your
externally set header will be used instead of the internal one. This allows
you to make even trickier stuff than curl would normally do. You should not
replace internally set headers without knowing perfectly well what you're
doing. Remove an internal header by giving a replacement without content on
the right side of the colon, as in: -H \&"Host:". If you send the custom
header with no-value then its header must be terminated with a semicolon, such
as \-H \&"X-Custom-Header;" to send "X-Custom-Header:".

curl will make sure that each header you add/replace is sent with the proper
end-of-line marker, you should thus \fBnot\fP add that as a part of the header
content: do not add newlines or carriage returns, they will only mess things up
for you.

Starting in 7.55.0, this option can take an argument in @filename style, which
then adds a header for each line in the input file. Using @- will make curl
read the header file from stdin.

See also the \fI-A, --user-agent\fP and \fI-e, --referer\fP options.

Starting in 7.37.0, you need \fI--proxy-header\fP to send custom headers intended
for a proxy.

Example:

 curl -H "X-First-Name: Joe" http://example.com/

\fBWARNING\fP: headers set with this option will be set in all requests - even
after redirects are followed, like when told with \fI-L, --location\fP. This can lead to
the header being sent to other hosts than the original host, so sensitive
headers should be used with caution combined with following redirects.

This option can be used multiple times to add/replace/remove multiple headers.
.IP "-h, --help"
Usage help. This lists all current command line options with a short
description.
.IP "--hostpubmd5 <md5>"
(SFTP SCP) Pass a string containing 32 hexadecimal digits. The string should
be the 128 bit MD5 checksum of the remote host's public key, curl will refuse
the connection with the host unless the md5sums match.

Added in 7.17.1.
.IP "--http0.9"
(HTTP) Tells curl to be fine with HTTP version 0.9 response.

HTTP/0.9 is a completely headerless response and therefore you can also
connect with this to non-HTTP servers and still get a response since curl will
simply transparently downgrade - if allowed.

A future curl version will deny continuing if the response isn't at least
HTTP/1.0 unless this option is used.
.IP "-0, --http1.0"
(HTTP) Tells curl to use HTTP version 1.0 instead of using its internally preferred
HTTP version.

This option overrides \fI--http1.1\fP and \fI--http2\fP.
.IP "--http1.1"
(HTTP) Tells curl to use HTTP version 1.1.

This option overrides \fI-0, --http1.0\fP and \fI--http2\fP. Added in 7.33.0.
.IP "--http2-prior-knowledge"
(HTTP) Tells curl to issue its non-TLS HTTP requests using HTTP/2 without HTTP/1.1
Upgrade. It requires prior knowledge that the server supports HTTP/2 straight
away. HTTPS requests will still do HTTP/2 the standard way with negotiated
protocol version in the TLS handshake.

\fI--http2-prior-knowledge\fP requires that the underlying libcurl was built to support HTTP/2. This option overrides \fI--http1.1\fP and \fI-0, --http1.0\fP and \fI--http2\fP. Added in 7.49.0.
.IP "--http2"
(HTTP) Tells curl to use HTTP version 2.

See also \fI--no-alpn\fP. \fI--http2\fP requires that the underlying libcurl was built to support HTTP/2. This option overrides \fI--http1.1\fP and \fI-0, --http1.0\fP and \fI--http2-prior-knowledge\fP. Added in 7.33.0.
.IP "--ignore-content-length"
(FTP HTTP) For HTTP, Ignore the Content-Length header. This is particularly useful for
servers running Apache 1.x, which will report incorrect Content-Length for
files larger than 2 gigabytes.

For FTP (since 7.46.0), skip the RETR command to figure out the size before
downloading a file.
.IP "-i, --include"
Include the HTTP response headers in the output. The HTTP response headers can
include things like server name, cookies, date of the document, HTTP version
and more...

To view the request headers, consider the \fI-v, --verbose\fP option.

See also \fI-v, --verbose\fP.
.IP "-k, --insecure"
(TLS) 
By default, every SSL connection curl makes is verified to be secure. This
option allows curl to proceed and operate even for server connections
otherwise considered insecure.

The server connection is verified by making sure the server's certificate
contains the right name and verifies successfully using the cert store.

See this online resource for further details:
 https://curl.haxx.se/docs/sslcerts.html

See also \fI--proxy-insecure\fP and \fI--cacert\fP.
.IP "--interface <name>"

Perform an operation using a specified interface. You can enter interface
name, IP address or host name. An example could look like:

 curl --interface eth0:1 https://www.example.com/

If this option is used several times, the last one will be used.

On Linux it can be used to specify a VRF, but the binary needs to either
have CAP_NET_RAW or to be run as root. More information about Linux VRF:
https://www.kernel.org/doc/Documentation/networking/vrf.txt

See also \fI--dns-interface\fP.
.IP "-4, --ipv4"
This option tells curl to resolve names to IPv4 addresses only, and not for
example try IPv6.

See also \fI--http1.1\fP and \fI--http2\fP. This option overrides \fI-6, --ipv6\fP.
.IP "-6, --ipv6"
This option tells curl to resolve names to IPv6 addresses only, and not for
example try IPv4.

See also \fI--http1.1\fP and \fI--http2\fP. This option overrides \fI-4, --ipv4\fP.
.IP "-j, --junk-session-cookies"
(HTTP) When curl is told to read cookies from a given file, this option will make it
discard all "session cookies". This will basically have the same effect as if
a new session is started. Typical browsers always discard session cookies when
they're closed down.

See also \fI-b, --cookie\fP and \fI-c, --cookie-jar\fP.
.IP "--keepalive-time <seconds>"
This option sets the time a connection needs to remain idle before sending
keepalive probes and the time between individual keepalive probes. It is
currently effective on operating systems offering the TCP_KEEPIDLE and
TCP_KEEPINTVL socket options (meaning Linux, recent AIX, HP-UX and more). This
option has no effect if \fI--no-keepalive\fP is used.

If this option is used several times, the last one will be used. If
unspecified, the option defaults to 60 seconds.

Added in 7.18.0.
.IP "--key-type <type>"
(TLS) Private key file type. Specify which type your \fI--key\fP provided private key
is. DER, PEM, and ENG are supported. If not specified, PEM is assumed.

If this option is used several times, the last one will be used.
.IP "--key <key>"
(TLS SSH) Private key file name. Allows you to provide your private key in this separate
file. For SSH, if not specified, curl tries the following candidates in order:
'~/.ssh/id_rsa', '~/.ssh/id_dsa', './id_rsa', './id_dsa'.

If curl is built against OpenSSL library, and the engine pkcs11 is available,
then a PKCS#11 URI (RFC 7512) can be used to specify a private key located in a
PKCS#11 device. A string beginning with "pkcs11:" will be interpreted as a
PKCS#11 URI. If a PKCS#11 URI is provided, then the \fI--engine\fP option will be set
as "pkcs11" if none was provided and the \fI--key-type\fP option will be set as
"ENG" if none was provided.

If this option is used several times, the last one will be used.
.IP "--krb <level>"
(FTP) Enable Kerberos authentication and use. The level must be entered and should
be one of 'clear', 'safe', 'confidential', or 'private'. Should you use a
level that is not one of these, 'private' will instead be used.

If this option is used several times, the last one will be used.

\fI--krb\fP requires that the underlying libcurl was built to support Kerberos.
.IP "--libcurl <file>"
Append this option to any ordinary curl command line, and you will get a
libcurl-using C source code written to the file that does the equivalent
of what your command-line operation does!

If this option is used several times, the last given file name will be
used.

Added in 7.16.1.
.IP "--limit-rate <speed>"
Specify the maximum transfer rate you want curl to use - for both downloads
and uploads. This feature is useful if you have a limited pipe and you'd like
your transfer not to use your entire bandwidth. To make it slower than it
otherwise would be.

The given speed is measured in bytes/second, unless a suffix is appended.
Appending 'k' or 'K' will count the number as kilobytes, 'm' or 'M' makes it
megabytes, while 'g' or 'G' makes it gigabytes. Examples: 200K, 3m and 1G.

If you also use the \fI-Y, --speed-limit\fP option, that option will take precedence and
might cripple the rate-limiting slightly, to help keeping the speed-limit
logic working.

If this option is used several times, the last one will be used.
.IP "-l, --list-only"
(FTP POP3) (FTP)
When listing an FTP directory, this switch forces a name-only view. This is
especially useful if the user wants to machine-parse the contents of an FTP
directory since the normal directory view doesn't use a standard look or
format. When used like this, the option causes a NLST command to be sent to
the server instead of LIST.

Note: Some FTP servers list only files in their response to NLST; they do not
include sub-directories and symbolic links.

(POP3)
When retrieving a specific email from POP3, this switch forces a LIST command
to be performed instead of RETR. This is particularly useful if the user wants
to see if a specific message id exists on the server and what size it is.

Note: When combined with \fI-X, --request\fP, this option can be used to send an UIDL
command instead, so the user may use the email's unique identifier rather than
it's message id to make the request.

Added in 7.21.5.
.IP "--local-port <num/range>"
Set a preferred single number or range (FROM-TO) of local port numbers to use
for the connection(s).  Note that port numbers by nature are a scarce resource
that will be busy at times so setting this range to something too narrow might
cause unnecessary connection setup failures.

Added in 7.15.2.
.IP "--location-trusted"
(HTTP) Like \fI-L, --location\fP, but will allow sending the name + password to all hosts that
the site may redirect to. This may or may not introduce a security breach if
the site redirects you to a site to which you'll send your authentication info
(which is plaintext in the case of HTTP Basic authentication).

See also \fI-u, --user\fP.
.IP "-L, --location"
(HTTP) If the server reports that the requested page has moved to a different
location (indicated with a Location: header and a 3XX response code), this
option will make curl redo the request on the new place. If used together with
\fI-i, --include\fP or \fI-I, --head\fP, headers from all requested pages will be shown. When
authentication is used, curl only sends its credentials to the initial
host. If a redirect takes curl to a different host, it won't be able to
intercept the user+password. See also \fI--location-trusted\fP on how to change
this. You can limit the amount of redirects to follow by using the
\fI--max-redirs\fP option.

When curl follows a redirect and the request is not a plain GET (for example
POST or PUT), it will do the following request with a GET if the HTTP response
was 301, 302, or 303. If the response code was any other 3xx code, curl will
re-send the following request using the same unmodified method.

You can tell curl to not change the non-GET request method to GET after a 30x
response by using the dedicated options for that: \fI--post301\fP, \fI--post302\fP and
\fI--post303\fP.
.IP "--login-options <options>"
(IMAP POP3 SMTP) Specify the login options to use during server authentication.

You can use the login options to specify protocol specific options that may
be used during authentication. At present only IMAP, POP3 and SMTP support
login options. For more information about the login options please see
RFC 2384, RFC 5092 and IETF draft draft-earhart-url-smtp-00.txt

If this option is used several times, the last one will be used.

Added in 7.34.0.
.IP "--mail-auth <address>"
(SMTP) Specify a single address. This will be used to specify the authentication
address (identity) of a submitted message that is being relayed to another
server.

See also \fI--mail-rcpt\fP and \fI--mail-from\fP. Added in 7.25.0.
.IP "--mail-from <address>"
(SMTP) Specify a single address that the given mail should get sent from.

See also \fI--mail-rcpt\fP and \fI--mail-auth\fP. Added in 7.20.0.
.IP "--mail-rcpt <address>"
(SMTP) Specify a single address, user name or mailing list name. Repeat this
option several times to send to multiple recipients.

When performing a mail transfer, the recipient should specify a valid email
address to send the mail to.

When performing an address verification (VRFY command), the recipient should be
specified as the user name or user name and domain (as per Section 3.5 of
RFC5321). (Added in 7.34.0)

When performing a mailing list expand (EXPN command), the recipient should be
specified using the mailing list name, such as "Friends" or "London-Office".
(Added in 7.34.0)

Added in 7.20.0.
.IP "-M, --manual"
Manual. Display the huge help text.
.IP "--max-filesize <bytes>"
Specify the maximum size (in bytes) of a file to download. If the file
requested is larger than this value, the transfer will not start and curl will
return with exit code 63.

A size modifier may be used. For example, Appending 'k' or 'K' will count the
number as kilobytes, 'm' or 'M' makes it megabytes, while 'g' or 'G' makes it
gigabytes. Examples: 200K, 3m and 1G. (Added in 7.58.0)

\fBNOTE:\fP The file size is not always known prior to download, and for such
files this option has no effect even if the file transfer ends up being larger
than this given limit. This concerns both FTP and HTTP transfers.

See also \fI--limit-rate\fP.
.IP "--max-redirs <num>"
(HTTP) Set maximum number of redirection-followings allowed. When \fI-L, --location\fP is used,
is used to prevent curl from following redirections \&"in absurdum". By
default, the limit is set to 50 redirections. Set this option to -1 to make it
unlimited.

If this option is used several times, the last one will be used.
.IP "-m, --max-time <seconds>"
Maximum time in seconds that you allow the whole operation to take.  This is
useful for preventing your batch jobs from hanging for hours due to slow
networks or links going down.  Since 7.32.0, this option accepts decimal
values, but the actual timeout will decrease in accuracy as the specified
timeout increases in decimal precision.

If this option is used several times, the last one will be used.

See also \fI--connect-timeout\fP.
.IP "--metalink"
This option can tell curl to parse and process a given URI as Metalink file
(both version 3 and 4 (RFC 5854) are supported) and make use of the mirrors
listed within for failover if there are errors (such as the file or server not
being available). It will also verify the hash of the file after the download
completes. The Metalink file itself is downloaded and processed in memory and
not stored in the local file system.

Example to use a remote Metalink file:

 curl --metalink http://www.example.com/example.metalink

To use a Metalink file in the local file system, use FILE protocol (file://):

 curl --metalink file://example.metalink

Please note that if FILE protocol is disabled, there is no way to use a local
Metalink file at the time of this writing. Also note that if \fI--metalink\fP and
\fI-i, --include\fP are used together, --include will be ignored. This is because
including headers in the response will break Metalink parser and if the
headers are included in the file described in Metalink file, hash check will
fail.

\fI--metalink\fP requires that the underlying libcurl was built to support metalink. Added in 7.27.0.
.IP "--negotiate"
(HTTP) Enables Negotiate (SPNEGO) authentication.

This option requires a library built with GSS-API or SSPI support. Use
\fI-V, --version\fP to see if your curl supports GSS-API/SSPI or SPNEGO.

When using this option, you must also provide a fake \fI-u, --user\fP option to activate
the authentication code properly. Sending a '-u :' is enough as the user name
and password from the \fI-u, --user\fP option aren't actually used.

If this option is used several times, only the first one is used.

See also \fI--basic\fP and \fI--ntlm\fP and \fI--anyauth\fP and \fI--proxy-negotiate\fP.
.IP "--netrc-file <filename>"
This option is similar to \fI-n, --netrc\fP, except that you provide the path (absolute
or relative) to the netrc file that curl should use.  You can only specify one
netrc file per invocation. If several \fI--netrc-file\fP options are provided,
the last one will be used.

It will abide by \fI--netrc-optional\fP if specified.

This option overrides \fI-n, --netrc\fP. Added in 7.21.5.
.IP "--netrc-optional"
Very similar to \fI-n, --netrc\fP, but this option makes the .netrc usage \fBoptional\fP
and not mandatory as the \fI-n, --netrc\fP option does.

See also \fI--netrc-file\fP. This option overrides \fI-n, --netrc\fP.
.IP "-n, --netrc"
Makes curl scan the \fI.netrc\fP (\fI_netrc\fP on Windows) file in the user's
home directory for login name and password. This is typically used for FTP on
Unix. If used with HTTP, curl will enable user authentication. See
\fInetrc(5)\fP \fIftp(1)\fP for details on the file format. Curl will not
complain if that file doesn't have the right permissions (it should not be
either world- or group-readable). The environment variable "HOME" is used to
find the home directory.

A quick and very simple example of how to setup a \fI.netrc\fP to allow curl
to FTP to the machine host.domain.com with user name \&'myself' and password
\&'secret' should look similar to:

.B "machine host.domain.com login myself password secret"
.IP "-:, --next"
Tells curl to use a separate operation for the following URL and associated
options. This allows you to send several URL requests, each with their own
specific options, for example, such as different user names or custom requests
for each.

\fI-:, --next\fP will reset all local options and only global ones will have their
values survive over to the operation following the \fI-:, --next\fP instruction. Global
options include \fI-v, --verbose\fP, \fI--trace\fP, \fI--trace-ascii\fP and \fI--fail-early\fP.

For example, you can do both a GET and a POST in a single command line:

 curl www1.example.com --next -d postthis www2.example.com

Added in 7.36.0.
.IP "--no-alpn"
(HTTPS) Disable the ALPN TLS extension. ALPN is enabled by default if libcurl was built
with an SSL library that supports ALPN. ALPN is used by a libcurl that supports
HTTP/2 to negotiate HTTP/2 support with the server during https sessions.

See also \fI--no-npn\fP and \fI--http2\fP. \fI--no-alpn\fP requires that the underlying libcurl was built to support TLS. Added in 7.36.0.
.IP "-N, --no-buffer"
Disables the buffering of the output stream. In normal work situations, curl
will use a standard buffered output stream that will have the effect that it
will output the data in chunks, not necessarily exactly when the data arrives.
Using this option will disable that buffering.

Note that this is the negated option name documented. You can thus use
--buffer to enforce the buffering.
.IP "--no-keepalive"
Disables the use of keepalive messages on the TCP connection. curl otherwise
enables them by default.

Note that this is the negated option name documented. You can thus use
--keepalive to enforce keepalive.
.IP "--no-npn"
(HTTPS) Disable the NPN TLS extension. NPN is enabled by default if libcurl was built
with an SSL library that supports NPN. NPN is used by a libcurl that supports
HTTP/2 to negotiate HTTP/2 support with the server during https sessions.

See also \fI--no-alpn\fP and \fI--http2\fP. \fI--no-npn\fP requires that the underlying libcurl was built to support TLS. Added in 7.36.0.
.IP "--no-sessionid"
(TLS) Disable curl's use of SSL session-ID caching.  By default all transfers are
done using the cache. Note that while nothing should ever get hurt by
attempting to reuse SSL session-IDs, there seem to be broken SSL
implementations in the wild that may require you to disable this in order for
you to succeed.

Note that this is the negated option name documented. You can thus use
--sessionid to enforce session-ID caching.

Added in 7.16.0.
.IP "--noproxy <no-proxy-list>"
Comma-separated list of hosts which do not use a proxy, if one is specified.
The only wildcard is a single * character, which matches all hosts, and
effectively disables the proxy. Each name in this list is matched as either
a domain which contains the hostname, or the hostname itself. For example,
local.com would match local.com, local.com:80, and www.local.com, but not
www.notlocal.com.

Since 7.53.0, This option overrides the environment variables that disable the
proxy. If there's an environment variable disabling a proxy, you can set
noproxy list to \&"" to override it.

Added in 7.19.4.
.IP "--ntlm-wb"
(HTTP) Enables NTLM much in the style \fI--ntlm\fP does, but hand over the authentication
to the separate binary ntlmauth application that is executed when needed.

See also \fI--ntlm\fP and \fI--proxy-ntlm\fP.
.IP "--ntlm"
(HTTP) Enables NTLM authentication. The NTLM authentication method was designed by
Microsoft and is used by IIS web servers. It is a proprietary protocol,
reverse-engineered by clever people and implemented in curl based on their
efforts. This kind of behavior should not be endorsed, you should encourage
everyone who uses NTLM to switch to a public and documented authentication
method instead, such as Digest.

If you want to enable NTLM for your proxy authentication, then use
\fI--proxy-ntlm\fP.

If this option is used several times, only the first one is used.

See also \fI--proxy-ntlm\fP. \fI--ntlm\fP requires that the underlying libcurl was built to support TLS. This option overrides \fI--basic\fP and \fI--negotiate\fP and \fI--digest\fP and \fI--anyauth\fP.
.IP "--oauth2-bearer <token>"
(IMAP POP3 SMTP) Specify the Bearer Token for OAUTH 2.0 server authentication. The Bearer Token
is used in conjunction with the user name which can be specified as part of
the \fI--url\fP or \fI-u, --user\fP options.

The Bearer Token and user name are formatted according to RFC 6750.

If this option is used several times, the last one will be used.
.IP "-o, --output <file>"
Write output to <file> instead of stdout. If you are using {} or [] to fetch
multiple documents, you can use '#' followed by a number in the <file>
specifier. That variable will be replaced with the current string for the URL
being fetched. Like in:

 curl http://{one,two}.example.com -o "file_#1.txt"

or use several variables like:

 curl http://{site,host}.host[1-5].com -o "#1_#2"

You may use this option as many times as the number of URLs you have. For
example, if you specify two URLs on the same command line, you can use it like
this:

  curl -o aa example.com -o bb example.net

and the order of the -o options and the URLs doesn't matter, just that the
first -o is for the first URL and so on, so the above command line can also be
written as

  curl example.com example.net -o aa -o bb

See also the \fI--create-dirs\fP option to create the local directories
dynamically. Specifying the output as '-' (a single dash) will force the
output to be done to stdout.

See also \fI-O, --remote-name\fP and \fI--remote-name-all\fP and \fI-J, --remote-header-name\fP.
.IP "--pass <phrase>"
(SSH TLS) Passphrase for the private key

If this option is used several times, the last one will be used.
.IP "--path-as-is"
Tell curl to not handle sequences of /../ or /./ in the given URL
path. Normally curl will squash or merge them according to standards but with
this option set you tell it not to do that.

Added in 7.42.0.
.IP "--pinnedpubkey <hashes>"
(TLS) Tells curl to use the specified public key file (or hashes) to verify the
peer. This can be a path to a file which contains a single public key in PEM
or DER format, or any number of base64 encoded sha256 hashes preceded by
\'sha256//\' and separated by \';\'

When negotiating a TLS or SSL connection, the server sends a certificate
indicating its identity. A public key is extracted from this certificate and
if it does not exactly match the public key provided to this option, curl will
abort the connection before sending or receiving any data.

PEM/DER support:
  7.39.0: OpenSSL, GnuTLS and GSKit
  7.43.0: NSS and wolfSSL/CyaSSL
  7.47.0: mbedtls
  7.49.0: PolarSSL
sha256 support:
  7.44.0: OpenSSL, GnuTLS, NSS and wolfSSL/CyaSSL.
  7.47.0: mbedtls
  7.49.0: PolarSSL
Other SSL backends not supported.

If this option is used several times, the last one will be used.
.IP "--post301"
(HTTP) Tells curl to respect RFC 7231/6.4.2 and not convert POST requests into GET
requests when following a 301 redirection. The non-RFC behaviour is ubiquitous
in web browsers, so curl does the conversion by default to maintain
consistency. However, a server may require a POST to remain a POST after such
a redirection. This option is meaningful only when using \fI-L, --location\fP.

See also \fI--post302\fP and \fI--post303\fP and \fI-L, --location\fP. Added in 7.17.1.
.IP "--post302"
(HTTP) Tells curl to respect RFC 7231/6.4.3 and not convert POST requests into GET
requests when following a 302 redirection. The non-RFC behaviour is ubiquitous
in web browsers, so curl does the conversion by default to maintain
consistency. However, a server may require a POST to remain a POST after such
a redirection. This option is meaningful only when using \fI-L, --location\fP.

See also \fI--post301\fP and \fI--post303\fP and \fI-L, --location\fP. Added in 7.19.1.
.IP "--post303"
(HTTP) Tells curl to violate RFC 7231/6.4.4 and not convert POST requests into GET
requests when following 303 redirections. A server may require a POST to
remain a POST after a 303 redirection. This option is meaningful only when
using \fI-L, --location\fP.

See also \fI--post302\fP and \fI--post301\fP and \fI-L, --location\fP. Added in 7.26.0.
.IP "--preproxy [protocol://]host[:port]"
Use the specified SOCKS proxy before connecting to an HTTP or HTTPS \fI-x, --proxy\fP. In
such a case curl first connects to the SOCKS proxy and then connects (through
SOCKS) to the HTTP or HTTPS proxy. Hence pre proxy.

The pre proxy string should be specified with a protocol:// prefix to specify
alternative proxy protocols. Use socks4://, socks4a://, socks5:// or
socks5h:// to request the specific SOCKS version to be used. No protocol
specified will make curl default to SOCKS4.

If the port number is not specified in the proxy string, it is assumed to be
1080.

User and password that might be provided in the proxy string are URL decoded
by curl. This allows you to pass in special characters such as @ by using %40
or pass in a colon with %3a.

If this option is used several times, the last one will be used.

Added in 7.52.0.
.IP "-#, --progress-bar"
Make curl display transfer progress as a simple progress bar instead of the
standard, more informational, meter.

This progress bar draws a single line of '#' characters across the screen and
shows a percentage if the transfer size is known. For transfers without a
known size, there will be space ship (-=o=-) that moves back and forth but
only while data is being transferred, with a set of flying hash sign symbols on
top.
.IP "--proto-default <protocol>"
Tells curl to use \fIprotocol\fP for any URL missing a scheme name.

Example:

 curl --proto-default https ftp.mozilla.org

An unknown or unsupported protocol causes error
\fICURLE_UNSUPPORTED_PROTOCOL\fP (1).

This option does not change the default proxy protocol (http).

Without this option curl would make a guess based on the host, see \fI--url\fP for
details.

Added in 7.45.0.
.IP "--proto-redir <protocols>"
Tells curl to limit what protocols it may use on redirect. Protocols denied by
\fI--proto\fP are not overridden by this option. See --proto for how protocols are
represented.

Example, allow only HTTP and HTTPS on redirect:

 curl --proto-redir -all,http,https http://example.com

By default curl will allow all protocols on redirect except several disabled
for security reasons: Since 7.19.4 FILE and SCP are disabled, and since 7.40.0
SMB and SMBS are also disabled. Specifying \fIall\fP or \fI+all\fP enables all
protocols on redirect, including those disabled for security.

Added in 7.20.2.
.IP "--proto <protocols>"
Tells curl to limit what protocols it may use in the transfer. Protocols are
evaluated left to right, are comma separated, and are each a protocol name or
'all', optionally prefixed by zero or more modifiers. Available modifiers are:
.RS
.TP 3
.B +
Permit this protocol in addition to protocols already permitted (this is
the default if no modifier is used).
.TP
.B -
Deny this protocol, removing it from the list of protocols already permitted.
.TP
.B =
Permit only this protocol (ignoring the list already permitted), though
subject to later modification by subsequent entries in the comma separated
list.
.RE
.IP
For example:
.RS
.TP 15
.B \fI--proto\fP -ftps
uses the default protocols, but disables ftps
.TP
.B  \fI--proto\fP -all,https,+http
only enables http and https
.TP
.B \fI--proto\fP =http,https
also only enables http and https
.RE

Unknown protocols produce a warning. This allows scripts to safely rely on
being able to disable potentially dangerous protocols, without relying upon
support for that protocol being built into curl to avoid an error.

This option can be used multiple times, in which case the effect is the same
as concatenating the protocols into one instance of the option.

See also \fI--proto-redir\fP and \fI--proto-default\fP. Added in 7.20.2.
.IP "--proxy-anyauth"
Tells curl to pick a suitable authentication method when communicating with
the given HTTP proxy. This might cause an extra request/response round-trip.

See also \fI-x, --proxy\fP and \fI--proxy-basic\fP and \fI--proxy-digest\fP. Added in 7.13.2.
.IP "--proxy-basic"
Tells curl to use HTTP Basic authentication when communicating with the given
proxy. Use \fI--basic\fP for enabling HTTP Basic with a remote host. Basic is the
default authentication method curl uses with proxies.

See also \fI-x, --proxy\fP and \fI--proxy-anyauth\fP and \fI--proxy-digest\fP.
.IP "--proxy-cacert <file>"
Same as \fI--cacert\fP but used in HTTPS proxy context.

See also \fI--proxy-capath\fP and \fI--cacert\fP and \fI--capath\fP and \fI-x, --proxy\fP. Added in 7.52.0.
.IP "--proxy-capath <dir>"
Same as \fI--capath\fP but used in HTTPS proxy context.

See also \fI--proxy-cacert\fP and \fI-x, --proxy\fP and \fI--capath\fP. Added in 7.52.0.
.IP "--proxy-cert-type <type>"
Same as \fI--cert-type\fP but used in HTTPS proxy context.

Added in 7.52.0.
.IP "--proxy-cert <cert[:passwd]>"
Same as \fI-E, --cert\fP but used in HTTPS proxy context.

Added in 7.52.0.
.IP "--proxy-ciphers <list>"
Same as \fI--ciphers\fP but used in HTTPS proxy context.

Added in 7.52.0.
.IP "--proxy-crlfile <file>"
Same as \fI--crlfile\fP but used in HTTPS proxy context.

Added in 7.52.0.
.IP "--proxy-digest"
Tells curl to use HTTP Digest authentication when communicating with the given
proxy. Use \fI--digest\fP for enabling HTTP Digest with a remote host.

See also \fI-x, --proxy\fP and \fI--proxy-anyauth\fP and \fI--proxy-basic\fP.
.IP "--proxy-header <header/@file>"
(HTTP) Extra header to include in the request when sending HTTP to a proxy. You may
specify any number of extra headers. This is the equivalent option to \fI-H, --header\fP
but is for proxy communication only like in CONNECT requests when you want a
separate header sent to the proxy to what is sent to the actual remote host.

curl will make sure that each header you add/replace is sent with the proper
end-of-line marker, you should thus \fBnot\fP add that as a part of the header
content: do not add newlines or carriage returns, they will only mess things
up for you.

Headers specified with this option will not be included in requests that curl
knows will not be sent to a proxy.

Starting in 7.55.0, this option can take an argument in @filename style, which
then adds a header for each line in the input file. Using @- will make curl
read the header file from stdin.

This option can be used multiple times to add/replace/remove multiple headers.

Added in 7.37.0.
.IP "--proxy-insecure"
Same as \fI-k, --insecure\fP but used in HTTPS proxy context.

Added in 7.52.0.
.IP "--proxy-key-type <type>"
Same as \fI--key-type\fP but used in HTTPS proxy context.

Added in 7.52.0.
.IP "--proxy-key <key>"
Same as \fI--key\fP but used in HTTPS proxy context.
.IP "--proxy-negotiate"
Tells curl to use HTTP Negotiate (SPNEGO) authentication when communicating
with the given proxy. Use \fI--negotiate\fP for enabling HTTP Negotiate (SPNEGO)
with a remote host.

See also \fI--proxy-anyauth\fP and \fI--proxy-basic\fP. Added in 7.17.1.
.IP "--proxy-ntlm"
Tells curl to use HTTP NTLM authentication when communicating with the given
proxy. Use \fI--ntlm\fP for enabling NTLM with a remote host.

See also \fI--proxy-negotiate\fP and \fI--proxy-anyauth\fP.
.IP "--proxy-pass <phrase>"
Same as \fI--pass\fP but used in HTTPS proxy context.

Added in 7.52.0.
.IP "--proxy-pinnedpubkey <hashes>"
(TLS) Tells curl to use the specified public key file (or hashes) to verify the
proxy. This can be a path to a file which contains a single public key in PEM
or DER format, or any number of base64 encoded sha256 hashes preceded by
\'sha256//\' and separated by \';\'

When negotiating a TLS or SSL connection, the server sends a certificate
indicating its identity. A public key is extracted from this certificate and
if it does not exactly match the public key provided to this option, curl will
abort the connection before sending or receiving any data.

If this option is used several times, the last one will be used.
.IP "--proxy-service-name <name>"
This option allows you to change the service name for proxy negotiation.

Added in 7.43.0.
.IP "--proxy-ssl-allow-beast"
Same as \fI--ssl-allow-beast\fP but used in HTTPS proxy context.

Added in 7.52.0.
.IP "--proxy-tls13-ciphers <ciphersuite list>"
(TLS) Specifies which cipher suites to use in the connection to your HTTPS proxy
when it negotiates TLS 1.3. The list of ciphers suites must specify valid
ciphers. Read up on TLS 1.3 cipher suite details on this URL:

 https://curl.haxx.se/docs/ssl-ciphers.html

If this option is used several times, the last one will be used.
.IP "--proxy-tlsauthtype <type>"
Same as \fI--tlsauthtype\fP but used in HTTPS proxy context.

Added in 7.52.0.
.IP "--proxy-tlspassword <string>"
Same as \fI--tlspassword\fP but used in HTTPS proxy context.

Added in 7.52.0.
.IP "--proxy-tlsuser <name>"
Same as \fI--tlsuser\fP but used in HTTPS proxy context.

Added in 7.52.0.
.IP "--proxy-tlsv1"
Same as \fI-1, --tlsv1\fP but used in HTTPS proxy context.

Added in 7.52.0.
.IP "-U, --proxy-user <user:password>"
Specify the user name and password to use for proxy authentication.

If you use a Windows SSPI-enabled curl binary and do either Negotiate or NTLM
authentication then you can tell curl to select the user name and password
from your environment by specifying a single colon with this option: "-U :".

If this option is used several times, the last one will be used.
.IP "-x, --proxy [protocol://]host[:port]"
Use the specified proxy.

The proxy string can be specified with a protocol:// prefix. No protocol
specified or http:// will be treated as HTTP proxy. Use socks4://, socks4a://,
socks5:// or socks5h:// to request a specific SOCKS version to be used.
(The protocol support was added in curl 7.21.7)

HTTPS proxy support via https:// protocol prefix was added in 7.52.0 for
OpenSSL, GnuTLS and NSS.

Unrecognized and unsupported proxy protocols cause an error since 7.52.0.
Prior versions may ignore the protocol and use http:// instead.

If the port number is not specified in the proxy string, it is assumed to be
1080.

This option overrides existing environment variables that set the proxy to
use. If there's an environment variable setting a proxy, you can set proxy to
\&"" to override it.

All operations that are performed over an HTTP proxy will transparently be
converted to HTTP. It means that certain protocol specific operations might
not be available. This is not the case if you can tunnel through the proxy, as
one with the \fI-p, --proxytunnel\fP option.

User and password that might be provided in the proxy string are URL decoded
by curl. This allows you to pass in special characters such as @ by using %40
or pass in a colon with %3a.

The proxy host can be specified the exact same way as the proxy environment
variables, including the protocol prefix (http://) and the embedded user +
password.

If this option is used several times, the last one will be used.
.IP "--proxy1.0 <host[:port]>"
Use the specified HTTP 1.0 proxy. If the port number is not specified, it is
assumed at port 1080.

The only difference between this and the HTTP proxy option \fI-x, --proxy\fP, is that
attempts to use CONNECT through the proxy will specify an HTTP 1.0 protocol
instead of the default HTTP 1.1.
.IP "-p, --proxytunnel"
When an HTTP proxy is used \fI-x, --proxy\fP, this option will cause non-HTTP protocols
to attempt to tunnel through the proxy instead of merely using it to do
HTTP-like operations. The tunnel approach is made with the HTTP proxy CONNECT
request and requires that the proxy allows direct connect to the remote port
number curl wants to tunnel through to.

To suppress proxy CONNECT response headers when curl is set to output headers
use \fI--suppress-connect-headers\fP.

See also \fI-x, --proxy\fP.
.IP "--pubkey <key>"
(SFTP SCP) Public key file name. Allows you to provide your public key in this separate
file.

If this option is used several times, the last one will be used.

(As of 7.39.0, curl attempts to automatically extract the public key from the
private key file, so passing this option is generally not required. Note that
this public key extraction requires libcurl to be linked against a copy of
libssh2 1.2.8 or higher that is itself linked against OpenSSL.)
.IP "-Q, --quote"
(FTP SFTP) 
Send an arbitrary command to the remote FTP or SFTP server. Quote commands are
sent BEFORE the transfer takes place (just after the initial PWD command in an
FTP transfer, to be exact). To make commands take place after a successful
transfer, prefix them with a dash '-'.  To make commands be sent after curl
has changed the working directory, just before the transfer command(s), prefix
the command with a '+' (this is only supported for FTP). You may specify any
number of commands.

If the server returns failure for one of the commands, the entire operation
will be aborted. You must send syntactically correct FTP commands as RFC 959
defines to FTP servers, or one of the commands listed below to SFTP servers.

This option can be used multiple times. When speaking to an FTP server, prefix
the command with an asterisk (*) to make curl continue even if the command
fails as by default curl will stop at first failure.

SFTP is a binary protocol. Unlike for FTP, curl interprets SFTP quote commands
itself before sending them to the server.  File names may be quoted
shell-style to embed spaces or special characters.  Following is the list of
all supported SFTP quote commands:
.RS
.IP "chgrp group file"
The chgrp command sets the group ID of the file named by the file operand to
the group ID specified by the group operand. The group operand is a decimal
integer group ID.
.IP "chmod mode file"
The chmod command modifies the file mode bits of the specified file. The
mode operand is an octal integer mode number.
.IP "chown user file"
The chown command sets the owner of the file named by the file operand to the
user ID specified by the user operand. The user operand is a decimal
integer user ID.
.IP "ln source_file target_file"
The ln and symlink commands create a symbolic link at the target_file location
pointing to the source_file location.
.IP "mkdir directory_name"
The mkdir command creates the directory named by the directory_name operand.
.IP "pwd"
The pwd command returns the absolute pathname of the current working directory.
.IP "rename source target"
The rename command renames the file or directory named by the source
operand to the destination path named by the target operand.
.IP "rm file"
The rm command removes the file specified by the file operand.
.IP "rmdir directory"
The rmdir command removes the directory entry specified by the directory
operand, provided it is empty.
.IP "symlink source_file target_file"
See ln.
.RE
.IP "--random-file <file>"
Specify the path name to file containing what will be considered as random
data. The data may be used to seed the random engine for SSL connections.  See
also the \fI--egd-file\fP option.
.IP "-r, --range <range>"
(HTTP FTP SFTP FILE) Retrieve a byte range (i.e. a partial document) from an HTTP/1.1, FTP or SFTP
server or a local FILE. Ranges can be specified in a number of ways.
.RS
.TP 10
.B 0-499
specifies the first 500 bytes
.TP
.B 500-999
specifies the second 500 bytes
.TP
.B -500
specifies the last 500 bytes
.TP
.B 9500-
specifies the bytes from offset 9500 and forward
.TP
.B 0-0,-1
specifies the first and last byte only(*)(HTTP)
.TP
.B 100-199,500-599
specifies two separate 100-byte ranges(*) (HTTP)
.RE
.IP
(*) = NOTE that this will cause the server to reply with a multipart
response!

Only digit characters (0-9) are valid in the 'start' and 'stop' fields of the
\&'start-stop' range syntax. If a non-digit character is given in the range,
the server's response will be unspecified, depending on the server's
configuration.

You should also be aware that many HTTP/1.1 servers do not have this feature
enabled, so that when you attempt to get a range, you'll instead get the whole
document.

FTP and SFTP range downloads only support the simple 'start-stop' syntax
(optionally with one of the numbers omitted). FTP use depends on the extended
FTP command SIZE.

If this option is used several times, the last one will be used.
.IP "--raw"
(HTTP) When used, it disables all internal HTTP decoding of content or transfer
encodings and instead makes them passed on unaltered, raw.

Added in 7.16.2.
.IP "-e, --referer <URL>"
(HTTP) Sends the "Referrer Page" information to the HTTP server. This can also be set
with the \fI-H, --header\fP flag of course.  When used with \fI-L, --location\fP you can append
";auto" to the \fI-e, --referer\fP URL to make curl automatically set the previous URL
when it follows a Location: header. The \&";auto" string can be used alone,
even if you don't set an initial \fI-e, --referer\fP.

If this option is used several times, the last one will be used.

See also \fI-A, --user-agent\fP and \fI-H, --header\fP.
.IP "-J, --remote-header-name"
(HTTP) This option tells the \fI-O, --remote-name\fP option to use the server-specified
Content-Disposition filename instead of extracting a filename from the URL.

If the server specifies a file name and a file with that name already exists
in the current working directory it will not be overwritten and an error will
occur. If the server doesn't specify a file name then this option has no
effect.

There's no attempt to decode %-sequences (yet) in the provided file name, so
this option may provide you with rather unexpected file names.

\fBWARNING\fP: Exercise judicious use of this option, especially on Windows. A
rogue server could send you the name of a DLL or other file that could possibly
be loaded automatically by Windows or some third party software.
.IP "--remote-name-all"
This option changes the default action for all given URLs to be dealt with as
if \fI-O, --remote-name\fP were used for each one. So if you want to disable that for a
specific URL after \fI--remote-name-all\fP has been used, you must use "-o -" or
--no-remote-name.

Added in 7.19.0.
.IP "-O, --remote-name"
Write output to a local file named like the remote file we get. (Only the file
part of the remote file is used, the path is cut off.)

The file will be saved in the current working directory. If you want the file
saved in a different directory, make sure you change the current working
directory before invoking curl with this option.

The remote file name to use for saving is extracted from the given URL,
nothing else, and if it already exists it will be overwritten. If you want the
server to be able to choose the file name refer to \fI-J, --remote-header-name\fP which
can be used in addition to this option. If the server chooses a file name and
that name already exists it will not be overwritten.

There is no URL decoding done on the file name. If it has %20 or other URL
encoded parts of the name, they will end up as-is as file name.

You may use this option as many times as the number of URLs you have.
.IP "-R, --remote-time"
When used, this will make curl attempt to figure out the timestamp of the
remote file, and if that is available make the local file get that same
timestamp.
.IP "--request-target"
(HTTP) Tells curl to use an alternative "target" (path) instead of using the path as
provided in the URL. Particularly useful when wanting to issue HTTP requests
without leading slash or other data that doesn't follow the regular URL
pattern, like "OPTIONS *".

Added in 7.55.0.
.IP "-X, --request <command>"
(HTTP) Specifies a custom request method to use when communicating with the
HTTP server.  The specified request method will be used instead of the method
otherwise used (which defaults to GET). Read the HTTP 1.1 specification for
details and explanations. Common additional HTTP requests include PUT and
DELETE, but related technologies like WebDAV offers PROPFIND, COPY, MOVE and
more.

Normally you don't need this option. All sorts of GET, HEAD, POST and PUT
requests are rather invoked by using dedicated command line options.

This option only changes the actual word used in the HTTP request, it does not
alter the way curl behaves. So for example if you want to make a proper HEAD
request, using -X HEAD will not suffice. You need to use the \fI-I, --head\fP option.

The method string you set with \fI-X, --request\fP will be used for all requests, which
if you for example use \fI-L, --location\fP may cause unintended side-effects when curl
doesn't change request method according to the HTTP 30x response codes - and
similar.

(FTP)
Specifies a custom FTP command to use instead of LIST when doing file lists
with FTP.

(POP3)
Specifies a custom POP3 command to use instead of LIST or RETR. (Added in
7.26.0)

(IMAP)
Specifies a custom IMAP command to use instead of LIST. (Added in 7.30.0)

(SMTP)
Specifies a custom SMTP command to use instead of HELP or VRFY. (Added in 7.34.0)

If this option is used several times, the last one will be used.
.IP "--resolve <host:port:address[,address]...>"
Provide a custom address for a specific host and port pair. Using this, you
can make the curl requests(s) use a specified address and prevent the
otherwise normally resolved address to be used. Consider it a sort of
/etc/hosts alternative provided on the command line. The port number should be
the number used for the specific protocol the host will be used for. It means
you need several entries if you want to provide address for the same host but
different ports.

By specifying '*' as host you can tell curl to resolve any host and specific
port pair to the specified address. Wildcard is resolved last so any \fI--resolve\fP
with a specific host and port will be used first.

The provided address set by this option will be used even if \fI-4, --ipv4\fP or \fI-6, --ipv6\fP
is set to make curl use another IP version.

Support for providing the IP address within [brackets] was added in 7.57.0.

Support for providing multiple IP addresses per entry was added in 7.59.0.

Support for resolving with wildcard was added in 7.64.0.

This option can be used many times to add many host names to resolve.

Added in 7.21.3.
.IP "--retry-connrefused"
In addition to the other conditions, consider ECONNREFUSED as a transient
error too for \fI--retry\fP. This option is used together with --retry.

Added in 7.52.0.
.IP "--retry-delay <seconds>"
Make curl sleep this amount of time before each retry when a transfer has
failed with a transient error (it changes the default backoff time algorithm
between retries). This option is only interesting if \fI--retry\fP is also
used. Setting this delay to zero will make curl use the default backoff time.

If this option is used several times, the last one will be used.

Added in 7.12.3.
.IP "--retry-max-time <seconds>"
The retry timer is reset before the first transfer attempt. Retries will be
done as usual (see \fI--retry\fP) as long as the timer hasn't reached this given
limit. Notice that if the timer hasn't reached the limit, the request will be
made and while performing, it may take longer than this given time period. To
limit a single request\'s maximum time, use \fI-m, --max-time\fP.  Set this option to
zero to not timeout retries.

If this option is used several times, the last one will be used.

Added in 7.12.3.
.IP "--retry <num>"
If a transient error is returned when curl tries to perform a transfer, it
will retry this number of times before giving up. Setting the number to 0
makes curl do no retries (which is the default). Transient error means either:
a timeout, an FTP 4xx response code or an HTTP 408 or 5xx response code.

When curl is about to retry a transfer, it will first wait one second and then
for all forthcoming retries it will double the waiting time until it reaches
10 minutes which then will be the delay between the rest of the retries.  By
using \fI--retry-delay\fP you disable this exponential backoff algorithm. See also
\fI--retry-max-time\fP to limit the total time allowed for retries.

If this option is used several times, the last one will be used.

Added in 7.12.3.
.IP "--sasl-ir"
Enable initial response in SASL authentication.

Added in 7.31.0.
.IP "--service-name <name>"
This option allows you to change the service name for SPNEGO.

Examples: \fI--negotiate\fP \fI--service-name\fP sockd would use sockd/server-name.

Added in 7.43.0.
.IP "-S, --show-error"
When used with \fI-s, --silent\fP, it makes curl show an error message if it fails.
.IP "-s, --silent"
Silent or quiet mode. Don't show progress meter or error messages.  Makes Curl
mute. It will still output the data you ask for, potentially even to the
terminal/stdout unless you redirect it.

Use \fI-S, --show-error\fP in addition to this option to disable progress meter but
still show error messages.

See also \fI-v, --verbose\fP and \fI--stderr\fP.
.IP "--socks4 <host[:port]>"
Use the specified SOCKS4 proxy. If the port number is not specified, it is
assumed at port 1080.

This option overrides any previous use of \fI-x, --proxy\fP, as they are mutually
exclusive.

Since 7.21.7, this option is superfluous since you can specify a socks4 proxy
with \fI-x, --proxy\fP using a socks4:// protocol prefix.

Since 7.52.0, \fI--preproxy\fP can be used to specify a SOCKS proxy at the same time
\fI-x, --proxy\fP is used with an HTTP/HTTPS proxy. In such a case curl first connects to
the SOCKS proxy and then connects (through SOCKS) to the HTTP or HTTPS proxy.

If this option is used several times, the last one will be used.

Added in 7.15.2.
.IP "--socks4a <host[:port]>"
Use the specified SOCKS4a proxy. If the port number is not specified, it is
assumed at port 1080.

This option overrides any previous use of \fI-x, --proxy\fP, as they are mutually
exclusive.

Since 7.21.7, this option is superfluous since you can specify a socks4a proxy
with \fI-x, --proxy\fP using a socks4a:// protocol prefix.

Since 7.52.0, \fI--preproxy\fP can be used to specify a SOCKS proxy at the same time
\fI-x, --proxy\fP is used with an HTTP/HTTPS proxy. In such a case curl first connects to
the SOCKS proxy and then connects (through SOCKS) to the HTTP or HTTPS proxy.

If this option is used several times, the last one will be used.

Added in 7.18.0.
.IP "--socks5-basic"
Tells curl to use username/password authentication when connecting to a SOCKS5
proxy.  The username/password authentication is enabled by default.  Use
\fI--socks5-gssapi\fP to force GSS-API authentication to SOCKS5 proxies.

Added in 7.55.0.
.IP "--socks5-gssapi-nec"
As part of the GSS-API negotiation a protection mode is negotiated. RFC 1961
says in section 4.3/4.4 it should be protected, but the NEC reference
implementation does not.  The option \fI--socks5-gssapi-nec\fP allows the
unprotected exchange of the protection mode negotiation.

Added in 7.19.4.
.IP "--socks5-gssapi-service <name>"
The default service name for a socks server is rcmd/server-fqdn. This option
allows you to change it.

Examples: \fI--socks5\fP proxy-name \fI--socks5-gssapi-service\fP sockd would use
sockd/proxy-name \fI--socks5\fP proxy-name \fI--socks5-gssapi-service\fP sockd/real-name
would use sockd/real-name for cases where the proxy-name does not match the
principal name.

Added in 7.19.4.
.IP "--socks5-gssapi"
Tells curl to use GSS-API authentication when connecting to a SOCKS5 proxy.
The GSS-API authentication is enabled by default (if curl is compiled with
GSS-API support).  Use \fI--socks5-basic\fP to force username/password authentication
to SOCKS5 proxies.

Added in 7.55.0.
.IP "--socks5-hostname <host[:port]>"
Use the specified SOCKS5 proxy (and let the proxy resolve the host name). If
the port number is not specified, it is assumed at port 1080.

This option overrides any previous use of \fI-x, --proxy\fP, as they are mutually
exclusive.

Since 7.21.7, this option is superfluous since you can specify a socks5
hostname proxy with \fI-x, --proxy\fP using a socks5h:// protocol prefix.

Since 7.52.0, \fI--preproxy\fP can be used to specify a SOCKS proxy at the same time
\fI-x, --proxy\fP is used with an HTTP/HTTPS proxy. In such a case curl first connects to
the SOCKS proxy and then connects (through SOCKS) to the HTTP or HTTPS proxy.

If this option is used several times, the last one will be used.

Added in 7.18.0.
.IP "--socks5 <host[:port]>"
Use the specified SOCKS5 proxy - but resolve the host name locally. If the
port number is not specified, it is assumed at port 1080.

This option overrides any previous use of \fI-x, --proxy\fP, as they are mutually
exclusive.

Since 7.21.7, this option is superfluous since you can specify a socks5 proxy
with \fI-x, --proxy\fP using a socks5:// protocol prefix.

Since 7.52.0, \fI--preproxy\fP can be used to specify a SOCKS proxy at the same time
\fI-x, --proxy\fP is used with an HTTP/HTTPS proxy. In such a case curl first connects to
the SOCKS proxy and then connects (through SOCKS) to the HTTP or HTTPS proxy.

If this option is used several times, the last one will be used.

This option (as well as \fI--socks4\fP) does not work with IPV6, FTPS or LDAP.

Added in 7.18.0.
.IP "-Y, --speed-limit <speed>"
If a download is slower than this given speed (in bytes per second) for
speed-time seconds it gets aborted. speed-time is set with \fI-y, --speed-time\fP and is
30 if not set.

If this option is used several times, the last one will be used.
.IP "-y, --speed-time <seconds>"
If a download is slower than speed-limit bytes per second during a speed-time
period, the download gets aborted. If speed-time is used, the default
speed-limit will be 1 unless set with \fI-Y, --speed-limit\fP.

This option controls transfers and thus will not affect slow connects etc. If
this is a concern for you, try the \fI--connect-timeout\fP option.

If this option is used several times, the last one will be used.
.IP "--ssl-allow-beast"
This option tells curl to not work around a security flaw in the SSL3 and
TLS1.0 protocols known as BEAST.  If this option isn't used, the SSL layer may
use workarounds known to cause interoperability problems with some older SSL
implementations. WARNING: this option loosens the SSL security, and by using
this flag you ask for exactly that.

Added in 7.25.0.
.IP "--ssl-no-revoke"
(Schannel) This option tells curl to disable certificate revocation checks.
WARNING: this option loosens the SSL security, and by using this flag you ask
for exactly that.

Added in 7.44.0.
.IP "--ssl-reqd"
(FTP IMAP POP3 SMTP) Require SSL/TLS for the connection.  Terminates the connection if the server
doesn't support SSL/TLS.

This option was formerly known as --ftp-ssl-reqd.

Added in 7.20.0.
.IP "--ssl"
(FTP IMAP POP3 SMTP) 
Try to use SSL/TLS for the connection.  Reverts to a non-secure connection if
the server doesn't support SSL/TLS.  See also \fI--ftp-ssl-control\fP and \fI--ssl-reqd\fP
for different levels of encryption required.

This option was formerly known as --ftp-ssl (Added in 7.11.0). That option
name can still be used but will be removed in a future version.

Added in 7.20.0.
.IP "-2, --sslv2"
(SSL) Forces curl to use SSL version 2 when negotiating with a remote SSL
server. Sometimes curl is built without SSLv2 support. SSLv2 is widely
considered insecure (see RFC 6176).

See also \fI--http1.1\fP and \fI--http2\fP. \fI-2, --sslv2\fP requires that the underlying libcurl was built to support TLS. This option overrides \fI-3, --sslv3\fP and \fI-1, --tlsv1\fP and \fI--tlsv1.1\fP and \fI--tlsv1.2\fP.
.IP "-3, --sslv3"
(SSL) Forces curl to use SSL version 3 when negotiating with a remote SSL
server. Sometimes curl is built without SSLv3 support. SSLv3 is widely
considered insecure (see RFC 7568).

See also \fI--http1.1\fP and \fI--http2\fP. \fI-3, --sslv3\fP requires that the underlying libcurl was built to support TLS. This option overrides \fI-2, --sslv2\fP and \fI-1, --tlsv1\fP and \fI--tlsv1.1\fP and \fI--tlsv1.2\fP.
.IP "--stderr"
Redirect all writes to stderr to the specified file instead. If the file name
is a plain '-', it is instead written to stdout.

If this option is used several times, the last one will be used.

See also \fI-v, --verbose\fP and \fI-s, --silent\fP.
.IP "--styled-output"
Enables the automatic use of bold font styles when writing HTTP headers to the
terminal. Use --no-styled-output to switch them off.

Added in 7.61.0.
.IP "--suppress-connect-headers"
When \fI-p, --proxytunnel\fP is used and a CONNECT request is made don't output proxy
CONNECT response headers. This option is meant to be used with \fI-D, --dump-header\fP or
\fI-i, --include\fP which are used to show protocol headers in the output. It has no
effect on debug options such as \fI-v, --verbose\fP or \fI--trace\fP, or any statistics.

See also \fI-D, --dump-header\fP and \fI-i, --include\fP and \fI-p, --proxytunnel\fP.
.IP "--tcp-fastopen"
Enable use of TCP Fast Open (RFC7413).

Added in 7.49.0.
.IP "--tcp-nodelay"
Turn on the TCP_NODELAY option. See the \fIcurl_easy_setopt(3)\fP man page for
details about this option.

Since 7.50.2, curl sets this option by default and you need to explicitly
switch it off if you don't want it on.

Added in 7.11.2.
.IP "-t, --telnet-option <opt=val>"
Pass options to the telnet protocol. Supported options are:

TTYPE=<term> Sets the terminal type.

XDISPLOC=<X display> Sets the X display location.

NEW_ENV=<var,val> Sets an environment variable.
.IP "--tftp-blksize <value>"
(TFTP) Set TFTP BLKSIZE option (must be >512). This is the block size that curl will
try to use when transferring data to or from a TFTP server. By default 512
bytes will be used.

If this option is used several times, the last one will be used.

Added in 7.20.0.
.IP "--tftp-no-options"
(TFTP) Tells curl not to send TFTP options requests.

This option improves interop with some legacy servers that do not acknowledge
or properly implement TFTP options. When this option is used \fI--tftp-blksize\fP is
ignored.

Added in 7.48.0.
.IP "-z, --time-cond <time>"
(HTTP FTP) Request a file that has been modified later than the given time and date, or
one that has been modified before that time. The <date expression> can be all
sorts of date strings or if it doesn't match any internal ones, it is taken as
a filename and tries to get the modification date (mtime) from <file>
instead. See the \fIcurl_getdate(3)\fP man pages for date expression details.

Start the date expression with a dash (-) to make it request for a document
that is older than the given date/time, default is a document that is newer
than the specified date/time.

If this option is used several times, the last one will be used.
.IP "--tls-max <VERSION>"
(SSL) VERSION defines maximum supported TLS version. The minimum acceptable version
is set by tlsv1.0, tlsv1.1, tlsv1.2 or tlsv1.3.

.RS
.IP "default"
Use up to recommended TLS version.
.IP "1.0"
Use up to TLSv1.0.
.IP "1.1"
Use up to TLSv1.1.
.IP "1.2"
Use up to TLSv1.2.
.IP "1.3"
Use up to TLSv1.3.
.RE

See also \fI--tlsv1.0\fP and \fI--tlsv1.1\fP and \fI--tlsv1.2\fP and \fI--tlsv1.3\fP. \fI--tls-max\fP requires that the underlying libcurl was built to support TLS. Added in 7.54.0.
.IP "--tls13-ciphers <list of TLS 1.3 ciphersuites>"
(TLS) Specifies which cipher suites to use in the connection if it negotiates TLS
1.3. The list of ciphers suites must specify valid ciphers. Read up on TLS 1.3
cipher suite details on this URL:

 https://curl.haxx.se/docs/ssl-ciphers.html

If this option is used several times, the last one will be used.
.IP "--tlsauthtype <type>"
Set TLS authentication type. Currently, the only supported option is "SRP",
for TLS-SRP (RFC 5054). If \fI--tlsuser\fP and \fI--tlspassword\fP are specified but
\fI--tlsauthtype\fP is not, then this option defaults to "SRP".  This option works
only if the underlying libcurl is built with TLS-SRP support, which requires
OpenSSL or GnuTLS with TLS-SRP support.

Added in 7.21.4.
.IP "--tlspassword"
Set password for use with the TLS authentication method specified with
\fI--tlsauthtype\fP. Requires that \fI--tlsuser\fP also be set.

Added in 7.21.4.
.IP "--tlsuser <name>"
Set username for use with the TLS authentication method specified with
\fI--tlsauthtype\fP. Requires that \fI--tlspassword\fP also is set.

Added in 7.21.4.
.IP "--tlsv1.0"
(TLS) Forces curl to use TLS version 1.0 or later when connecting to a remote TLS server.

Added in 7.34.0.
.IP "--tlsv1.1"
(TLS) Forces curl to use TLS version 1.1 or later when connecting to a remote TLS server.

Added in 7.34.0.
.IP "--tlsv1.2"
(TLS) Forces curl to use TLS version 1.2 or later when connecting to a remote TLS server.

Added in 7.34.0.
.IP "--tlsv1.3"
(TLS) Forces curl to use TLS version 1.3 or later when connecting to a remote TLS server.

Note that TLS 1.3 is only supported by a subset of TLS backends. At the time
of this writing, they are BoringSSL, NSS, and Secure Transport (on iOS 11 or
later, and macOS 10.13 or later).

Added in 7.52.0.
.IP "-1, --tlsv1"
(SSL) Tells curl to use at least TLS version 1.x when negotiating with a remote TLS
server. That means TLS version 1.0 or higher

See also \fI--http1.1\fP and \fI--http2\fP. \fI-1, --tlsv1\fP requires that the underlying libcurl was built to support TLS. This option overrides \fI--tlsv1.1\fP and \fI--tlsv1.2\fP and \fI--tlsv1.3\fP.
.IP "--tr-encoding"
(HTTP) Request a compressed Transfer-Encoding response using one of the algorithms
curl supports, and uncompress the data while receiving it.

Added in 7.21.6.
.IP "--trace-ascii <file>"
Enables a full trace dump of all incoming and outgoing data, including
descriptive information, to the given output file. Use "-" as filename to have
the output sent to stdout.

This is very similar to \fI--trace\fP, but leaves out the hex part and only shows
the ASCII part of the dump. It makes smaller output that might be easier to
read for untrained humans.

If this option is used several times, the last one will be used.

This option overrides \fI--trace\fP and \fI-v, --verbose\fP.
.IP "--trace-time"
Prepends a time stamp to each trace or verbose line that curl displays.

Added in 7.14.0.
.IP "--trace <file>"
Enables a full trace dump of all incoming and outgoing data, including
descriptive information, to the given output file. Use "-" as filename to have
the output sent to stdout. Use "%" as filename to have the output sent to
stderr.

If this option is used several times, the last one will be used.

This option overrides \fI-v, --verbose\fP and \fI--trace-ascii\fP.
.IP "--unix-socket <path>"
(HTTP) Connect through this Unix domain socket, instead of using the network.

Added in 7.40.0.
.IP "-T, --upload-file <file>"
This transfers the specified local file to the remote URL. If there is no file
part in the specified URL, curl will append the local file name. NOTE that you
must use a trailing / on the last directory to really prove to Curl that there
is no file name or curl will think that your last directory name is the remote
file name to use. That will most likely cause the upload operation to fail. If
this is used on an HTTP(S) server, the PUT command will be used.

Use the file name "-" (a single dash) to use stdin instead of a given file.
Alternately, the file name "." (a single period) may be specified instead
of "-" to use stdin in non-blocking mode to allow reading server output
while stdin is being uploaded.

You can specify one \fI-T, --upload-file\fP for each URL on the command line. Each
\fI-T, --upload-file\fP + URL pair specifies what to upload and to where. curl also
supports "globbing" of the \fI-T, --upload-file\fP argument, meaning that you can upload
multiple files to a single URL by using the same URL globbing style supported
in the URL, like this:

 curl --upload-file "{file1,file2}" http://www.example.com

or even

 curl -T "img[1-1000].png" ftp://ftp.example.com/upload/

When uploading to an SMTP server: the uploaded data is assumed to be RFC 5322
formatted. It has to feature the necessary set of headers and mail body
formatted correctly by the user as curl will not transcode nor encode it
further in any way.
.IP "--url <url>"
Specify a URL to fetch. This option is mostly handy when you want to specify
URL(s) in a config file.

If the given URL is missing a scheme name (such as "http://" or "ftp://" etc)
then curl will make a guess based on the host. If the outermost sub-domain
name matches DICT, FTP, IMAP, LDAP, POP3 or SMTP then that protocol will be
used, otherwise HTTP will be used. Since 7.45.0 guessing can be disabled by
setting a default protocol, see \fI--proto-default\fP for details.

This option may be used any number of times. To control where this URL is
written, use the \fI-o, --output\fP or the \fI-O, --remote-name\fP options.
.IP "-B, --use-ascii"
(FTP LDAP) Enable ASCII transfer. For FTP, this can also be enforced by using a URL that
ends with ";type=A". This option causes data sent to stdout to be in text mode
for win32 systems.
.IP "-A, --user-agent <name>"
(HTTP) 
Specify the User-Agent string to send to the HTTP server. To encode blanks in
the string, surround the string with single quote marks. This header can also
be set with the \fI-H, --header\fP or the \fI--proxy-header\fP options.

If this option is used several times, the last one will be used.
.IP "-u, --user <user:password>"
Specify the user name and password to use for server authentication. Overrides
\fI-n, --netrc\fP and \fI--netrc-optional\fP.

If you simply specify the user name, curl will prompt for a password.

The user name and passwords are split up on the first colon, which makes it
impossible to use a colon in the user name with this option. The password can,
still.

When using Kerberos V5 with a Windows based server you should include the
Windows domain name in the user name, in order for the server to successfully
obtain a Kerberos Ticket. If you don't then the initial authentication
handshake may fail.

When using NTLM, the user name can be specified simply as the user name,
without the domain, if there is a single domain and forest in your setup
for example.

To specify the domain name use either Down-Level Logon Name or UPN (User
Principal Name) formats. For example, EXAMPLE\\user and user@example.com
respectively.

If you use a Windows SSPI-enabled curl binary and perform Kerberos V5,
Negotiate, NTLM or Digest authentication then you can tell curl to select
the user name and password from your environment by specifying a single colon
with this option: "-u :".

If this option is used several times, the last one will be used.
.IP "-v, --verbose"
Makes curl verbose during the operation. Useful for debugging and seeing
what's going on "under the hood". A line starting with '>' means "header data"
sent by curl, '<' means "header data" received by curl that is hidden in
normal cases, and a line starting with '*' means additional info provided by
curl.

If you only want HTTP headers in the output, \fI-i, --include\fP might be the option
you're looking for.

If you think this option still doesn't give you enough details, consider using
\fI--trace\fP or \fI--trace-ascii\fP instead.

Use \fI-s, --silent\fP to make curl really quiet.

See also \fI-i, --include\fP. This option overrides \fI--trace\fP and \fI--trace-ascii\fP.
.IP "-V, --version"
Displays information about curl and the libcurl version it uses.

The first line includes the full version of curl, libcurl and other 3rd party
libraries linked with the executable.

The second line (starts with "Protocols:") shows all protocols that libcurl
reports to support.

The third line (starts with "Features:") shows specific features libcurl
reports to offer. Available features include:
.RS
.IP "IPv6"
You can use IPv6 with this.
.IP "krb4"
Krb4 for FTP is supported.
.IP "SSL"
SSL versions of various protocols are supported, such as HTTPS, FTPS, POP3S
and so on.
.IP "libz"
Automatic decompression of compressed files over HTTP is supported.
.IP "NTLM"
NTLM authentication is supported.
.IP "Debug"
This curl uses a libcurl built with Debug. This enables more error-tracking
and memory debugging etc. For curl-developers only!
.IP "AsynchDNS"
This curl uses asynchronous name resolves. Asynchronous name resolves can be
done using either the c-ares or the threaded resolver backends.
.IP "SPNEGO"
SPNEGO authentication is supported.
.IP "Largefile"
This curl supports transfers of large files, files larger than 2GB.
.IP "IDN"
This curl supports IDN - international domain names.
.IP "GSS-API"
GSS-API is supported.
.IP "SSPI"
SSPI is supported.
.IP "TLS-SRP"
SRP (Secure Remote Password) authentication is supported for TLS.
.IP "HTTP2"
HTTP/2 support has been built-in.
.IP "UnixSockets"
Unix sockets support is provided.
.IP "HTTPS-proxy"
This curl is built to support HTTPS proxy.
.IP "Metalink"
This curl supports Metalink (both version 3 and 4 (RFC 5854)), which
describes mirrors and hashes.  curl will use mirrors for failover if
there are errors (such as the file or server not being available).
.IP "PSL"
PSL is short for Public Suffix List and means that this curl has been built
with knowledge about "public suffixes".
.IP "MultiSSL"
This curl supports multiple TLS backends.
.RE
.IP "-w, --write-out <format>"
Make curl display information on stdout after a completed transfer. The format
is a string that may contain plain text mixed with any number of
variables. The format can be specified as a literal "string", or you can have
curl read the format from a file with "@filename" and to tell curl to read the
format from stdin you write "@-".

The variables present in the output format will be substituted by the value or
text that curl thinks fit, as described below. All variables are specified as
%{variable_name} and to output a normal % you just write them as %%. You can
output a newline by using \\n, a carriage return with \\r and a tab space with
\\t.

The output will be written to standard output, but this can be switched to
standard error by using %{stderr}.

.B NOTE:
The %-symbol is a special symbol in the win32-environment, where all
occurrences of % must be doubled when using this option.

The variables available are:
.RS
.TP 15
.B content_type
The Content-Type of the requested document, if there was any.
.TP
.B filename_effective
The ultimate filename that curl writes out to. This is only meaningful if curl
is told to write to a file with the \fI-O, --remote-name\fP or \fI-o, --output\fP
option. It's most useful in combination with the \fI-J, --remote-header-name\fP
option. (Added in 7.26.0)
.TP
.B ftp_entry_path
The initial path curl ended up in when logging on to the remote FTP
server. (Added in 7.15.4)
.TP
.B http_code
The numerical response code that was found in the last retrieved HTTP(S) or
FTP(s) transfer. In 7.18.2 the alias \fBresponse_code\fP was added to show the
same info.
.TP
.B http_connect
The numerical code that was found in the last response (from a proxy) to a
curl CONNECT request. (Added in 7.12.4)
.TP
.B http_version
The http version that was effectively used. (Added in 7.50.0)
.TP
.B local_ip
The IP address of the local end of the most recently done connection - can be
either IPv4 or IPv6 (Added in 7.29.0)
.TP
.B local_port
The local port number of the most recently done connection (Added in 7.29.0)
.TP
.B num_connects
Number of new connects made in the recent transfer. (Added in 7.12.3)
.TP
.B num_redirects
Number of redirects that were followed in the request. (Added in 7.12.3)
.TP
.B proxy_ssl_verify_result
The result of the HTTPS proxy's SSL peer certificate verification that was
requested. 0 means the verification was successful. (Added in 7.52.0)
.TP
.B redirect_url
When an HTTP request was made without \fI-L, --location\fP to follow redirects (or when
--max-redir is met), this variable will show the actual URL a redirect
\fIwould\fP have gone to. (Added in 7.18.2)
.TP
.B remote_ip
The remote IP address of the most recently done connection - can be either
IPv4 or IPv6 (Added in 7.29.0)
.TP
.B remote_port
The remote port number of the most recently done connection (Added in 7.29.0)
.TP
.B scheme
The URL scheme (sometimes called protocol) that was effectively used (Added in 7.52.0)
.TP
.B size_download
The total amount of bytes that were downloaded.
.TP
.B size_header
The total amount of bytes of the downloaded headers.
.TP
.B size_request
The total amount of bytes that were sent in the HTTP request.
.TP
.B size_upload
The total amount of bytes that were uploaded.
.TP
.B speed_download
The average download speed that curl measured for the complete download. Bytes
per second.
.TP
.B speed_upload
The average upload speed that curl measured for the complete upload. Bytes per
second.
.TP
.B ssl_verify_result
The result of the SSL peer certificate verification that was requested. 0
means the verification was successful. (Added in 7.19.0)
.TP
.B stderr
From this point on, the \fI-w, --write-out\fP output will be written to standard
error. (Added in 7.63.0)
.TP
.B stdout
From this point on, the \fI-w, --write-out\fP output will be written to standard output.
This is the default, but can be used to switch back after switching to stderr.
(Added in 7.63.0)
.TP
.B time_appconnect
The time, in seconds, it took from the start until the SSL/SSH/etc
connect/handshake to the remote host was completed. (Added in 7.19.0)
.TP
.B time_connect
The time, in seconds, it took from the start until the TCP connect to the
remote host (or proxy) was completed.
.TP
.B time_namelookup
The time, in seconds, it took from the start until the name resolving was
completed.
.TP
.B time_pretransfer
The time, in seconds, it took from the start until the file transfer was just
about to begin. This includes all pre-transfer commands and negotiations that
are specific to the particular protocol(s) involved.
.TP
.B time_redirect
The time, in seconds, it took for all redirection steps including name lookup,
connect, pretransfer and transfer before the final transaction was
started. time_redirect shows the complete execution time for multiple
redirections. (Added in 7.12.3)
.TP
.B time_starttransfer
The time, in seconds, it took from the start until the first byte was just
about to be transferred. This includes time_pretransfer and also the time the
server needed to calculate the result.
.TP
.B time_total
The total time, in seconds, that the full operation lasted.
.TP
.B url_effective
The URL that was fetched last. This is most meaningful if you've told curl
to follow location: headers.
.RE
.IP
If this option is used several times, the last one will be used.
.IP "--xattr"
When saving output to a file, this option tells curl to store certain file
metadata in extended file attributes. Currently, the URL is stored in the
xdg.origin.url attribute and, for HTTP, the content type is stored in
the mime_type attribute. If the file system does not support extended
attributes, a warning is issued.
.SH FILES
.I ~/.curlrc
.RS
Default config file, see \fI-K, --config\fP for details.
.SH ENVIRONMENT
The environment variables can be specified in lower case or upper case. The
lower case version has precedence. http_proxy is an exception as it is only
available in lower case.

Using an environment variable to set the proxy has the same effect as using
the \fI-x, --proxy\fP option.

.IP "http_proxy [protocol://]<host>[:port]"
Sets the proxy server to use for HTTP.
.IP "HTTPS_PROXY [protocol://]<host>[:port]"
Sets the proxy server to use for HTTPS.
.IP "[url-protocol]_PROXY [protocol://]<host>[:port]"
Sets the proxy server to use for [url-protocol], where the protocol is a
protocol that curl supports and as specified in a URL. FTP, FTPS, POP3, IMAP,
SMTP, LDAP etc.
.IP "ALL_PROXY [protocol://]<host>[:port]"
Sets the proxy server to use if no protocol-specific proxy is set.
.IP "NO_PROXY <comma-separated list of hosts/domains>"
list of host names that shouldn't go through any proxy. If set to an asterisk
\&'*' only, it matches all hosts. Each name in this list is matched as either
a domain name which contains the hostname, or the hostname itself.

This environment variable disables use of the proxy even when specified with
the \fI-x, --proxy\fP option. That is
.B NO_PROXY=direct.example.com curl -x http://proxy.example.com
.B http://direct.example.com
accesses the target URL directly, and
.B NO_PROXY=direct.example.com curl -x http://proxy.example.com
.B http://somewhere.example.com
accesses the target URL through the proxy.

The list of host names can also be include numerical IP addresses, and IPv6
versions should then be given without enclosing brackets.

.SH "PROXY PROTOCOL PREFIXES"
Since curl version 7.21.7, the proxy string may be specified with a
protocol:// prefix to specify alternative proxy protocols.

If no protocol is specified in the proxy string or if the string doesn't match
a supported one, the proxy will be treated as an HTTP proxy.

The supported proxy protocol prefixes are as follows:
.IP "http://"
Makes it use it as an HTTP proxy. The default if no scheme prefix is used.
.IP "https://"
Makes it treated as an \fBHTTPS\fP proxy.
.IP "socks4://"
Makes it the equivalent of \fI--socks4\fP
.IP "socks4a://"
Makes it the equivalent of \fI--socks4a\fP
.IP "socks5://"
Makes it the equivalent of \fI--socks5\fP
.IP "socks5h://"
Makes it the equivalent of \fI--socks5-hostname\fP
.SH EXIT CODES
There are a bunch of different error codes and their corresponding error
messages that may appear during bad conditions. At the time of this writing,
the exit codes are:
.IP 1
Unsupported protocol. This build of curl has no support for this protocol.
.IP 2
Failed to initialize.
.IP 3
URL malformed. The syntax was not correct.
.IP 4
A feature or option that was needed to perform the desired request was not
enabled or was explicitly disabled at build-time. To make curl able to do
this, you probably need another build of libcurl!
.IP 5
Couldn't resolve proxy. The given proxy host could not be resolved.
.IP 6
Couldn't resolve host. The given remote host was not resolved.
.IP 7
Failed to connect to host.
.IP 8
Weird server reply. The server sent data curl couldn't parse.
.IP 9
FTP access denied. The server denied login or denied access to the particular
resource or directory you wanted to reach. Most often you tried to change to a
directory that doesn't exist on the server.
.IP 10
FTP accept failed. While waiting for the server to connect back when an active
FTP session is used, an error code was sent over the control connection or
similar.
.IP 11
FTP weird PASS reply. Curl couldn't parse the reply sent to the PASS request.
.IP 12
During an active FTP session while waiting for the server to connect back to
curl, the timeout expired.
.IP 13
FTP weird PASV reply, Curl couldn't parse the reply sent to the PASV request.
.IP 14
FTP weird 227 format. Curl couldn't parse the 227-line the server sent.
.IP 15
FTP can't get host. Couldn't resolve the host IP we got in the 227-line.
.IP 16
HTTP/2 error. A problem was detected in the HTTP2 framing layer. This is
somewhat generic and can be one out of several problems, see the error message
for details.
.IP 17
FTP couldn't set binary. Couldn't change transfer method to binary.
.IP 18
Partial file. Only a part of the file was transferred.
.IP 19
FTP couldn't download/access the given file, the RETR (or similar) command
failed.
.IP 21
FTP quote error. A quote command returned error from the server.
.IP 22
HTTP page not retrieved. The requested url was not found or returned another
error with the HTTP error code being 400 or above. This return code only
appears if \fI-f, --fail\fP is used.
.IP 23
Write error. Curl couldn't write data to a local filesystem or similar.
.IP 25
FTP couldn't STOR file. The server denied the STOR operation, used for FTP
uploading.
.IP 26
Read error. Various reading problems.
.IP 27
Out of memory. A memory allocation request failed.
.IP 28
Operation timeout. The specified time-out period was reached according to the
conditions.
.IP 30
FTP PORT failed. The PORT command failed. Not all FTP servers support the PORT
command, try doing a transfer using PASV instead!
.IP 31
FTP couldn't use REST. The REST command failed. This command is used for
resumed FTP transfers.
.IP 33
HTTP range error. The range "command" didn't work.
.IP 34
HTTP post error. Internal post-request generation error.
.IP 35
SSL connect error. The SSL handshaking failed.
.IP 36
Bad download resume. Couldn't continue an earlier aborted download.
.IP 37
FILE couldn't read file. Failed to open the file. Permissions?
.IP 38
LDAP cannot bind. LDAP bind operation failed.
.IP 39
LDAP search failed.
.IP 41
Function not found. A required LDAP function was not found.
.IP 42
Aborted by callback. An application told curl to abort the operation.
.IP 43
Internal error. A function was called with a bad parameter.
.IP 45
Interface error. A specified outgoing interface could not be used.
.IP 47
Too many redirects. When following redirects, curl hit the maximum amount.
.IP 48
Unknown option specified to libcurl. This indicates that you passed a weird
option to curl that was passed on to libcurl and rejected. Read up in the
manual!
.IP 49
Malformed telnet option.
.IP 51
The peer's SSL certificate or SSH MD5 fingerprint was not OK.
.IP 52
The server didn't reply anything, which here is considered an error.
.IP 53
SSL crypto engine not found.
.IP 54
Cannot set SSL crypto engine as default.
.IP 55
Failed sending network data.
.IP 56
Failure in receiving network data.
.IP 58
Problem with the local certificate.
.IP 59
Couldn't use specified SSL cipher.
.IP 60
Peer certificate cannot be authenticated with known CA certificates.
.IP 61
Unrecognized transfer encoding.
.IP 62
Invalid LDAP URL.
.IP 63
Maximum file size exceeded.
.IP 64
Requested FTP SSL level failed.
.IP 65
Sending the data requires a rewind that failed.
.IP 66
Failed to initialise SSL Engine.
.IP 67
The user name, password, or similar was not accepted and curl failed to log in.
.IP 68
File not found on TFTP server.
.IP 69
Permission problem on TFTP server.
.IP 70
Out of disk space on TFTP server.
.IP 71
Illegal TFTP operation.
.IP 72
Unknown TFTP transfer ID.
.IP 73
File already exists (TFTP).
.IP 74
No such user (TFTP).
.IP 75
Character conversion failed.
.IP 76
Character conversion functions required.
.IP 77
Problem with reading the SSL CA cert (path? access rights?).
.IP 78
The resource referenced in the URL does not exist.
.IP 79
An unspecified error occurred during the SSH session.
.IP 80
Failed to shut down the SSL connection.
.IP 82
Could not load CRL file, missing or wrong format (added in 7.19.0).
.IP 83
Issuer check failed (added in 7.19.0).
.IP 84
The FTP PRET command failed
.IP 85
RTSP: mismatch of CSeq numbers
.IP 86
RTSP: mismatch of Session Identifiers
.IP 87
unable to parse FTP file list
.IP 88
FTP chunk callback reported error
.IP 89
No connection available, the session will be queued
.IP 90
SSL public key does not matched pinned public key
.IP 91
Invalid SSL certificate status.
.IP 92
Stream error in HTTP/2 framing layer.
.IP XX
More error codes will appear here in future releases. The existing ones
are meant to never change.
.SH AUTHORS / CONTRIBUTORS
Daniel Stenberg is the main author, but the whole list of contributors is
found in the separate THANKS file.
.SH WWW
https://curl.haxx.se
.SH "SEE ALSO"
.BR ftp (1),
.BR wget (1)
usr/share/doc/alt-curlssl/FAQ000064400000202713151162240040012023 0ustar00                                  _   _ ____  _
                              ___| | | |  _ \| |
                             / __| | | | |_) | |
                            | (__| |_| |  _ <| |___
                             \___|\___/|_| \_\_____|

FAQ

 1. Philosophy
  1.1 What is cURL?
  1.2 What is libcurl?
  1.3 What is curl not?
  1.4 When will you make curl do XXXX ?
  1.5 Who makes curl?
  1.6 What do you get for making curl?
  1.7 What about CURL from curl.com?
  1.8 I have a problem who do I mail?
  1.9 Where do I buy commercial support for curl?
  1.10 How many are using curl?
  1.11 Why don't you update ca-bundle.crt
  1.12 I have a problem who can I chat with?
  1.13 curl's ECCN number?
  1.14 How do I submit my patch?
  1.15 How do I port libcurl to my OS?

 2. Install Related Problems
  2.1 configure doesn't find OpenSSL even when it is installed
   2.1.1 native linker doesn't find OpenSSL
   2.1.2 only the libssl lib is missing
  2.2 Does curl work/build with other SSL libraries?
  2.3 Where can I find a copy of LIBEAY32.DLL?
  2.4 Does curl support SOCKS (RFC 1928) ?

 3. Usage Problems
  3.1 curl: (1) SSL is disabled, https: not supported
  3.2 How do I tell curl to resume a transfer?
  3.3 Why doesn't my posting using -F work?
  3.4 How do I tell curl to run custom FTP commands?
  3.5 How can I disable the Accept: */* header?
  3.6 Does curl support ASP, XML, XHTML or HTML version Y?
  3.7 Can I use curl to delete/rename a file through FTP?
  3.8 How do I tell curl to follow HTTP redirects?
  3.9 How do I use curl in my favorite programming language?
  3.10 What about SOAP, WebDAV, XML-RPC or similar protocols over HTTP?
  3.11 How do I POST with a different Content-Type?
  3.12 Why do FTP specific features over HTTP proxy fail?
  3.13 Why does my single/double quotes fail?
  3.14 Does curl support Javascript or PAC (automated proxy config)?
  3.15 Can I do recursive fetches with curl?
  3.16 What certificates do I need when I use SSL?
  3.17 How do I list the root dir of an FTP server?
  3.18 Can I use curl to send a POST/PUT and not wait for a response?
  3.19 How do I get HTTP from a host using a specific IP address?
  3.20 How to SFTP from my user's home directory?
  3.21 Protocol xxx not supported or disabled in libcurl
  3.22 curl -X gives me HTTP problems

 4. Running Problems
  4.1 Problems connecting to SSL servers.
  4.2 Why do I get problems when I use & or % in the URL?
  4.3 How can I use {, }, [ or ] to specify multiple URLs?
  4.4 Why do I get downloaded data even though the web page doesn't exist?
  4.5 Why do I get return code XXX from a HTTP server?
   4.5.1 "400 Bad Request"
   4.5.2 "401 Unauthorized"
   4.5.3 "403 Forbidden"
   4.5.4 "404 Not Found"
   4.5.5 "405 Method Not Allowed"
   4.5.6 "301 Moved Permanently"
  4.6 Can you tell me what error code 142 means?
  4.7 How do I keep user names and passwords secret in Curl command lines?
  4.8 I found a bug!
  4.9 Curl can't authenticate to the server that requires NTLM?
  4.10 My HTTP request using HEAD, PUT or DELETE doesn't work!
  4.11 Why does my HTTP range requests return the full document?
  4.12 Why do I get "certificate verify failed" ?
  4.13 Why is curl -R on Windows one hour off?
  4.14 Redirects work in browser but not with curl!
  4.15 FTPS doesn't work
  4.16 My HTTP POST or PUT requests are slow!
  4.17 Non-functional connect timeouts on Windows
  4.18 file:// URLs containing drive letters (Windows, NetWare)
  4.19 Why doesn't curl return an error when the network cable is unplugged?
  4.20 curl doesn't return error for HTTP non-200 responses!
  4.21 Why is there a HTTP/1.1 in my HTTP/2 request?

 5. libcurl Issues
  5.1 Is libcurl thread-safe?
  5.2 How can I receive all data into a large memory chunk?
  5.3 How do I fetch multiple files with libcurl?
  5.4 Does libcurl do Winsock initing on win32 systems?
  5.5 Does CURLOPT_WRITEDATA and CURLOPT_READDATA work on win32 ?
  5.6 What about Keep-Alive or persistent connections?
  5.7 Link errors when building libcurl on Windows!
  5.8 libcurl.so.X: open failed: No such file or directory
  5.9 How does libcurl resolve host names?
  5.10 How do I prevent libcurl from writing the response to stdout?
  5.11 How do I make libcurl not receive the whole HTTP response?
  5.12 Can I make libcurl fake or hide my real IP address?
  5.13 How do I stop an ongoing transfer?
  5.14 Using C++ non-static functions for callbacks?
  5.15 How do I get an FTP directory listing?
  5.16 I want a different time-out!
  5.17 Can I write a server with libcurl?
  5.18 Does libcurl use threads?

 6. License Issues
  6.1 I have a GPL program, can I use the libcurl library?
  6.2 I have a closed-source program, can I use the libcurl library?
  6.3 I have a BSD licensed program, can I use the libcurl library?
  6.4 I have a program that uses LGPL libraries, can I use libcurl?
  6.5 Can I modify curl/libcurl for my program and keep the changes secret?
  6.6 Can you please change the curl/libcurl license to XXXX?
  6.7 What are my obligations when using libcurl in my commercial apps?

 7. PHP/CURL Issues
  7.1 What is PHP/CURL?
  7.2 Who wrote PHP/CURL?
  7.3 Can I perform multiple requests using the same handle?
  7.4 Does PHP/CURL have dependencies?

==============================================================================

1. Philosophy

  1.1 What is cURL?

  cURL is the name of the project. The name is a play on 'Client for URLs',
  originally with URL spelled in uppercase to make it obvious it deals with
  URLs. The fact it can also be pronounced 'see URL' also helped, it works as
  an abbreviation for "Client URL Request Library" or why not the recursive
  version: "Curl URL Request Library".

  The cURL project produces two products:

  libcurl

    A free and easy-to-use client-side URL transfer library, supporting DICT,
    FILE, FTP, FTPS, GOPHER, HTTP, HTTPS, IMAP, IMAPS, LDAP, LDAPS, POP3,
    POP3S, RTMP, RTSP, SCP, SFTP, SMB, SMBS, SMTP, SMTPS, TELNET and TFTP.

    libcurl supports HTTPS certificates, HTTP POST, HTTP PUT, FTP uploading,
    Kerberos, SPNEGO, HTTP form based upload, proxies, cookies, user+password
    authentication, file transfer resume, http proxy tunneling and more!

    libcurl is highly portable, it builds and works identically on numerous
    platforms, including Solaris, NetBSD, FreeBSD, OpenBSD, Darwin, HP-UX,
    IRIX, AIX, Tru64, Linux, UnixWare, HURD, Windows, Amiga, OS/2, BeOS, Mac
    OS X, Ultrix, QNX, OpenVMS, RISC OS, Novell NetWare, DOS, Symbian, OSF,
    Android, Minix, IBM TPF and more...

    libcurl is free, thread-safe, IPv6 compatible, feature rich, well
    supported and fast.

  curl

    A command line tool for getting or sending files using URL syntax.

    Since curl uses libcurl, curl supports the same wide range of common
    Internet protocols that libcurl does.

  We pronounce curl with an initial k sound. It rhymes with words like girl
  and earl. This is a short WAV file to help you:

     https://media.merriam-webster.com/soundc11/c/curl0001.wav

  There are numerous sub-projects and related projects that also use the word
  curl in the project names in various combinations, but you should take
  notice that this FAQ is directed at the command-line tool named curl (and
  libcurl the library), and may therefore not be valid for other curl-related
  projects. (There is however a small section for the PHP/CURL in this FAQ.)

  1.2 What is libcurl?

  libcurl is a reliable and portable library which provides you with an easy
  interface to a range of common Internet protocols.

  You can use libcurl for free in your application, be it open source,
  commercial or closed-source.

  libcurl is most probably the most portable, most powerful and most often
  used C-based multi-platform file transfer library on this planet - be it
  open source or commercial.

  1.3 What is curl not?

  Curl is not a wget clone. That is a common misconception.  Never, during
  curl's development, have we intended curl to replace wget or compete on its
  market. Curl is targeted at single-shot file transfers.

  Curl is not a web site mirroring program. If you want to use curl to mirror
  something: fine, go ahead and write a script that wraps around curl to make
  it reality (like curlmirror.pl does).

  Curl is not an FTP site mirroring program. Sure, get and send FTP with curl
  but if you want systematic and sequential behavior you should write a
  script (or write a new program that interfaces libcurl) and do it.

  Curl is not a PHP tool, even though it works perfectly well when used from
  or with PHP (when using the PHP/CURL module).

  Curl is not a program for a single operating system. Curl exists, compiles,
  builds and runs under a wide range of operating systems, including all
  modern Unixes (and a bunch of older ones too), Windows, Amiga, BeOS, OS/2,
  OS X, QNX etc.

  1.4 When will you make curl do XXXX ?

  We love suggestions of what to change in order to make curl and libcurl
  better. We do however believe in a few rules when it comes to the future of
  curl:

  Curl -- the command line tool -- is to remain a non-graphical command line
  tool. If you want GUIs or fancy scripting capabilities, you should look for
  another tool that uses libcurl.

  We do not add things to curl that other small and available tools already do
  very well at the side. Curl's output can be piped into another program or
  redirected to another file for the next program to interpret.

  We focus on protocol related issues and improvements. If you want to do more
  magic with the supported protocols than curl currently does, chances are good
  we will agree. If you want to add more protocols, we may very well agree.

  If you want someone else to do all the work while you wait for us to
  implement it for you, that is not a very friendly attitude. We spend a
  considerable time already on maintaining and developing curl. In order to
  get more out of us, you should consider trading in some of your time and
  effort in return. Simply go to the GitHub repo which resides at
  https://github.com/curl/curl, fork the project, and create pull requests
  with your proposed changes.

  If you write the code, chances are better that it will get into curl faster.

  1.5 Who makes curl?

  curl and libcurl are not made by any single individual. Daniel Stenberg is
  project leader and main developer, but other persons' submissions are
  important and crucial. Anyone can contribute and post their changes and
  improvements and have them inserted in the main sources (of course on the
  condition that developers agree that the fixes are good).

  The full list of all contributors is found in the docs/THANKS file.

  curl is developed by a community, with Daniel at the wheel.

  1.6 What do you get for making curl?

  Project cURL is entirely free and open. No person gets paid for developing
  curl full time. We do this voluntarily, mostly in our spare time.
  Occasionally companies pay individual developers to work on curl, but that's
  up to each company and developer. This is not controlled by nor supervised in
  any way by the project.

  We still get help from companies. Haxx provides web site, bandwidth, mailing
  lists etc, GitHub hosts the primary git repository and other services like
  the bug tracker at https://github.com/curl/curl. Also again, some companies
  have sponsored certain parts of the development in the past and I hope some
  will continue to do so in the future.

  If you want to support our project, consider a donation or a banner-program
  or even better: by helping us with coding, documenting or testing etc.

  1.7 What about CURL from curl.com?

  During the summer of 2001, curl.com was busy advertising their client-side
  programming language for the web, named CURL.

  We are in no way associated with curl.com or their CURL programming
  language.

  Our project name curl has been in effective use since 1998. We were not the
  first computer related project to use the name "curl" and do not claim any
  rights to the name.

  We recognize that we will be living in parallel with curl.com and wish them
  every success.

  1.8 I have a problem whom do I mail?

  Please do not mail any single individual unless you really need to. Keep
  curl-related questions on a suitable mailing list. All available mailing
  lists are listed in the MANUAL document and online at
  https://curl.haxx.se/mail/

  Keeping curl-related questions and discussions on mailing lists allows
  others to join in and help, to share their ideas, to contribute their
  suggestions and to spread their wisdom. Keeping discussions on public mailing
  lists also allows for others to learn from this (both current and future
  users thanks to the web based archives of the mailing lists), thus saving us
  from having to repeat ourselves even more. Thanks for respecting this.

  If you have found or simply suspect a security problem in curl or libcurl,
  mail curl-security at haxx.se (closed list of receivers, mails are not
  disclosed) and tell. Then we can produce a fix in a timely manner before the
  flaw is announced to the world, thus lessen the impact the problem will have
  on existing users.

  1.9 Where do I buy commercial support for curl?

  curl is fully open source. It means you can hire any skilled engineer to fix
  your curl-related problems.

  We list available alternatives on the curl web site:
  https://curl.haxx.se/support.html

  1.10 How many are using curl?

  It is impossible to tell.

  We don't know how many users that knowingly have installed and use curl.

  We don't know how many users that use curl without knowing that they are in
  fact using it.

  We don't know how many users that downloaded or installed curl and then
  never use it.

  In May 2012 Daniel did a counting game and came up with a number that may
  be completely wrong or somewhat accurate. Over 500 million!

  See https://daniel.haxx.se/blog/2012/05/16/300m-users/

  1.11 Why don't you update ca-bundle.crt

  The ca cert bundle that used to be shipped with curl was very outdated and
  must be replaced with an up-to-date version by anyone who wants to verify
  peers. It is no longer provided by curl. The last curl release that ever
  shipped a ca cert bundle was curl 7.18.0.

  In the cURL project we've decided not to attempt to keep this file updated
  (or even present anymore) since deciding what to add to a ca cert bundle is
  an undertaking we've not been ready to accept, and the one we can get from
  Mozilla is perfectly fine so there's no need to duplicate that work.

  Today, with many services performed over HTTPS, every operating system
  should come with a default ca cert bundle that can be deemed somewhat
  trustworthy and that collection (if reasonably updated) should be deemed to
  be a lot better than a private curl version.

  If you want the most recent collection of ca certs that Mozilla Firefox
  uses, we recommend that you extract the collection yourself from Mozilla
  Firefox (by running 'make ca-bundle), or by using our online service setup
  for this purpose: https://curl.haxx.se/docs/caextract.html

  1.12 I have a problem who can I chat with?

  There's a bunch of friendly people hanging out in the #curl channel on the
  IRC network irc.freenode.net. If you're polite and nice, chances are good
  that you can get -- or provide -- help instantly.

  1.13 curl's ECCN number?

  The US government restricts exports of software that contains or uses
  cryptography. When doing so, the Export Control Classification Number (ECCN)
  is used to identify the level of export control etc.

  Apache Software Foundation gives a good explanation of ECCNs at
  https://www.apache.org/dev/crypto.html

  We believe curl's number might be ECCN 5D002, another possibility is
  5D992. It seems necessary to write them (the authority that administers ECCN
  numbers), asking to confirm.

  Comprehensible explanations of the meaning of such numbers and how to obtain
  them (resp.) are here

  https://www.bis.doc.gov/licensing/exportingbasics.htm
  https://www.bis.doc.gov/licensing/do_i_needaneccn.html

  An incomprehensible description of the two numbers above is here
  https://www.bis.doc.gov/index.php/documents/new-encryption/1653-ccl5-pt2-3

  1.14 How do I submit my patch?

  When you have made a patch or a change of whatever sort, and want to submit
  that to the project, there are a few different ways we prefer:

  o send a patch to the curl-library mailing list. We're many subscribers
    there and there are lots of people who can review patches, comment on them
    and "receive" them properly.

  o if your patch changes or fixes a bug, you can also opt to submit a bug
    report in the bug tracker and attach your patch there. There are less
    people involved there.

  Lots of more details are found in the CONTRIBUTE and INTERNALS docs.

  1.15 How do I port libcurl to my OS?

  Here's a rough step-by-step:

  1. copy a suitable lib/config-*.h file as a start to lib/config-[youros].h

  2. edit lib/config-[youros].h to match your OS and setup

  3. edit lib/curl_setup.h to include config-[youros].h when your OS is
     detected by the preprocessor, in the style others already exist

  4. compile lib/*.c and make them into a library


2. Install Related Problems

  2.1 configure doesn't find OpenSSL even when it is installed

  This may be because of several reasons.

    2.1.1 native linker doesn't find openssl

    Affected platforms:
      Solaris (native cc compiler)
      HPUX (native cc compiler)
      SGI IRIX (native cc compiler)
      SCO UNIX (native cc compiler)

    When configuring curl, I specify --with-ssl. OpenSSL is installed in
    /usr/local/ssl Configure reports SSL in /usr/local/ssl, but fails to find
    CRYPTO_lock in -lcrypto

    Cause: The cc for this test places the -L/usr/local/ssl/lib AFTER
    -lcrypto, so ld can't find the library. This is due to a bug in the GNU
    autoconf tool.

    Workaround: Specifying "LDFLAGS=-L/usr/local/ssl/lib" in front of
    ./configure places the -L/usr/local/ssl/lib early enough in the command
    line to make things work

    2.1.2 only the libssl lib is missing

    If all include files and the libcrypto lib is present, with only the
    libssl being missing according to configure, this is most likely because
    a few functions are left out from the libssl.

    If the function names missing include RSA or RSAREF you can be certain
    that this is because libssl requires the RSA and RSAREF libs to build.

    See the INSTALL file section that explains how to add those libs to
    configure. Make sure that you remove the config.cache file before you
    rerun configure with the new flags.

  2.2 Does curl work/build with other SSL libraries?

  Curl has been written to use a generic SSL function layer internally, and
  that SSL functionality can then be provided by one out of many different SSL
  backends.

  curl can be built to use one of the following SSL alternatives: OpenSSL,
  GnuTLS, yassl, NSS, PolarSSL, MesaLink, Secure Transport (native iOS/OS X),
  WinSSL (native Windows) or GSKit (native IBM i). They all have their pros
  and cons, and we try to maintain a comparison of them here:
  https://curl.haxx.se/docs/ssl-compared.html

  2.3 Where can I find a copy of LIBEAY32.DLL?

  That is an OpenSSL binary built for Windows.

  Curl can be built with OpenSSL to do the SSL stuff. The LIBEAY32.DLL is then
  what curl needs on a windows machine to do https:// etc. Check out the curl
  web site to find accurate and up-to-date pointers to recent OpenSSL DLLs and
  other binary packages.

  2.4 Does curl support SOCKS (RFC 1928) ?

  Yes, SOCKS 4 and 5 are supported.


3. Usage problems

  3.1 curl: (1) SSL is disabled, https: not supported

  If you get this output when trying to get anything from a https:// server,
  it means that the instance of curl/libcurl that you're using was built
  without support for this protocol.

  This could've happened if the configure script that was run at build time
  couldn't find all libs and include files curl requires for SSL to work. If
  the configure script fails to find them, curl is simply built without SSL
  support.

  To get the https:// support into a curl that was previously built but that
  reports that https:// is not supported, you should dig through the document
  and logs and check out why the configure script doesn't find the SSL libs
  and/or include files.

  Also, check out the other paragraph in this FAQ labelled "configure doesn't
  find OpenSSL even when it is installed".

  3.2 How do I tell curl to resume a transfer?

  Curl supports resumed transfers both ways on both FTP and HTTP.
  Try the -C option.

  3.3 Why doesn't my posting using -F work?

  You can't arbitrarily use -F or -d, the choice between -F or -d depends on the
  HTTP operation you need curl to do and what the web server that will receive
  your post expects.

  If the form you're trying to submit uses the type 'multipart/form-data', then
  and only then you must use the -F type. In all the most common cases, you
  should use -d which then causes a posting with the type
  'application/x-www-form-urlencoded'.

  This is described in some detail in the MANUAL and TheArtOfHttpScripting
  documents, and if you don't understand it the first time, read it again
  before you post questions about this to the mailing list. Also, try reading
  through the mailing list archives for old postings and questions regarding
  this.

  3.4 How do I tell curl to run custom FTP commands?

  You can tell curl to perform optional commands both before and/or after a
  file transfer. Study the -Q/--quote option.

  Since curl is used for file transfers, you don't normally use curl to
  perform FTP commands without transferring anything. Therefore you must
  always specify a URL to transfer to/from even when doing custom FTP
  commands, or use -I which implies the "no body" option sent to libcurl.

  3.5 How can I disable the Accept: */* header?

  You can change all internally generated headers by adding a replacement with
  the -H/--header option. By adding a header with empty contents you safely
  disable that one. Use -H "Accept:" to disable that specific header.

  3.6 Does curl support ASP, XML, XHTML or HTML version Y?

  To curl, all contents are alike. It doesn't matter how the page was
  generated. It may be ASP, PHP, Perl, shell-script, SSI or plain HTML
  files. There's no difference to curl and it doesn't even know what kind of
  language that generated the page.

  See also item 3.14 regarding javascript.

  3.7 Can I use curl to delete/rename a file through FTP?

  Yes. You specify custom FTP commands with -Q/--quote.

  One example would be to delete a file after you have downloaded it:

     curl -O ftp://download.com/coolfile -Q '-DELE coolfile'

  or rename a file after upload:

     curl -T infile ftp://upload.com/dir/ -Q "-RNFR infile" -Q "-RNTO newname"

  3.8 How do I tell curl to follow HTTP redirects?

  Curl does not follow so-called redirects by default. The Location: header
  that informs the client about this is only interpreted if you're using the
  -L/--location option. As in:

     curl -L http://redirector.com

  Not all redirects are HTTP ones, see 4.14

  3.9 How do I use curl in my favorite programming language?

  There exist many language interfaces/bindings for curl that integrates it
  better with various languages. If you are fluid in a script language, you
  may very well opt to use such an interface instead of using the command line
  tool.

  Find out more about which languages that support curl directly, and how to
  install and use them, in the libcurl section of the curl web site:
  https://curl.haxx.se/libcurl/

  All the various bindings to libcurl are made by other projects and people,
  outside of the cURL project. The cURL project itself only produces libcurl
  with its plain C API. If you don't find anywhere else to ask you can ask
  about bindings on the curl-library list too, but be prepared that people on
  that list may not know anything about bindings.

  In October 2009, there were interfaces available for the following
  languages: Ada95, Basic, C, C++, Ch, Cocoa, D, Dylan, Eiffel, Euphoria,
  Ferite, Gambas, glib/GTK+, Haskell, ILE/RPG, Java, Lisp, Lua, Mono, .NET,
  Object-Pascal, OCaml, Pascal, Perl, PHP, PostgreSQL, Python, R, Rexx, Ruby,
  Scheme, S-Lang, Smalltalk, SP-Forth, SPL, Tcl, Visual Basic, Visual FoxPro,
  Q, wxwidgets and XBLite. By the time you read this, additional ones may have
  appeared!

  3.10 What about SOAP, WebDAV, XML-RPC or similar protocols over HTTP?

  Curl adheres to the HTTP spec, which basically means you can play with *any*
  protocol that is built on top of HTTP. Protocols such as SOAP, WEBDAV and
  XML-RPC are all such ones. You can use -X to set custom requests and -H to
  set custom headers (or replace internally generated ones).

  Using libcurl is of course just as good and you'd just use the proper
  library options to do the same.

  3.11 How do I POST with a different Content-Type?

  You can always replace the internally generated headers with -H/--header.
  To make a simple HTTP POST with text/xml as content-type, do something like:

        curl -d "datatopost" -H "Content-Type: text/xml" [URL]

  3.12 Why do FTP specific features over HTTP proxy fail?

  Because when you use a HTTP proxy, the protocol spoken on the network will
  be HTTP, even if you specify a FTP URL. This effectively means that you
  normally can't use FTP specific features such as FTP upload and FTP quote
  etc.

  There is one exception to this rule, and that is if you can "tunnel through"
  the given HTTP proxy. Proxy tunneling is enabled with a special option (-p)
  and is generally not available as proxy admins usually disable tunneling to
  ports other than 443 (which is used for HTTPS access through proxies).

  3.13 Why does my single/double quotes fail?

  To specify a command line option that includes spaces, you might need to
  put the entire option within quotes. Like in:

   curl -d " with spaces " url.com

  or perhaps

   curl -d ' with spaces ' url.com

  Exactly what kind of quotes and how to do this is entirely up to the shell
  or command line interpreter that you are using. For most unix shells, you
  can more or less pick either single (') or double (") quotes. For
  Windows/DOS prompts I believe you're forced to use double (") quotes.

  Please study the documentation for your particular environment. Examples in
  the curl docs will use a mix of both of these as shown above. You must
  adjust them to work in your environment.

  Remember that curl works and runs on more operating systems than most single
  individuals have ever tried.

  3.14 Does curl support Javascript or PAC (automated proxy config)?

  Many web pages do magic stuff using embedded Javascript. Curl and libcurl
  have no built-in support for that, so it will be treated just like any other
  contents.

  .pac files are a netscape invention and are sometimes used by organizations
  to allow them to differentiate which proxies to use. The .pac contents is
  just a Javascript program that gets invoked by the browser and that returns
  the name of the proxy to connect to. Since curl doesn't support Javascript,
  it can't support .pac proxy configuration either.

  Some workarounds usually suggested to overcome this Javascript dependency:

  Depending on the Javascript complexity, write up a script that translates it
  to another language and execute that.

  Read the Javascript code and rewrite the same logic in another language.

  Implement a Javascript interpreter, people have successfully used the
  Mozilla Javascript engine in the past.

  Ask your admins to stop this, for a static proxy setup or similar.

  3.15 Can I do recursive fetches with curl?

  No. curl itself has no code that performs recursive operations, such as
  those performed by wget and similar tools.

  There exists wrapper scripts with that functionality (for example the
  curlmirror perl script), and you can write programs based on libcurl to do
  it, but the command line tool curl itself cannot.

  3.16 What certificates do I need when I use SSL?

  There are three different kinds of "certificates" to keep track of when we
  talk about using SSL-based protocols (HTTPS or FTPS) using curl or libcurl.

  CLIENT CERTIFICATE

  The server you communicate with may require that you can provide this in
  order to prove that you actually are who you claim to be.  If the server
  doesn't require this, you don't need a client certificate.

  A client certificate is always used together with a private key, and the
  private key has a pass phrase that protects it.

  SERVER CERTIFICATE

  The server you communicate with has a server certificate. You can and should
  verify this certificate to make sure that you are truly talking to the real
  server and not a server impersonating it.

  CERTIFICATE AUTHORITY CERTIFICATE ("CA cert")

  You often have several CA certs in a CA cert bundle that can be used to
  verify a server certificate that was signed by one of the authorities in the
  bundle. curl does not come with a CA cert bundle but most curl installs
  provide one. You can also override the default.

  The server certificate verification process is made by using a Certificate
  Authority certificate ("CA cert") that was used to sign the server
  certificate. Server certificate verification is enabled by default in curl
  and libcurl and is often the reason for problems as explained in FAQ entry
  4.12 and the SSLCERTS document
  (https://curl.haxx.se/docs/sslcerts.html). Server certificates that are
  "self-signed" or otherwise signed by a CA that you do not have a CA cert
  for, cannot be verified. If the verification during a connect fails, you are
  refused access. You then need to explicitly disable the verification to
  connect to the server.

  3.17 How do I list the root dir of an FTP server?

  There are two ways. The way defined in the RFC is to use an encoded slash
  in the first path part. List the "/tmp" dir like this:

     curl ftp://ftp.sunet.se/%2ftmp/

  or the not-quite-kosher-but-more-readable way, by simply starting the path
  section of the URL with a slash:

     curl ftp://ftp.sunet.se//tmp/

  3.18 Can I use curl to send a POST/PUT and not wait for a response?

  No.

  But you could easily write your own program using libcurl to do such stunts.

  3.19 How do I get HTTP from a host using a specific IP address?

  For example, you may be trying out a web site installation that isn't yet in
  the DNS. Or you have a site using multiple IP addresses for a given host
  name and you want to address a specific one out of the set.

  Set a custom Host: header that identifies the server name you want to reach
  but use the target IP address in the URL:

    curl --header "Host: www.example.com" http://127.0.0.1/

  You can also opt to add faked host name entries to curl with the --resolve
  option. That has the added benefit that things like redirects will also work
  properly. The above operation would instead be done as:

    curl --resolve www.example.com:80:127.0.0.1 http://www.example.com/

  3.20 How to SFTP from my user's home directory?

  Contrary to how FTP works, SFTP and SCP URLs specify the exact directory to
  work with. It means that if you don't specify that you want the user's home
  directory, you get the actual root directory.

  To specify a file in your user's home directory, you need to use the correct
  URL syntax which for sftp might look similar to:

    curl -O -u user:password sftp://example.com/~/file.txt

  and for SCP it is just a different protocol prefix:

    curl -O -u user:password scp://example.com/~/file.txt

  3.21 Protocol xxx not supported or disabled in libcurl

  When passing on a URL to curl to use, it may respond that the particular
  protocol is not supported or disabled. The particular way this error message
  is phrased is because curl doesn't make a distinction internally of whether
  a particular protocol is not supported (i.e. never got any code added that
  knows how to speak that protocol) or if it was explicitly disabled. curl can
  be built to only support a given set of protocols, and the rest would then
  be disabled or not supported.

  Note that this error will also occur if you pass a wrongly spelled protocol
  part as in "htpt://example.com" or as in the less evident case if you prefix
  the protocol part with a space as in " http://example.com/".

  3.22 curl -X gives me HTTP problems

  In normal circumstances, -X should hardly ever be used.

  By default you use curl without explicitly saying which request method to
  use when the URL identifies a HTTP transfer. If you just pass in a URL like
  "curl http://example.com" it will use GET. If you use -d or -F curl will use
  POST, -I will cause a HEAD and -T will make it a PUT.

  If for whatever reason you're not happy with these default choices that curl
  does for you, you can override those request methods by specifying -X
  [WHATEVER]. This way you can for example send a DELETE by doing "curl -X
  DELETE [URL]".

  It is thus pointless to do "curl -XGET [URL]" as GET would be used
  anyway. In the same vein it is pointless to do "curl -X POST -d data
  [URL]"... But you can make a fun and somewhat rare request that sends a
  request-body in a GET request with something like "curl -X GET -d data
  [URL]"

  Note that -X doesn't actually change curl's behavior as it only modifies the
  actual string sent in the request, but that may of course trigger a
  different set of events.

  Accordingly, by using -XPOST on a command line that for example would follow
  a 303 redirect, you will effectively prevent curl from behaving
  correctly. Be aware.


4. Running Problems

  4.1 Problems connecting to SSL servers.

  It took a very long time before we could sort out why curl had problems to
  connect to certain SSL servers when using SSLeay or OpenSSL v0.9+.  The
  error sometimes showed up similar to:

  16570:error:1407D071:SSL routines:SSL2_READ:bad mac decode:s2_pkt.c:233:

  It turned out to be because many older SSL servers don't deal with SSLv3
  requests properly. To correct this problem, tell curl to select SSLv2 from
  the command line (-2/--sslv2).

  There have also been examples where the remote server didn't like the SSLv2
  request and instead you had to force curl to use SSLv3 with -3/--sslv3.

  4.2 Why do I get problems when I use & or % in the URL?

  In general unix shells, the & symbol is treated specially and when used, it
  runs the specified command in the background. To safely send the & as a part
  of a URL, you should quote the entire URL by using single (') or double (")
  quotes around it. Similar problems can also occur on some shells with other
  characters, including ?*!$~(){}<>\|;`.  When in doubt, quote the URL.

  An example that would invoke a remote CGI that uses &-symbols could be:

     curl 'http://www.altavista.com/cgi-bin/query?text=yes&q=curl'

  In Windows, the standard DOS shell treats the percent sign specially and you
  need to use TWO percent signs for each single one you want to use in the
  URL.

  If you want a literal percent sign to be part of the data you pass in a POST
  using -d/--data you must encode it as '%25' (which then also needs the
  percent sign doubled on Windows machines).

  4.3 How can I use {, }, [ or ] to specify multiple URLs?

  Because those letters have a special meaning to the shell, to be used in
  a URL specified to curl you must quote them.

  An example that downloads two URLs (sequentially) would be:

    curl '{curl,www}.haxx.se'

  To be able to use those characters as actual parts of the URL (without using
  them for the curl URL "globbing" system), use the -g/--globoff option:

    curl -g 'www.site.com/weirdname[].html'

  4.4 Why do I get downloaded data even though the web page doesn't exist?

  Curl asks remote servers for the page you specify. If the page doesn't exist
  at the server, the HTTP protocol defines how the server should respond and
  that means that headers and a "page" will be returned. That's simply how
  HTTP works.

  By using the --fail option you can tell curl explicitly to not get any data
  if the HTTP return code doesn't say success.

  4.5 Why do I get return code XXX from a HTTP server?

  RFC2616 clearly explains the return codes. This is a short transcript. Go
  read the RFC for exact details:

    4.5.1 "400 Bad Request"

    The request could not be understood by the server due to malformed
    syntax. The client SHOULD NOT repeat the request without modifications.

    4.5.2 "401 Unauthorized"

    The request requires user authentication.

    4.5.3 "403 Forbidden"

    The server understood the request, but is refusing to fulfill it.
    Authorization will not help and the request SHOULD NOT be repeated.

    4.5.4 "404 Not Found"

    The server has not found anything matching the Request-URI. No indication
    is given of whether the condition is temporary or permanent.

    4.5.5 "405 Method Not Allowed"

    The method specified in the Request-Line is not allowed for the resource
    identified by the Request-URI. The response MUST include an Allow header
    containing a list of valid methods for the requested resource.

    4.5.6 "301 Moved Permanently"

    If you get this return code and an HTML output similar to this:

       <H1>Moved Permanently</H1> The document has moved <A
       HREF="http://same_url_now_with_a_trailing_slash/">here</A>.

    it might be because you request a directory URL but without the trailing
    slash. Try the same operation again _with_ the trailing URL, or use the
    -L/--location option to follow the redirection.

  4.6 Can you tell me what error code 142 means?

  All curl error codes are described at the end of the man page, in the
  section called "EXIT CODES".

  Error codes that are larger than the highest documented error code means
  that curl has exited due to a crash. This is a serious error, and we
  appreciate a detailed bug report from you that describes how we could go
  ahead and repeat this!

  4.7 How do I keep user names and passwords secret in Curl command lines?

  This problem has two sides:

  The first part is to avoid having clear-text passwords in the command line
  so that they don't appear in 'ps' outputs and similar. That is easily
  avoided by using the "-K" option to tell curl to read parameters from a file
  or stdin to which you can pass the secret info. curl itself will also
  attempt to "hide" the given password by blanking out the option - this
  doesn't work on all platforms.

  To keep the passwords in your account secret from the rest of the world is
  not a task that curl addresses. You could of course encrypt them somehow to
  at least hide them from being read by human eyes, but that is not what
  anyone would call security.

  Also note that regular HTTP (using Basic authentication) and FTP passwords
  are sent in clear across the network. All it takes for anyone to fetch them
  is to listen on the network.  Eavesdropping is very easy. Use more secure
  authentication methods (like Digest, Negotiate or even NTLM) or consider the
  SSL-based alternatives HTTPS and FTPS.

  4.8 I found a bug!

  It is not a bug if the behavior is documented. Read the docs first.
  Especially check out the KNOWN_BUGS file, it may be a documented bug!

  If it is a problem with a binary you've downloaded or a package for your
  particular platform, try contacting the person who built the package/archive
  you have.

  If there is a bug, read the BUGS document first. Then report it as described
  in there.

  4.9 Curl can't authenticate to the server that requires NTLM?

  NTLM support requires OpenSSL, GnuTLS, mbedTLS, NSS, Secure Transport, or
  Microsoft Windows libraries at build-time to provide this functionality.

  NTLM is a Microsoft proprietary protocol. Proprietary formats are evil. You
  should not use such ones.

  4.10 My HTTP request using HEAD, PUT or DELETE doesn't work!

  Many web servers allow or demand that the administrator configures the
  server properly for these requests to work on the web server.

  Some servers seem to support HEAD only on certain kinds of URLs.

  To fully grasp this, try the documentation for the particular server
  software you're trying to interact with. This is not anything curl can do
  anything about.

  4.11 Why does my HTTP range requests return the full document?

  Because the range may not be supported by the server, or the server may
  choose to ignore it and return the full document anyway.

  4.12 Why do I get "certificate verify failed" ?

  You invoke curl 7.10 or later to communicate on a https:// URL and get an
  error back looking something similar to this:

      curl: (35) SSL: error:14090086:SSL routines:
      SSL3_GET_SERVER_CERTIFICATE:certificate verify failed

  Then it means that curl couldn't verify that the server's certificate was
  good. Curl verifies the certificate using the CA cert bundle that comes with
  the curl installation.

  To disable the verification (which makes it act like curl did before 7.10),
  use -k. This does however enable man-in-the-middle attacks.

  If you get this failure but are having a CA cert bundle installed and used,
  the server's certificate is not signed by one of the CA's in the bundle. It
  might for example be self-signed. You then correct this problem by obtaining
  a valid CA cert for the server. Or again, decrease the security by disabling
  this check.

  Details are also in the SSLCERTS file in the release archives, found online
  here: https://curl.haxx.se/docs/sslcerts.html

  4.13 Why is curl -R on Windows one hour off?

  Since curl 7.53.0 this issue should be fixed as long as curl was built with
  any modern compiler that allows for a 64-bit curl_off_t type. For older
  compilers or prior curl versions it may set a time that appears one hour off.
  This happens due to a flaw in how Windows stores and uses file modification
  times and it is not easily worked around. For more details read this:
  https://www.codeproject.com/Articles/1144/Beating-the-Daylight-Savings-Time-bug-and-getting

  4.14 Redirects work in browser but not with curl!

  curl supports HTTP redirects well (see item 3.8). Browsers generally support
  at least two other ways to perform redirects that curl does not:

  Meta tags. You can write a HTML tag that will cause the browser to redirect
  to another given URL after a certain time.

  Javascript. You can write a Javascript program embedded in a HTML page that
  redirects the browser to another given URL.

  There is no way to make curl follow these redirects. You must either
  manually figure out what the page is set to do, or you write a script that
  parses the results and fetches the new URL.

  4.15 FTPS doesn't work

  curl supports FTPS (sometimes known as FTP-SSL) both implicit and explicit
  mode.

  When a URL is used that starts with FTPS://, curl assumes implicit SSL on
  the control connection and will therefore immediately connect and try to
  speak SSL. FTPS:// connections default to port 990.

  To use explicit FTPS, you use a FTP:// URL and the --ftp-ssl option (or one
  of its related flavours). This is the most common method, and the one
  mandated by RFC4217. This kind of connection will then of course use the
  standard FTP port 21 by default.

  4.16 My HTTP POST or PUT requests are slow!

  libcurl makes all POST and PUT requests (except for POST requests with a
  very tiny request body) use the "Expect: 100-continue" header. This header
  allows the server to deny the operation early so that libcurl can bail out
  before having to send any data. This is useful in authentication
  cases and others.

  However, many servers don't implement the Expect: stuff properly and if the
  server doesn't respond (positively) within 1 second libcurl will continue
  and send off the data anyway.

  You can disable libcurl's use of the Expect: header the same way you disable
  any header, using -H / CURLOPT_HTTPHEADER, or by forcing it to use HTTP 1.0.

  4.17 Non-functional connect timeouts

  In most Windows setups having a timeout longer than 21 seconds make no
  difference, as it will only send 3 TCP SYN packets and no more. The second
  packet sent three seconds after the first and the third six seconds after
  the second.  No more than three packets are sent, no matter how long the
  timeout is set.

  See option TcpMaxConnectRetransmissions on this page:
  https://support.microsoft.com/en-us/kb/175523/en-us

  Also, even on non-Windows systems there may run a firewall or anti-virus
  software or similar that accepts the connection but does not actually do
  anything else. This will make (lib)curl to consider the connection connected
  and thus the connect timeout won't trigger.

  4.18 file:// URLs containing drive letters (Windows, NetWare)

  When using curl to try to download a local file, one might use a URL
  in this format:

  file://D:/blah.txt

  You'll find that even if D:\blah.txt does exist, curl returns a 'file
  not found' error.

  According to RFC 1738 (https://www.ietf.org/rfc/rfc1738.txt),
  file:// URLs must contain a host component, but it is ignored by
  most implementations. In the above example, 'D:' is treated as the
  host component, and is taken away. Thus, curl tries to open '/blah.txt'.
  If your system is installed to drive C:, that will resolve to 'C:\blah.txt',
  and if that doesn't exist you will get the not found error.

  To fix this problem, use file:// URLs with *three* leading slashes:

  file:///D:/blah.txt

  Alternatively, if it makes more sense, specify 'localhost' as the host
  component:

  file://localhost/D:/blah.txt

  In either case, curl should now be looking for the correct file.

  4.19 Why doesn't curl return an error when the network cable is unplugged?

  Unplugging a cable is not an error situation. The TCP/IP protocol stack
  was designed to be fault tolerant, so even though there may be a physical
  break somewhere the connection shouldn't be affected, just possibly
  delayed.  Eventually, the physical break will be fixed or the data will be
  re-routed around the physical problem through another path.

  In such cases, the TCP/IP stack is responsible for detecting when the
  network connection is irrevocably lost. Since with some protocols it is
  perfectly legal for the client to wait indefinitely for data, the stack may
  never report a problem, and even when it does, it can take up to 20 minutes
  for it to detect an issue.  The curl option --keepalive-time enables
  keep-alive support in the TCP/IP stack which makes it periodically probe the
  connection to make sure it is still available to send data. That should
  reliably detect any TCP/IP network failure.

  But even that won't detect the network going down before the TCP/IP
  connection is established (e.g. during a DNS lookup) or using protocols that
  don't use TCP.  To handle those situations, curl offers a number of timeouts
  on its own. --speed-limit/--speed-time will abort if the data transfer rate
  falls too low, and --connect-timeout and --max-time can be used to put an
  overall timeout on the connection phase or the entire transfer.

  A libcurl-using application running in a known physical environment (e.g.
  an embedded device with only a single network connection) may want to act
  immediately if its lone network connection goes down.  That can be achieved
  by having the application monitor the network connection on its own using an
  OS-specific mechanism, then signalling libcurl to abort (see also item 5.13).

  4.20 curl doesn't return error for HTTP non-200 responses!

  Correct. Unless you use -f (--fail).

  When doing HTTP transfers, curl will perform exactly what you're asking it
  to do and if successful it will not return an error. You can use curl to
  test your web server's "file not found" page (that gets 404 back), you can
  use it to check your authentication protected web pages (that gets a 401
  back) and so on.

  The specific HTTP response code does not constitute a problem or error for
  curl. It simply sends and delivers HTTP as you asked and if that worked,
  everything is fine and dandy. The response code is generally providing more
  higher level error information that curl doesn't care about. The error was
  not in the HTTP transfer.

  If you want your command line to treat error codes in the 400 and up range
  as errors and thus return a non-zero value and possibly show an error
  message, curl has a dedicated option for that: -f (CURLOPT_FAILONERROR in
  libcurl speak).

  You can also use the -w option and the variable %{response_code} to extract
  the exact response code that was returned in the response.

  4.21 Why is there a HTTP/1.1 in my HTTP/2 request?

  If you use verbose to see the HTTP request when you send off a HTTP/2
  request, it will still say 1.1.

  The reason for this is that we first generate the request to send using the
  old 1.1 style and show that request in the verbose output, and then we
  convert it over to the binary header-compressed HTTP/2 style. The actual
  "1.1" part from that request is then not actually used in the transfer.
  The binary HTTP/2 headers are not human readable.

5. libcurl Issues

  5.1 Is libcurl thread-safe?

  Yes.

  We have written the libcurl code specifically adjusted for multi-threaded
  programs. libcurl will use thread-safe functions instead of non-safe ones if
  your system has such.  Note that you must never share the same handle in
  multiple threads.

  There may be some exceptions to thread safety depending on how libcurl was
  built. Please review the guidelines for thread safety to learn more:
  https://curl.haxx.se/libcurl/c/threadsafe.html

  5.2 How can I receive all data into a large memory chunk?

  [ See also the examples/getinmemory.c source ]

  You are in full control of the callback function that gets called every time
  there is data received from the remote server. You can make that callback do
  whatever you want. You do not have to write the received data to a file.

  One solution to this problem could be to have a pointer to a struct that you
  pass to the callback function. You set the pointer using the
  CURLOPT_WRITEDATA option. Then that pointer will be passed to the callback
  instead of a FILE * to a file:

        /* imaginary struct */
        struct MemoryStruct {
          char *memory;
          size_t size;
        };

        /* imaginary callback function */
        size_t
        WriteMemoryCallback(void *ptr, size_t size, size_t nmemb, void *data)
        {
          size_t realsize = size * nmemb;
          struct MemoryStruct *mem = (struct MemoryStruct *)data;

          mem->memory = (char *)realloc(mem->memory, mem->size + realsize + 1);
          if (mem->memory) {
            memcpy(&(mem->memory[mem->size]), ptr, realsize);
            mem->size += realsize;
            mem->memory[mem->size] = 0;
          }
          return realsize;
        }

  5.3 How do I fetch multiple files with libcurl?

  libcurl has excellent support for transferring multiple files. You should
  just repeatedly set new URLs with curl_easy_setopt() and then transfer it
  with curl_easy_perform(). The handle you get from curl_easy_init() is not
  only reusable, but you're even encouraged to reuse it if you can, as that
  will enable libcurl to use persistent connections.

  5.4 Does libcurl do Winsock initialization on win32 systems?

  Yes, if told to in the curl_global_init() call.

  5.5 Does CURLOPT_WRITEDATA and CURLOPT_READDATA work on win32 ?

  Yes, but you cannot open a FILE * and pass the pointer to a DLL and have
  that DLL use the FILE * (as the DLL and the client application cannot access
  each others' variable memory areas). If you set CURLOPT_WRITEDATA you must
  also use CURLOPT_WRITEFUNCTION as well to set a function that writes the
  file, even if that simply writes the data to the specified FILE *.
  Similarly, if you use CURLOPT_READDATA you must also specify
  CURLOPT_READFUNCTION.

  5.6 What about Keep-Alive or persistent connections?

  curl and libcurl have excellent support for persistent connections when
  transferring several files from the same server.  Curl will attempt to reuse
  connections for all URLs specified on the same command line/config file, and
  libcurl will reuse connections for all transfers that are made using the
  same libcurl handle.

  When you use the easy interface the connection cache is kept within the easy
  handle. If you instead use the multi interface, the connection cache will be
  kept within the multi handle and will be shared among all the easy handles
  that are used within the same multi handle.

  5.7 Link errors when building libcurl on Windows!

  You need to make sure that your project, and all the libraries (both static
  and dynamic) that it links against, are compiled/linked against the same run
  time library.

  This is determined by the /MD, /ML, /MT (and their corresponding /M?d)
  options to the command line compiler. /MD (linking against MSVCRT dll) seems
  to be the most commonly used option.

  When building an application that uses the static libcurl library, you must
  add -DCURL_STATICLIB to your CFLAGS. Otherwise the linker will look for
  dynamic import symbols. If you're using Visual Studio, you need to instead
  add CURL_STATICLIB in the "Preprocessor Definitions" section.

  If you get linker error like "unknown symbol __imp__curl_easy_init ..." you
  have linked against the wrong (static) library.  If you want to use the
  libcurl.dll and import lib, you don't need any extra CFLAGS, but use one of
  the import libraries below. These are the libraries produced by the various
  lib/Makefile.* files:

       Target:          static lib.   import lib for libcurl*.dll.
       -----------------------------------------------------------
       MingW:           libcurl.a     libcurldll.a
       MSVC (release):  libcurl.lib   libcurl_imp.lib
       MSVC (debug):    libcurld.lib  libcurld_imp.lib
       Borland:         libcurl.lib   libcurl_imp.lib

  5.8 libcurl.so.X: open failed: No such file or directory

  This is an error message you might get when you try to run a program linked
  with a shared version of libcurl and your run-time linker (ld.so) couldn't
  find the shared library named libcurl.so.X. (Where X is the number of the
  current libcurl ABI, typically 3 or 4).

  You need to make sure that ld.so finds libcurl.so.X. You can do that
  multiple ways, and it differs somewhat between different operating systems,
  but they are usually:

  * Add an option to the linker command line that specify the hard-coded path
    the run-time linker should check for the lib (usually -R)

  * Set an environment variable (LD_LIBRARY_PATH for example) where ld.so
    should check for libs

  * Adjust the system's config to check for libs in the directory where you've
    put the dir (like Linux's /etc/ld.so.conf)

  'man ld.so' and 'man ld' will tell you more details

  5.9 How does libcurl resolve host names?

  libcurl supports a large a number of different name resolve functions. One
  of them is picked at build-time and will be used unconditionally. Thus, if
  you want to change name resolver function you must rebuild libcurl and tell
  it to use a different function.

  - The non-IPv6 resolver that can use one of four different host name resolve
  calls (depending on what your system supports):

      A - gethostbyname()
      B - gethostbyname_r() with 3 arguments
      C - gethostbyname_r() with 5 arguments
      D - gethostbyname_r() with 6 arguments

  - The IPv6-resolver that uses getaddrinfo()

  - The c-ares based name resolver that uses the c-ares library for resolves.
    Using this offers asynchronous name resolves.

  - The threaded resolver (default option on Windows). It uses:

      A - gethostbyname() on plain IPv4 hosts
      B - getaddrinfo() on IPv6 enabled hosts

  Also note that libcurl never resolves or reverse-lookups addresses given as
  pure numbers, such as 127.0.0.1 or ::1.

  5.10 How do I prevent libcurl from writing the response to stdout?

  libcurl provides a default built-in write function that writes received data
  to stdout. Set the CURLOPT_WRITEFUNCTION to receive the data, or possibly
  set CURLOPT_WRITEDATA to a different FILE * handle.

  5.11 How do I make libcurl not receive the whole HTTP response?

  You make the write callback (or progress callback) return an error and
  libcurl will then abort the transfer.

  5.12 Can I make libcurl fake or hide my real IP address?

  No. libcurl operates on a higher level. Besides, faking IP address would
  imply sending IP packets with a made-up source address, and then you normally
  get a problem with receiving the packet sent back as they would then not be
  routed to you!

  If you use a proxy to access remote sites, the sites will not see your local
  IP address but instead the address of the proxy.

  Also note that on many networks NATs or other IP-munging techniques are used
  that makes you see and use a different IP address locally than what the
  remote server will see you coming from. You may also consider using
  https://www.torproject.org/ .

  5.13 How do I stop an ongoing transfer?

  With the easy interface you make sure to return the correct error code from
  one of the callbacks, but none of them are instant. There is no function you
  can call from another thread or similar that will stop it immediately.
  Instead, you need to make sure that one of the callbacks you use returns an
  appropriate value that will stop the transfer.  Suitable callbacks that you
  can do this with include the progress callback, the read callback and the
  write callback.

  If you're using the multi interface, you can also stop a transfer by
  removing the particular easy handle from the multi stack at any moment you
  think the transfer is done or when you wish to abort the transfer.

  5.14 Using C++ non-static functions for callbacks?

  libcurl is a C library, it doesn't know anything about C++ member functions.

  You can overcome this "limitation" with relative ease using a static
  member function that is passed a pointer to the class:

     // f is the pointer to your object.
     static size_t YourClass::func(void *buffer, size_t sz, size_t n, void *f)
     {
       // Call non-static member function.
       static_cast<YourClass*>(f)->nonStaticFunction();
     }

     // This is how you pass pointer to the static function:
     curl_easy_setopt(hcurl, CURLOPT_WRITEFUNCTION, YourClass::func);
     curl_easy_setopt(hcurl, CURLOPT_WRITEDATA, this);

  5.15 How do I get an FTP directory listing?

  If you end the FTP URL you request with a slash, libcurl will provide you
  with a directory listing of that given directory. You can also set
  CURLOPT_CUSTOMREQUEST to alter what exact listing command libcurl would use
  to list the files.

  The follow-up question tends to be how is a program supposed to parse the
  directory listing. How does it know what's a file and what's a dir and what's
  a symlink etc. If the FTP server supports the MLSD command then it will
  return data in a machine-readable format that can be parsed for type. The
  types are specified by RFC3659 section 7.5.1. If MLSD is not supported then
  you have to work with what you're given. The LIST output format is entirely
  at the server's own liking and the NLST output doesn't reveal any types and
  in many cases doesn't even include all the directory entries. Also, both LIST
  and NLST tend to hide unix-style hidden files (those that start with a dot)
  by default so you need to do "LIST -a" or similar to see them.

  Example - List only directories.
  ftp.funet.fi supports MLSD and ftp.kernel.org does not:

     curl -s ftp.funet.fi/pub/ -X MLSD | \
       perl -lne 'print if s/(?:^|;)type=dir;[^ ]+ (.+)$/$1/'

     curl -s ftp.kernel.org/pub/linux/kernel/ | \
       perl -lne 'print if s/^d[-rwx]{9}(?: +[^ ]+){7} (.+)$/$1/'

  If you need to parse LIST output in libcurl one such existing
  list parser is available at https://cr.yp.to/ftpparse.html  Versions of
  libcurl since 7.21.0 also provide the ability to specify a wildcard to
  download multiple files from one FTP directory.

  5.16 I want a different time-out!

  Time and time again users realize that CURLOPT_TIMEOUT and
  CURLOPT_CONNECTIMEOUT are not sufficiently advanced or flexible to cover all
  the various use cases and scenarios applications end up with.

  libcurl offers many more ways to time-out operations. A common alternative
  is to use the CURLOPT_LOW_SPEED_LIMIT and CURLOPT_LOW_SPEED_TIME options to
  specify the lowest possible speed to accept before to consider the transfer
  timed out.

  The most flexible way is by writing your own time-out logic and using
  CURLOPT_XFERINFOFUNCTION (perhaps in combination with other callbacks) and
  use that to figure out exactly when the right condition is met when the
  transfer should get stopped.

  5.17 Can I write a server with libcurl?

  No. libcurl offers no functions or building blocks to build any kind of
  internet protocol server. libcurl is only a client-side library. For server
  libraries, you need to continue your search elsewhere but there exist many
  good open source ones out there for most protocols you could possibly want a
  server for. And there are really good stand-alone ones that have been tested
  and proven for many years. There's no need for you to reinvent them!

  5.18 Does libcurl use threads?

  Put simply: no, libcurl will execute in the same thread you call it in. All
  callbacks will be called in the same thread as the one you call libcurl in.

  If you want to avoid your thread to be blocked by the libcurl call, you make
  sure you use the non-blocking API which will do transfers asynchronously -
  but still in the same single thread.

  libcurl will potentially internally use threads for name resolving, if it
  was built to work like that, but in those cases it'll create the child
  threads by itself and they will only be used and then killed internally by
  libcurl and never exposed to the outside.

6. License Issues

  Curl and libcurl are released under a MIT/X derivate license. The license is
  very liberal and should not impose a problem for your project. This section
  is just a brief summary for the cases we get the most questions. (Parts of
  this section was much enhanced by Bjorn Reese.)

  We are not lawyers and this is not legal advice. You should probably consult
  one if you want true and accurate legal insights without our prejudice. Note
  especially that this section concerns the libcurl license only; compiling in
  features of libcurl that depend on other libraries (e.g. OpenSSL) may affect
  the licensing obligations of your application.

  6.1 I have a GPL program, can I use the libcurl library?

  Yes!

  Since libcurl may be distributed under the MIT/X derivate license, it can be
  used together with GPL in any software.

  6.2 I have a closed-source program, can I use the libcurl library?

  Yes!

  libcurl does not put any restrictions on the program that uses the library.

  6.3 I have a BSD licensed program, can I use the libcurl library?

  Yes!

  libcurl does not put any restrictions on the program that uses the library.

  6.4 I have a program that uses LGPL libraries, can I use libcurl?

  Yes!

  The LGPL license doesn't clash with other licenses.

  6.5 Can I modify curl/libcurl for my program and keep the changes secret?

  Yes!

  The MIT/X derivate license practically allows you to do almost anything with
  the sources, on the condition that the copyright texts in the sources are
  left intact.

  6.6 Can you please change the curl/libcurl license to XXXX?

  No.

  We have carefully picked this license after years of development and
  discussions and a large amount of people have contributed with source code
  knowing that this is the license we use. This license puts the restrictions
  we want on curl/libcurl and it does not spread to other programs or
  libraries that use it. It should be possible for everyone to use libcurl or
  curl in their projects, no matter what license they already have in use.

  6.7 What are my obligations when using libcurl in my commercial apps?

  Next to none. All you need to adhere to is the MIT-style license (stated in
  the COPYING file) which basically says you have to include the copyright
  notice in "all copies" and that you may not use the copyright holder's name
  when promoting your software.

  You do not have to release any of your source code.

  You do not have to reveal or make public any changes to the libcurl source
  code.

  You do not have to broadcast to the world that you are using libcurl within
  your app.

  All we ask is that you disclose "the copyright notice and this permission
  notice" somewhere. Most probably like in the documentation or in the section
  where other third party dependencies already are mentioned and acknowledged.

  As can be seen here: https://curl.haxx.se/docs/companies.html and elsewhere,
  more and more companies are discovering the power of libcurl and take
  advantage of it even in commercial environments.


7. PHP/CURL Issues

  7.1 What is PHP/CURL?

  The module for PHP that makes it possible for PHP programs to access curl-
  functions from within PHP.

  In the cURL project we call this module PHP/CURL to differentiate it from
  curl the command line tool and libcurl the library. The PHP team however
  does not refer to it like this (for unknown reasons). They call it plain
  CURL (often using all caps) or sometimes ext/curl, but both cause much
  confusion to users which in turn gives us a higher question load.

  7.2 Who wrote PHP/CURL?

  PHP/CURL was initially written by Sterling Hughes.

  7.3 Can I perform multiple requests using the same handle?

  Yes - at least in PHP version 4.3.8 and later (this has been known to not
  work in earlier versions, but the exact version when it started to work is
  unknown to me).

  After a transfer, you just set new options in the handle and make another
  transfer. This will make libcurl re-use the same connection if it can.

  7.4 Does PHP/CURL have dependencies?

  PHP/CURL is a module that comes with the regular PHP package. It depends on
  and uses libcurl, so you need to have libcurl installed properly before
  PHP/CURL can be used.
usr/share/doc/alt-curlssl/TheArtOfHttpScripting000064400000071034151162240110015611 0ustar00                                  _   _ ____  _
                              ___| | | |  _ \| |
                             / __| | | | |_) | |
                            | (__| |_| |  _ <| |___
                             \___|\___/|_| \_\_____|


The Art Of Scripting HTTP Requests Using Curl

 1. HTTP Scripting
 1.1 Background
 1.2 The HTTP Protocol
 1.3 See the Protocol
 1.4 See the Timing
 1.5 See the Response
 2. URL
 2.1 Spec
 2.2 Host
 2.3 Port number
 2.4 User name and password
 2.5 Path part
 3. Fetch a page
 3.1 GET
 3.2 HEAD
 3.3 Multiple URLs in a single command line
 3.4 Multiple HTTP methods in a single command line
 4. HTML forms
 4.1 Forms explained
 4.2 GET
 4.3 POST
 4.4 File Upload POST
 4.5 Hidden Fields
 4.6 Figure Out What A POST Looks Like
 5. HTTP upload
 5.1 PUT
 6. HTTP Authentication
 6.1 Basic Authentication
 6.2 Other Authentication
 6.3 Proxy Authentication
 6.4 Hiding credentials
 7. More HTTP Headers
 7.1 Referer
 7.2 User Agent
 8. Redirects
 8.1 Location header
 8.2 Other redirects
 9. Cookies
 9.1 Cookie Basics
 9.2 Cookie options
 10. HTTPS
 10.1 HTTPS is HTTP secure
 10.2 Certificates
 11. Custom Request Elements
 11.1 Modify method and headers
 11.2 More on changed methods
 12. Web Login
 12.1 Some login tricks
 13. Debug
 13.1 Some debug tricks
 14. References
 14.1 Standards
 14.2 Sites

==============================================================================

1. HTTP Scripting

 1.1 Background

 This document assumes that you're familiar with HTML and general networking.

 The increasing amount of applications moving to the web has made "HTTP
 Scripting" more frequently requested and wanted. To be able to automatically
 extract information from the web, to fake users, to post or upload data to
 web servers are all important tasks today.

 Curl is a command line tool for doing all sorts of URL manipulations and
 transfers, but this particular document will focus on how to use it when
 doing HTTP requests for fun and profit. I'll assume that you know how to
 invoke 'curl --help' or 'curl --manual' to get basic information about it.

 Curl is not written to do everything for you. It makes the requests, it gets
 the data, it sends data and it retrieves the information. You probably need
 to glue everything together using some kind of script language or repeated
 manual invokes.

 1.2 The HTTP Protocol

 HTTP is the protocol used to fetch data from web servers. It is a very simple
 protocol that is built upon TCP/IP. The protocol also allows information to
 get sent to the server from the client using a few different methods, as will
 be shown here.

 HTTP is plain ASCII text lines being sent by the client to a server to
 request a particular action, and then the server replies a few text lines
 before the actual requested content is sent to the client.

 The client, curl, sends a HTTP request. The request contains a method (like
 GET, POST, HEAD etc), a number of request headers and sometimes a request
 body. The HTTP server responds with a status line (indicating if things went
 well), response headers and most often also a response body. The "body" part
 is the plain data you requested, like the actual HTML or the image etc.

 1.3 See the Protocol

  Using curl's option --verbose (-v as a short option) will display what kind
  of commands curl sends to the server, as well as a few other informational
  texts.

  --verbose is the single most useful option when it comes to debug or even
  understand the curl<->server interaction.

  Sometimes even --verbose is not enough. Then --trace and --trace-ascii offer
  even more details as they show EVERYTHING curl sends and receives. Use it
  like this:

      curl --trace-ascii debugdump.txt http://www.example.com/

 1.4 See the Timing

  Many times you may wonder what exactly is taking all the time, or you just
  want to know the amount of milliseconds between two points in a
  transfer. For those, and other similar situations, the --trace-time option
  is what you need. It'll prepend the time to each trace output line:

      curl --trace-ascii d.txt --trace-time http://example.com/

 1.5 See the Response

  By default curl sends the response to stdout. You need to redirect it
  somewhere to avoid that, most often that is done with -o or -O.

2. URL

 2.1 Spec

 The Uniform Resource Locator format is how you specify the address of a
 particular resource on the Internet. You know these, you've seen URLs like
 https://curl.haxx.se or https://yourbank.com a million times. RFC 3986 is the
 canonical spec. And yeah, the formal name is not URL, it is URI.

 2.2 Host

 The host name is usually resolved using DNS or your /etc/hosts file to an IP
 address and that's what curl will communicate with. Alternatively you specify
 the IP address directly in the URL instead of a name.

 For development and other trying out situations, you can point to a different
 IP address for a host name than what would otherwise be used, by using curl's
 --resolve option:

      curl --resolve www.example.org:80:127.0.0.1 http://www.example.org/

 2.3 Port number

 Each protocol curl supports operates on a default port number, be it over TCP
 or in some cases UDP. Normally you don't have to take that into
 consideration, but at times you run test servers on other ports or
 similar. Then you can specify the port number in the URL with a colon and a
 number immediately following the host name. Like when doing HTTP to port
 1234:

      curl http://www.example.org:1234/

 The port number you specify in the URL is the number that the server uses to
 offer its services. Sometimes you may use a local proxy, and then you may
 need to specify that proxy's port number separately for what curl needs to
 connect to locally. Like when using a HTTP proxy on port 4321:

      curl --proxy http://proxy.example.org:4321 http://remote.example.org/

 2.4 User name and password

 Some services are setup to require HTTP authentication and then you need to
 provide name and password which is then transferred to the remote site in
 various ways depending on the exact authentication protocol used.

 You can opt to either insert the user and password in the URL or you can
 provide them separately:

      curl http://user:password@example.org/

 or

      curl -u user:password http://example.org/

 You need to pay attention that this kind of HTTP authentication is not what
 is usually done and requested by user-oriented web sites these days. They
 tend to use forms and cookies instead.

 2.5 Path part

 The path part is just sent off to the server to request that it sends back
 the associated response. The path is what is to the right side of the slash
 that follows the host name and possibly port number.

3. Fetch a page

 3.1 GET

 The simplest and most common request/operation made using HTTP is to GET a
 URL. The URL could itself refer to a web page, an image or a file. The client
 issues a GET request to the server and receives the document it asked for.
 If you issue the command line

        curl https://curl.haxx.se

 you get a web page returned in your terminal window. The entire HTML document
 that that URL holds.

 All HTTP replies contain a set of response headers that are normally hidden,
 use curl's --include (-i) option to display them as well as the rest of the
 document.

 3.2 HEAD

 You can ask the remote server for ONLY the headers by using the --head (-I)
 option which will make curl issue a HEAD request. In some special cases
 servers deny the HEAD method while others still work, which is a particular
 kind of annoyance.

 The HEAD method is defined and made so that the server returns the headers
 exactly the way it would do for a GET, but without a body. It means that you
 may see a Content-Length: in the response headers, but there must not be an
 actual body in the HEAD response.

 3.3 Multiple URLs in a single command line

 A single curl command line may involve one or many URLs. The most common case
 is probably to just use one, but you can specify any amount of URLs. Yes
 any. No limits. You'll then get requests repeated over and over for all the
 given URLs.

 Example, send two GETs:

    curl http://url1.example.com http://url2.example.com

 If you use --data to POST to the URL, using multiple URLs means that you send
 that same POST to all the given URLs.

 Example, send two POSTs:

    curl --data name=curl http://url1.example.com http://url2.example.com


 3.4 Multiple HTTP methods in a single command line

 Sometimes you need to operate on several URLs in a single command line and do
 different HTTP methods on each. For this, you'll enjoy the --next option. It
 is basically a separator that separates a bunch of options from the next. All
 the URLs before --next will get the same method and will get all the POST
 data merged into one.

 When curl reaches the --next on the command line, it'll sort of reset the
 method and the POST data and allow a new set.

 Perhaps this is best shown with a few examples. To send first a HEAD and then
 a GET:

   curl -I http://example.com --next http://example.com

 To first send a POST and then a GET:

   curl -d score=10 http://example.com/post.cgi --next http://example.com/results.html


4. HTML forms

 4.1 Forms explained

 Forms are the general way a web site can present a HTML page with fields for
 the user to enter data in, and then press some kind of 'OK' or 'Submit'
 button to get that data sent to the server. The server then typically uses
 the posted data to decide how to act. Like using the entered words to search
 in a database, or to add the info in a bug tracking system, display the entered
 address on a map or using the info as a login-prompt verifying that the user
 is allowed to see what it is about to see.

 Of course there has to be some kind of program on the server end to receive
 the data you send. You cannot just invent something out of the air.

 4.2 GET

  A GET-form uses the method GET, as specified in HTML like:

        <form method="GET" action="junk.cgi">
          <input type=text name="birthyear">
          <input type=submit name=press value="OK">
        </form>

  In your favorite browser, this form will appear with a text box to fill in
  and a press-button labeled "OK". If you fill in '1905' and press the OK
  button, your browser will then create a new URL to get for you. The URL will
  get "junk.cgi?birthyear=1905&press=OK" appended to the path part of the
  previous URL.

  If the original form was seen on the page "www.hotmail.com/when/birth.html",
  the second page you'll get will become
  "www.hotmail.com/when/junk.cgi?birthyear=1905&press=OK".

  Most search engines work this way.

  To make curl do the GET form post for you, just enter the expected created
  URL:

        curl "http://www.hotmail.com/when/junk.cgi?birthyear=1905&press=OK"

 4.3 POST

  The GET method makes all input field names get displayed in the URL field of
  your browser. That's generally a good thing when you want to be able to
  bookmark that page with your given data, but it is an obvious disadvantage
  if you entered secret information in one of the fields or if there are a
  large amount of fields creating a very long and unreadable URL.

  The HTTP protocol then offers the POST method. This way the client sends the
  data separated from the URL and thus you won't see any of it in the URL
  address field.

  The form would look very similar to the previous one:

        <form method="POST" action="junk.cgi">
          <input type=text name="birthyear">
          <input type=submit name=press value=" OK ">
        </form>

  And to use curl to post this form with the same data filled in as before, we
  could do it like:

        curl --data "birthyear=1905&press=%20OK%20" \
        http://www.example.com/when.cgi

  This kind of POST will use the Content-Type
  application/x-www-form-urlencoded and is the most widely used POST kind.

  The data you send to the server MUST already be properly encoded, curl will
  not do that for you. For example, if you want the data to contain a space,
  you need to replace that space with %20 etc. Failing to comply with this
  will most likely cause your data to be received wrongly and messed up.

  Recent curl versions can in fact url-encode POST data for you, like this:

        curl --data-urlencode "name=I am Daniel" http://www.example.com

  If you repeat --data several times on the command line, curl will
  concatenate all the given data pieces - and put a '&' symbol between each
  data segment.

 4.4 File Upload POST

  Back in late 1995 they defined an additional way to post data over HTTP. It
  is documented in the RFC 1867, why this method sometimes is referred to as
  RFC1867-posting.

  This method is mainly designed to better support file uploads. A form that
  allows a user to upload a file could be written like this in HTML:

    <form method="POST" enctype='multipart/form-data' action="upload.cgi">
      <input type=file name=upload>
      <input type=submit name=press value="OK">
    </form>

  This clearly shows that the Content-Type about to be sent is
  multipart/form-data.

  To post to a form like this with curl, you enter a command line like:

        curl --form upload=@localfilename --form press=OK [URL]

 4.5 Hidden Fields

  A very common way for HTML based applications to pass state information
  between pages is to add hidden fields to the forms. Hidden fields are
  already filled in, they aren't displayed to the user and they get passed
  along just as all the other fields.

  A similar example form with one visible field, one hidden field and one
  submit button could look like:

    <form method="POST" action="foobar.cgi">
      <input type=text name="birthyear">
      <input type=hidden name="person" value="daniel">
      <input type=submit name="press" value="OK">
    </form>

  To POST this with curl, you won't have to think about if the fields are
  hidden or not. To curl they're all the same:

        curl --data "birthyear=1905&press=OK&person=daniel" [URL]

 4.6 Figure Out What A POST Looks Like

  When you're about fill in a form and send to a server by using curl instead
  of a browser, you're of course very interested in sending a POST exactly the
  way your browser does.

  An easy way to get to see this, is to save the HTML page with the form on
  your local disk, modify the 'method' to a GET, and press the submit button
  (you could also change the action URL if you want to).

  You will then clearly see the data get appended to the URL, separated with a
  '?'-letter as GET forms are supposed to.

5. HTTP upload

 5.1 PUT

 Perhaps the best way to upload data to a HTTP server is to use PUT. Then
 again, this of course requires that someone put a program or script on the
 server end that knows how to receive a HTTP PUT stream.

 Put a file to a HTTP server with curl:

        curl --upload-file uploadfile http://www.example.com/receive.cgi

6. HTTP Authentication

 6.1 Basic Authentication

 HTTP Authentication is the ability to tell the server your username and
 password so that it can verify that you're allowed to do the request you're
 doing. The Basic authentication used in HTTP (which is the type curl uses by
 default) is *plain* *text* based, which means it sends username and password
 only slightly obfuscated, but still fully readable by anyone that sniffs on
 the network between you and the remote server.

 To tell curl to use a user and password for authentication:

        curl --user name:password http://www.example.com

 6.2 Other Authentication

 The site might require a different authentication method (check the headers
 returned by the server), and then --ntlm, --digest, --negotiate or even
 --anyauth might be options that suit you.

 6.3 Proxy Authentication

 Sometimes your HTTP access is only available through the use of a HTTP
 proxy. This seems to be especially common at various companies. A HTTP proxy
 may require its own user and password to allow the client to get through to
 the Internet. To specify those with curl, run something like:

        curl --proxy-user proxyuser:proxypassword curl.haxx.se

 If your proxy requires the authentication to be done using the NTLM method,
 use --proxy-ntlm, if it requires Digest use --proxy-digest.

 If you use any one of these user+password options but leave out the password
 part, curl will prompt for the password interactively.

 6.4 Hiding credentials

 Do note that when a program is run, its parameters might be possible to see
 when listing the running processes of the system. Thus, other users may be
 able to watch your passwords if you pass them as plain command line
 options. There are ways to circumvent this.

 It is worth noting that while this is how HTTP Authentication works, very
 many web sites will not use this concept when they provide logins etc. See
 the Web Login chapter further below for more details on that.

7. More HTTP Headers

 7.1 Referer

 A HTTP request may include a 'referer' field (yes it is misspelled), which
 can be used to tell from which URL the client got to this particular
 resource. Some programs/scripts check the referer field of requests to verify
 that this wasn't arriving from an external site or an unknown page. While
 this is a stupid way to check something so easily forged, many scripts still
 do it. Using curl, you can put anything you want in the referer-field and
 thus more easily be able to fool the server into serving your request.

 Use curl to set the referer field with:

        curl --referer http://www.example.come http://www.example.com

 7.2 User Agent

 Very similar to the referer field, all HTTP requests may set the User-Agent
 field. It names what user agent (client) that is being used. Many
 applications use this information to decide how to display pages. Silly web
 programmers try to make different pages for users of different browsers to
 make them look the best possible for their particular browsers. They usually
 also do different kinds of javascript, vbscript etc.

 At times, you will see that getting a page with curl will not return the same
 page that you see when getting the page with your browser. Then you know it
 is time to set the User Agent field to fool the server into thinking you're
 one of those browsers.

 To make curl look like Internet Explorer 5 on a Windows 2000 box:

  curl --user-agent "Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0)" [URL]

 Or why not look like you're using Netscape 4.73 on an old Linux box:

  curl --user-agent "Mozilla/4.73 [en] (X11; U; Linux 2.2.15 i686)" [URL]

8. Redirects

 8.1 Location header

 When a resource is requested from a server, the reply from the server may
 include a hint about where the browser should go next to find this page, or a
 new page keeping newly generated output. The header that tells the browser
 to redirect is Location:.

 Curl does not follow Location: headers by default, but will simply display
 such pages in the same manner it displays all HTTP replies. It does however
 feature an option that will make it attempt to follow the Location: pointers.

 To tell curl to follow a Location:

        curl --location http://www.example.com

 If you use curl to POST to a site that immediately redirects you to another
 page, you can safely use --location (-L) and --data/--form together. Curl will
 only use POST in the first request, and then revert to GET in the following
 operations.

 8.2 Other redirects

 Browser typically support at least two other ways of redirects that curl
 doesn't: first the html may contain a meta refresh tag that asks the browser
 to load a specific URL after a set number of seconds, or it may use
 javascript to do it.

9. Cookies

 9.1 Cookie Basics

 The way the web browsers do "client side state control" is by using
 cookies. Cookies are just names with associated contents. The cookies are
 sent to the client by the server. The server tells the client for what path
 and host name it wants the cookie sent back, and it also sends an expiration
 date and a few more properties.

 When a client communicates with a server with a name and path as previously
 specified in a received cookie, the client sends back the cookies and their
 contents to the server, unless of course they are expired.

 Many applications and servers use this method to connect a series of requests
 into a single logical session. To be able to use curl in such occasions, we
 must be able to record and send back cookies the way the web application
 expects them. The same way browsers deal with them.

 9.2 Cookie options

 The simplest way to send a few cookies to the server when getting a page with
 curl is to add them on the command line like:

        curl --cookie "name=Daniel" http://www.example.com

 Cookies are sent as common HTTP headers. This is practical as it allows curl
 to record cookies simply by recording headers. Record cookies with curl by
 using the --dump-header (-D) option like:

        curl --dump-header headers_and_cookies http://www.example.com

 (Take note that the --cookie-jar option described below is a better way to
 store cookies.)

 Curl has a full blown cookie parsing engine built-in that comes in use if you
 want to reconnect to a server and use cookies that were stored from a
 previous connection (or hand-crafted manually to fool the server into
 believing you had a previous connection). To use previously stored cookies,
 you run curl like:

        curl --cookie stored_cookies_in_file http://www.example.com

 Curl's "cookie engine" gets enabled when you use the --cookie option. If you
 only want curl to understand received cookies, use --cookie with a file that
 doesn't exist. Example, if you want to let curl understand cookies from a
 page and follow a location (and thus possibly send back cookies it received),
 you can invoke it like:

        curl --cookie nada --location http://www.example.com

 Curl has the ability to read and write cookie files that use the same file
 format that Netscape and Mozilla once used. It is a convenient way to share
 cookies between scripts or invokes. The --cookie (-b) switch automatically
 detects if a given file is such a cookie file and parses it, and by using the
 --cookie-jar (-c) option you'll make curl write a new cookie file at the end
 of an operation:

        curl --cookie cookies.txt --cookie-jar newcookies.txt \
        http://www.example.com

10. HTTPS

 10.1 HTTPS is HTTP secure

 There are a few ways to do secure HTTP transfers. By far the most common
 protocol for doing this is what is generally known as HTTPS, HTTP over
 SSL. SSL encrypts all the data that is sent and received over the network and
 thus makes it harder for attackers to spy on sensitive information.

 SSL (or TLS as the latest version of the standard is called) offers a
 truckload of advanced features to allow all those encryptions and key
 infrastructure mechanisms encrypted HTTP requires.

 Curl supports encrypted fetches when built to use a TLS library and it can be
 built to use one out of a fairly large set of libraries - "curl -V" will show
 which one your curl was built to use (if any!). To get a page from a HTTPS
 server, simply run curl like:

        curl https://secure.example.com

 10.2 Certificates

  In the HTTPS world, you use certificates to validate that you are the one
  you claim to be, as an addition to normal passwords. Curl supports client-
  side certificates. All certificates are locked with a pass phrase, which you
  need to enter before the certificate can be used by curl. The pass phrase
  can be specified on the command line or if not, entered interactively when
  curl queries for it. Use a certificate with curl on a HTTPS server like:

        curl --cert mycert.pem https://secure.example.com

  curl also tries to verify that the server is who it claims to be, by
  verifying the server's certificate against a locally stored CA cert
  bundle. Failing the verification will cause curl to deny the connection. You
  must then use --insecure (-k) in case you want to tell curl to ignore that
  the server can't be verified.

  More about server certificate verification and ca cert bundles can be read
  in the SSLCERTS document, available online here:

        https://curl.haxx.se/docs/sslcerts.html

  At times you may end up with your own CA cert store and then you can tell
  curl to use that to verify the server's certificate:

        curl --cacert ca-bundle.pem https://example.com/


11. Custom Request Elements

11.1 Modify method and headers

 Doing fancy stuff, you may need to add or change elements of a single curl
 request.

 For example, you can change the POST request to a PROPFIND and send the data
 as "Content-Type: text/xml" (instead of the default Content-Type) like this:

         curl --data "<xml>" --header "Content-Type: text/xml" \
              --request PROPFIND url.com

 You can delete a default header by providing one without content. Like you
 can ruin the request by chopping off the Host: header:

        curl --header "Host:" http://www.example.com

 You can add headers the same way. Your server may want a "Destination:"
 header, and you can add it:

        curl --header "Destination: http://nowhere" http://example.com

 11.2 More on changed methods

 It should be noted that curl selects which methods to use on its own
 depending on what action to ask for. -d will do POST, -I will do HEAD and so
 on. If you use the --request / -X option you can change the method keyword
 curl selects, but you will not modify curl's behavior. This means that if you
 for example use -d "data" to do a POST, you can modify the method to a
 PROPFIND with -X and curl will still think it sends a POST. You can change
 the normal GET to a POST method by simply adding -X POST in a command line
 like:

        curl -X POST http://example.org/

 ... but curl will still think and act as if it sent a GET so it won't send any
 request body etc.


12. Web Login

 12.1 Some login tricks

 While not strictly just HTTP related, it still causes a lot of people problems
 so here's the executive run-down of how the vast majority of all login forms
 work and how to login to them using curl.

 It can also be noted that to do this properly in an automated fashion, you
 will most certainly need to script things and do multiple curl invokes etc.

 First, servers mostly use cookies to track the logged-in status of the
 client, so you will need to capture the cookies you receive in the
 responses. Then, many sites also set a special cookie on the login page (to
 make sure you got there through their login page) so you should make a habit
 of first getting the login-form page to capture the cookies set there.

 Some web-based login systems feature various amounts of javascript, and
 sometimes they use such code to set or modify cookie contents. Possibly they
 do that to prevent programmed logins, like this manual describes how to...
 Anyway, if reading the code isn't enough to let you repeat the behavior
 manually, capturing the HTTP requests done by your browsers and analyzing the
 sent cookies is usually a working method to work out how to shortcut the
 javascript need.

 In the actual <form> tag for the login, lots of sites fill-in random/session
 or otherwise secretly generated hidden tags and you may need to first capture
 the HTML code for the login form and extract all the hidden fields to be able
 to do a proper login POST. Remember that the contents need to be URL encoded
 when sent in a normal POST.

13. Debug

 13.1 Some debug tricks

 Many times when you run curl on a site, you'll notice that the site doesn't
 seem to respond the same way to your curl requests as it does to your
 browser's.

 Then you need to start making your curl requests more similar to your
 browser's requests:

 * Use the --trace-ascii option to store fully detailed logs of the requests
 for easier analyzing and better understanding

 * Make sure you check for and use cookies when needed (both reading with
 --cookie and writing with --cookie-jar)

 * Set user-agent to one like a recent popular browser does

 * Set referer like it is set by the browser

 * If you use POST, make sure you send all the fields and in the same order as
 the browser does it.

 A very good helper to make sure you do this right, is the LiveHTTPHeader tool
 that lets you view all headers you send and receive with Mozilla/Firefox
 (even when using HTTPS). Chrome features similar functionality out of the box
 among the developer's tools.

 A more raw approach is to capture the HTTP traffic on the network with tools
 such as ethereal or tcpdump and check what headers that were sent and
 received by the browser. (HTTPS makes this technique inefficient.)

14. References

 14.1 Standards

 RFC 7230 is a must to read if you want in-depth understanding of the HTTP
 protocol

 RFC 3986 explains the URL syntax

 RFC 1867 defines the HTTP post upload format

 RFC 6525 defines how HTTP cookies work

 14.2 Sites

 https://curl.haxx.se is the home of the curl project
usr/share/doc/alt-curlssl/RESOURCES000064400000004477151162240170013001 0ustar00                                  _   _ ____  _
  Project                     ___| | | |  _ \| |
                             / __| | | | |_) | |
                            | (__| |_| |  _ <| |___
                             \___|\___/|_| \_\_____|


This document lists documents and standards used by curl.

  RFC 959  - FTP Protocol

  RFC 1635 - How to Use Anonymous FTP

  RFC 1738 - Uniform Resource Locators

  RFC 1777 - Lightweight Directory Access Protocol (LDAP)

  RFC 1808 - Relative Uniform Resource Locators

  RFC 1867 - Form-based File Upload in HTML

  RFC 1950 - ZLIB Compressed Data Format Specification

  RFC 1951 - DEFLATE Compressed Data Format Specification

  RFC 1952 - GZIP File Format Specification

  RFC 1959 - LDAP URL Syntax

  RFC 2045-2049 - Everything you need to know about MIME! (needed for form
                  based upload)

  RFC 2068 - HTTP 1.1 (obsoleted by RFC 2616)

  RFC 2104 - Keyed-Hashing for Message Authentication

  RFC 2109 - HTTP State Management Mechanism (cookie stuff)
           - Also, read Netscape's specification at
             https://curl.haxx.se/rfc/cookie_spec.html

  RFC 2183 - The Content-Disposition Header Field

  RFC 2195 - CRAM-MD5 Authentication

  RFC 2229 - A Dictionary Server Protocol

  RFC 2255 - Newer LDAP URL Format

  RFC 2231 - MIME Parameter Value and Encoded Word Extensions:
             Character Sets, Languages, and Continuations

  RFC 2388 - "Returning Values from Forms: multipart/form-data"
             Use this as an addition to the RFC1867

  RFC 2396 - "Uniform Resource Identifiers: Generic Syntax and Semantics" This
             one obsoletes RFC 1738, but since RFC 1738 is often mentioned
             I've left it in this list.

  RFC 2428 - FTP Extensions for IPv6 and NATs

  RFC 2577 - FTP Security Considerations

  RFC 2616 - HTTP 1.1, the latest

  RFC 2617 - HTTP Authentication

  RFC 2718 - Guidelines for new URL Schemes

  RFC 2732 - Format for Literal IPv6 Addresses in URL's

  RFC 2818 - HTTP Over TLS (TLS is the successor to SSL)

  RFC 2821 - Simple Mail Transfer Protocol (SMTP)

  RFC 2964 - Use of HTTP State Management

  RFC 2965 - HTTP State Management Mechanism. Cookies. Obsoletes RFC2109

  RFC 3207 - SMTP Over TLS

  RFC 4616 - PLAIN Authentication

  RFC 4954 - SMTP Authentication

  RFC 7932 - Brotli Compressed Data Format
usr/share/doc/alt-curlssl/CHANGES000064400000661772151162240240012504 0ustar00                                  _   _ ____  _
                              ___| | | |  _ \| |
                             / __| | | | |_) | |
                            | (__| |_| |  _ <| |___
                             \___|\___/|_| \_\_____|

                                  Changelog

Version 7.64.0 (6 Feb 2019)

Daniel Stenberg (6 Feb 2019)
- RELEASE-NOTES: 7.64.0

- RELEASE-PROCEDURE: update the release calendar

- THANKS: 7.64.0 status

Daniel Gustafsson (5 Feb 2019)
- ROADMAP: remove already performed item
  
  Commit 7a09b52c98ac8d840a8a9907b1a1d9a9e684bcf5 introduced support
  for the draft-ietf-httpbis-cookie-alone-01 cookie draft, and while
  the entry was removed from the TODO it was mistakenly left here.
  Fix by removing and rewording the entry slightly.
  
  Closes #3530
  Reviewed-by: Daniel Stenberg <daniel@haxx.se>

- [Etienne Simard brought this change]

  CONTRIBUTE.md: Fix grammatical errors
  
  Fix grammatical errors making the document read better. Also fixes
  a typo.
  
  Closes #3525
  Reviewed-by: Daniel Gustafsson <daniel@yesql.se>

Daniel Stenberg (4 Feb 2019)
- [Julian Z brought this change]

  docs: use $(INSTALL_DATA) to install man page
  
  Fixes #3518
  Closes #3522

Jay Satiro (4 Feb 2019)
- [Ladar Levison brought this change]

  runtests.pl: Fix perl call to include srcdir
  
  - Use explicit include opt for perl calls.
  
  Prior to this change some scripts couldn't find their dependencies.
  
  At the top, perl is called using with the "-Isrcdir" option, and it
  works:
  
  https://github.com/curl/curl/blob/curl-7_63_0/tests/runtests.pl#L183
  
  But on line 3868, that option is omitted. This caused problems for me,
  as the symbol-scan.pl script in particular couldn't find its
  dependencies properly:
  
  https://github.com/curl/curl/blob/curl-7_63_0/tests/runtests.pl#L3868
  
  This patch fixes that oversight by making calls to perl sub-shells
  uniform.
  
  Closes https://github.com/curl/curl/pull/3496

Daniel Stenberg (4 Feb 2019)
- [Daniel Gustafsson brought this change]

  smtp: avoid risk of buffer overflow in strtol
  
  If the incoming len 5, but the buffer does not have a termination
  after 5 bytes, the strtol() call may keep reading through the line
  buffer until is exceeds its boundary. Fix by ensuring that we are
  using a bounded read with a temporary buffer on the stack.
  
  Bug: https://curl.haxx.se/docs/CVE-2019-3823.html
  Reported-by: Brian Carpenter (Geeknik Labs)
  CVE-2019-3823

- ntlm: fix *_type3_message size check to avoid buffer overflow
  
  Bug: https://curl.haxx.se/docs/CVE-2019-3822.html
  Reported-by: Wenxiang Qian
  CVE-2019-3822

- NTLM: fix size check condition for type2 received data
  
  Bug: https://curl.haxx.se/docs/CVE-2018-16890.html
  Reported-by: Wenxiang Qian
  CVE-2018-16890

Marcel Raad (1 Feb 2019)
- [georgeok brought this change]

  spnego_sspi: add support for channel binding
  
  Attempt to add support for Secure Channel binding when negotiate
  authentication is used. The problem to solve is that by default IIS
  accepts channel binding and curl doesn't utilise them. The result was a
  401 response. Scope affects only the Schannel(winssl)-SSPI combination.
  
  Fixes https://github.com/curl/curl/issues/3503
  Closes https://github.com/curl/curl/pull/3509

Daniel Stenberg (1 Feb 2019)
- RELEASE-NOTES: synced

- schannel: stop calling it "winssl"
  
  Stick to "Schannel" everywhere. The configure option --with-winssl is
  kept to allow existing builds to work but --with-schannel is added as an
  alias.
  
  Closes #3504

- multi: set the EXPIRE_*TIMEOUT timers at TIMER_STARTSINGLE time
  
  To make sure Curl_timeleft() also thinks the timeout has been reached
  when one of the EXPIRE_*TIMEOUTs expires.
  
  Bug: https://curl.haxx.se/mail/lib-2019-01/0073.html
  Reported-by: Zhao Yisha
  Closes #3501

- [John Marshall brought this change]

  doc: use meaningless port number in CURLOPT_LOCALPORT example
  
  Use an ephemeral port number here; previously the example had 8080
  which could be confusing as the common web server port number might
  be misinterpreted as suggesting this option affects the remote port.
  
  URL: https://curl.haxx.se/mail/lib-2019-01/0084.html
  Closes #3513

GitHub (29 Jan 2019)
- [Gisle Vanem brought this change]

  Escape the '\'
  
  A backslash should be escaped in Roff / Troff.

Jay Satiro (29 Jan 2019)
- TODO: WinSSL: 'Add option to disable client cert auto-send'
  
  By default WinSSL selects and send a client certificate automatically,
  but for privacy and consistency we should offer an option to disable the
  default auto-send behavior.
  
  Reported-by: Jeroen Ooms
  
  Closes https://github.com/curl/curl/issues/2262

Daniel Stenberg (28 Jan 2019)
- [Jeremie Rapin brought this change]

  sigpipe: if mbedTLS is used, ignore SIGPIPE
  
  mbedTLS doesn't have a sigpipe management. If a write/read occurs when
  the remote closes the socket, the signal is raised and kills the
  application.  Use the curl mecanisms fix this behavior.
  
  Signed-off-by: Jeremie Rapin <j.rapin@overkiz.com>
  
  Closes #3502

- unit1653: make it survive torture tests

Jay Satiro (28 Jan 2019)
- [Michael Kujawa brought this change]

  timeval: Disable MSVC Analyzer GetTickCount warning
  
  Compiling with msvc /analyze and a recent Windows SDK warns against
  using GetTickCount (Suggests to use GetTickCount64 instead.)
  
  Since GetTickCount is only being used when GetTickCount64 isn't
  available, I am disabling that warning.
  
  Fixes https://github.com/curl/curl/issues/3437
  Closes https://github.com/curl/curl/pull/3440

Daniel Stenberg (26 Jan 2019)
- configure: rewrite --enable-code-coverage
  
  The previously used ax_code_coverage.m4 is not license compatible and
  must not be used.
  
  Reported-by: William A. Rowe Jr
  Fixes #3497
  Closes #3499

- [Felix Hädicke brought this change]

  setopt: enable CURLOPT_SSH_KNOWNHOSTS and CURLOPT_SSH_KEYFUNCTION for libssh
  
  CURLOPT_SSH_KNOWNHOSTS and CURLOPT_SSH_KEYFUNCTION are supported for
  libssh as well. So accepting these options only when compiling with
  libssh2 is wrong here.
  
  Fixes #3493
  Closes #3494

- [Felix Hädicke brought this change]

  libssh: do not let libssh create socket
  
  By default, libssh creates a new socket, instead of using the socket
  created by curl for SSH connections.
  
  Pass the socket created by curl to libssh using ssh_options_set() with
  SSH_OPTIONS_FD directly after ssh_new(). So libssh uses our socket
  instead of creating a new one.
  
  This approach is very similar to what is done in the libssh2 code, where
  the socket created by curl is passed to libssh2 when
  libssh2_session_startup() is called.
  
  Fixes #3491
  Closes #3495

- RELEASE-NOTES: synced

- [Archangel_SDY brought this change]

  schannel: preserve original certificate path parameter
  
  Fixes #3480
  Closes #3487

- KNOWN_BUGS: tests not compatible with python3
  
  Closes #3289
  [skip ci]

Daniel Gustafsson (20 Jan 2019)
- memcmp: avoid doing single char memcmp
  
  There is no real gain in performing memcmp() comparisons on single
  characters, so change these to array subscript inspections which
  saves a call and makes the code clearer.
  
  Closes #3486
  Reviewed-by: Daniel Stenberg <daniel@haxx.se>
  Reviewed-by: Jay Satiro <raysatiro@yahoo.com>

Daniel Stenberg (19 Jan 2019)
- COPYING: it's 2019
  
  [skip ci]

- [hhb brought this change]

  configure: fix recv/send/select detection on Android
  
  This reverts commit d4f25201fb7da03fc88f90d51101beb3d0026db9.
  
  The overloadable attribute is removed again starting from
  NDK17. Actually they only exist in two NDK versions (15 and 16). With
  overloadable, the first condition tried will succeed. Results in wrong
  detection result.
  
  Closes #3484

Marcel Raad (19 Jan 2019)
- [georgeok brought this change]

  ntlm_sspi: add support for channel binding
  
  Windows extended potection (aka ssl channel binding) is required
  to login to ntlm IIS endpoint, otherwise the server returns 401
  responses.
  
  Fixes #3280
  Closes #3321

Daniel Stenberg (18 Jan 2019)
- schannel: on connection close there might not be a transfer
  
  Reported-by: Marcel Raad
  Fixes #3412
  Closes #3483

- [Joel Depooter brought this change]

  ssh: log the libssh2 error message when ssh session startup fails
  
  When a ssh session startup fails, it is useful to know why it has
  failed. This commit changes the message from:
     "Failure establishing ssh session"
  to something like this, for example:
     "Failure establishing ssh session: -5, Unable to exchange encryption keys"
  
  Closes #3481

Alessandro Ghedini (16 Jan 2019)
- Fix typo in manpage

Daniel Stenberg (16 Jan 2019)
- RELEASE-NOTES: synced

Sergei Nikulov (16 Jan 2019)
- cmake: updated check for HAVE_POLL_FINE to match autotools

Daniel Stenberg (16 Jan 2019)
- curl-compilers.m4: check for __ibmxl__ to detect xlclang
  
  Follow-up to 2fa0d57e2e3. The __xlc__ symbol is only defined there if a
  particular flag is used for legacy macros.
  
  Fixes #3474
  Closes #3479

- openssl: fix the SSL_get_tlsext_status_ocsp_resp call
  
  .... to not pass in a const in the second argument as that's not how it
  is supposed to be used and might cause compiler warnings.
  
  Reported-by: Pavel Pavlov
  Fixes #3477
  Closes #3478

- curl-compilers.m4: detect xlclang
  
  Since it isn't totally clang compatible, we detect this IBM clang
  front-end and if detected, avoids some clang specific magic.
  
  Reported-by: Kees Dekker
  Fixes #3474
  Closes #3476

- README: add codacy code quality badge
  
  [skip ci]

- extract_if_dead: follow-up to 54b201b48c90a
  
  extract_if_dead() dead is called from two functions, and only one of
  them should get conn->data updated and now neither call path clears it.
  
  scan-build found a case where conn->data would be NULL dereferenced in
  ConnectionExists() otherwise.
  
  Closes #3473

- multi: remove "Dead assignment"
  
  Found by scan-build. Follow-up to 4c35574bb785ce.
  
  Closes #3471

- tests: move objnames-* from lib into tests
  
  Since they're used purely for testing purposes, I think they should
  rather be stored there.
  
  Closes #3470

Sergei Nikulov (15 Jan 2019)
- travis: added cmake build for osx

Daniel Stenberg (14 Jan 2019)
- [Frank Gevaerts brought this change]

  cookie: fix comment typo (url_path_len -> uri_path_len)
  
  Closes #3469

Marcel Raad (14 Jan 2019)
- winbuild: conditionally use /DZLIB_WINAPI
  
  zlibwapi.lib (dynamic library) and zlibstat.lib (static library) have
  the ZLIB_WINAPI define set by default. Using them requires that define
  too.
  
  Ref: https://zlib.net/DLL_FAQ.txt
  
  Fixes https://github.com/curl/curl/issues/3133
  Closes https://github.com/curl/curl/pull/3460

Daniel Stenberg (14 Jan 2019)
- src/Makefile: make 'tidy' target work for metalink builds

- extract_if_dead: use a known working transfer when checking connections
  
  Make sure that this function sets a proper "live" transfer for the
  connection before calling the protocol-specific connection check
  function, and then clear it again afterward as a non-used connection has
  no current transfer.
  
  Reported-by: Jeroen Ooms
  Reviewed-by: Marcel Raad
  Reviewed-by: Daniel Gustafsson
  Fixes #3463
  Closes #3464

- openssl: adapt to 3.0.0, OpenSSL_version_num() is deprecated
  
  OpenSSL_version() replaces OpenSSL_version_num()
  
  Closes #3462

Sergei Nikulov (11 Jan 2019)
- cmake: added checks for HAVE_VARIADIC_MACROS_C99 and HAVE_VARIADIC_MACROS_GCC

Daniel Stenberg (11 Jan 2019)
- urldata: rename easy_conn to just conn
  
  We use "conn" everywhere to be a pointer to the connection.
  
  Introduces two functions that "attaches" and "detaches" the connection
  to and from the transfer.
  
  Going forward, we should favour using "data->conn" (since a transfer
  always only has a single connection or none at all) to "conn->data"
  (since a connection can have none, one or many transfers associated with
  it and updating conn->data to be correct is error prone and a frequent
  reason for internal issues).
  
  Closes #3442

- tool_cb_prg: avoid integer overflow
  
  When calculating the progress bar width.
  
  Reported-by: Peng Li
  Fixes #3456
  Closes #3458

Daniel Gustafsson (11 Jan 2019)
- travis: turn off copyright year checks in checksrc
  
  Invoking the maintainer intended COPYRIGHTYEAR check for everyone
  in the PR pipeline is too invasive, especially at the turn of the
  year when many files get affected. Remove and leave it as a tool
  for maintainers to verify patches before commits.
  
  This reverts f7bdf4b2e1d81b2652b81b9b3029927589273b41.
  
  After discussion with: Daniel Stenberg

Daniel Stenberg (10 Jan 2019)
- KNOWN_BUGS: cmake makes unusable tool_hugehelp.c with MinGW
  
  Closes #3125

- KNOWN_BUGS: Improve --data-urlencode space encoding
  
  Closes #3229

Patrick Monnerat (10 Jan 2019)
- os400: add a missing closing bracket
  
  See https://github.com/curl/curl/issues/3453#issuecomment-453054458
  
  Reported-by: jonrumsey on github

- os400: fix extra parameter syntax error.
  
  Reported-by: jonrumsey on github
  Closes #3453

Daniel Stenberg (10 Jan 2019)
- test1558: verify CURLINFO_PROTOCOL on file:// transfer
  
  Attempt to reproduce issue #3444.
  
  Closes #3447

- RELEASE-NOTES: synced

- xattr: strip credentials from any URL that is stored
  
  Both user and password are cleared uncondtitionally.
  
  Added unit test 1621 to verify.
  
  Fixes #3423
  Closes #3433

- cookies: allow secure override when done over HTTPS
  
  Added test 1562 to verify.
  
  Reported-by: Jeroen Ooms
  Fixes #3445
  Closes #3450

- multi: multiplexing improvements
  
  Fixes #3436
  Closes #3448
  
   Problem 1
  
  After LOTS of scratching my head, I eventually realized that even when doing
  10 uploads in parallel, sometimes the socket callback to the application that
  tells it what to wait for on the socket, looked like it would reflect the
  status of just the single transfer that just changed state.
  
  Digging into the code revealed that this was indeed the truth. When multiple
  transfers are using the same connection, the application did not correctly get
  the *combined* flags for all transfers which then could make it switch to READ
  (only) when in fact most transfers wanted to get told when the socket was
  WRITEABLE.
  
   Problem 1b
  
  A separate but related regression had also been introduced by me when I
  cleared connection/transfer association better a while ago, as now the logic
  couldn't find the connection and see if that was marked as used by more
  transfers and then it would also prematurely remove the socket from the socket
  hash table even in times other transfers were still using it!
  
   Fix 1
  
  Make sure that each socket stored in the socket hash has a "combined" action
  field of what to ask the application to wait for, that is potentially the ORed
  action of multiple parallel transfers. And remove that socket hash entry only
  if there are no transfers left using it.
  
   Problem 2
  
  The socket hash entry stored an association to a single transfer using that
  socket - and when curl_multi_socket_action() was called to tell libcurl about
  activities on that specific socket only that transfer was "handled".
  
  This was WRONG, as a single socket/connection can be used by numerous parallel
  transfers and not necessarily a single one.
  
   Fix 2
  
  We now store a list of handles in the socket hashtable entry and when libcurl
  is told there's traffic for a particular socket, it now iterates over all
  known transfers using that single socket.

- test1561: improve test name
  
  [skip ci]

- [Katsuhiko YOSHIDA brought this change]

  cookies: skip custom cookies when redirecting cross-site
  
  Closes #3417

- THANKS: fixups and a dedupe
  
  [skip ci]

- timediff: fix math for unsigned time_t
  
  Bug: https://curl.haxx.se/mail/lib-2018-12/0088.html
  
  Closes #3449

- [Bernhard M. Wiedemann brought this change]

  tests: allow tests to pass by 2037-02-12
  
  similar to commit f508d29f3902104018
  
  Closes #3443

- RELEASE-NOTES: synced

- [Brad Spencer brought this change]

  curl_multi_remove_handle() don't block terminating c-ares requests
  
  Added Curl_resolver_kill() for all three resolver modes, which only
  blocks when necessary, along with test 1592 to confirm
  curl_multi_remove_handle() doesn't block unless it must.
  
  Closes #3428
  Fixes #3371

- Revert "http_negotiate: do not close connection until negotiation is completed"
  
  This reverts commit 07ebaf837843124ee670e5b8c218b80b92e06e47.
  
  This also reopens PR #3275 which brought the change now reverted.
  
  Fixes #3384
  Closes #3439

- curl/urlapi.h: include "curl.h" first
  
  This allows programs to include curl/urlapi.h directly.
  
  Reviewed-by: Daniel Gustafsson
  Reported-by: Ben Kohler
  Fixes #3438
  Closes #3441

Marcel Raad (6 Jan 2019)
- VS projects: fix build warning
  
  Starting with Visual Studio 2017 Update 9, Visual Studio doesn't like
  the MinimalRebuild option anymore and warns:
  
  cl : Command line warning D9035: option 'Gm' has been deprecated and
  will be removed in a future release
  
  The option can be safely removed so that the default is used.
  
  Closes https://github.com/curl/curl/pull/3425

- schannel: fix compiler warning
  
  When building with Unicode on MSVC, the compiler warns about freeing a
  pointer to const in Curl_unicodefree. Fix this by declaring it as
  non-const and casting the argument to Curl_convert_UTF8_to_tchar to
  non-const too, like we do in all other places.
  
  Closes https://github.com/curl/curl/pull/3435

Daniel Stenberg (4 Jan 2019)
- [Rikard Falkeborn brought this change]

  printf: introduce CURL_FORMAT_TIMEDIFF_T

- [Rikard Falkeborn brought this change]

  printf: fix format specifiers
  
  Closes #3426

- libtest/stub_gssapi: use "real" snprintf
  
  ... since it doesn't link with libcurl.
  
  Reverts the commit dcd6f81025 changes from this file.
  
  Bug: https://curl.haxx.se/mail/lib-2019-01/0000.html
  Reported-by: Shlomi Fish
  Reviewed-by: Daniel Gustafsson
  Reviewed-by: Kamil Dudka
  
  Closes #3434

- INTERNALS: correct some outdated function names
  
  Closes #3431

- docs/version.d: mention MultiSSL
  
  Reviewed-by: Daniel Gustafsson
  Closes #3432

Daniel Gustafsson (2 Jan 2019)
- [Rikard Falkeborn brought this change]

  examples: Update .gitignore
  
  Add a few missing examples to make `make examples` not leave the
  workspace in a dirty state.
  
  Closes #3427
  Reviewed-by: Daniel Gustafsson <daniel@yesql.se>

- THANKS: add more missing names
  
  Add Adrian Burcea who made the artwork for the curl://up 2018 event
  which was held in Stockholm, Sweden.

- docs: mention potential leak in curl_slist_append
  
  When a non-empty list is appended to, and used as the returnvalue,
  the list pointer can leak in case of an allocation failure in the
  curl_slist_append() call. This is correctly handled in curl code
  usage but we weren't explicitly pointing it out in the API call
  documentation. Fix by extending the RETURNVALUE manpage section
  and example code.
  
  Closes #3424
  Reported-by: dnivras on github
  Reviewed-by: Daniel Stenberg <daniel@haxx.se>

Marcel Raad (1 Jan 2019)
- tvnow: silence conversion warnings
  
  MinGW-w64 defaults to targeting Windows 7 now, so GetTickCount64 is
  used and the milliseconds are represented as unsigned long long,
  leading to a compiler warning when implicitly converting them to long.

Daniel Stenberg (1 Jan 2019)
- THANKS: dedupe more names
  
  Researched-by: Tae Wong

Marcel Raad (1 Jan 2019)
- [Markus Moeller brought this change]

  ntlm: update selection of type 3 response
  
  NTLM2 did not work i.e. no NTLMv2 response was created. Changing the
  check seems to work.
  
  Ref: https://winprotocoldoc.blob.core.windows.net/productionwindowsarchives/MS-NLMP/[MS-NLMP].pdf
  
  Fixes https://github.com/curl/curl/issues/3286
  Closes https://github.com/curl/curl/pull/3287
  Closes https://github.com/curl/curl/pull/3415

Daniel Stenberg (31 Dec 2018)
- THANKS: added missing names from year <= 2000
  
  Due to a report of a missing name in THANKS I manually went through an
  old CHANGES.0 file and added many previously missing names here.

Daniel Gustafsson (30 Dec 2018)
- urlapi: fix parsing ipv6 with zone index
  
  The previous fix for parsing IPv6 URLs with a zone index was a paddle
  short for URLs without an explicit port. This patch fixes that case
  and adds a unit test case.
  
  This bug was highlighted by issue #3408, and while it's not the full
  fix for the problem there it is an isolated bug that should be fixed
  regardless.
  
  Closes #3411
  Reported-by: GitYuanQu on github
  Reviewed-by: Daniel Stenberg <daniel@haxx.se>

Daniel Stenberg (30 Dec 2018)
- THANKS: dedupe Guenter Knauf
  
  Reported-by: Tae Wong

- THANKS: missing name from the 6.3.1 release!

Daniel Gustafsson (27 Dec 2018)
- RELEASE-NOTES: synced

- [Claes Jakobsson brought this change]

  hostip: support wildcard hosts
  
  This adds support for wildcard hosts in CURLOPT_RESOLVE. These are
  try-last so any non-wildcard entry is resolved first. If specified,
  any host not matched by another CURLOPT_RESOLVE config will use this
  as fallback.
  
  Example send a.com to 10.0.0.1 and everything else to 10.0.0.2:
    curl --resolve *:443:10.0.0.2 --resolve a.com:443:10.0.0.1 \
         https://a.com https://b.com
  
  This is probably quite similar to using:
    --connect-to a.com:443:10.0.0.1:443 --connect-to :443:10.0.0.2:443
  
  Closes #3406
  Reviewed-by: Daniel Stenberg <daniel@haxx.se>

- url: fix incorrect indentation

Patrick Monnerat (26 Dec 2018)
- os400: upgrade ILE/RPG binding.
  
  - Trailer function support.
  - http 0.9 option.
  - curl_easy_upkeep.

Daniel Gustafsson (25 Dec 2018)
- FAQ: remove mention of sourceforge for github
  
  The project bug tracker is no longer hosted at sourceforge but is now
  hosted on the curl Github page. Update the FAQ to reflect.
  
  Closes #3410
  Reviewed-by: Daniel Stenberg <daniel@haxx.se>

- openvms: fix typos in documentation

- openvms: fix OpenSSL discovery on VAX
  
  The DCL code had a typo in one of the commands which would make the
  OpenSSL discovery on VAX fail. The correct syntax is F$ENVIRONMENT.
  
  Closes #3407
  Reviewed-by: Viktor Szakats <commit@vszakats.net>

Daniel Stenberg (24 Dec 2018)
- [Ruslan Baratov brought this change]

  cmake: use lowercase for function name like the rest of the code
  
  Reviewed-by: Sergei Nikulov
  
  closes #3196

- Revert "libssh: no data pointer == nothing to do"
  
  This reverts commit c98ee5f67f497195c9 since commit f3ce38739fa fixed the
  problem in a more generic way.

- disconnect: set conn->data for protocol disconnect
  
  Follow-up to fb445a1e18d: Set conn->data explicitly to point out the
  current transfer when invoking the protocol-specific disconnect function
  so that it can work correctly.
  
  Bug: https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=12173

Jay Satiro (23 Dec 2018)
- [Pavel Pavlov brought this change]

  timeval: Use high resolution timestamps on Windows
  
  - Use QueryPerformanceCounter on Windows Vista+
  
  There is confusing info floating around that QueryPerformanceCounter
  can leap etc, which might have been true long time ago, but no longer
  the case nowadays (perhaps starting from WinXP?). Also, boost and
  std::chrono::steady_clock use QueryPerformanceCounter in a similar way.
  
  Prior to this change GetTickCount or GetTickCount64 was used, which has
  lower resolution. That is still the case for <= XP.
  
  Fixes https://github.com/curl/curl/issues/3309
  Closes https://github.com/curl/curl/pull/3318

Daniel Stenberg (22 Dec 2018)
- libssh: no data pointer == nothing to do

- conncache_unlock: avoid indirection by changing input argument type

- disconnect: separate connections and easy handles better
  
  Do not assume/store assocation between a given easy handle and the
  connection if it can be avoided.
  
  Long-term, the 'conn->data' pointer should probably be removed as it is a
  little too error-prone. Still used very widely though.
  
  Reported-by: masbug on github
  Fixes #3391
  Closes #3400

- libssh: free sftp_canonicalize_path() data correctly
  
  Assisted-by: Harry Sintonen
  
  Fixes #3402
  Closes #3403

- RELEASE-NOTES: synced

- http: added options for allowing HTTP/0.9 responses
  
  Added CURLOPT_HTTP09_ALLOWED and --http0.9 for this purpose.
  
  For now, both the tool and library allow HTTP/0.9 by default.
  docs/DEPRECATE.md lays out the plan for when to reverse that default: 6
  months after the 7.64.0 release. The options are added already now so
  that applications/scripts can start using them already now.
  
  Fixes #2873
  Closes #3383

- if2ip: remove unused function Curl_if_is_interface_name
  
  Closes #3401

- http2: clear pause stream id if it gets closed
  
  Reported-by: Florian Pritz
  
  Fixes #3392
  Closes #3399

Daniel Gustafsson (20 Dec 2018)
- [David Garske brought this change]

  wolfssl: Perform cleanup
  
  This adds a cleanup callback for cyassl. Resolves possible memory leak
  when using ECC fixed point cache.
  
  Closes #3395
  Reviewed-by: Daniel Stenberg <daniel@haxx.se>
  Reviewed-by: Daniel Gustafsson <daniel@yesql.se>

Daniel Stenberg (20 Dec 2018)
- mbedtls: follow-up VERIFYHOST fix from f097669248
  
  Fix-by: Eric Rosenquist
  
  Fixes #3376
  Closes #3390

- curlver: bump to 7.64.0 for next release

Daniel Gustafsson (19 Dec 2018)
- cookies: extend domain checks to non psl builds
  
  Ensure to perform the checks we have to enforce a sane domain in
  the cookie request. The check for non-PSL enabled builds is quite
  basic but it's better than nothing.
  
  Closes #2964
  Reviewed-by: Daniel Stenberg <daniel@haxx.se>

Daniel Stenberg (19 Dec 2018)
- [Matus Uzak brought this change]

  smb: fix incorrect path in request if connection reused
  
  Follow-up to 09e401e01bf9.  If connection gets reused, then data member
  will be copied, but not the proto member.  As a result, in smb_do(),
  path has been set from the original proto.share data.
  
  Closes #3388

- curl -J: do not append to the destination file
  
  Reported-by: Kamil Dudka
  Fixes #3380
  Closes #3381

- mbedtls: use VERIFYHOST
  
  Previously, VERIFYPEER would enable/disable all checks.
  
  Reported-by: Eric Rosenquist
  Fixes #3376
  Closes #3380

- pingpong: change default response timeout to 120 seconds
  
  Previously it was 30 minutes

- pingpong: ignore regular timeout in disconnect phase
  
  The timeout set with CURLOPT_TIMEOUT is no longer used when
  disconnecting from one of the pingpong protocols (FTP, IMAP, SMTP,
  POP3).
  
  Reported-by: jasal82 on github
  
  Fixes #3264
  Closes #3374

- TODO: Windows: set attribute 'archive' for completed downloads
  
  Closes #3354

- RELEASE-NOTES: synced

- http: minor whitespace cleanup from f464535b

- [Ayoub Boudhar brought this change]

  http: Implement trailing headers for chunked transfers
  
  This adds the CURLOPT_TRAILERDATA and CURLOPT_TRAILERFUNCTION
  options that allow a callback based approach to sending trailing headers
  with chunked transfers.
  
  The test server (sws) was updated to take into account the detection of the
  end of transfer in the case of trailing headers presence.
  
  Test 1591 checks that trailing headers can be sent using libcurl.
  
  Closes #3350

- darwinssl: accept setting max-tls with default min-tls
  
  Reported-by: Andrei Neculau
  Fixes #3367
  Closes #3373

- gopher: fix memory leak from 9026083ddb2a9

- [Leonardo Taccari brought this change]

  test1201: Add a trailing `?' to the selector
  
  This verify that the `?' in the selector is kept as is.
  
  Verifies the fix in #3370

- [Leonardo Taccari brought this change]

  gopher: always include the entire gopher-path in request
  
  After the migration to URL API all octets in the selector after the
  first `?' were interpreted as query and accidentally discarded and not
  passed to the server.
  
  Add a gopherpath to always concatenate possible path and query URL
  pieces.
  
  Fixes #3369
  Closes #3370

- [Leonardo Taccari brought this change]

  urlapi: distinguish possibly empty query
  
  If just a `?' to indicate the query is passed always store a zero length
  query instead of having a NULL query.
  
  This permits to distinguish URL with trailing `?'.
  
  Fixes #3369
  Closes #3370

Daniel Gustafsson (13 Dec 2018)
- OS400: handle memory error in list conversion
  
  Curl_slist_append_nodup() returns NULL when it fails to create a new
  item for the specified list, and since the coding here reassigned the
  new list on top of the old list it would result in a dangling pointer
  and lost memory. Also, in case we hit an allocation failure at some
  point during the conversion, with allocation succeeding again on the
  subsequent call(s) we will return a truncated list around the malloc
  failure point. Fix by assigning to a temporary list pointer, which can
  be checked (which is the common pattern for slist appending), and free
  all the resources on allocation failure.
  
  Closes #3372
  Reviewed-by: Daniel Stenberg <daniel@haxx.se>

- cookies: leave secure cookies alone
  
  Only allow secure origins to be able to write cookies with the
  'secure' flag set. This reduces the risk of non-secure origins
  to influence the state of secure origins. This implements IETF
  Internet-Draft draft-ietf-httpbis-cookie-alone-01 which updates
  RFC6265.
  
  Closes #2956
  Reviewed-by: Daniel Stenberg <daniel@haxx.se>

Daniel Stenberg (13 Dec 2018)
- docs: fix the --tls-max description
  
  Reported-by: Tobias Lindgren
  Pointed out in #3367
  
  Closes #3368

Daniel Gustafsson (12 Dec 2018)
- urlapi: Fix port parsing of eol colon
  
  A URL with a single colon without a portnumber should use the default
  port, discarding the colon. Fix, add a testcase and also do little bit
  of comment wordsmithing.
  
  Closes #3365
  Reviewed-by: Daniel Stenberg <daniel@haxx.se>

Version 7.63.0 (12 Dec 2018)

Daniel Stenberg (12 Dec 2018)
- RELEASE-NOTES: 7.63.0

- THANKS: from the curl 7.62.0 cycle

- test1519: use lib1518 and test CURLINFO_REDIRECT_URL more

- Curl_follow: extract the Location: header field unvalidated
  
  ... when not actually following the redirect. Otherwise we return error
  for this and an application can't extract the value.
  
  Test 1518 added to verify.
  
  Reported-by: Pavel Pavlov
  Fixes #3340
  Closes #3364

- multi: convert two timeout variables to timediff_t
  
  The time_t type is unsigned on some systems and these variables are used
  to hold return values from functions that return timediff_t
  already. timediff_t is always a signed type.
  
  Closes #3363

- delta: use --diff-filter on the git diff-tree invokes
  
  Suggested-by: Dave Reisner

Patrick Monnerat (11 Dec 2018)
- documentation: curl_formadd field and file names are now escaped
  
  Prior to 7.56.0, fieldnames and filenames were set in Content-Disposition
  header without special processing: this may lead to invalid RFC 822
  quoted-strings.
  7.56.0 introduces escaping of backslashes and double quotes in these names:
  mention it in the documentation.
  
  Reported-by: daboul on github
  Closes #3361

Daniel Stenberg (11 Dec 2018)
- scripts/delta: show repo delta info from last release
  
  ... where "last release" should be the git tag in the repo.

Daniel Gustafsson (11 Dec 2018)
- tests: add urlapi unittest
  
  This adds a new unittest intended to cover the internal functions in
  the urlapi code, starting with parse_port(). In order to avoid name
  collisions in debug builds, parse_port() is renamed Curl_parse_port()
  since it will be exported.
  
  Reviewed-by: Daniel Stenberg <daniel@haxx.se>
  Reviewed-by: Marcel Raad <Marcel.Raad@teamviewer.com>

- urlapi: fix portnumber parsing for ipv6 zone index
  
  An IPv6 URL which contains a zone index includes a '%%25<zode id>'
  string before the ending ']' bracket. The parsing logic wasn't set
  up to cope with the zone index however, resulting in a malformed url
  error being returned. Fix by breaking the parsing into two stages
  to correctly handle the zone index.
  
  Closes #3355
  Closes #3319
  Reported-by: tonystz on Github
  Reviewed-by: Daniel Stenberg <daniel@haxx.se>
  Reviewed-by: Marcel Raad <Marcel.Raad@teamviewer.com>

Daniel Stenberg (11 Dec 2018)
- [Jay Satiro brought this change]

  http: fix HTTP auth to include query in URI
  
  - Include query in the path passed to generate HTTP auth.
  
  Recent changes to use the URL API internally (46e1640, 7.62.0)
  inadvertently broke authentication URIs by omitting the query.
  
  Fixes https://github.com/curl/curl/issues/3353
  Closes #3356

- [Michael Kaufmann brought this change]

  http: don't set CURLINFO_CONDITION_UNMET for http status code 204
  
  The http status code 204 (No Content) should not change the "condition
  unmet" flag. Only the http status code 304 (Not Modified) should do
  this.
  
  Closes #359

- [Samuel Surtees brought this change]

  ldap: fix LDAP URL parsing regressions
  
  - Match URL scheme with LDAP and LDAPS
  - Retrieve attributes, scope and filter from URL query instead
  
  Regression brought in 46e164069d1a5230 (7.62.0)
  
  Closes #3362

- RELEASE-NOTES: synced

- [Stefan Kanthak brought this change]

  (lib)curl.rc: fixup for minor bugs
  
  All resources defined in lib/libcurl.rc and curl.rc are language
  neutral.
  
  winbuild/MakefileBuild.vc ALWAYS defines the macro DEBUGBUILD, so the
  ifdef's in line 33 of lib/libcurl.rc and src/curl.rc are wrong.
  
  Replace the hard-coded constants in both *.rc files with #define'd
  values.
  
  Thumbs-uped-by: Rod Widdowson, Johannes Schindelin
  URL: https://curl.haxx.se/mail/lib-2018-11/0000.html
  Closes #3348

- test329: verify cookie max-age=0 immediate expiry

- cookies: expire "Max-Age=0" immediately
  
  Reported-by: Jeroen Ooms
  Fixes #3351
  Closes #3352

- [Johannes Schindelin brought this change]

  Upon HTTP_1_1_REQUIRED, retry the request with HTTP/1.1
  
  This is a companion patch to cbea2fd2c (NTLM: force the connection to
  HTTP/1.1, 2018-12-06): with NTLM, we can switch to HTTP/1.1
  preemptively. However, with other (Negotiate) authentication it is not
  clear to this developer whether there is a way to make it work with
  HTTP/2, so let's try HTTP/2 first and fall back in case we encounter the
  error HTTP_1_1_REQUIRED.
  
  Note: we will still keep the NTLM workaround, as it avoids an extra
  round trip.
  
  Daniel Stenberg helped a lot with this patch, in particular by
  suggesting to introduce the Curl_h2_http_1_1_error() function.
  
  Closes #3349
  
  Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>

- [Ben Greear brought this change]

  openssl: fix unused variable compiler warning with old openssl
  
  URL: https://curl.haxx.se/mail/lib-2018-11/0055.html
  
  Closes #3347

- [Johannes Schindelin brought this change]

  NTLM: force the connection to HTTP/1.1
  
  Since v7.62.0, cURL tries to use HTTP/2 whenever the server announces
  the capability. However, NTLM authentication only works with HTTP/1.1,
  and will likely remain in that boat (for details, see
  https://docs.microsoft.com/en-us/iis/get-started/whats-new-in-iis-10/http2-on-iis#when-is-http2-not-supported).
  
  When we just found out that we want to use NTLM, and when the current
  connection runs in HTTP/2 mode, let's force the connection to be closed
  and to be re-opened using HTTP/1.1.
  
  Fixes https://github.com/curl/curl/issues/3341.
  Closes #3345
  
  Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>

- [Johannes Schindelin brought this change]

  curl_global_sslset(): id == -1 is not necessarily an error
  
  It is allowed to call that function with id set to -1, specifying the
  backend by the name instead. We should imitate what is done further down
  in that function to allow for that.
  
  Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
  
  Closes #3346

Johannes Schindelin (6 Dec 2018)
- .gitattributes: make tabs in indentation a visible error
  
  Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>

Daniel Stenberg (6 Dec 2018)
- RELEASE-NOTES: synced

- doh: fix memory leak in OOM situation
  
  Reviewed-by: Daniel Gustafsson
  Closes #3342

- doh: make it work for h2-disabled builds too
  
  Reported-by: dtmsecurity at github
  Fixes #3325
  Closes #3336

- packages: remove old leftover files and dirs
  
  This subdir has mostly become an attic of never-used cruft from the
  past.
  
  Closes #3331

- [Gergely Nagy brought this change]

  openssl: do not use file BIOs if not requested
  
  Moves the file handling BIO calls to the branch of the code where they
  are actually used.
  
  Closes #3339

- [Paul Howarth brought this change]

  nss: Fix compatibility with nss versions 3.14 to 3.15

- [Paul Howarth brought this change]

  nss: Improve info message when falling back SSL protocol
  
  Use descriptive text strings rather than decimal numbers.

- [Paul Howarth brought this change]

  nss: Fall back to latest supported SSL version
  
  NSS may be built without support for the latest SSL/TLS versions,
  leading to "SSL version range is not valid" errors when the library
  code supports a recent version (e.g. TLS v1.3) but it has explicitly
  been disabled.
  
  This change adjusts the maximum SSL version requested by libcurl to
  be the maximum supported version at runtime, as long as that version
  is at least as high as the minimum version required by libcurl.
  
  Fixes #3261

Daniel Gustafsson (3 Dec 2018)
- travis: enable COPYRIGHTYEAR extended warning
  
  The extended warning for checking incorrect COPYRIGHTYEAR is quite
  expensive to run, so rather than expecting every developer to do it
  we ensure it's turned on locally for Travis.

- checksrc: add COPYRIGHTYEAR check
  
  Forgetting to bump the year in the copyright clause when hacking has
  been quite common among curl developers, but a traditional checksrc
  check isn't a good fit as it would penalize anyone hacking on January
  1st (among other things). This adds a more selective COPYRIGHTYEAR
  check which intends to only cover the currently hacked on changeset.
  
  The check for updated copyright year is currently not enforced on all
  files but only on files edited and/or committed locally. This is due to
  the amount of files which aren't updated with their correct copyright
  year at the time of their respective commit.
  
  To further avoid running this expensive check for every developer, it
  adds a new local override mode for checksrc where a .checksrc file can
  be used to turn on extended warnings locally.
  
  Closes #3303
  Reviewed-by: Daniel Stenberg <daniel@haxx.se>

Daniel Stenberg (3 Dec 2018)
- CHECKSRC.md: document more warnings
  
  Closes #3335
  [ci skip]

- RELEASE-NOTES: synced

- SECURITY-PROCESS: bountygraph shuts down
  
  This backpedals back the documents to the state before bountygraph.
  
  Closes #3311

- curl: fix memory leak reading --writeout from file
  
  If another string had been set first, the writout function for reading
  the syntax from file would leak the previously allocated memory.
  
  Reported-by: Brian Carpenter
  Fixes #3322
  Closes #3330

- tool_main: rename function to make it unique and better
  
  ... there's already another function in the curl tool named
  free_config_fields!

Daniel Gustafsson (29 Nov 2018)
- TODO: remove CURLOPT_DNS_USE_GLOBAL_CACHE entry
  
  Commit 7c5837e79280e6abb3ae143dfc49bca5e74cdd11 deprecated the option
  making it a manual code-edit operation to turn it back on. The removal
  process has thus started and is now documented in docs/DEPRECATE.md so
  remove from the TODO to avoid anyone looking for something to pick up
  spend cycles on an already in-progress entry.
  
  Reviewed-by: Daniel Stenberg <daniel@haxx.se>

Jay Satiro (29 Nov 2018)
- [Sevan Janiyan brought this change]

  connect: fix building for recent versions of Minix
  
  EBADIOCTL doesn't exist on more recent Minix.
  There have also been substantial changes to the network stack.
  Fixes build on Minix 3.4rc
  
  Closes https://github.com/curl/curl/pull/3323

- [Konstantin Kushnir brought this change]

  CMake: fix MIT/Heimdal Kerberos detection
  
  - fix syntax error in FindGSS.cmake
  - correct krb5 include directory. FindGSS exports
    "GSS_INCLUDE_DIR" variable.
  
  Closes https://github.com/curl/curl/pull/3316

Daniel Stenberg (28 Nov 2018)
- test328: verify Content-Encoding: none
  
  Because of issue #3315
  
  Closes #3317

- [James Knight brought this change]

  configure: include all libraries in ssl-libs fetch
  
  When compiling a collection of SSL libraries to link against (SSL_LIBS),
  ensure all libraries are included. The call `--libs-only-l` can produce
  only a subset of found in a `--libs` call (e.x. pthread may be excluded).
  Adding `--libs-only-other` ensures other libraries are also included in
  the list. This corrects select build environments compiling against a
  static version of OpenSSL. Before the change, the following could be
  observed:
  
      checking for openssl options with pkg-config... found
      configure: pkg-config: SSL_LIBS: "-lssl -lz -ldl -lcrypto -lz -ldl "
      configure: pkg-config: SSL_LDFLAGS: "-L/home/jdknight/<workdir>/staging/usr/lib -L/home/jdknight/<workdir>/staging/usr/lib "
      configure: pkg-config: SSL_CPPFLAGS: "-I/home/jdknight/<workdir>/staging/usr/include "
      checking for HMAC_Update in -lcrypto... no
      checking for HMAC_Init_ex in -lcrypto... no
      checking OpenSSL linking with -ldl... no
      checking OpenSSL linking with -ldl and -lpthread... no
      configure: WARNING: SSL disabled, you will not be able to use HTTPS, FTPS, NTLM and more.
      configure: WARNING: Use --with-ssl, --with-gnutls, --with-polarssl, --with-cyassl, --with-nss, --with-axtls, --with-winssl, or --with-darwinssl to address this.
      ...
      SSL support:      no      (--with-{ssl,gnutls,nss,polarssl,mbedtls,cyassl,axtls,winssl,darwinssl} )
      ...
  
  And include the other libraries when compiling SSL_LIBS succeeds with:
  
      checking for openssl options with pkg-config... found
      configure: pkg-config: SSL_LIBS: "-lssl -lz -ldl -pthread -lcrypto -lz -ldl -pthread "
      configure: pkg-config: SSL_LDFLAGS: "-L/home/jdknight/<workdir>/staging/usr/lib -L/home/jdknight/<workdir>/staging/usr/lib "
      configure: pkg-config: SSL_CPPFLAGS: "-I/home/jdknight/<workdir>/staging/usr/include "
      checking for HMAC_Update in -lcrypto... yes
      checking for SSL_connect in -lssl... yes
      ...
      SSL support:      enabled (OpenSSL)
      ...
  
  Signed-off-by: James Knight <james.d.knight@live.com>
  Closes #3193

Daniel Gustafsson (26 Nov 2018)
- doh: fix typo in infof call
  
  Reviewed-by: Daniel Stenberg <daniel@haxx.se>

- cmdline-opts/gen.pl: define the correct varname
  
  The variable definition had a small typo making it declare another
  variable then the intended.
  
  Closes #3304
  Reviewed-by: Daniel Stenberg <daniel@haxx.se>

Daniel Stenberg (25 Nov 2018)
- RELEASE-NOTES: synced

- curl_easy_perform: fix timeout handling
  
  curl_multi_wait() was erroneously used from within
  curl_easy_perform(). It could lead to it believing there was no socket
  to wait for and then instead sleep for a while instead of monitoring the
  socket and then miss acting on that activity as swiftly as it should
  (causing an up to 1000 ms delay).
  
  Reported-by: Antoni Villalonga
  Fixes #3305
  Closes #3306
  Closes #3308

- CURLOPT_WRITEFUNCTION.3: spell out that it gets called many times

- cookies: create the cookiejar even if no cookies to save
  
  Important for when the file is going to be read again and thus must not
  contain old contents!
  
  Adds test 327 to verify.
  
  Reported-by: daboul on github
  Fixes #3299
  Closes #3300

- checksrc: ban snprintf use, add command line flag to override warns

- snprintf: renamed and we now only use msnprintf()
  
  The function does not return the same value as snprintf() normally does,
  so readers may be mislead into thinking the code works differently than
  it actually does. A different function name makes this easier to detect.
  
  Reported-by: Tomas Hoger
  Assisted-by: Daniel Gustafsson
  Fixes #3296
  Closes #3297

- [Tobias Hintze brought this change]

  test: update test20/1322 for eglibc bug workaround
  
  The tests 20 and 1322 are using getaddrinfo of libc for resolving. In
  eglibc-2.19 there is a memory leakage and invalid free bug which
  surfaces in some special circumstances (PF_UNSPEC hint with invalid or
  non-existent names). The valgrind runs in testing fail in these
  situations.
  
  As the tests 20/1322 are not specific on either protocol (IPv4/IPv6)
  this commit changes the hints to IPv4 protocol by passing `--ipv4` flag
  on the tests' command line.  This prevents the valgrind failures.

- [Tobias Hintze brought this change]

  host names: allow trailing dot in name resolve, then strip it
  
  Delays stripping of trailing dots to after resolving the hostname.
  
  Fixes #3022
  Closes #3222

- [UnknownShadow200 brought this change]

  CURLOPT_HEADERFUNCTION.3: match 'nitems' name in synopsis and description
  
  Closes #3295

Daniel Gustafsson (21 Nov 2018)
- configure: Fix typo in comment

Michael Kaufmann (21 Nov 2018)
- openssl: support session resume with TLS 1.3
  
  Session resumption information is not available immediately after a TLS 1.3
  handshake. The client must wait until the server has sent a session ticket.
  
  Use OpenSSL's "new session" callback to get the session information and put it
  into curl's session cache. For TLS 1.3 sessions, this callback will be invoked
  after the server has sent a session ticket.
  
  The "new session" callback is invoked only if OpenSSL's session cache is
  enabled, so enable it and use the "external storage" mode which lets curl manage
  the contents of the session cache.
  
  A pointer to the connection data and the sockindex are now saved as "SSL extra
  data" to make them available to the callback.
  
  This approach also works for old SSL/TLS versions and old OpenSSL versions.
  
  Reviewed-by: Daniel Stenberg <daniel@haxx.se>
  
  Fixes #3202
  Closes #3271

- ssl: fix compilation with OpenSSL 0.9.7
  
  - ENGINE_cleanup() was used without including "openssl/engine.h"
  - enable engine support for OpenSSL 0.9.7
  
  Closes #3266

Daniel Stenberg (21 Nov 2018)
- openssl: disable TLS renegotiation with BoringSSL
  
  Since we're close to feature freeze, this change disables this feature
  with an #ifdef. Define ALLOW_RENEG at build-time to enable.
  
  This could be converted to a bit for CURLOPT_SSL_OPTIONS to let
  applications opt-in this.
  
  Concern-raised-by: David Benjamin
  Fixes #3283
  Closes #3293

- [Romain Fliedel brought this change]

  ares: remove fd from multi fd set when ares is about to close the fd
  
  When using c-ares for asyn dns, the dns socket fd was silently closed
  by c-ares without curl being aware. curl would then 'realize' the fd
  has been removed at next call of Curl_resolver_getsock, and only then
  notify the CURLMOPT_SOCKETFUNCTION to remove fd from its poll set with
  CURL_POLL_REMOVE. At this point the fd is already closed.
  
  By using ares socket state callback (ARES_OPT_SOCK_STATE_CB), this
  patch allows curl to be notified that the fd is not longer needed
  for neither for write nor read. At this point by calling
  Curl_multi_closed we are able to notify multi with CURL_POLL_REMOVE
  before the fd is actually closed by ares.
  
  In asyn-ares.c Curl_resolver_duphandle we can't use ares_dup anymore
  since it does not allow passing a different sock_state_cb_data
  
  Closes #3238

- [Romain Fliedel brought this change]

  examples/ephiperfifo: report error when epoll_ctl fails

Daniel Gustafsson (20 Nov 2018)
- [pkubaj brought this change]

  ntlm: Remove redundant ifdef USE_OPENSSL
  
  lib/curl_ntlm.c had code that read as follows:
  
    #ifdef USE_OPENSSL
    # ifdef USE_OPENSSL
    # else
    # ..
    # endif
    #endif
  
  Remove the redundant USE_OPENSSL along with #else (it's not possible to
  reach it anyway). The removed construction is a leftover from when the
  SSLeay support was removed.
  
  Closes #3269
  Reviewed-by: Daniel Gustafsson <daniel@yesql.se>
  Reviewed-by: Daniel Stenberg <daniel@haxx.se>

Daniel Stenberg (20 Nov 2018)
- [Han Han brought this change]

  ssl: replace all internal uses of CURLE_SSL_CACERT
  
  Closes #3291

Han Han (19 Nov 2018)
- docs: add more description to unified ssl error codes

- curle: move deprecated error code to ifndef block

Patrick Monnerat (19 Nov 2018)
- os400: add CURLOPT_CURLU to ILE/RPG binding.

- os400: Add curl_easy_conn_upkeep() to ILE/RPG binding.

- os400: fix return type of curl_easy_pause() in ILE/RPG binding.

Daniel Stenberg (19 Nov 2018)
- RELEASE-NOTES: synced

- impacket: add LICENSE
  
  The license for the impacket package was not in our tree.
  
  Imported now from upstream's
  https://github.com/SecureAuthCorp/impacket/blob/master/LICENSE
  
  Reported-by: infinnovation-dev on github
  Fixes #3276
  Closes #3277

Daniel Gustafsson (18 Nov 2018)
- tool_doswin: Fix uninitialized field warning
  
  The partial struct initialization in 397664a065abffb7c3445ca9 caused
  a warning on uninitialized MODULEENTRY32 struct members:
  
    /src/tool_doswin.c:681:3: warning: missing initializer for field
    'th32ModuleID' of 'MODULEENTRY32 {aka struct tagMODULEENTRY32}'
    [-Wmissing-field-initializers]
  
  This is sort of a bogus warning as the remaining members will be set
  to zero by the compiler, as all omitted members are. Nevertheless,
  remove the warning by omitting all members and setting the dwSize
  members explicitly.
  
  Closes #3254
  Reviewed-by: Marcel Raad <Marcel.Raad@teamviewer.com>
  Reviewed-by: Jay Satiro <raysatiro@yahoo.com>

- openssl: Remove SSLEAY leftovers
  
  Commit 709cf76f6bb7dbac deprecated USE_SSLEAY, as curl since long isn't
  compatible with the SSLeay library. This removes the few leftovers that
  were omitted in the less frequently used platform targets.
  
  Closes #3270
  Reviewed-by: Daniel Stenberg <daniel@haxx.se>

Daniel Stenberg (16 Nov 2018)
- [Elia Tufarolo brought this change]

  http_negotiate: do not close connection until negotiation is completed
  
  Fix HTTP POST using CURLAUTH_NEGOTIATE.
  
  Closes #3275

- pop3: only do APOP with a valid timestamp
  
  Brought-by: bobmitchell1956 on github
  Fixes #3278
  Closes #3279

Jay Satiro (16 Nov 2018)
- [Peter Wu brought this change]

  openssl: do not log excess "TLS app data" lines for TLS 1.3
  
  The SSL_CTX_set_msg_callback callback is not just called for the
  Handshake or Alert protocols, but also for the raw record header
  (SSL3_RT_HEADER) and the decrypted inner record type
  (SSL3_RT_INNER_CONTENT_TYPE). Be sure to ignore the latter to avoid
  excess debug spam when using `curl -v` against a TLSv1.3-enabled server:
  
      * TLSv1.3 (IN), TLS app data, [no content] (0):
  
  (Following this message, another callback for the decrypted
  handshake/alert messages will be be present anyway.)
  
  Closes https://github.com/curl/curl/pull/3281

Marc Hoersken (15 Nov 2018)
- tests: disable SO_EXCLUSIVEADDRUSE for stunnel on Windows
  
  SO_EXCLUSIVEADDRUSE is on by default on Vista or newer,
  but does not work together with SO_REUSEADDR being on.
  
  The default changes were made with stunnel 5.34 and 5.35.

Daniel Stenberg (13 Nov 2018)
- [Kamil Dudka brought this change]

  nss: remove version selecting dead code
  
  Closes #3262

- nss: set default max-tls to 1.3/1.2
  
  Fixes #3261

Daniel Gustafsson (13 Nov 2018)
- tool_cb_wrt: Silence function cast compiler warning
  
  Commit 5bfaa86ceb3c2a9ac474a928e748c4a86a703b33 introduced a new
  compiler warning on Windows cross compilation with GCC. See below
  for an example of the warning from the autobuild logs (whitespace
  edited to fit):
  
  /src/tool_cb_wrt.c:175:9: warning: cast from function call of type
      'intptr_t {aka long long int}' to non-matching type 'void *'
      [-Wbad-function-cast]
  (HANDLE) _get_osfhandle(fileno(outs->stream)),
  ^
  
  Store the return value from _get_osfhandle() in an intermediate
  variable and cast the variable in WriteConsoleW() rather than the
  function call directly to avoid a compiler warning.
  
  In passing, also add inspection of the MultiByteToWideChar() return
  value and return failure in case an error is reported.
  
  Closes #3263
  Reviewed-by: Marcel Raad <Marcel.Raad@teamviewer.com>
  Reviewed-by: Viktor Szakats <commit@vszakats.net>

Daniel Stenberg (12 Nov 2018)
- nss: fix fallthrough comment to fix picky compiler warning

- docs: expanded on some CURLU details

- [Tim Rühsen brought this change]

  ftp: avoid two unsigned int overflows in FTP listing parser
  
  Curl_ftp_parselist: avoid unsigned integer overflows
  
  The overflow has no real world impact, just avoid it for "best
  practice".
  
  Closes #3225

- curl: --local-port range was not "including"
  
  The end port number in a given range was not included in the range used,
  as it is documented to be.
  
  Reported-by: infinnovation-dev on github
  Fixes #3251
  Closes #3255

- [Jérémy Rocher brought this change]

  openssl: support BoringSSL TLS renegotiation
  
  As per BoringSSL porting documentation [1], BoringSSL rejects peer
  renegotiations by default.
  
  curl fails when trying to authenticate to server through client
  certificate if it is requested by server after the initial TLS
  handshake.
  
  Enable renegotiation by default with BoringSSL to get same behavior as
  with OpenSSL. This is done by calling SSL_set_renegotiate_mode [2]
  which was introduced in commit 1d5ef3bb1eb9 [3].
  
  1 - https://boringssl.googlesource.com/boringssl/+/HEAD/PORTING.md#tls-renegotiation
  2 - https://boringssl.googlesource.com/boringssl/+/master/include/openssl/ssl.h#3482
  3 - https://boringssl.googlesource.com/boringssl/+/1d5ef3bb1eb97848617db5e7d633d735a401df86
  
  Signed-off-by: Jérémy Rocher <rocher.jeremy@gmail.com>
  Fixes #3258
  Closes #3259

- HISTORY: add some milestones
  
  Added a few of the more notable milestones in curl history that were
  missing. Primarily more recent ones but I also noted some older that
  could be worth mentioning.
  
  [ci skip]
  Closes #3257

Daniel Gustafsson (9 Nov 2018)
- KNOWN_BUGS: add --proxy-any connection issue
  
  Add the identified issue with --proxy-any and proxy servers which
  advertise authentication schemes other than the supported one.
  
  Closes #876
  Closes #3250
  Reported-by: NTMan on Github
  Reviewed-by: Daniel Stenberg <daniel@haxx.se>

Daniel Stenberg (9 Nov 2018)
- [Jim Fuller brought this change]

  setopt: add CURLOPT_CURLU
  
  Allows an application to pass in a pre-parsed URL via a URL handle.
  
  Closes #3227

- [Gisle Vanem brought this change]

  docs: ESCape "\n" codes
  
  Groff / Troff will display a:
   printaf("Errno: %ld\n", error);
  as:
    printf("Errno: %ld0, error);
  
  when a "\n" is not escaped. Use "\\n" instead.
  
  Closes #3246

- curl: --local-port fix followup
  
  Regression by 52db54869e6.
  
  Reported-by: infinnovation-dev on github
  Fixes #3248
  Closes #3249

GitHub (7 Nov 2018)
- [Gisle Vanem brought this change]

  More "\n" ESCaping

Daniel Stenberg (7 Nov 2018)
- RELEASE-NOTES: synced

- curl: fix --local-port integer overflow
  
  The tool's local port command line range parser didn't check for integer
  overflows and could pass "weird" data to libcurl for this option.
  libcurl however, has a strict range check for the values so it rejects
  anything outside of the accepted range.
  
  Reported-by: Brian Carpenter
  Closes #3242

- curl: correct the switch() logic in ourWriteOut
  
  Follow-up to e431daf013, as I did the wrong correction for a compiler
  warning. It should be a break and not a fall-through.
  
  Pointed-out-by: Frank Gevaerts

- [Frank Gevaerts brought this change]

  curl: add %{stderr} and %{stdout} for --write-out
  
  Closes #3115

Daniel Gustafsson (7 Nov 2018)
- winssl: be consistent in Schannel capitalization
  
  The productname from Microsoft is "Schannel", but in infof/failf
  reporting we use "schannel". This removes different versions.
  
  Closes #3243
  Reviewed-by: Daniel Stenberg <daniel@haxx.se>

Daniel Stenberg (7 Nov 2018)
- TODO: Have the URL API offer IDN decoding
  
  Similar to how URL decoding/encoding is done, we could have URL
  functions to convert IDN host names to punycode.
  
  Suggested-by: Alexey Melnichuk
  Closes #3232

- urlapi: only skip encoding the first '=' with APPENDQUERY set
  
  APPENDQUERY + URLENCODE would skip all equals signs but now it only skip
  encoding the first to better allow "name=content" for any content.
  
  Reported-by: Alexey Melnichuk
  Fixes #3231
  Closes #3231

- url: a short host name + port is not a scheme
  
  The function identifying a leading "scheme" part of the URL considered a
  few letters ending with a colon to be a scheme, making something like
  "short:80" to become an unknown scheme instead of a short host name and
  a port number.
  
  Extended test 1560 to verify.
  
  Also fixed test203 to use file_pwd to make it get the correct path on
  windows. Removed test 2070 since it was a duplicate of 203.
  
  Assisted-by: Marcel Raad
  Reported-by: Hagai Auro
  Fixes #3220
  Fixes #3233
  Closes #3223
  Closes #3235

- [Sangamkar brought this change]

  libcurl: stop reading from paused transfers
  
  In the transfer loop it would previously not acknwledge the pause bit
  and continue until drained or loop ended.
  
  Closes #3240

Jay Satiro (6 Nov 2018)
- tool: add undocumented option --dump-module-paths for win32
  
  - Add an undocumented diagnostic option for Windows to show the full
    paths of all loaded modules regardless of whether or not libcurl
    initialization succeeds.
  
  This is needed so that in the CI we can get a list of all DLL
  dependencies after initialization (when they're most likely to have
  finished loading) and then package them as artifacts so that a
  functioning build can be downloaded. Also I imagine it may have some use
  as a diagnostic for help requests.
  
  Ref: https://github.com/curl/curl/pull/3103
  
  Closes https://github.com/curl/curl/pull/3208

- curl_multibyte: fix a malloc overcalculation
  
  Prior to this change twice as many bytes as necessary were malloc'd when
  converting wchar to UTF8. To allay confusion in the future I also
  changed the variable name for the amount of bytes from len to bytes.
  
  Closes https://github.com/curl/curl/pull/3209

Michael Kaufmann (5 Nov 2018)
- netrc: don't ignore the login name specified with "--user"
  
  - for "--netrc", don't ignore the login/password specified with "--user",
    only ignore the login/password in the URL.
    This restores the netrc behaviour of curl 7.61.1 and earlier.
  - fix the documentation of CURL_NETRC_REQUIRED
  - improve the detection of login/password changes when reading .netrc
  - don't read .netrc if both login and password are already set
  
  Fixes #3213
  Closes #3224

Patrick Monnerat (5 Nov 2018)
- OS400: add URL API ccsid wrappers and sync ILE/RPG bindings

Daniel Stenberg (5 Nov 2018)
- [Yasuhiro Matsumoto brought this change]

  curl: fixed UTF-8 in current console code page (Windows)
  
  Fixes #3211
  Fixes #3175
  Closes #3212

- TODO: 2.6 multi upkeep
  
  Closes #3199

Daniel Gustafsson (5 Nov 2018)
- unittest: make 1652 stable across collations
  
  The previous coding used a format string whose output depended on the
  current locale of the environment running the test. Since the gist of
  the test is to have a format string, with the actual formatting being
  less important, switch to a more stable formatstring with decimals.
  
  Reported-by: Marcel Raad
  Closes #3234
  Reviewed-by: Daniel Stenberg <daniel@haxx.se>
  Reviewed-by: Marcel Raad <Marcel.Raad@teamviewer.com>

Daniel Stenberg (5 Nov 2018)
- Revert "url: a short host name + port is not a scheme"
  
  This reverts commit 226cfa8264cd979eff3fd52c0f3585ef095e7cf2.
  
  This commit caused test failures on appveyor/windows. Work on fixing them is
  in #3235.

- symbols-in-versions: add missing CURLU_ symbols
  
  ...and fix symbol-scan.pl to also scan urlapi.h
  
  Reported-by: Alexey Melnichuk
  Fixes #3226
  Closes #3230

Daniel Gustafsson (3 Nov 2018)
- infof: clearly indicate truncation
  
  The internal buffer in infof() is limited to 2048 bytes of payload plus
  an additional byte for NULL termination. Servers with very long error
  messages can however cause truncation of the string, which currently
  isn't very clear, and leads to badly formatted output.
  
  This appends a "...\n" (or just "..." in case the format didn't with a
  newline char) marker to the end of the string to clearly show
  that it has been truncated.
  
  Also include a unittest covering infof() to try and catch any bugs
  introduced in this quite important function.
  
  Closes #3216
  Reviewed-by: Daniel Stenberg <daniel@haxx.se>
  Reviewed-by: Marcel Raad <Marcel.Raad@teamviewer.com>

Michael Kaufmann (3 Nov 2018)
- tool_getparam: fix some comments

Daniel Stenberg (3 Nov 2018)
- url: a short host name + port is not a scheme
  
  The function identifying a leading "scheme" part of the URL considered a few
  letters ending with a colon to be a scheme, making something like "short:80"
  to become an unknown scheme instead of a short host name and a port number.
  
  Extended test 1560 to verify.
  
  Reported-by: Hagai Auro
  Fixes #3220
  Closes #3223

- URL: fix IPv6 numeral address parser
  
  Regression from 46e164069d1a52. Extended test 1560 to verify.
  
  Reported-by: tpaukrt on github
  Fixes #3218
  Closes #3219

- travis: remove curl before a normal build
  
  on Linux. To make sure the test suite runs with its newly build tool and
  doesn't require an external one present.
  
  Bug: #3198
  Closes #3200

- [Tim Rühsen brought this change]

  mprintf: avoid unsigned integer overflow warning
  
  The overflow has no real world impact.
  Just avoid it for "best practice".
  
  Code change suggested by "The Infinnovation Team" and Daniel Stenberg.
  Closes #3184

- Curl_follow: accept non-supported schemes for "fake" redirects
  
  When not actually following the redirect and the target URL is only
  stored for later retrieval, curl always accepted "non-supported"
  schemes. This was a regression from 46e164069d1a5230.
  
  Reported-by: Brad King
  Fixes #3210
  Closes #3215

Daniel Gustafsson (2 Nov 2018)
- openvms: fix example name
  
  Commit efc696a2e09225bfeab4 renamed persistant.c to persistent.c to
  fix the typo in the name, but missed to update the OpenVMS package
  files which still looked for the old name.
  
  Closes #3217
  Reviewed-by: Daniel Stenberg <daniel@haxx.se>
  Reviewed-by: Viktor Szakats <commit@vszakats.net>

Daniel Stenberg (1 Nov 2018)
- configure: show CFLAGS, LDFLAGS etc in summary
  
  To make it easier to understand other people's and remote builds etc.
  
  Closes #3207

- version: bump for next cycle

- axtls: removed
  
  As has been outlined in the DEPRECATE.md document, the axTLS code has
  been disabled for 6 months and is hereby removed.
  
  Use a better supported TLS library!
  
  Assisted-by: Daniel Gustafsson
  Closes #3194

- [marcosdiazr brought this change]

  schannel: make CURLOPT_CERTINFO support using Issuer chain
  
  Closes #3197

- travis: build with sanitize=address,undefined,signed-integer-overflow
  
  ... using clang
  
  Closes #3190

- schannel: use Curl_ prefix for global private symbols
  
  Curl_verify_certificate() must use the Curl_ prefix since it is globally
  available in the lib and otherwise steps outside of our namespace!
  
  Closes #3201

Kamil Dudka (1 Nov 2018)
- tests: drop http_pipe.py script no longer used
  
  It is unused since commit f7208df7d9d5cd5e15e2d89237e828f32b63f135.
  
  Closes #3204

Daniel Stenberg (31 Oct 2018)
- runtests: use the local curl for verifying
  
  ... revert the mistaken change brought in commit 8440616f53.
  
  Reported-by: Alessandro Ghedini
  Bug: https://curl.haxx.se/mail/lib-2018-10/0118.html
  
  Closes #3198

Version 7.62.0 (30 Oct 2018)

Daniel Stenberg (30 Oct 2018)
- RELEASE-NOTES: 7.62.0

- THANKS: 7.62.0 status

Daniel Gustafsson (30 Oct 2018)
- vtls: add MesaLink to curl_sslbackend enum
  
  MesaLink support was added in commit 57348eb97d1b8fc3742e02c but the
  backend was never added to the curl_sslbackend enum in curl/curl.h.
  This adds the new backend to the enum and updates the relevant docs.
  
  Closes #3195
  Reviewed-by: Daniel Stenberg <daniel@haxx.se>

Daniel Stenberg (30 Oct 2018)
- [Ruslan Baratov brought this change]

  cmake: Remove unused CURL_CONFIG_HAS_BEEN_RUN_BEFORE variable
  
  Closes #3191

- test2080: verify the fix for CVE-2018-16842

- voutf: fix bad arethmetic when outputting warnings to stderr
  
  CVE-2018-16842
  Reported-by: Brian Carpenter
  Bug: https://curl.haxx.se/docs/CVE-2018-16842.html

- [Tuomo Rinne brought this change]

  cmake: uniform ZLIB to use USE_ variable and clean curl-config.cmake.in
  
  Closes #3123

- [Tuomo Rinne brought this change]

  cmake: add find_dependency call for ZLIB to CMake config file

- [Tuomo Rinne brought this change]

  cmake: add support for transitive ZLIB target

- unit1650: fix "null pointer passed as argument 1 to memcmp"
  
  Detected by UndefinedBehaviorSanitizer
  
  Closes #3187

- travis: add a "make tidy" build that runs clang-tidy
  
  Closes #3182

- unit1300: fix stack-use-after-scope AddressSanitizer warning
  
  Closes #3186

- Curl_auth_create_plain_message: fix too-large-input-check
  
  CVE-2018-16839
  Reported-by: Harry Sintonen
  Bug: https://curl.haxx.se/docs/CVE-2018-16839.html

- Curl_close: clear data->multi_easy on free to avoid use-after-free
  
  Regression from b46cfbc068 (7.59.0)
  CVE-2018-16840
  Reported-by: Brian Carpenter (Geeknik Labs)
  
  Bug: https://curl.haxx.se/docs/CVE-2018-16840.html

- [randomswdev brought this change]

  system.h: use proper setting with Sun C++ as well
  
  system.h selects the proper Sun settings when __SUNPRO_C is defined. The
  Sun compiler does not define it when compiling C++ files.  I'm adding a
  check also on __SUNPRO_CC to allow curl to work properly also when used
  in a C++ project on Sun Solaris.
  
  Closes #3181

- rand: add comment to skip a clang-tidy false positive

- test1651: unit test Curl_extract_certinfo()
  
  The version used for Gskit, NSS, GnuTLS, WolfSSL and schannel.

- x509asn1: always check return code from getASN1Element()

- Makefile: add 'tidy' target that runs clang-tidy
  
  Available in the root, src and lib dirs.
  
  Closes #3163

- RELEASE-PROCEDURE: adjust the release dates
  
  See: https://curl.haxx.se/mail/lib-2018-10/0107.html

Patrick Monnerat (27 Oct 2018)
- x509asn1: suppress left shift on signed value
  
  Use an unsigned variable: as the signed operation behavior is undefined,
  this change silents clang-tidy about it.
  
  Ref: https://github.com/curl/curl/pull/3163
  Reported-By: Daniel Stenberg

Michael Kaufmann (27 Oct 2018)
- multi: Fix error handling in the SENDPROTOCONNECT state
  
  If Curl_protocol_connect() returns an error code,
  handle the error instead of switching to the next state.
  
  Closes #3170

Daniel Stenberg (27 Oct 2018)
- RELEASE-NOTES: synced

- openssl: output the correct cipher list on TLS 1.3 error
  
  When failing to set the 1.3 cipher suite, the wrong string pointer would
  be used in the error message. Most often saying "(nil)".
  
  Reported-by: Ricky-Tigg on github
  Fixes #3178
  Closes #3180

- docs/CIPHERS: fix the TLS 1.3 cipher names
  
  ... picked straight from the OpenSSL man page:
  https://www.openssl.org/docs/manmaster/man3/SSL_CTX_set_ciphersuites.html
  
  Reported-by: Ricky-Tigg on github
  Bug: #3178

Marcel Raad (27 Oct 2018)
- travis: install gnutls-bin package
  
  This is required for gnutls-serv, which enables a few more tests.
  
  Closes https://github.com/curl/curl/pull/2958

Daniel Gustafsson (26 Oct 2018)
- ssh: free the session on init failures
  
  Ensure to clear the session object in case the libssh2 initialization
  fails.
  
  It could be argued that the libssh2 error function should be called to
  get a proper error message in this case. But since the only error path
  in libssh2_knownhost_init() is memory a allocation failure it's safest
  to avoid since the libssh2 error handling allocates memory.
  
  Closes #3179
  Reviewed-by: Daniel Stenberg <daniel@haxx.se>

Daniel Stenberg (26 Oct 2018)
- docs/RELEASE-PROCEDURE: remove old entries, modify the Dec 2018 date
  
  ... I'm moving it up one week due to travels. The rest stays.

- [Daniel Gustafsson brought this change]

  openssl: make 'done' a proper boolean
  
  Closes #3176

- gtls: Values stored to but never read
  
  Detected by clang-tidy
  
  Closes #3176

- [Alexey Eremikhin brought this change]

  curl.1: --ipv6 mutexes ipv4 (fixed typo)
  
  Fixes #3171
  Closes #3172

- tool_main: make TerminalSettings static
  
  Reported-by: Gisle Vanem
  Bug: https://github.com/curl/curl/commit/becfe1233ff2b6b0c3e1b6a10048b55b68c2539f#commitcomment-31008819
  Closes #3161

- curl-config.in: remove dependency on bc
  
  Reported-by: Dima Pasechnik
  Fixes #3143
  Closes #3174

- [Gisle Vanem brought this change]

  rtmp: fix for compiling with lwIP
  
  Compiling on _WIN32 and with USE_LWIPSOCK, causes this error:
    curl_rtmp.c(223,3):  error: use of undeclared identifier 'setsockopt'
      setsockopt(r->m_sb.sb_socket, SOL_SOCKET, SO_RCVTIMEO,
      ^
    curl_rtmp.c(41,32):  note: expanded from macro 'setsockopt'
    #define setsockopt(a,b,c,d,e) (setsockopt)(a,b,c,(const char *)d,(int)e)
                                   ^
  Closes #3155

- configure: remove CURL_CONFIGURE_CURL_SOCKLEN_T
  
  Follow-up to #3166 which did the cmake part of this. This type/define is
  not used.
  
  Closes #3168

- [Ruslan Baratov brought this change]

  cmake: remove unused variables
  
  Remove variables:
  * HAVE_SOCKLEN_T
  * CURL_SIZEOF_CURL_SOCKLEN_T
  * CURL_TYPEOF_CURL_SOCKLEN_T
  
  Closes #3166

Michael Kaufmann (25 Oct 2018)
- urldata: Fix comment in header
  
  The "connecting" function is used by multiple protocols, not only FTP

- netrc: free temporary strings if memory allocation fails
  
  - Change the inout parameters after all needed memory has been
    allocated. Do not change them if something goes wrong.
  - Free the allocated temporary strings if strdup() fails.
  
  Closes #3122

Daniel Stenberg (24 Oct 2018)
- [Ruslan Baratov brought this change]

  config: Remove unused SIZEOF_VOIDP
  
  Closes #3162

- RELEASE-NOTES: synced

GitHub (23 Oct 2018)
- [Gisle Vanem brought this change]

  Fix for compiling with lwIP (3)
  
  lwIP on Windows does not have a WSAIoctl() function.
  But it do have a SO_SNDBUF option to lwip_setsockopt(). But it currently does nothing.

Daniel Stenberg (23 Oct 2018)
- Curl_follow: return better errors on URL problems
  
  ... by making the converter function global and accessible.
  
  Closes #3153

- Curl_follow: remove remaining free(newurl)
  
  Follow-up to 05564e750e8f0c. This function no longer frees the passed-in
  URL.
  
  Reported-by: Michael Kaufmann
  Bug: https://github.com/curl/curl/commit/05564e750e8f0c79016c680f301ce251e6e86155#commitcomm
  ent-30985666

Daniel Gustafsson (23 Oct 2018)
- headers: end all headers with guard comment
  
  Most headerfiles end with a /* <headerguard> */ comment, but it was
  missing from some. The comment isn't the most important part of our
  code documentation but consistency has an intrinsic value in itself.
  This adds header guard comments to the files that were lacking it.
  
  Closes #3158
  Reviewed-by: Jay Satiro <raysatiro@yahoo.com>
  Reviewed-by: Daniel Stenberg <daniel@haxx.se>

Jay Satiro (23 Oct 2018)
- CIPHERS.md: Mention the options used to set TLS 1.3 ciphers
  
  Closes https://github.com/curl/curl/pull/3159

Daniel Stenberg (20 Oct 2018)
- docs/BUG-BOUNTY: the sponsors actually decide the amount
  
  Retract the previous approach as the sponsors will be the ones to set the
  final amounts.
  
  Closes #3152
  [ci skip]

- multi: avoid double-free
  
  Curl_follow() no longer frees the string. Make sure it happens in the
  caller function, like we normally handle allocations.
  
  This bug was introduced with the use of the URL API internally, it has
  never been in a release version
  
  Reported-by: Dario Weißer
  Closes #3149

- multi: make the closure handle "inherit" CURLOPT_NOSIGNAL
  
  Otherwise, closing that handle can still cause surprises!
  
  Reported-by: Martin Ankerl
  Fixes #3138
  Closes #3147

Marcel Raad (19 Oct 2018)
- VS projects: add USE_IPV6
  
  The Visual Studio builds didn't use IPv6. Add it to all projects since
  Visual Studio 2008, which is verified to build via AppVeyor.
  
  Closes https://github.com/curl/curl/pull/3137

- config_win32: enable LDAPS
  
  As done in the autotools and CMake builds by default.
  
  Closes https://github.com/curl/curl/pull/3137

Daniel Stenberg (18 Oct 2018)
- travis: add build for "configure --disable-verbose"
  
  Closes #3144

Kamil Dudka (17 Oct 2018)
- tool_cb_hdr: handle failure of rename()
  
  Detected by Coverity.
  
  Closes #3140
  Reviewed-by: Jay Satiro

Daniel Stenberg (17 Oct 2018)
- RELEASE-NOTES: synced

- docs/SECURITY-PROCESS: the hackerone IBB program drops curl
  
  ... now there's only BountyGraph.

Jay Satiro (16 Oct 2018)
- [Matthew Whitehead brought this change]

  x509asn1: Fix SAN IP address verification
  
  For IP addresses in the subject alternative name field, the length
  of the IP address (and hence the number of bytes to perform a
  memcmp on) is incorrectly calculated to be zero. The code previously
  subtracted q from name.end. where in a successful case q = name.end
  and therefore addrlen equalled 0. The change modifies the code to
  subtract name.beg from name.end to calculate the length correctly.
  
  The issue only affects libcurl with GSKit SSL, not other SSL backends.
  The issue is not a security issue as IP verification would always fail.
  
  Fixes #3102
  Closes #3141

Daniel Gustafsson (15 Oct 2018)
- INSTALL: mention mesalink in TLS section
  
  Commit 57348eb97d1b8fc3742e02c6587d2d02ff592da5 added support for the
  MesaLink vtls backend, but missed updating the TLS section containing
  supported backends in the docs.
  
  Closes #3134
  Reviewed-by: Daniel Stenberg <daniel@haxx.se>

Marcel Raad (14 Oct 2018)
- nonblock: fix unused parameter warning
  
  If USE_BLOCKING_SOCKETS is defined, curlx_nonblock's arguments are not
  used.

Michael Kaufmann (13 Oct 2018)
- Curl_follow: Always free the passed new URL
  
  Closes #3124

Viktor Szakats (12 Oct 2018)
- replace rawgit links [ci skip]
  
  Ref: https://rawgit.com/ "RawGit has reached the end of its useful life"
  Ref: https://news.ycombinator.com/item?id=18202481
  Closes https://github.com/curl/curl/pull/3131

Daniel Stenberg (12 Oct 2018)
- docs/BUG-BOUNTY.md: for vulns published since Aug 1st 2018
  
  [ci skip]

- travis: make distcheck scan for BOM markers
  
  and remove BOM from projects/wolfssl_override.props
  
  Closes #3126

Marcel Raad (11 Oct 2018)
- CMake: remove BOM
  
  Accidentally aded in commit 1bb86057ff07083deeb0b00f8ad35879ec4d03ea.
  
  Reported-by: Viktor Szakats
  Ref: https://github.com/curl/curl/pull/3120#issuecomment-428673136

Daniel Gustafsson (10 Oct 2018)
- transfer: fix typo in comment

Michael Kaufmann (10 Oct 2018)
- docs: add "see also" links for SSL options
  
  - link TLS 1.2 and TLS 1.3 options
  - link proxy and non-proxy options
  
  Closes #3121

Marcel Raad (10 Oct 2018)
- AppVeyor: remove BDIR variable that sneaked in again
  
  Removed in ae762e1abebe3a5fe75658583c85059a0957ef6e, accidentally added
  again in 9f3be5672dc4dda30ab43e0152e13d714a84d762.

- CMake: disable -Wpedantic-ms-format
  
  As done in the autotools build. This is required for MinGW, which
  supports only %I64 for printing 64-bit values, but warns about it.
  
  Closes https://github.com/curl/curl/pull/3120

Viktor Szakats (9 Oct 2018)
- ldap: show precise LDAP call in error message on Windows
  
  Also add a unique but common text ('bind via') to make it
  easy to grep this specific failure regardless of platform.
  
  Ref: https://github.com/curl/curl/pull/878/files#diff-7a636f08047c4edb53a240f540b4ecf6R468
  Closes https://github.com/curl/curl/pull/3118
  Reviewed-by: Daniel Stenberg <daniel@haxx.se>
  Reviewed-by: Marcel Raad <Marcel.Raad@teamviewer.com>

Daniel Stenberg (9 Oct 2018)
- docs/DEPRECATE: minor reformat to render nicer on web

Daniel Gustafsson (9 Oct 2018)
- CURLOPT_SSL_VERIFYSTATUS: Fix typo
  
  Changes s/OSCP/OCSP/ and bumps the copyright year due to the change.

Marcel Raad (9 Oct 2018)
- curl_setup: define NOGDI on Windows
  
  This avoids an ERROR macro clash between <wingdi.h> and <arpa/tftp.h>
  on MinGW.
  
  Closes https://github.com/curl/curl/pull/3113

- Windows: fixes for MinGW targeting Windows Vista
  
  Classic MinGW has neither InitializeCriticalSectionEx nor
  GetTickCount64, independent of the target Windows version.
  
  Closes https://github.com/curl/curl/pull/3113

Daniel Stenberg (8 Oct 2018)
- TODO: fixed 'API for URL parsing/splitting'

Daniel Gustafsson (8 Oct 2018)
- KNOWN_BUGS: Fix various typos
  
  Closes #3112
  Reviewed-by: Daniel Stenberg <daniel@haxx.se>

Viktor Szakats (8 Oct 2018)
- spelling fixes [ci skip]
  
  as detected by codespell 1.14.0
  
  Closes https://github.com/curl/curl/pull/3114
  Reviewed-by: Marcel Raad <Marcel.Raad@teamviewer.com>

Daniel Stenberg (8 Oct 2018)
- RELEASE-NOTES: synced

- curl_ntlm_wb: check aprintf() return codes
  
  ... when they return NULL we're out of memory and MUST return failure.
  
  closes #3111

- docs/BUG-BOUNTY: proposed additional docs
  
  Bug bounty explainer. See https://bountygraph.com/programs/curl
  
  Closes #3067

- [Rick Deist brought this change]

  hostip: fix check on Curl_shuffle_addr return value
  
  Closes #3110

- FILE: fix CURLOPT_NOBODY and CURLOPT_HEADER output
  
  Now FILE transfers send headers to the header callback like HTTP and
  other protocols. Also made curl_easy_getinfo(...CURLINFO_PROTOCOL...)
  work for FILE in the callbacks.
  
  Makes "curl -i file://.." and "curl -I file://.." work like before
  again. Applied the bold header logic to them too.
  
  Regression from c1c2762 (7.61.0)
  
  Reported-by: Shaun Jackman
  Fixes #3083
  Closes #3101

Daniel Gustafsson (7 Oct 2018)
- gskit: make sure to terminate version string
  
  In case a very small buffer was passed to the version function, it could
  result in the buffer not being NULL-terminated since strncpy() doesn't
  guarantee a terminator on an overflowed buffer. Rather than adding code
  to terminate (and handle zero-sized buffers), move to using snprintf()
  instead like all the other vtls backends.
  
  Closes #3105
  Reviewed-by: Daniel Stenberg <daniel@haxx.se>
  Reviewed-by: Viktor Szakats <commit@vszakats.net>

- TODO: add LD_PRELOAD support on macOS
  
  Add DYLD_INSERT_LIBRARIES support to the TODO list. Reported in #2394.

- runtests: skip ld_preload tests on macOS
  
  The LD_PRELOAD functionality doesn't exist on macOS, so skip any tests
  requiring it.
  
  Fixes #2394
  Closes #3106
  Reported-by: Github user @jakirkham
  Reviewed-by: Daniel Stenberg <daniel@haxx.se>

Marcel Raad (7 Oct 2018)
- AppVeyor: use Debug builds to run tests
  
  This enables more tests.
  
  Closes https://github.com/curl/curl/pull/3104

- AppVeyor: add HTTP_ONLY build
  
  Closes https://github.com/curl/curl/pull/3104

- AppVeyor: add WinSSL builds
  
  Use the oldest and latest Windows SDKs for them.
  Also, remove all but one OpenSSL build.
  
  Closes https://github.com/curl/curl/pull/3104

- AppVeyor: add remaining Visual Studio versions
  
  This adds Visual Studio 9 and 10 builds.
  There's no 64-bit VC9 compiler on AppVeyor, so use it as the Win32
  build. Also, VC9 cannot be used for running the test suite.
  
  Closes https://github.com/curl/curl/pull/3104

- AppVeyor: break long line
  
  Closes https://github.com/curl/curl/pull/3104

- AppVeyor: remove unused BDIR variable
  
  Closes https://github.com/curl/curl/pull/3104

Daniel Stenberg (6 Oct 2018)
- test2100: test DoH using IPv4-only
  
  To make it only send one DoH request and avoid the race condition that
  could lead to the requests getting sent in reversed order and thus
  making it hard to compare in the test case.
  
  Fixes #3107
  Closes #3108

- tests/FILEFORMAT: mention how to use <fileN> and <stripfileN> too
  
  [ci skip]

- RELEASE-NOTES: synced

- [Dmitry Kostjuchenko brought this change]

  timeval: fix use of weak symbol clock_gettime() on Apple platforms
  
  Closes #3048

- doh: keep the IPv4 address in (original) network byte order
  
  Ideally this will fix the reversed order shown in SPARC tests:
  
    resp 8: Expected 127.0.0.1 got 1.0.0.127
  
  Closes #3091

Jay Satiro (5 Oct 2018)
- INTERNALS.md: wrap lines longer than 79

Daniel Gustafsson (5 Oct 2018)
- INTERNALS: escape reference to parameter
  
  The parameter reference <string> was causing rendering issues in the
  generated HTML page, as <string> isn't a valid HTML tag. Fix by back-
  tick escaping it.
  
  Closes #3099
  Reviewed-by: Jay Satiro <raysatiro@yahoo.com>
  Reviewed-by: Daniel Stenberg <daniel@haxx.se>

- checksrc: handle zero scoped ignore commands
  
  If a !checksrc! disable command specified to ignore zero errors, it was
  still added to the ignore block even though nothing was ignored. While
  there were no blocks ignored that shouldn't be ignored, the processing
  ended with with a warning:
  
  <filename>:<line>:<col>: warning: Unused ignore: LONGLINE (UNUSEDIGNORE)
   /* !checksrc! disable LONGLINE 0 */
                      ^
  Fix by instead treating a zero ignore as a a badcommand and throw a
  warning for that one.
  
  Closes #3096
  Reviewed-by: Daniel Stenberg <daniel@haxx.se>

- checksrc: enable strict mode and warnings
  
  Enable strict and warnings mode for checksrc to ensure we aren't missing
  anything due to bugs in the checking code. This uncovered a few things
  which are all fixed in this commit:
  
  * several variables were used uninitialized
  * several variables were not defined in the correct scope
  * the whitelist filehandle was read even if the file didn't exist
  * the enable_warn() call when a disable counter had expired was passing
    incorrect variables, but since the checkwarn() call is unlikely to hit
    (the counter is only decremented to zero on actual ignores) it didn't
    manifest a problem.
  
  Closes #3090
  Reviewed-by: Daniel Stenberg <daniel@haxx.se>
  Reviewed-by: Marcel Raad <Marcel.Raad@teamviewer.com>

Marcel Raad (5 Oct 2018)
- CMake: suppress MSVC warning C4127 for libtest
  
  It's issued by older Windows SDKs (prior to version 8.0).

Sergei Nikulov (5 Oct 2018)
- Merge branch 'dmitrykos-fix_missing_CMake_defines'

- [Dmitry Kostjuchenko brought this change]

  cmake: test and set missed defines during configuration
  
  Added configuration checks for HAVE_BUILTIN_AVAILABLE and HAVE_CLOCK_GETTIME_MONOTONIC.
  
  Closes #3097

Marcel Raad (5 Oct 2018)
- AppVeyor: disable test 500
  
  It almost always results in
  "starttransfer vs total: 0.000001 0.000000".
  I cannot reproduce this locally, so disable it for now.
  
  Closes https://github.com/curl/curl/pull/3100

- AppVeyor: set custom install prefix
  
  CMake's default has spaces and in 32-bit mode parentheses, which result
  in syntax errors in curl-config.
  
  Closes https://github.com/curl/curl/pull/3100

- AppVeyor: Remove non-SSL non-test builds
  
  They don't add much value.
  
  Closes https://github.com/curl/curl/pull/3100

- AppVeyor: run test suite
  
  Use the preinstalled MSYS2 bash for that.
  Disable test 1139 as the CMake build doesn't generate curl.1.
  
  Ref: https://github.com/curl/curl/issues/3070#issuecomment-425922224
  Closes https://github.com/curl/curl/pull/3100

- AppVeyor: use in-tree build
  
  Required to run the tests.
  
  Closes https://github.com/curl/curl/pull/3100

Daniel Stenberg (4 Oct 2018)
- doh: make sure TTL isn't re-inited by second (discarded?) response
  
  Closes #3092

- test320: strip out more HTML when comparing
  
  To make the test case work with different gnutls-serv versions better.
  
  Reported-by: Kamil Dudka
  Fixes #3093
  Closes #3094

Marcel Raad (4 Oct 2018)
- runtests: use Windows paths for Windows curl
  
  curl generated by CMake's Visual Studio generator has "Windows" in the
  version number.

Daniel Stenberg (4 Oct 2018)
- [Colin Hogben brought this change]

  tests/negtelnetserver.py: fix Python2-ism in neg TELNET server
  
  Fix problems caused by differences in treatment of bytes objects between
  python2 and python3.
  
  Fixes #2929
  Closes #3080

Daniel Gustafsson (3 Oct 2018)
- memory: ensure to check allocation results
  
  The result of a memory allocation should always be checked, as we may
  run under memory pressure where even a small allocation can fail. This
  adds checking and error handling to a few cases where the allocation
  wasn't checked for success. In the ftp case, the freeing of the path
  variable is moved ahead of the allocation since there is little point
  in keeping it around across the strdup, and the separation makes for
  more readable code. In nwlib, the lock is aslo freed in the error path.
  
  Also bumps the copyright years on affected files.
  
  Closes #3084
  Reviewed-by: Jay Satiro <raysatiro@yahoo.com>
  Reviewed-by: Daniel Stenberg <daniel@haxx.se>

- comment: Fix multiple typos in function parameters
  
  Ensure that the parameters in the comment match the actual names in the
  prototype.
  
  Closes #3079
  Reviewed-by: Daniel Stenberg <daniel@haxx.se>

- CURLOPT_SSLVERSION.3: fix typos and consistent spelling
  
  Use TLS vX.Y throughout the document, instead of TLS X.Y, as that was
  already done in all but a few cases. Also fix a few typos.
  
  Closes #3076
  Reviewed-by: Marcel Raad <Marcel.Raad@teamviewer.com>
  Reviewed-by: Daniel Stenberg <daniel@haxx.se>

- SECURITY-PROCESS: make links into hyperlinks
  
  Use proper Markdown hyperlink format for the Bountygraph links in order
  for the generated website page to be more user friendly. Also link to
  the sponsors to give them a little extra credit.
  
  Closes #3082
  Reviewed-by: Daniel Stenberg <daniel@haxx.se>

Jay Satiro (3 Oct 2018)
- CURLOPT_HEADER.3: fix typo

- nss: fix nssckbi module loading on Windows
  
  - Use .DLL extension instead of .so to load modules on Windows.
  
  Bug: https://curl.haxx.se/mail/lib-2018-09/0077.html
  Reported-by: Maxime Legros
  
  Ref: https://github.com/curl/curl/pull/3016/#issuecomment-423069442
  
  Closes https://github.com/curl/curl/pull/3086

- data-binary.d: clarify default content-type is x-www-form-urlencoded
  
  - Advise user that --data-binary sends a default content type of
    x-www-form-urlencoded, and to have the data treated as arbitrary
    binary data by the server set the content-type header to octet-stream.
  
  Ref: https://github.com/curl/curl/pull/2852#issuecomment-426465094
  
  Closes https://github.com/curl/curl/pull/3085

Marcel Raad (2 Oct 2018)
- test1299: use single quotes around asterisk
  
  Ref: https://github.com/curl/curl/issues/1751#issuecomment-321522580

Daniel Stenberg (2 Oct 2018)
- docs/CIPHERS: mention the colon separation for OpenSSL
  
  Bug: #3077

- runtests: ignore disabled even when ranges are given
  
  runtests.pl support running a range of tests, like "44 to 127". Starting
  now, the code makes sure that even such given ranges will ignore tests
  that are marked as disabled.
  
  Disabled tests can still be run by explictly specifying that test
  number.
  
  Closes #3075

- urlapi: starting with a drive letter on win32 is not an abs url
  
  ... and libcurl doesn't support any single-letter URL schemes (if there
  even exist any) so it should be fairly risk-free.
  
  Reported-by: Marcel Raad
  
  Fixes #3070
  Closes #3071

Marcel Raad (2 Oct 2018)
- doh: fix curl_easy_setopt argument type
  
  CURLOPT_POSTFIELDSIZE is long. Fixes a compiler warning on 64-bit
  MinGW.

Daniel Stenberg (2 Oct 2018)
- RELEASE-NOTES: synced

Jay Satiro (1 Oct 2018)
- [Ruslan Baratov brought this change]

  CMake: Improve config installation
  
  Use 'GNUInstallDirs' standard module to set destinations of installed
  files.
  
  Use uppercase "CURL" names instead of lowercase "curl" to match standard
  'FindCURL.cmake' CMake module:
  * https://cmake.org/cmake/help/latest/module/FindCURL.html
  
  Meaning:
  * Install 'CURLConfig.cmake' instead of 'curl-config.cmake'
  * User should call 'find_package(CURL)' instead of 'find_package(curl)'
  
  Use 'configure_package_config_file' function to generate
  'CURLConfig.cmake' file. This will make 'curl-config.cmake.in' template
  file smaller and handle components better.  E.g.  current configuration
  report no error if user specified unknown components (note: new
  configuration expects no components, report error if user will try to
  specify any).
  
  Closes https://github.com/curl/curl/pull/2849

Daniel Stenberg (1 Oct 2018)
- test1650: make it depend on http/2
  
  Follow-up to 570008c99da0ccbb as it gets link errors.
  
  Reported-by: Michael Kaufmann
  Closes #3068

- [Nate Prewitt brought this change]

  MANUAL: minor grammar fix
  
  Noticed a typo reading through the docs.
  
  Closes #3069

- doh: only build if h2 enabled
  
  The DoH spec says "HTTP/2 [RFC7540] is the minimum RECOMMENDED version
  of HTTP for use with DoH".
  
  Reported-by: Marcel Raad
  Closes #3066

- test2100: require http2 to run
  
  Reported-by: Marcel Raad
  Fixes #3064
  Closes #3065

- multi: fix memory leak in content encoding related error path
  
  ... a missing multi_done() call.
  
  Credit to OSS-Fuzz
  Bug: https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=10728
  Closes #3063

- travis: bump the Secure Transport build to use xcode 10
  
  Due to an issue with travis
  (https://github.com/travis-ci/travis-ci/issues/9956) we've been using
  Xcode 9.2 for darwinssl builds for a while. Now xcode 10 is offered as
  an alternative and as it builds curl+darwinssl fine that seems like a
  better choice.
  
  Closes #3062

- [Rich Turner brought this change]

  curl: enabled Windows VT Support and UTF-8 output
  
  Enabled Console VT support (if running OS supports VT) in tool_main.c.
  
  Fixes #3008
  Closes #3011

- multi: fix location URL memleak in error path
  
  Follow-up to #3044 - fix a leak OSS-Fuzz detected
  Closes #3057

Sergei Nikulov (28 Sep 2018)
- cmake: fixed path used in generation of docs/tests during curl build through add_subdicectory(...)

- [Brad King brought this change]

  cmake: Backport to work with CMake 3.0 again
  
  Changes in commit 7867aaa9a0 (cmake: link curl to the OpenSSL targets
  instead of lib absolute paths, 2018-07-17) and commit f826b4ce98 (cmake:
  bumped minimum version to 3.4, 2018-07-19) required CMake 3.4 to fix
  issue #2746.  This broke support for users on older versions of CMake
  even if they just want to build curl and do not care whether transitive
  dependencies work.
  
  Backport the logic to work with CMake 3.0 again by implementing the
  fix only when the version of CMake is at least 3.4.

Marcel Raad (27 Sep 2018)
- curl_threads: fix classic MinGW compile break
  
  Classic MinGW still has _beginthreadex's return type as unsigned long
  instead of uintptr_t [0]. uintptr_t is not even defined because of [1].
  
  [0] https://sourceforge.net/p/mingw/mingw-org-wsl/ci/wsl-5.1-release/tree/mingwrt/include/process.h#l167
  [1] https://sourceforge.net/p/mingw/mingw-org-wsl/ci/wsl-5.1-release/tree/mingwrt/include/process.h#l90
  
  Bug: https://github.com/curl/curl/issues/2924#issuecomment-424334807
  Closes https://github.com/curl/curl/pull/3051

Daniel Stenberg (26 Sep 2018)
- configure: s/AC_RUN_IFELSE/CURL_RUN_IFELSE
  
  fix a few leftovers
  
  Fixes #3006
  Closes #3049

- [Doron Behar brought this change]

  example/htmltidy: fix include paths of tidy libraries
  
  Closes #3050

- RELEASE-NOTES: synced

- Curl_http2_done: fix memleak in error path
  
  Free 'header_recvbuf' unconditionally even if 'h2' isn't (yet) set, for
  early failures.
  
  Detected by OSS-Fuzz
  
  Bug: https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=10669
  Closes #3046

- http: fix memleak in rewind error path
  
  If the rewind would fail, a strdup() would not get freed.
  
  Detected by OSS-Fuzz
  
  Bug: https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=10665
  Closes #3044

Viktor Szakats (24 Sep 2018)
- test320: fix regression in [ci skip]
  
  The value in question is coming directly from `gnutls-serv`, so it cannot
  be modified freely.
  
  Reported-by: Marcel Raad
  Ref: https://github.com/curl/curl/commit/6ae6b2a533e8630afbb21f570305bd4ceece6348#commitcomment-30621004

Daniel Stenberg (24 Sep 2018)
- Curl_retry_request: fix memory leak
  
  Detected by OSS-Fuzz
  
  Bug: https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=10648
  Closes #3042

- openssl: load built-in engines too
  
  Regression since 38203f1
  
  Reported-by: Jean Fabrice
  Fixes #3023
  Closes #3040

- [Christian Heimes brought this change]

  OpenSSL: enable TLS 1.3 post-handshake auth
  
  OpenSSL 1.1.1 requires clients to opt-in for post-handshake
  authentication.
  
  Fixes: https://github.com/curl/curl/issues/3026
  Signed-off-by: Christian Heimes <christian@python.org>
  
  Closes https://github.com/curl/curl/pull/3027

- [Even Rouault brought this change]

  Curl_dedotdotify(): always nul terminate returned string.
  
  This fixes potential out-of-buffer access on "file:./" URL
  
  $ valgrind curl "file:./"
  ==24516== Memcheck, a memory error detector
  ==24516== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al.
  ==24516== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info
  ==24516== Command: /home/even/install-curl-git/bin/curl file:./
  ==24516==
  ==24516== Conditional jump or move depends on uninitialised value(s)
  ==24516==    at 0x4C31F9C: strcmp (in /usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so)
  ==24516==    by 0x4EBB315: seturl (urlapi.c:801)
  ==24516==    by 0x4EBB568: parseurl (urlapi.c:861)
  ==24516==    by 0x4EBC509: curl_url_set (urlapi.c:1199)
  ==24516==    by 0x4E644C6: parseurlandfillconn (url.c:2044)
  ==24516==    by 0x4E67AEF: create_conn (url.c:3613)
  ==24516==    by 0x4E68A4F: Curl_connect (url.c:4119)
  ==24516==    by 0x4E7F0A4: multi_runsingle (multi.c:1440)
  ==24516==    by 0x4E808E5: curl_multi_perform (multi.c:2173)
  ==24516==    by 0x4E7558C: easy_transfer (easy.c:686)
  ==24516==    by 0x4E75801: easy_perform (easy.c:779)
  ==24516==    by 0x4E75868: curl_easy_perform (easy.c:798)
  
  Was originally spotted by
  https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=10637
  Credit to OSS-Fuzz
  
  Closes #3039

Viktor Szakats (23 Sep 2018)
- update URLs in tests
  
  - and one in docs/MANUAL as well
  
  Closes https://github.com/curl/curl/pull/3038

- whitespace fixes
  
  - replace tabs with spaces where possible
  - remove line ending spaces
  - remove double/triple newlines at EOF
  - fix a non-UTF-8 character
  - cleanup a few indentations/line continuations
    in manual examples
  
  Closes https://github.com/curl/curl/pull/3037

Daniel Stenberg (23 Sep 2018)
- http: add missing return code check
  
  Detected by Coverity. CID 1439610.
  
  Follow-up from 46e164069d1a523
  
  Closes #3034

- ftp: don't access pointer before NULL check
  
  Detected by Coverity. CID 1439611.
  
  Follow-up from 46e164069d1a523

- unit1650: fix out of boundary access
  
  Fixes #2987
  Closes #3035

Viktor Szakats (23 Sep 2018)
- docs/examples: URL updates
  
  - also update two URLs outside of docs/examples
  - fix spelling of filename persistant.c
  - fix three long lines that started failing checksrc.pl
  
  Closes https://github.com/curl/curl/pull/3036

- examples/Makefile.m32: sync with core [ci skip]
  
  also:
  - fix two warnings in synctime.c (one of them Windows-specific)
  - upgrade URLs in synctime.c and remove a broken one
  
  Closes https://github.com/curl/curl/pull/3033

Daniel Stenberg (22 Sep 2018)
- examples/parseurl.c: show off the URL API a bit
  
  Closes #3030

- SECURITY-PROCESS: mention the bountygraph program [ci skip]
  
  Closes #3032

- url: use the URL API internally as well
  
  ... to make it a truly unified URL parser.
  
  Closes #3017

Viktor Szakats (22 Sep 2018)
- URL and mailmap updates, remove an obsolete directory [ci skip]
  
  Closes https://github.com/curl/curl/pull/3031

Daniel Stenberg (22 Sep 2018)
- RELEASE-NOTES: synced

- configure: force-use -lpthreads on HPUX
  
  When trying to detect pthreads use on HPUX the checks will succeed
  without the correct -l option but then end up failing at run-time.
  
  Reported-by: Eason-Yu on github
  Fixes #2697
  Closes #3025

- [Erik Minekus brought this change]

  Curl_saferealloc: Fixed typo in docblock
  
  Closes #3029

- urlapi: fix support for address scope in IPv6 numerical addresses
  
  Closes #3024

- [Loganaden Velvindron brought this change]

  GnutTLS: TLS 1.3 support
  
  Closes #2971

- TODO: c-ares and CURLOPT_OPENSOCKETFUNCTION
  
  Removed DoH.
  
  Closes #2734

Jay Satiro (20 Sep 2018)
- vtls: fix ssl version "or later" behavior change for many backends
  
  - Treat CURL_SSLVERSION_MAX_NONE the same as
    CURL_SSLVERSION_MAX_DEFAULT. Prior to this change NONE would mean use
    the minimum version also as the maximum.
  
  This is a follow-up to 6015cef which changed the behavior of setting
  the SSL version so that the requested version would only be the minimum
  and not the maximum. It appears it was (mostly) implemented in OpenSSL
  but not other backends. In other words CURL_SSLVERSION_TLSv1_0 used to
  mean use just TLS v1.0 and now it means use TLS v1.0 *or later*.
  
  - Fix CURL_SSLVERSION_MAX_DEFAULT for OpenSSL.
  
  Prior to this change CURL_SSLVERSION_MAX_DEFAULT with OpenSSL was
  erroneously treated as always TLS 1.3, and would cause an error if
  OpenSSL was built without TLS 1.3 support.
  
  Co-authored-by: Daniel Gustafsson
  
  Fixes https://github.com/curl/curl/issues/2969
  Closes https://github.com/curl/curl/pull/3012

Daniel Stenberg (20 Sep 2018)
- certs: generate tests certs with sha256 digest algorithm
  
  As OpenSSL 1.1.1 starts to complain and fail on sha1 CAs:
  
  "SSL certificate problem: CA signature digest algorithm too weak"
  
  Closes #3014

- urlapi: document the error codes, remove two unused ones
  
  Assisted-by: Daniel Gustafsson
  Closes #3019

- urlapi: add CURLU_GUESS_SCHEME and fix hostname acceptance
  
  In order for this API to fully work for libcurl itself, it now offers a
  CURLU_GUESS_SCHEME flag that makes it "guess" scheme based on the host
  name prefix just like libcurl always did. If there's no known prefix, it
  will guess "http://".
  
  Separately, it relaxes the check of the host name so that IDN host names
  can be passed in as well.
  
  Both these changes are necessary for libcurl itself to use this API.
  
  Assisted-by: Daniel Gustafsson
  Closes #3018

Kamil Dudka (19 Sep 2018)
- nss: try to connect even if libnssckbi.so fails to load
  
  One can still use CA certificates stored in NSS database.
  
  Reported-by: Maxime Legros
  Bug: https://curl.haxx.se/mail/lib-2018-09/0077.html
  
  Closes #3016

Daniel Gustafsson (19 Sep 2018)
- urlapi: don't set value which is never read
  
  In the CURLUPART_URL case, there is no codepath which invokes url
  decoding so remove the assignment of the urldecode variable. This
  fixes the deadstore bug-report from clang static analysis.
  
  Closes #3015
  Reviewed-by: Daniel Stenberg <daniel@haxx.se>

- todo: Update reference to already done item
  
  TODO item 1.1 was implemented in commit 946ce5b61f, update reference
  to it with instead referencing the implemented option.
  
  Closes #3013
  Reviewed-by: Daniel Stenberg <daniel@haxx.se>

Daniel Stenberg (18 Sep 2018)
- RELEASE-NOTES: synced

- [slodki brought this change]

  cmake: don't require OpenSSL if USE_OPENSSL=OFF
  
  User must have OpenSSL installed even if not used by libcurl at all
  since 7.61.1 release.  Broken at
  7867aaa9a01decf93711428462335be8cef70212
  
  Reviewed-by: Sergei Nikulov
  Closes #3001

- curl_multi_wait: call getsock before figuring out timeout
  
  .... since getsock may update the expiry timer.
  
  Fixes #2996
  Closes #3000

- examples/http2-pushinmemory: receive HTTP/2 pushed files in memory
  
  Closes #3004

Daniel Gustafsson (18 Sep 2018)
- darwinssl: Fix realloc memleak
  
  The reallocation was using the input pointer for the return value, which
  leads to a memory leak on reallication failure. Fix by instead use the
  safe internal API call Curl_saferealloc().
  
  Closes #3005
  Reviewed-by: Daniel Stenberg <daniel@haxx.se>
  Reviewed-by: Nick Zitzmann <nickzman@gmail.com>

- [Kruzya brought this change]

  examples: Fix memory leaks from realloc errors
  
  Make sure to not overwrite the reallocated pointer in realloc() calls
  to avoid a memleak on memory errors.

- memory: add missing curl_printf header
  
  ftp_send_command() was using vsnprintf() without including the libcurl
  *rintf() replacement header. Fix by including curl_printf.h and also
  add curl_memory.h while at it since memdebug.h depends on it.
  
  Closes #2999
  Reviewed-by: Daniel Stenberg <daniel@haxx.se>

Daniel Stenberg (16 Sep 2018)
- [Si brought this change]

  curl: update --tlsv* descriptions in --help output
  
  Closes #2994

- http: made Curl_add_buffer functions take a pointer-pointer
  
  ... so that they can clear the original pointer on failure, which makes
  the error-paths and their cleanups easier.
  
  Closes #2992

- http2: fix memory leaks on error-path

- [Rikard Falkeborn brought this change]

  libtest: Add chkdecimalpoint to .gitignore
  
  Closes #2998

Viktor Szakats (14 Sep 2018)
- secure Openwall URLs

Daniel Stenberg (14 Sep 2018)
- openssl: show "proper" version number for libressl builds
  
  Closes #2989

- [Rainer Jung brought this change]

  openssl: assume engine support in 0.9.8 or later
  
  Fixes #2983
  Closes #2988

Daniel Gustafsson (13 Sep 2018)
- sendf: use failf() rather than Curl_failf()
  
  The failf() macro is the name used for invoking Curl_failf(). While
  there isn't a way to turn off failf like there is for infof, but it's
  still a good idea to use the macro.
  
  Reviewed-by: Daniel Stenberg <daniel@haxx.se>

- sendf: Fix whitespace in infof/failf concatenation
  
  Strings broken on multiple rows in the .c file need to have appropriate
  whitespace padding on either side of the concatenation point to render
  a correct amalgamated string. Fix by adding a space at the occurrences
  found.
  
  Closes #2986
  Reviewed-by: Daniel Stenberg <daniel@haxx.se>

- krb5: fix memory leak in krb_auth
  
  The FTP command allocated by aprintf() must be freed after usage.
  
  Reviewed-by: Daniel Stenberg <daniel@haxx.se>

- ftp: include command in Curl_ftpsend sendbuffer
  
  Commit 8238ba9c5f10414a88f502bf3f5d5a42d632984c inadvertently removed
  the actual command to be sent from the send buffer in a refactoring.
  Add back copying the command into the buffer. Also add more guards
  against malformed input while at it.
  
  Closes #2985
  Reviewed-by: Daniel Stenberg <daniel@haxx.se>

- ntlm_wb: Fix memory leaks in ntlm_wb_response
  
  When erroring out on a request being too large, the existing buffer was
  leaked. Fix by explicitly freeing on the way out.
  
  Closes #2966
  Reviewed-by: Daniel Stenberg <daniel@haxx.se>

Daniel Stenberg (13 Sep 2018)
- [Yiming Jing brought this change]

  travis: build the MesaLink vtls backend with MesaLink 0.7.1

- [Yiming Jing brought this change]

  runtests.pl: run tests against the MesaLink vtls backend

- [Yiming Jing brought this change]

  vtls: add a MesaLink vtls backend
  
  Closes #2984

- [Yiming Jing brought this change]

  configure.ac: add a MesaLink vtls backend

- [Dave Reisner brought this change]

  curl_url_set.3: properly escape \n in example code
  
  This yields
  
    "the scheme is %s\n"
  
  instead of
  
    "the scheme is %s0
  
  Closes #2970

- [Dave Reisner brought this change]

  curl_url_set.3: fix typo in reference to CURLU_APPENDQUERY

- urlglob: improve error message
  
  to help user understand what the problem is
  
  Reported-by: Daniel Shahaf
  
  Fixes #2763
  Closes #2977

- [Yiming Jing brought this change]

  tests/certs: rebuild certs with 2048-bit RSA keys
  
  The previous test certificates contained RSA keys of only 1024 bits.
  However, RSA claims that 1024-bit RSA keys are likely to become
  crackable some time before 2010. The NIST recommends at least 2048-bit
  keys for RSA for now.
  
  Better use full 2048 also for testing.
  
  Closes #2973

Daniel Gustafsson (12 Sep 2018)
- TODO: fix typo in item
  
  Closes #2968
  Reviewed-by: Daniel Stenberg <daniel@haxx.se>

Marcel Raad (12 Sep 2018)
- anyauthput: fix compiler warning on 64-bit Windows
  
  On Windows, the read function from <io.h> is used, which has its byte
  count parameter as unsigned int instead of size_t.
  
  Closes https://github.com/curl/curl/pull/2972

Viktor Szakats (12 Sep 2018)
- lib: fix gcc8 warning on Windows
  
  Closes https://github.com/curl/curl/pull/2979

Jay Satiro (12 Sep 2018)
- openssl: fix gcc8 warning
  
  - Use memcpy instead of strncpy to copy a string without termination,
    since gcc8 warns about using strncpy to copy as many bytes from a
    string as its length.
  
  Suggested-by: Viktor Szakats
  
  Closes https://github.com/curl/curl/issues/2980

Daniel Stenberg (10 Sep 2018)
- libcurl-url.3: overview man page for the URL API
  
  Closes #2967

- example/asiohiper: insert warning comment about its status
  
  This example is simply not working correctly but there's nobody around
  with the skills and energy to fix it.
  
  Closes #2407

Kamil Dudka (10 Sep 2018)
- docs/cmdline-opts: update the documentation of --tlsv1.0
  
  ... to reflect the changes in 6015cefb1b2cfde4b4850121c42405275e5e77d9
  
  Closes #2955

- docs/examples: do not wait when no transfers are running
  
  Closes #2948

Daniel Stenberg (10 Sep 2018)
- [Daniel Gustafsson brought this change]

  cookies: Move failure case label to end of function
  
  Rather than jumping backwards to where failure cleanup happens
  to be performed, move the failure case to end of the function
  where it is expected per existing coding convention.
  
  Closes #2965

- [Daniel Gustafsson brought this change]

  misc: fix typos in comments
  
  Closes #2963

- [Daniel Gustafsson brought this change]

  cookies: fix leak when writing cookies to file
  
  If the formatting fails, we error out on a fatal error and
  clean up on the way out. The array was however freed within
  the wrong scope and was thus never freed in case the cookies
  were written to a file instead of STDOUT.
  
  Closes #2957

- [Daniel Gustafsson brought this change]

  cookies: Remove redundant expired check
  
  Expired cookies have already been purged at a later expiration time
  before this check, so remove the redundant check.
  
  closes #2962

- ntlm_wb: bail out if the response gets overly large
  
  Exit the realloc() loop if the response turns out ridiculously large to
  avoid worse problems.
  
  Reported-by: Harry Sintonen
  Closes #2959

- [Daniel Gustafsson brought this change]

  url.c: fix comment typo and indentation
  
  Closes #2960

- urlapi: avoid derefencing a possible NULL pointer
  
  Coverity CID 1439134

- RELEASE-NOTES: synced

Marcel Raad (8 Sep 2018)
- test324: fix after 3f3b26d6feb0667714902e836af608094235fca2
  
  The expected error code is now 60. 51 is dead.

Daniel Stenberg (8 Sep 2018)
- curl_url_set.3: correct description

- curl_url-docs: fix AVAILABILITY as Added in curl 7.62.0

- URL-API
  
  See header file and man pages for API. All documented API details work
  and are tested in the 1560 test case.
  
  Closes #2842

- curl_easy_upkeep: removed 'conn' from the name
  
  ... including the associated option.
  
  Fixes #2951
  Closes #2952

- [Max Dymond brought this change]

  upkeep: add a connection upkeep API: curl_easy_conn_upkeep()
  
  Add functionality so that protocols can do custom keepalive on their
  connections, when an external API function is called.
  
  Add docs for the new options in 7.62.0
  
  Closes #1641

- [Philipp Waehnert brought this change]

  configure: add option to disable automatic OpenSSL config loading
  
  Sometimes it may be considered a security risk to load an external
  OpenSSL configuration automatically inside curl_global_init(). The
  configuration option --disable-ssl-auto-load-config disables this
  automatism. The Windows build scripts winbuild/Makefile.vs provide a
  corresponding option ENABLE_SSL_AUTO_LOAD_CONFIG accepting a boolean
  value.
  
  Setting neither of these options corresponds to the previous behavior
  loading the external OpenSSL configuration automatically.
  
  Fixes #2724
  Closes #2791

- doh: minor edits to please Coverity
  
  The gcc typecheck macros and coverity combined made it warn on the 2nd
  argument for ERROR_CHECK_SETOPT(). Here's minor rearrange to please it.
  
  Coverity CID 1439115 and CID 1439114.

- schannel: avoid switch-cases that go to default anyway
  
  SEC_E_APPLICATION_PROTOCOL_MISMATCH isn't defined in some versions of
  mingw and would require an ifdef otherwise.
  
  Reported-by: Thomas Glanzmann
  Approved-by: Marc Hörsken
  Bug: https://curl.haxx.se/mail/lib-2018-09/0020.html
  Closes #2950

- [Nicklas Avén brought this change]

  imap: change from "FETCH" to "UID FETCH"
  
  ... and add "MAILINDEX".
  
  As described in #2789, this is a suggested solution.  Changing UID=xx to
  actually get mail with UID xx and add "MAILINDEX" to get a mail with a
  special index in the mail box (old behavior).  So MAILINDEX=1 gives the
  first non deleted mail in the mail box.
  
  Fixes #2789
  Closes #2815

- CURLOPT_UPLOAD_BUFFERSIZE: set upload buffer size
  
  This is step 3 of #2888.
  
  Fixes #2888
  Closes #2896

- travis: add the DOH tests to the torture testing

- DOH: add test case 1650 and 2100

- curl: --doh-url added

- setopt: add CURLOPT_DOH_URL
  
  Closes #2668

- [Han Han brought this change]

  ssl: deprecate CURLE_SSL_CACERT in favour of a unified error code
  
  Long live CURLE_PEER_FAILED_VERIFICATION

- [Han Han brought this change]

  x509asn1: return CURLE_PEER_FAILED_VERIFICATION on failure to parse cert
  
  CURLE_PEER_FAILED_VERIFICATION makes more sense because Curl_parseX509
  does not allocate memory internally as its first argument is a pointer
  to the certificate structure. The same error code is also returned by
  Curl_verifyhost when its call to Curl_parseX509 fails so the change
  makes error handling more consistent.

- [Han Han brought this change]

  openssl: return CURLE_PEER_FAILED_VERIFICATION on failure to parse issuer
  
  Failure to extract the issuer name from the server certificate should
  return a more specific error code like on other TLS backends.

- [Han Han brought this change]

  schannel: unified error code handling
  
  Closes #2901

- [Han Han brought this change]

  darwinssl: more specific and unified error codes
  
  Closes #2901

- CURLOPT_DNS_USE_GLOBAL_CACHE: deprecated
  
  Disable the CURLOPT_DNS_USE_GLOBAL_CACHE option and mark it for
  deprecation and complete removal in six months.
  
  Bug: https://curl.haxx.se/mail/lib-2018-09/0010.html
  Closes #2942

- url: default to CURL_HTTP_VERSION_2TLS if built h2-enabled
  
  Closes #2709

- multiplex: enable by default
  
  Starting 7.62.0, multiplexing is enabled by default in multi handles.

- [Jim Fuller brought this change]

  tests: add unit tests for url.c
  
  Approved-by: Daniel Gustafsson
  Closes #2937

- test1452: mark as flaky
  
  makes it not run in the CI builds
  
  Closes #2941

- pipelining: deprecated
  
  Transparently. The related curl_multi_setopt() options all still returns
  OK when pipelining is selected.
  
  To re-enable the support, the single line change in lib/multi.c needs to
  be reverted.
  
  See docs/DEPRECATE.md
  
  Closes #2705

- RELEASE-NOTES: start working on 7.62.0

Version 7.61.1 (4 Sep 2018)

Daniel Stenberg (4 Sep 2018)
- THANKS: 7.61.1 status

- RELEASE-NOTES: 7.61.1

- Curl_getoff_all_pipelines: ignore unused return values
  
  Since scan-build would warn on the dead "Dead store/Dead increment"

Viktor Szakats (4 Sep 2018)
- sftp: fix indentation

Daniel Stenberg (4 Sep 2018)
- [Przemysław Tomaszewski brought this change]

  sftp: don't send post-qoute sequence when retrying a connection
  
  Fixes #2939
  Closes #2940

Kamil Dudka (3 Sep 2018)
- url, vtls: make CURLOPT{,_PROXY}_TLS13_CIPHERS work
  
  This is a follow-up to PR #2607 and PR #2926.
  
  Closes #2936

Daniel Stenberg (3 Sep 2018)
- [Jay Satiro brought this change]

  tool_operate: Add http code 408 to transient list for --retry
  
  - Treat 408 request timeout as transient so that curl will retry the
    request if --retry was used.
  
  Closes #2925

- [Jay Satiro brought this change]

  openssl: Fix setting TLS 1.3 cipher suites
  
  The flag indicating TLS 1.3 cipher support in the OpenSSL backend was
  missing.
  
  Bug: https://github.com/curl/curl/pull/2607#issuecomment-417283187
  Reported-by: Kamil Dudka
  
  Closes #2926

- Curl_ntlm_core_mk_nt_hash: return error on too long password
  
  ... since it would cause an integer overflow if longer than (max size_t
  / 2).
  
  This is CVE-2018-14618
  
  Bug: https://curl.haxx.se/docs/CVE-2018-14618.html
  Closes #2756
  Reported-by: Zhaoyang Wu

- [Rikard Falkeborn brought this change]

  http2: Use correct format identifier for stream_id
  
  Closes #2928

Marcel Raad (2 Sep 2018)
- test1148: fix precheck output
  
  "precheck command error" is not very helpful.

Daniel Stenberg (1 Sep 2018)
- all: s/int/size_t cleanup
  
  Assisted-by: Rikard Falkeborn
  
  Closes #2922

- ssh-libssh: use FALLTHROUGH to silence gcc8

Jay Satiro (31 Aug 2018)
- tool_operate: Fix setting proxy TLS 1.3 ciphers

Daniel Stenberg (31 Aug 2018)
- [Daniel Gustafsson brought this change]

  cookies: support creation-time attribute for cookies
  
  According to RFC6265 section 5.4, cookies with equal path lengths
  SHOULD be sorted by creation-time (earlier first). This adds a
  creation-time record to the cookie struct in order to make cookie
  sorting more deterministic. The creation-time is defined as the
  order of the cookies in the jar, the first cookie read fro the
  jar being the oldest. The creation-time is thus not serialized
  into the jar. Also remove the strcmp() matching in the sorting as
  there is no lexicographic ordering in RFC6265. Existing tests are
  updated to match.
  
  Closes #2524

Marcel Raad (31 Aug 2018)
- Don't use Windows path %PWD for SSH tests
  
  All these tests failed on Windows because something like
  sftp://%HOSTIP:%SSHPORT%PWD/
  expanded to
  sftp://127.0.0.1:1234c:/msys64/home/bla/curl
  and then curl complained about the port number ending with a letter.
  
  Use the original POSIX path instead of the Windows path created in
  checksystem to fix this.
  
  Closes https://github.com/curl/curl/pull/2920

Jay Satiro (29 Aug 2018)
- CURLOPT_SSL_CTX_FUNCTION.3: clarify connection reuse warning
  
  Reported-by: Daniel Stenberg
  
  Closes https://github.com/curl/curl/issues/2916

Daniel Stenberg (28 Aug 2018)
- THANKS-filter: dedup Daniel Jeliński

- RELEASE-NOTES: synced

- CURLOPT_ACCEPT_ENCODING.3: list them comma-separated [ci skip]

- CURLOPT_SSL_CTX_FUNCTION.3: might cause unintended connection reuse [ci skip]
  
  Added a warning!
  
  Closes #2915

- curl: fix time-of-check, time-of-use race in dir creation
  
  Patch-by: Jay Satiro
  Detected by Coverity
  Fixes #2739
  Closes #2912

- cmdline-opts/page-footer: fix edit mistake
  
  There was a missing newline.
  
  follow-up to a7ba60bb7250

- docs: clarify NO_PROXY env variable functionality
  
  Reported-by: Kirill Marchuk
  Fixes #2773
  Closes #2911

Marcel Raad (24 Aug 2018)
- lib1522: fix curl_easy_setopt argument type
  
  CURLOPT_POSTFIELDSIZE is a long option.

- curl_threads: silence bad-function-cast warning
  
  As uintptr_t and HANDLE are always the same size, this warning is
  harmless. Just silence it using an intermediate uintptr_t variable.
  
  Closes https://github.com/curl/curl/pull/2908

Daniel Stenberg (24 Aug 2018)
- README: add appveyor build badge [ci skip]
  
  Closes #2913

- [Ihor Karpenko brought this change]

  schannel: client certificate store opening fix
  
  1) Using CERT_STORE_OPEN_EXISTING_FLAG ( or CERT_STORE_READONLY_FLAG )
  while opening certificate store would be sufficient in this scenario and
  less-demanding in sense of required user credentials ( for example,
  IIS_IUSRS will get "Access Denied" 0x05 error for existing CertOpenStore
  call without any of flags mentioned above ),
  
  2) as 'cert_store_name' is a DWORD, attempt to format its value like a
  string ( in "Failed to open cert store" error message ) will throw null
  pointer exception
  
  3) adding GetLastError(), in my opinion, will make error message more
  useful.
  
  Bug: https://curl.haxx.se/mail/lib-2018-08/0198.html
  
  Closes #2909

- [Leonardo Taccari brought this change]

  gopher: Do not translate `?' to `%09'
  
  Since GOPHER support was added in curl `?' character was automatically
  translated to `%09' (`\t').
  
  However, this behaviour does not seems documented in RFC 4266 and for
  search selectors it is documented to directly use `%09' in the URL.
  Apart that several gopher servers in the current gopherspace have CGI
  support where `?' is used as part of the selector and translating it to
  `%09' often leads to surprising results.
  
  Closes #2910

Marcel Raad (23 Aug 2018)
- cookie tests: treat files as text
  
  Fixes test failures because of wrong line endings on Windows.

Daniel Stenberg (23 Aug 2018)
- libcurl-thread.3: expand somewhat on the NO_SIGNAL motivation
  
  Multi-threaded applictions basically MUST set CURLOPT_NO_SIGNAL to 1L to
  avoid the risk of getting a SIGPIPE.
  
  Either way, a multi-threaded application that uses libcurl/openssl needs
  to have a signhandler for or ignore SIGPIPE on its own.
  
  Based on discussions in #2800
  Closes #2904

- RELEASE-NOTES: synced

Marcel Raad (22 Aug 2018)
- Tests: fixes for Windows
  
  - test 1268 requires unix sockets
  - test 2072 must be disabled also for MSYS/MinGW

Daniel Stenberg (22 Aug 2018)
- http2: abort the send_callback if not setup yet
  
  When Curl_http2_done() gets called before the http2 data is setup all
  the way, we cannot send anything and this should just return an error.
  
  Detected by OSS-Fuzz
  Bug: https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=10012

- http2: remove four unused nghttp2 callbacks
  
  Closes #2903

- x509asn1: use FALLTHROUGH
  
  ... as no other comments are accepted since 014ed7c22f51463

Marcel Raad (21 Aug 2018)
- test1148: disable if decimal separator is not point
  
  Modifying the locale with environment variables doesn't work for native
  Windows applications. Just disable the test in this case if the decimal
  separator is something different than a point. Use a precheck with a
  small C program to achieve that.
  
  Closes https://github.com/curl/curl/pull/2786

- Enable more GCC warnings
  
  This enables the following additional warnings:
  -Wold-style-definition
  -Warray-bounds=2 instead of the default 1
  -Wformat=2, but only for GCC 4.8+ as Wno-format-nonliteral is not
   respected for older versions
  -Wunused-const-variable, which enables level 2 instead of the default 1
  -Warray-bounds also in debug mode through -ftree-vrp
  -Wnull-dereference also in debug mode through
   -fdelete-null-pointer-checks
  
  Closes https://github.com/curl/curl/pull/2747

- curl-compilers: enable -Wimplicit-fallthrough=4 for GCC
  
  This enables level 4 instead of the default level 3, which of the
  currently used comments only allows /* FALLTHROUGH */ to silence the
  warning.
  
  Closes https://github.com/curl/curl/pull/2747

- curl-compilers: enable -Wbad-function-cast on GCC
  
  This warning used to be enabled only for clang as it's a bit stricter
  on GCC. Silence the remaining occurrences and enable it on GCC too.
  
  Closes https://github.com/curl/curl/pull/2747

- configure: conditionally enable pedantic-errors
  
  Enable pedantic-errors for GCC >= 5 with --enable-werror. Before GCC 5,
  pedantic-errors was synonymous to -Werror=pedantic [0], which is still
  the case for clang [1]. With GCC 5, it became complementary [2].
  
  Also fix a resulting error in acinclude.m4 as main's return type was
  missing, which is illegal in C99.
  
  [0] https://gcc.gnu.org/onlinedocs/gcc-4.9.0/gcc/Warning-Options.html
  [1] https://clang.llvm.org/docs/UsersManual.html#options-to-control-error-and-warning-messages
  [2] https://gcc.gnu.org/onlinedocs/gcc-5.1.0/gcc/Warning-Options.html
  
  Closes https://github.com/curl/curl/pull/2747

- Remove unused definitions
  
  Closes https://github.com/curl/curl/pull/2747

Daniel Stenberg (21 Aug 2018)
- x509asn1: make several functions static
  
  and remove the private SIZE_T_MAX define and use the generic one.
  
  Closes #2902

- INTERNALS: require GnuTLS >= 2.11.3
  
  Since the public pinning support was brought in e644866caf4. GnuTLS
  2.11.3 was released in October 2010.
  
  Figured out in #2890

- http2: avoid set_stream_user_data() before stream is assigned
  
  ... before the stream is started, we have it set to -1.
  
  Fixes #2894
  Closes #2898

- SSLCERTS: improve the openssl command line
  
  ... for extracting certs from a live HTTPS server to make a cacerts.pem
  from them.

- docs/SECURITY-PROCESS: now we name the files after the CVE id

- RELEASE-NOTES: synced

- upload: change default UPLOAD_BUFSIZE to 64KB
  
  To make uploads significantly faster in some circumstances.
  
  Part 2 of #2888
  Closes #2892

- upload: allocate upload buffer on-demand
  
  Saves 16KB on the easy handle for operations that don't need that
  buffer.
  
  Part 1 of #2888

- [Laurent Bonnans brought this change]

  vtls: reinstantiate engine on duplicated handles
  
  Handles created with curl_easy_duphandle do not use the SSL engine set
  up in the original handle. This fixes the issue by storing the engine
  name in the internal url state and setting the engine from its name
  inside curl_easy_duphandle.
  
  Reported-by: Anton Gerasimov
  Signed-of-by: Laurent Bonnans
  Fixes #2829
  Closes #2833

- http2: make sure to send after RST_STREAM
  
  If this is the last stream on this connection, the RST_STREAM might not
  get pushed to the wire otherwise.
  
  Fixes #2882
  Closes #2887
  Researched-by: Michael Kaufmann

- test1268: check the stderr output as "text"
  
  Follow-up to 099f37e9c57
  
  Pointed-out-by: Marcel Raad

- urldata: remove unused pipe_broke struct field
  
  This struct field is never set TRUE in any existing code path. This
  change removes the field completely.
  
  Closes #2871

- curl: warn the user if a given file name looks like an option
  
  ... simply because this is usually a sign of the user having omitted the
  file name and the next option is instead "eaten" by the parser as a file
  name.
  
  Add test1268 to verify
  
  Closes #2885

- http2: check nghttp2_session_set_stream_user_data return code
  
  Might help bug #2688 debugging
  
  Closes #2880

- travis: revert back to gcc-7 for coverage builds
  
  ... since the gcc-8 ones seem to fail frequently.
  
  Follow-up from b85207199544ca
  
  Closes #2886

- RELEASE-NOTES: synced
  
  ... and now listed in alphabetical order!

- [Adrien brought this change]

  CMake: CMake config files are defining CURL_STATICLIB for static builds
  
  This change allows to use the CMake config files generated by Curl's
  CMake scripts for static builds of the library.
  The symbol CURL_STATIC lib must be defined to compile downstream,
  thus the config package is the perfect place to do so.
  
  Fixes #2817
  Closes #2823
  Reported-by: adnn on github
  Reviewed-by: Sergei Nikulov

- TODO: host name sections in config files

Kamil Dudka (14 Aug 2018)
- ssh-libssh: fix infinite connect loop on invalid private key
  
  Added test 656 (based on test 604) to verify the fix.
  
  Bug: https://bugzilla.redhat.com/1595135
  
  Closes #2879

- ssh-libssh: reduce excessive verbose output about pubkey auth
  
  The verbose message "Authentication using SSH public key file" was
  printed each time the ssh_userauth_publickey_auto() was called, which
  meant each time a packet was transferred over network because the API
  operates in non-blocking mode.
  
  This patch makes sure that the verbose message is printed just once
  (when the authentication state is entered by the SSH state machine).

Daniel Stenberg (14 Aug 2018)
- travis: disable h2 torture tests for "coverage"
  
  Since they started to fail almost 100% since a few days.
  
  Closes #2876

Marcel Raad (14 Aug 2018)
- travis: update to GCC 8
  
  Closes https://github.com/curl/curl/pull/2869

Daniel Stenberg (13 Aug 2018)
- http: fix for tiny "HTTP/0.9" response
  
  Deal with tiny "HTTP/0.9" (header-less) responses by checking the
  status-line early, even before a full "HTTP/" is received to allow
  detecting 0.9 properly.
  
  Test 1266 and 1267 added to verify.
  
  Fixes #2420
  Closes #2872

Kamil Dudka (13 Aug 2018)
- docs: add disallow-username-in-url.d and haproxy-protocol.d on the list
  
  ... to make make the files appear in distribution tarballs
  
  Closes #2856

- .travis.yml: verify that man pages can be regenerated
  
  ... when curl is built from distribution tarball
  
  Closes #2856

Marcel Raad (11 Aug 2018)
- Split non-portable part off test 1133
  
  Split off testing file names with double quotes into new test 1158.
  Disable it for MSYS using a precheck as it doesn't support file names
  with double quotes (but Cygwin does, for example).
  
  Fixes https://github.com/curl/curl/issues/2796
  Closes https://github.com/curl/curl/pull/2854

Jay Satiro (11 Aug 2018)
- projects: Improve Windows perl detection in batch scripts
  
  - Determine if perl is in the user's PATH by running perl.exe.
  
  Prior to this change detection was done by checking the PATH for perl/
  but that did not work in all cases (eg git install includes perl but
  not in perl/ path).
  
  Bug: https://github.com/curl/curl/pull/2865
  Reported-by: Daniel Jeliński

- [Michael Kaufmann brought this change]

  docs: Improve the manual pages of some callbacks
  
  - CURLOPT_HEADERFUNCTION: add newlines
  - CURLOPT_INTERLEAVEFUNCTION: fix the description of 'userdata'
  - CURLOPT_READDATA: mention crashes, same as in CURLOPT_WRITEDATA
  - CURLOPT_READFUNCTION: rename 'instream' to 'userdata' and explain
    how to set it
  
  Closes https://github.com/curl/curl/pull/2868

Marcel Raad (11 Aug 2018)
- GCC: silence -Wcast-function-type uniformly
  
  Pointed-out-by: Rikard Falkeborn
  Closes https://github.com/curl/curl/pull/2860

- Silence GCC 8 cast-function-type warnings
  
  On Windows, casting between unrelated function types is fine and
  sometimes even necessary, so just use an intermediate cast to
  (void (*) (void)) to silence the warning as described in [0].
  
  [0] https://gcc.gnu.org/onlinedocs/gcc-8.1.0/gcc/Warning-Options.html
  
  Closes https://github.com/curl/curl/pull/2860

Daniel Stenberg (11 Aug 2018)
- CURLINFO_SIZE_UPLOAD: fix missing counter update
  
  Adds test 1522 for verification.
  
  Reported-by: cjmsoregan
  Fixes #2847
  Closes #2864

- [Daniel Jelinski brought this change]

  Documentation: fix CURLOPT_SSH_COMPRESSION copy/paste bug
  
  Closes #2867

- RELEASE-NOTES: synced

- openssl: fix potential NULL pointer deref in is_pkcs11_uri
  
  Follow-up to 298d2565e
  Coverity CID 1438387

Marcel Raad (10 Aug 2018)
- travis: execute "set -eo pipefail" for coverage build
  
  Follow-up to 2de63ab179eb78630ee039ad94fb2a5423df522d and
  0b87c963252d3504552ee0c8cf4402bd65a80af5.
  
  Closes https://github.com/curl/curl/pull/2862

Daniel Stenberg (10 Aug 2018)
- lib1502: fix memory leak in torture test
  
  Reported-by: Marcel Raad
  Fixes #2861
  Closes #2863

- docs: mention NULL is fine input to several functions
  
  Fixes #2837
  Closes #2858
  Reported-by: Markus Elfring

- [Bas van Schaik brought this change]

  README.md: add LGTM.com code quality grade for C/C++
  
  Closes #2857

- [Rikard Falkeborn brought this change]

  test1531: Add timeout
  
  Previously, the macro TEST_HANG_TIMEOUT was unused, but since there is
  looping going on, we might as well add timing instead of removing it.
  
  Closes #2853

- [Rikard Falkeborn brought this change]

  test1540: Remove unused macro TEST_HANG_TIMEOUT
  
  The macro has never been used, and it there is not really any place
  where it would make sense to add timing checks.
  
  Closes #2852

- [Rikard Falkeborn brought this change]

  asyn-thread: Remove unused macro
  
  The macro seems to never have been used.
  
  Closes #2852

- [Rikard Falkeborn brought this change]

  http_proxy: Remove unused macro SELECT_TIMEOUT
  
  Usage was removed in 5113ad0424044458ac497fa1458ebe0101356b22.
  
  Closes #2852

- [Rikard Falkeborn brought this change]

  formdata: Remove unused macro HTTPPOST_CONTENTTYPE_DEFAULT
  
  Its usage was removed in
  84ad1fd3047815f9c6e78728bb351b828eac10b1.
  
  Closes #2852

- [Rikard Falkeborn brought this change]

  telnet: Remove unused macros TELOPTS and TELCMDS
  
  Their usage was removed in 3a145180cc754a5959ca971ef3cd243c5c83fc51.
  
  Closes #2852

- [Daniel Jelinski brought this change]

  openssl: fix debug messages
  
  Fixes #2806
  Closes #2843

- configure: fix for -lpthread detection with OpenSSL and pkg-config
  
  ... by making sure it uses the -I provided by pkg-config!
  
  Reported-by: pszemus on github
  Fixes #2848
  Closes #2850

- RELEASE-NOTES: synced

- windows: follow up to the buffer-tuning 1ba1dba7
  
  Somehow I didn't include the amended version of the previous fix. This
  is the missing piece.
  
  Pointed-out-by: Viktor Szakats

- [Daniel Jelinski brought this change]

  windows: implement send buffer tuning
  
  Significantly enhances upload performance on modern Windows versions.
  
  Bug: https://curl.haxx.se/mail/lib-2018-07/0080.html
  Closes #2762
  Fixes #2224

- [Anderson Toshiyuki Sasaki brought this change]

  ssl: set engine implicitly when a PKCS#11 URI is provided
  
  This allows the use of PKCS#11 URI for certificates and keys without
  setting the corresponding type as "ENG" and the engine as "pkcs11"
  explicitly. If a PKCS#11 URI is provided for certificate, key,
  proxy_certificate or proxy_key, the corresponding type is set as "ENG"
  if not provided and the engine is set to "pkcs11" if not provided.
  
  Acked-by: Nikos Mavrogiannopoulos
  Closes #2333

- [Ruslan Baratov brought this change]

  CMake: Respect BUILD_SHARED_LIBS
  
  Use standard CMake variable BUILD_SHARED_LIBS instead of introducing
  custom option CURL_STATICLIB.
  
  Use '-DBUILD_SHARED_LIBS=%SHARED%' in appveyor.yml.
  
  Reviewed-by: Sergei Nikulov
  Closes #2755

- [John Butterfield brought this change]

  cmake: bumped minimum version to 3.4
  
  Closes #2753

- [John Butterfield brought this change]

  cmake: link curl to the OpenSSL targets instead of lib absolute paths
  
  Reviewed-by: Jakub Zakrzewski
  Reviewed-by: Sergei Nikulov
  Closes #2753

- travis: build darwinssl on macos 10.12
  
  ... as building on 10.13.x before 10.13.4 leads to link errors.
  
  Assisted-by: Nick Zitzmann
  Fixes #2835
  Closes #2845

- DEPRECATE: remove release date from 7.62.0
  
  Since it will slip and the version is the important part there, not the
  date.

- lib/Makefile: only do symbol hiding if told to
  
  This restores the ability to build a static lib with
  --disable-symbol-hiding to keep non-curl_ symbols.
  
  Researched-by: Dan Fandrich
  Reported-by: Ran Mozes
  Fixes #2830
  Closes #2831

Marcel Raad (2 Aug 2018)
- hostip: fix unused variable warning
  
  addresses is only used in an infof call, which is a macro expanding to
  nothing if CURL_DISABLE_VERBOSE_STRINGS is set.

Daniel Stenberg (2 Aug 2018)
- test1307: disabled
  
  Turns out that since we're using the native fnmatch function now when
  available, and they simply disagree on a huge number of test patterns
  that make it hard to test this function like this...
  
  Fixes #2825

- smb: don't mark it done in smb_do
  
  Follow-up to 09e401e01bf9. The SMB protocol handler needs to use its
  doing function too, which requires smb_do() to not mark itself as
  done...
  
  Closes #2822

- [Rikard Falkeborn brought this change]

  general: fix printf specifiers
  
  Closes #2818

- RELEASE-NOTES: synced

- mailmap: Daniel Jelinski

- [Harry Sintonen brought this change]

  HTTP: Don't attempt to needlessly decompress redirect body
  
  This change fixes a regression where redirect body would needlessly be
  decompressed even though it was to be ignored anyway. As it happens this
  causes secondary issues since there appears to be a bug in apache2 that
  it in certain conditions generates a corrupt zlib response. The
  regression was created by commit:
  dbcced8e32b50c068ac297106f0502ee200a1ebd
  
  Discovered-by: Harry Sintonen
  Closes #2798

- curl: use Content-Disposition before the "URL end" for -OJ
  
  Regression introduced in 7.61.0
  
  Reported-by: Thomas Klausner
  Fixes #2783
  Closes #2813

- [Daniel Jelinski brought this change]

  retry: return error if rewind was necessary but didn't happen
  
  Fixes #2801
  Closes #2812

- http2: clear the drain counter in Curl_http2_done
  
  Reported-by: Andrei Virtosu
  Fixes #2800
  Closes #2809

- smb: fix memory leak on early failure
  
  ... by making sure connection related data (->share) is stored in the
  connection and not in the easy handle.
  
  Detected by OSS-fuzz
  Bug: https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=9369
  Fixes #2769
  Closes #2810

- travis: run a 'make checksrc' too
  
  ... to make sure the examples are all checked.
  
  Closes #2811

Jay Satiro (29 Jul 2018)
- examples/ephiperfifo: checksrc compliance

- [Michael Kaufmann brought this change]

  sws: handle EINTR when calling select()
  
  Closes https://github.com/curl/curl/pull/2808

Daniel Stenberg (29 Jul 2018)
- test1157: follow-up to 35ecffb9
  
  Ignore the user-agent line.
  Pointed-out-by: Marcel Raad

Michael Kaufmann (29 Jul 2018)
- tests/http_pipe.py: Use /usr/bin/env to find python

Daniel Stenberg (28 Jul 2018)
- TODO: Support Authority Information Access certificate extension (AIA)
  
  Closes #2793

- conn_free: updated comment to clarify
  
  Let's call it disassociate instead of disconnect since the latter term
  is used so much for (TCP) connections already.

- test1157: test -H from empty file
  
  Verifies bugfix #2797

- [Tobias Blomberg brought this change]

  curl: Fix segfault when -H @headerfile is empty
  
  The curl binary would crash if the -H command line option was given a
  filename to read using the @filename syntax but that file was empty.
  
  Closes #2797

- mime: check Curl_rand_hex's return code
  
  Bug: https://curl.haxx.se/mail/archive-2018-07/0015.html
  Reported-by: Jeffrey Walton
  Closes #2795

- [Josh Bialkowski brought this change]

  docs/examples: add hiperfifo example using linux epoll/timerfd
  
  Closes #2804

- [Darío Hereñú brought this change]

  docs/INSTALL.md: minor formatting fixes
  
  Closes #2794

- [Christopher Head brought this change]

  docs/CURLOPT_URL: fix indentation
  
  The statement, “The application does not have to keep the string around
  after setting this option,” appears to be indented under the RTMP
  paragraph. It actually applies to all protocols, not just RTMP.
  Eliminate the extra indentation.
  
  Closes #2788

- [Christopher Head brought this change]

  docs/CURLOPT_WRITEFUNCTION: size is always 1
  
  For compatibility with `fwrite`, the `CURLOPT_WRITEFUNCTION` callback is
  passed two `size_t` parameters which, when multiplied, designate the
  number of bytes of data passed in. In practice, CURL always sets the
  first parameter (`size`) to 1.
  
  This practice is also enshrined in documentation and cannot be changed
  in future. The documentation states that the default callback is
  `fwrite`, which means `fwrite` must be a suitable function for this
  purpose. However, the documentation also states that the callback must
  return the number of *bytes* it successfully handled, whereas ISO C
  `fwrite` returns the number of items (each of size `size`) which it
  wrote. The only way these numbers can be equal is if `size` is 1.
  
  Since `size` is 1 and can never be changed in future anyway, document
  that fact explicitly and let users rely on it.
  
  Closes #2787

- [Carie Pointer brought this change]

  wolfSSL/CyaSSL: Fix memory leak in Curl_cyassl_random
  
  RNG structure must be freed by call to FreeRng after its use in
  Curl_cyassl_random. This call fixes Valgrind failures when running the
  test suite with wolfSSL.
  
  Closes #2784

- [Even Rouault brought this change]

  reuse_conn(): free old_conn->options
  
  This fixes a memory leak when CURLOPT_LOGIN_OPTIONS is used, together with
  connection reuse.
  
  I found this with oss-fuzz on GDAL and curl master:
  https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=9582
  I couldn't reproduce with the oss-fuzz original test case, but looking
  at curl source code pointed to this well reproducable leak.
  
  Closes #2790

Marcel Raad (25 Jul 2018)
- [Daniel Jelinski brought this change]

  system_win32: fix version checking
  
  In the current version, VERSION_GREATER_THAN_EQUAL 6.3 will return false
  when run on windows 10.0. This patch addresses that error.
  
  Closes https://github.com/curl/curl/pull/2792

Daniel Stenberg (24 Jul 2018)
- [Johannes Schindelin brought this change]

  auth: pick Bearer authentication whenever a token is available
  
  So far, the code tries to pick an authentication method only if
  user/password credentials are available, which is not the case for
  Bearer authentictation...
  
  Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
  Closes #2754

- [Johannes Schindelin brought this change]

  auth: only ever pick CURLAUTH_BEARER if we *have* a Bearer token
  
  The Bearer authentication was added to cURL 7.61.0, but there is a
  problem: if CURLAUTH_ANY is selected, and the server supports multiple
  authentication methods including the Bearer method, we strongly prefer
  that latter method (only CURLAUTH_NEGOTIATE beats it), and if the Bearer
  authentication fails, we will never even try to attempt any other
  method.
  
  This is particularly unfortunate when we already know that we do not
  have any Bearer token to work with.
  
  Such a scenario happens e.g. when using Git to push to Visual Studio
  Team Services (which supports Basic and Bearer authentication among
  other methods) and specifying the Personal Access Token directly in the
  URL (this aproach is frequently taken by automated builds).
  
  Let's make sure that we have a Bearer token to work with before we
  select the Bearer authentication among the available authentication
  methods.
  
  Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
  Closes #2754

Marcel Raad (22 Jul 2018)
- test320: treat curl320.out file as binary
  
  Otherwise, LF line endings are converted to CRLF on Windows,
  but no conversion is done for the reply, so the test case fails.
  
  Closes https://github.com/curl/curl/pull/2776

Daniel Stenberg (22 Jul 2018)
- vtls: set conn->data when closing TLS
  
  Follow-up to 1b76c38904f0. The VTLS backends that close down the TLS
  layer for a connection still needs a Curl_easy handle for the session_id
  cache etc.
  
  Fixes #2764
  Closes #2771

Marcel Raad (21 Jul 2018)
- tests: fixes for Windows line endlings
  
  Set mode="text" when line endings depend on the system representation.
  
  Closes https://github.com/curl/curl/pull/2772

- test214: disable MSYS2's POSIX path conversion for URL
  
  By default, the MSYS2 bash converts all backslashes to forward slashes
  in URLs. Disable this with MSYS2_ARG_CONV_EXCL for the test to pass.
  
  Ref https://github.com/msys2/msys2/wiki/Porting#filesystem-namespaces

Daniel Stenberg (20 Jul 2018)
- http2: several cleanups
  
  - separate easy handle from connections better
  - added asserts on a number of places
  - added sanity check of pipelines for debug builds
  
  Closes #2751

- smb_getsock: always wait for write socket too
  
  ... the protocol is doing read/write a lot, so it needs to write often
  even when downloading. A more proper fix could check for eactly when it
  wants to write and only ask for it then.
  
  Without this fix, an SMB download could easily get stuck when the event-driven
  API was used.
  
  Closes #2768

Marcel Raad (20 Jul 2018)
- test1143: disable MSYS2's POSIX path conversion
  
  By default, the MSYS2 bash interprets http:/%HOSTIP:%HTTPPORT/want/1143
  as a POSIX file list and converts it to a Windows file list.
  Disable this with MSYS2_ARG_CONV_EXCL for the test to pass.
  
  Ref https://github.com/msys2/msys2/wiki/Porting#filesystem-namespaces
  Closes https://github.com/curl/curl/pull/2765

Daniel Stenberg (18 Jul 2018)
- RELEASE-NOTES: sync
  
  ... and work toward 7.61.1

- [Ruslan Baratov brought this change]

  CMake: Update scripts to use consistent style
  
  Closes #2727
  Reviewed-by: Sergei Nikulov

- header output: switch off all styles, not just unbold
  
  ... the "unbold" sequence doesn't work on the mac Terminal.
  
  Reported-by: Zero King
  Fixes #2736
  Closes #2738

Nick Zitzmann (14 Jul 2018)
- [Rodger Combs brought this change]

  darwinssl: add support for ALPN negotiation

Marcel Raad (14 Jul 2018)
- test1422: add required file feature
  
  curl configured with --enable-debug --disable-file currently complains
  on test1422:
  Info: Protocol "file" not supported or disabled in libcurl
  
  Make test1422 dependend on enabled FILE protocol to fix this.
  
  Fixes https://github.com/curl/curl/issues/2741
  Closes https://github.com/curl/curl/pull/2742

Patrick Monnerat (12 Jul 2018)
- content_encoding: accept up to 4 unknown trailer bytes after raw deflate data
  
  Some servers issue raw deflate data that may be followed by an undocumented
  trailer. This commit makes curl tolerate such a trailer of up to 4 bytes
  before considering the data is in error.
  
  Reported-by: clbr on github
  Fixes #2719

Daniel Stenberg (12 Jul 2018)
- smb: fix memory-leak in URL parse error path
  
  Detected by OSS-Fuzz
  Bug: https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=9369
  Closes #2740

Marcel Raad (12 Jul 2018)
- schannel: enable CALG_TLS1PRF for w32api >= 5.1
  
  The definition of CALG_TLS1PRF has been fixed in the 5.1 branch:
  https://osdn.net/projects/mingw/scm/git/mingw-org-wsl/commits/73aedcc0f2e6ba370de0d86ab878ad76a0dda7b5

Daniel Stenberg (12 Jul 2018)
- docs/SECURITY-PROCESS: mention bounty, drop pre-notify
  
  + The hackerone bounty and its process
  
  - We don't and can't handle pre-notification

- multi: always do the COMPLETED procedure/state
  
  It was previously erroneously skipped in some situations.
  
  libtest/libntlmconnect.c wrongly depended on wrong behavior (that it
  would get a zero timeout) when no handles are "running" in a multi
  handle. That behavior is no longer present with this fix. Now libcurl
  will always return a -1 timeout when all handles are completed.
  
  Closes #2733

- Curl_getoff_all_pipelines: improved for multiplexed
  
  On multiplexed connections, transfers can be removed from anywhere not
  just at the head as for pipelines.

- ares: check for NULL in completed-callback

- conn: remove the boolean 'inuse' field
  
  ... as the usage needs to be counted.

- [Paul Howarth brought this change]

  openssl: assume engine support in 1.0.0 or later
  
  Commit 38203f1585da changed engine detection to be version-based,
  with a baseline of openssl 1.0.1. This does in fact break builds
  with openssl 1.0.0, which has engine support - the configure script
  detects that ENGINE_cleanup() is available - but <openssl/engine.h>
  doesn't get included to declare it.
  
  According to upstream documentation, engine support was added to
  mainstream openssl builds as of version 0.9.7:
  https://github.com/openssl/openssl/blob/master/README.ENGINE
  
  This commit drops the version test down to 1.0.0 as version 1.0.0d
  is the oldest version I have to test with.
  
  Closes #2732

Marcel Raad (11 Jul 2018)
- schannel: fix MinGW compile break
  
  Original MinGW's w32api has a sytax error in its definition of
  CALG_TLS1PRF [0]. Don't use original MinGW w32api's CALG_TLS1PRF
  until this bug [1] is fixed.
  
  [0] https://osdn.net/projects/mingw/scm/git/mingw-org-wsl/blobs/d1d4a17e51a2b78e252ef0147d483267d56c90cc/w32api/include/wincrypt.h
  [1] https://osdn.net/projects/mingw/ticket/38391
  
  Fixes https://github.com/curl/curl/pull/2721#issuecomment-403636043
  Closes https://github.com/curl/curl/pull/2728

Daniel Stenberg (11 Jul 2018)
- examples/crawler.c: move #ifdef to column 0
  
  Apparently the C => HTML converter on the web site doesn't quite like it
  otherwise.
  
  Reported-by: Jeroen Ooms

Version 7.61.0 (11 Jul 2018)

Daniel Stenberg (11 Jul 2018)
- release: 7.61.0

- TODO: Configurable loading of OpenSSL configuration file
  
  Closes #2724

- post303.d: clarify that this is an RFC violation
  
  ... and not the other way around, which this previously said.
  
  Reported-by: Vasiliy Faronov
  Fixes #2723
  Closes #2726

- [Ruslan Baratov brought this change]

  CMake: remove redundant and old end-of-block syntax
  
  Reviewed-by: Jakub Zakrzewski
  Closes #2715

Jay Satiro (9 Jul 2018)
- lib/curl_setup.h: remove unicode character
  
  Follow-up to 82ce416.
  
  Ref: https://github.com/curl/curl/commit/8272ec5#commitcomment-29646818

Daniel Stenberg (9 Jul 2018)
- lib/curl_setup.h: remove unicode bom from 8272ec50f02

Marcel Raad (9 Jul 2018)
- schannel: fix -Wsign-compare warning
  
  MinGW warns:
  /lib/vtls/schannel.c:219:64: warning: signed and unsigned type in
  conditional expression [-Wsign-compare]
  
  Fix this by casting the ptrdiff_t to size_t as we know it's positive.
  
  Closes https://github.com/curl/curl/pull/2721

- schannel: workaround for wrong function signature in w32api
  
  Original MinGW's w32api has CryptHashData's second parameter as BYTE *
  instead of const BYTE *.
  
  Closes https://github.com/curl/curl/pull/2721

- schannel: make more cipher options conditional
  
  They are not defined in the original MinGW's <wincrypt.h>.
  
  Closes https://github.com/curl/curl/pull/2721

- curl_setup: include <winerror.h> before <windows.h>
  
  Otherwise, only part of it gets pulled in through <windows.h> on
  original MinGW.
  
  Fixes https://github.com/curl/curl/issues/2361
  Closes https://github.com/curl/curl/pull/2721

- examples: fix -Wformat warnings
  
  When size_t is not a typedef for unsigned long (as usually the case on
  Windows), GCC emits -Wformat warnings when using lu and lx format
  specifiers with size_t. Silence them with explicit casts to
  unsigned long.
  
  Closes https://github.com/curl/curl/pull/2721

Daniel Stenberg (9 Jul 2018)
- smtp: use the upload buffer size for scratch buffer malloc
  
  ... not the read buffer size, as that can be set smaller and thus cause
  a buffer overflow! CVE-2018-0500
  
  Reported-by: Peter Wu
  Bug: https://curl.haxx.se/docs/adv_2018-70a2.html

- [Dave Reisner brought this change]

  scripts: include _curl as part of CLEANFILES
  
  Closes #2718

- [Nick Zitzmann brought this change]

  darwinssl: allow High Sierra users to build the code using GCC
  
  ...but GCC users lose out on TLS 1.3 support, since we can't weak-link
  enumeration constants.
  
  Fixes #2656
  Closes #2703

- [Ruslan Baratov brought this change]

  CMake: Remove unused 'output_var' from 'collect_true'
  
  Variable 'output_var' is not used and can be removed.
  Function 'collect_true' renamed to 'count_true'.

- [Ruslan Baratov brought this change]

  CMake: Remove unused functions
  
  Closes #2711

- KNOWN_BUGS: Stick to same family over SOCKS proxy

- libssh: goto DISCONNECT state on error, not SSH_SESSION_FREE
  
  ... because otherwise not everything get closed down correctly.
  
  Fixes #2708
  Closes #2712

- libssh: include line number in state change debug messages
  
  Closes #2713

- KNOWN_BUGS: Borland support is dropped, AIX problem is too old

- [Jeroen Ooms brought this change]

  example/crawler.c: simple crawler based on libxml2
  
  Closes #2706

- RELEASE-NOTES: synced

- DEPRECATE: include year when specifying date

- DEPRECATE: linkified

- DEPRECATE: mention the PR that disabled axTLS

- docs/DEPRECATE.md: spelling and minor formatting

- DEPRECATE: new doc describing planned item removals
  
  Closes #2704

- [Gisle Vanem brought this change]

  telnet: fix clang warnings
  
  telnet.c(1401,28): warning: cast from function call of type 'int' to
  non-matching type 'HANDLE' (aka 'void *') [-Wbad-function-cast]
  
  Fixes #2696
  Closes #2700

- docs: fix missed option name markups

- [Gaurav Malhotra brought this change]

  openssl: Remove some dead code
  
  Closes #2698

- openssl: make the requested TLS version the *minimum* wanted
  
  The code treated the set version as the *exact* version to require in
  the TLS handshake, which is not what other TLS backends do and probably
  not what most people expect either.
  
  Reported-by: Andreas Olsson
  Assisted-by: Gaurav Malhotra
  Fixes #2691
  Closes #2694

- RELEASE-NOTES: synced

- openssl: allow TLS 1.3 by default
  
  Reported-by: Andreas Olsson
  Fixes #2692
  Closes #2693

- [Adrian Peniak brought this change]

  CURLINFO_TLS_SSL_PTR.3: improve the example
  
  The previous example was a little bit confusing, because SSL* structure
  (or other "in use" SSL connection pointer) is not accessible after the
  transfer is completed, therefore working with the raw TLS library
  specific pointer needs to be done during transfer.
  
  Closes #2690

- travis: add a build using the synchronous name resolver
  
  ... since default uses the threaded one and we test the c-ares build
  already.
  
  Closes #2689

- configure: remove CURL_CHECK_NI_WITHSCOPEID too
  
  Since it isn't used either and requires the getnameinfo check
  
  Follow-up to 0aeca41702d2

- getnameinfo: not used
  
  Closes #2687

- easy_perform: use *multi_timeout() to get wait times
  
  ... and trim the threaded Curl_resolver_getsock() to return zero
  millisecond wait times during the first three milliseconds so that
  localhost or names in the OS resolver cache gets detected and used
  faster.
  
  Closes #2685

Max Dymond (27 Jun 2018)
- configure: Add dependent libraries after crypto
  
  The linker is pretty dumb and processes things left to right, keeping a
  tally of symbols it hasn't resolved yet. So, we need -ldl to appear
  after -lcrypto otherwise the linker won't find the dl functions.
  
  Closes #2684

Daniel Stenberg (27 Jun 2018)
- GOVERNANCE: linkify, changed some titles

- GOVERNANCE: add maintainer details/duties

- url: check Curl_conncache_add_conn return code
  
  ... it was previously unchecked in two places and thus errors could
  remain undetected and cause trouble.
  
  Closes #2681

- include/README: remove "hacking" advice, not the right place

- RELEASE-NOTES: synced

- CURLOPT_SSL_VERIFYPEER.3: fix syntax mistake
  
  Follow-up to b6a16afa0aa5

- netrc: use a larger buffer
  
  ... to work with longer passwords etc. Grow it from a 256 to a 4096
  bytes buffer.
  
  Reported-by: Dario Nieuwenhuis
  Fixes #2676
  Closes #2680

- [Patrick Schlangen brought this change]

  CURLOPT_SSL_VERIFYPEER.3: Add performance note
  
  Closes #2673

- [Javier Blazquez brought this change]

  multi: fix crash due to dangling entry in connect-pending list
  
  Fixes #2677
  Closes #2679

- ConnectionExists: make sure conn->data is set when "taking" a connection
  
  Follow-up to 2c15693.
  
  Bug #2674
  Closes #2675

- [Kevin R. Bulgrien brought this change]

  system.h: fix for gcc on 32 bit OpenServer
  
  Bug: https://curl.haxx.se/mail/lib-2018-06/0100.html

- [Raphael Gozzo brought this change]

  cmake: allow multiple SSL backends
  
  This will make possible to select the SSL backend (using
  curl_global_sslset()) even when the libcurl is built using CMake
  
  Closes #2665

- url: fix dangling conn->data pointer
  
  By masking sure to use the *current* easy handle with extracted
  connections from the cache, and make sure to NULLify the ->data pointer
  when the connection is put into the cache to make this mistake easier to
  detect in the future.
  
  Reported-by: Will Dietz
  Fixes #2669
  Closes #2672

- CURLOPT_INTERFACE.3: interface names not supported on Windows

- travis: run more tests for coverage check
  
  ... run a few more tortured based and run all tests event-based.
  
  Closes #2664

- multi: fix memory leak when stopped during name resolve
  
  When the application just started the transfer and then stops it while
  the name resolve in the background thread hasn't completed, we need to
  wait for the resolve to complete and then cleanup data accordingly.
  
  Enabled test 1553 again and added test 1590 to also check when the host
  name resolves successfully.
  
  Detected by OSS-fuzz.
  Closes #1968

Viktor Szakats (15 Jun 2018)
- maketgz: delete .bak files, fix indentation
  
  Ref: https://github.com/curl/curl/pull/2660
  
  Closes https://github.com/curl/curl/pull/2662

Daniel Stenberg (15 Jun 2018)
- runtests.pl: remove debug leftover from bb9a340c73f3

- curl-confopts.m4: fix typo from ed224f23d5beb
  
  Fixes my local configure to detect a custom installed c-ares without
  pkgconfig.

- docs/RELEASE-PROCEDURE.md: renamed to use .md extension
  
  Closes #2663

- RELEASE-PROCEDURE: gpg sign the tags

- RELEASE-NOTES: synced

- CURLOPT_HTTPAUTH.3: CURLAUTH_BEARER was added in 7.61.0

- [Mamta Upadhyay brought this change]

  maketgz: fix sed issues on OSX
  
  maketgz creates release tarballs and removes the -DEV string in curl
  version (e.g. 7.58.0-DEV), else -DEV shows up on command line when curl
  is run. maketgz works fine on linux but fails on OSX. Problem is with
  the sed commands that use option -i without an extension. Maketgz
  expects GNU sed instead of BSD and this simply won't work on OSX. Adding
  a backup extension .bak after -i fixes this issue
  
  Running the script as if on OSX gives this error:
  
  sed: -e: No such file or directory
  
  Adding a .bak extension resolves it
  
  Closes #2660

- configure: enhance ability to detect/build with static openssl
  
  Fix the -ldl and -ldl + -lpthread checks for OpenSSL, necessary for
  building with static libs without pkg-config.
  
  Reported-by: Marcel Raad
  Fixes #2199
  Closes #2659

- configure: use pkg-config for c-ares detection
  
  First check if there's c-ares information given as pkg-config info and use
  that as first preference.
  
  Reported-by: pszemus on github
  Fixes #2203
  Closes #2658

- GOVERNANCE.md: explains how this project is run
  
  Closes #2657

- KNOWN_BUGS: NTLM doen't support password with § character
  
  Closes #2120

- KNOWN_BUGS: slow connect to localhost on Windows
  
  Closes #2281

- [Matteo Bignotti brought this change]

  mk-ca-bundle.pl: make -u delete certdata.txt if found not changed
  
  certdata.txt should be deleted also when the process is interrupted by
  "same certificate downloaded, exiting"
  
  The certdata.txt is currently kept on disk even if you give the -u
  option
  
  Closes #2655

- progress: remove a set of unused defines
  
  Reported-by: Peter Wu
  Closes #2654

- TODO: "Option to refuse usernames in URLs" done
  
  Implemented by Björn in 946ce5b61f

- [Lyman Epp brought this change]

  Curl_init_do: handle NULL connection pointer passed in
  
  Closes #2653

- runtests: support variables in <strippart>
  
  ... and make use of that to make 1455 work better without using a fixed
  local port number.
  
  Fixes #2649
  Closes #2650

- Curl_debug: remove dead printhost code
  
  The struct field is never set (since 5e0d9aea3) so remove the use of it
  and remove the connectdata pointer from the prototype.
  
  Reported-by: Tejas
  Bug: https://curl.haxx.se/mail/lib-2018-06/0054.html
  Closes #2647

Viktor Szakats (12 Jun 2018)
- schannel: avoid incompatible pointer warning
  
  with clang-6.0:
  ```
  vtls/schannel_verify.c: In function 'add_certs_to_store':
  vtls/schannel_verify.c:212:30: warning: passing argument 11 of 'CryptQueryObject' from incompatible pointer type [-Wincompatible-pointer-types]
                                &cert_context)) {
                                ^
  In file included from /usr/share/mingw-w64/include/schannel.h:10:0,
                   from /usr/share/mingw-w64/include/schnlsp.h:9,
                   from vtls/schannel.h:29,
                   from vtls/schannel_verify.c:40:
  /usr/share/mingw-w64/include/wincrypt.h:4437:26: note: expected 'const void **' but argument is of type 'CERT_CONTEXT ** {aka struct _CERT_CONTEXT **}'
     WINIMPM WINBOOL WINAPI CryptQueryObject (DWORD dwObjectType, const void *pvObject, DWORD dwExpectedContentTypeFlags, DWORD dwExpectedFormatTypeFlags, DWORD dwFlags,
                            ^~~~~~~~~~~~~~~~
  ```
  Ref: https://msdn.microsoft.com/library/windows/desktop/aa380264
  
  Closes https://github.com/curl/curl/pull/2648

Daniel Stenberg (12 Jun 2018)
- [Robert Prag brought this change]

  schannel: support selecting ciphers
  
  Given the contstraints of SChannel, I'm exposing these as the algorithms
  themselves instead; while replicating the ciphersuite as specified by
  OpenSSL would have been preferable, I found no way in the SChannel API
  to do so.
  
  To use this from the commandline, you need to pass the names of contants
  defining the desired algorithms. For example, curl --ciphers
  "CALG_SHA1:CALG_RSA_SIGN:CALG_RSA_KEYX:CALG_AES_128:CALG_DH_EPHEM"
  https://github.com The specific names come from wincrypt.h
  
  Closes #2630

- [Bernhard M. Wiedemann brought this change]

  test 46: make test pass after 2025
  
  shifting the expiry date to 2037 for now
  to be before the possibly problematic year 2038
  
  similar in spirit to commit e6293cf8764e9eecb
  
  Closes #2646

- [Marian Klymov brought this change]

  cppcheck: fix warnings
  
  - Get rid of variable that was generating false positive warning
  (unitialized)
  
  - Fix issues in tests
  
  - Reduce scope of several variables all over
  
  etc
  
  Closes #2631

- openssl: assume engine support in 1.0.1 or later
  
  Previously it was checked for in configure/cmake, but that would then
  leave other build systems built without engine support.
  
  While engine support probably existed prior to 1.0.1, I decided to play
  safe. If someone experience a problem with this, we can widen the
  version check.
  
  Fixes #2641
  Closes #2644

- RELEASE-NOTES: synced

- RELEASE-PROCEDURE: update the release calendar for 2019

- [Gisle Vanem brought this change]

  boringssl + schannel: undef X509_NAME in lib/schannel.h
  
  Fixes the build problem when both boringssl and schannel are enabled.
  
  Fixes #2634
  Closes #2643

- [Vladimir Kotal brought this change]

  mk-ca-bundle.pl: leave certificate name untouched in decode()
  
  Closes #2640

- [Rikard Falkeborn brought this change]

  tests/libtests/Makefile.am: Add lib1521.c to CLEANFILES
  
  This removes the generated lib1521.c when running make clean.
  
  Closes #2633

- [Rikard Falkeborn brought this change]

  tests/libtest: Add lib1521 to nodist_SOURCES
  
  Since 467da3af0, lib1521.c is generated instead of checked in. According
  to the commit message, the intention was to remove it from the tarball
  as well. However, it is still present when running make dist. To remove
  it, add it to nodist_lib1521_SOURCES. This also means there is no need
  for the manually added dist-rule in the Makefile.
  
  Also update CMakelists.txt to handle the fact that we now may have
  nodist_SOURCES.

- [Stephan Mühlstrasser brought this change]

  system.h: add support for IBM xlc C compiler
  
  Added a section to system.h guarded with __xlc__ for the IBM xml C
  compiler. Before this change the section titled 'generic "safe guess" on
  old 32 bit style' was used, which resulted in a wrong definition of
  CURL_TYPEOF_CURL_SOCKLEN_T, and for 64-bit also CURL_TYPEOF_CURL_OFF_T
  was wrong.
  
  Compilation warnings fixed with this change:
  
    CC       libcurl_la-ftp.lo
  "ftp.c", line 290.55: 1506-280 (W) Function argument assignment between types "unsigned long* restrict" and "int*" is not allowed.
  "ftp.c", line 293.48: 1506-280 (W) Function argument assignment between types "unsigned long* restrict" and "int*" is not allowed.
  "ftp.c", line 1070.49: 1506-280 (W) Function argument assignment between types "unsigned long* restrict" and "int*" is not allowed.
  "ftp.c", line 1154.53: 1506-280 (W) Function argument assignment between types "unsigned long* restrict" and "int*" is not allowed.
  "ftp.c", line 1187.51: 1506-280 (W) Function argument assignment between types "unsigned long* restrict" and "int*" is not allowed.
    CC       libcurl_la-connect.lo
  "connect.c", line 448.56: 1506-280 (W) Function argument assignment between types "unsigned long* restrict" and "int*" is not allowed.
  "connect.c", line 516.66: 1506-280 (W) Function argument assignment between types "unsigned long* restrict" and "int*" is not allowed.
  "connect.c", line 687.55: 1506-280 (W) Function argument assignment between types "unsigned long* restrict" and "int*" is not allowed.
  "connect.c", line 696.55: 1506-280 (W) Function argument assignment between types "unsigned long* restrict" and "int*" is not allowed.
    CC       libcurl_la-tftp.lo
  "tftp.c", line 1115.33: 1506-280 (W) Function argument assignment between types "unsigned long* restrict" and "int*" is not allowed.
  
  Closes #2637

- cmdline-opts/cert-type.d: mention "p12" as a recognized type as well

Viktor Szakats (3 Jun 2018)
- spelling fixes
  
  Detected using the `codespell` tool (version 1.13.0).
  
  Also secure and fix an URL.

Daniel Stenberg (2 Jun 2018)
- axtls: follow-up spell fix of comment

- axTLS: not considered fit for use
  
  URL: https://curl.haxx.se/mail/lib-2018-06/0000.html
  
  This is step one. It adds #error statements that require source edits to
  make curl build again if asked to use axTLS. At a later stage we might
  remove the axTLS specific code completely.
  
  Closes #2628

- build: remove the Borland specific makefiles
  
  According to the user survey 2018, not even one out of 670 users use
  them. Nobody on the mailing list spoke up for them either.
  
  Closes #2629

- curl_addrinfo: use same #ifdef conditions in source as header
  
  ... for curl_dofreeaddrinfo

- multi: remove a DEBUGF()
  
  ... it might call infof() with a NULL first argument that isn't harmful
  but makes it not do anything. The infof() line is not very useful
  anymore, it has served it purpose. Good riddance!
  
  Fixes #2627

- [Alibek.Jorajev brought this change]

  CURLOPT_RESOLVE: always purge old entry first
  
  If there's an existing entry using the selected name.
  
  Closes #2622

- fnmatch: use the system one if available
  
  If configure detects fnmatch to be available, use that instead of our
  custom one for FTP wildcard pattern matching. For standard compliance,
  to reduce our footprint and to use already well tested and well
  exercised code.
  
  A POSIX fnmatch behaves slightly different than the internal function
  for a few test patterns currently and the macOS one yet slightly
  different. Test case 1307 is adjusted for these differences.
  
  Closes #2626

Patrick Monnerat (31 May 2018)
- os400: add new option in ILE/RPG binding
  
  Follow-up to commit 946ce5b

Daniel Stenberg (31 May 2018)
- tests/libtest/.gitignore: follow-up fix to ignore lib5* too

- KNOWN_BUGS: CURL_GLOBAL_SSL
  
  Closes #2276

- [Bernhard Walle brought this change]

  configure: check for declaration of getpwuid_r
  
  On our x86 Android toolchain, getpwuid_r is implemented but the header
  is missing:
  
   netrc.c:81:7: error: implicit declaration of function 'getpwuid_r' [-Werror=implicit-function-declaration]
  
  Unfortunately, the function is used in curl_ntlm_wb.c, too, so I moved
  the prototype to curl_setup.h.
  
  Signed-off-by: Bernhard Walle <bernhard@bwalle.de>
  Closes #2609

- [Rikard Falkeborn brought this change]

  tests: update .gitignore for libtests
  
  Closes #2624

- [Rikard Falkeborn brought this change]

  strictness: correct {infof, failf} format specifiers
  
  Closes #2623

- [Björn Stenberg brought this change]

  option: disallow username in URL
  
  Adds CURLOPT_DISALLOW_USERNAME_IN_URL and --disallow-username-in-url. Makes
  libcurl reject URLs with a username in them.
  
  Closes #2340

- libcurl-security.3: improved layout for two rememdy lists

- libcurl-security.3: refer to URL instead of in-source markdown file

Viktor Szakats (30 May 2018)
- curl.rc: embed manifest for correct Windows version detection
  
  * enable it in `src/Makefile.m32`
  * enable it in `winbuild/MakefileBuild.vc` if a custom manifest is
    _not_ enabled via the existing `EMBED_MANIFEST` option
  * enable it for all Windows CMake builds (also disable the built-in
    minimal manifest, added by CMake by default.)
  
  For other build systems, add the `-DCURL_EMBED_MANIFEST` option to
  the list of RC (Resource Compiler) flags to enable the manifest
  included in `src/curl.rc`. This may require to disable whatever
  automatic or other means in which way another manifest is added to
  `curl.exe`.
  
  Notice that Borland C doesn't support this method due to a
  long-pending resource compiler bug. Watcom C may also not handle
  it correctly when the `-zm` `wrc` option is used (this option may
  be unnecessary though) and regardless of options in certain earlier
  revisions of the 2.0 beta version.
  
  Closes https://github.com/curl/curl/pull/1221
  Fixes https://github.com/curl/curl/issues/2591

Patrick Monnerat (30 May 2018)
- os400: sync EBCDIC wrappers and ILE/RPG binding with latest options

- os400: implement mime api EBCDIC wrappers
  
  Also sync ILE/RPG binding to define the new functions.

Daniel Stenberg (29 May 2018)
- setopt: add TLS 1.3 ciphersuites
  
  Adds CURLOPT_TLS13_CIPHERS and CURLOPT_PROXY_TLS13_CIPHERS.
  
  curl: added --tls13-ciphers and --proxy-tls13-ciphers
  
  Fixes #2435
  Reported-by: zzq1015 on github
  Closes #2607

- configure: override AR_FLAGS to silence warning
  
  The automake default ar flags are 'cru', but the 'u' flag in there
  causes warnings on many modern Linux distros. Removing 'u' may have a
  minor performance impact on older distros but should not cause harm.
  
  Explained on the automake mailing list already back in April 2015:
  
  https://www.mail-archive.com/automake-patches@gnu.org/msg07705.html
  
  Reported-by: elephoenix on github
  Fixes #2617
  Closes #2619

Sergei Nikulov (29 May 2018)
- cmake: fixed comments in compile checks code

Daniel Stenberg (29 May 2018)
- INSTALL: LDFLAGS=-Wl,-R/usr/local/ssl/lib
  
  ... the older description doesn't work
  
  Reported-by: Peter Varga
  Fixes #2615
  Closes #2616

- [Will Dietz brought this change]

  KNOWN_BUGS: restore text regarding #2101.
  
  This was added earlier but appears to have been removed accidentally.
  
  AFAICT this is very much still an issue.
  
  -----
  
  I say "accidentally" because the text seems to have harmlessly snuck
  into [1] (which makes no mention of it).  [1] was later reverted for
  unspecified reasons in [2], presumably because the mentioned issue was
  fixed or invalid.
  
  [1] de9fac00c40db321d44fa6fbab6eb62ec4c83998
  [2] 16d1f369403cbb04bd7b085eabbeebf159473fc2
  
  Closes #2618

- fnmatch: insist on escaped bracket to match
  
  A non-escaped bracket ([) is for a character group - as documented. It
  will *not* match an individual bracket anymore. Test case 1307 updated
  accordingly to match.
  
  Problem detected by OSS-Fuzz, although this fix is probably not a final
  fix for the notorious timeout issues.
  
  Bug: https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=8525
  Closes #2614

Patrick Monnerat (28 May 2018)
- psl: use latest psl and refresh it periodically
  
  The latest psl is cached in the multi or share handle. It is refreshed
  before use after 72 hours.
  New share lock CURL_LOCK_DATA_PSL controls the psl cache sharing.
  If the latest psl is not available, the builtin psl is used.
  
  Reported-by: Yaakov Selkowitz
  Fixes #2553
  Closes #2601

Daniel Stenberg (28 May 2018)
- [Fabrice Fontaine brought this change]

  configure: fix ssh2 linking when built with a static mbedtls
  
  The ssh2 pkg-config file could contain the following lines when build
  with a static version of mbedtls:
     Libs: -L${libdir} -lssh2 /xxx/libmbedcrypto.a
     Libs.private: /xxx/libmbedcrypto.a
  
  This static mbedtls library must be used to correctly detect ssh2
  support and this library must be copied in libcurl.pc otherwise
  compilation of any application (such as upmpdcli) with libcurl will fail
  when trying to found mbedtls functions included in libssh2.  So, replace
  pkg-config --libs-only-l by pkg-config --libs.
  
  Fixes:
   - http://autobuild.buildroot.net/results/43e24b22a77f616d6198c10435dcc23cc3b9088a
  
  Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
  Closes #2613

- RELEASE-NOTES: synced

- [Bernhard Walle brought this change]

  cmake: check for getpwuid_r
  
  The autotools-based build system does it, so we do it also in CMake.
  
  Bug: #2609
  Signed-off-by: Bernhard Walle <bernhard@bwalle.de>

- cmdline-opts/gen.pl: warn if mutexes: or see-also: list non-existing options

- [Frank Gevaerts brought this change]

  curl.1: Fix cmdline-opts reference errors.
  
  --data, --form, and --ntlm were declared to be mutually exclusive with
  non-existing options. --data and --form referred to --upload (which is
  short for --upload-file and therefore did work, so this one was merely
  a bit confusing), --ntlm referred to --negotiated instead of --negotiate.
  
  Closes #2612

- [Frank Gevaerts brought this change]

  docs: fix cmdline-opts metadata headers case consistency.
  
  Almost all headers start with an uppercase letter, but some didn't.

- mailmap: Max Savenkov

Sergei Nikulov (28 May 2018)
- [Max Savenkov brought this change]

  Fix the test for fsetxattr and strerror_r tests in CMake to work without compiling

Daniel Stenberg (27 May 2018)
- mailmap: a Richard Alcock fixup

- [Richard Alcock brought this change]

  schannel: add failf calls for client certificate failures
  
  Closes #2604

- [Richard Alcock brought this change]

  winbuild: In MakefileBuild.vc fix typo DISTDIR->DIRDIST
  
  Change requirement from $(DISTDIR) to $(DIRDIST)
  
  closes #2603

- [Richard Alcock brought this change]

  winbuild: only delete OUTFILE if it exists
  
  This removes the slightly annoying "Could not file LIBCURL_OBJS.inc" and
  "Could not find CURL_OBJS.inc.inc" message when building into a clean
  folder.
  
  closes #2602

- [Alejandro R. Sedeño brought this change]

  content_encoding: handle zlib versions too old for Z_BLOCK
  
  Fallback on Z_SYNC_FLUSH when Z_BLOCK is not available.
  
  Fixes #2606
  Closes #2608

- multi: provide a socket to wait for in Curl_protocol_getsock
  
  ... even when there's no protocol specific handler setup.
  
  Bug: https://curl.haxx.se/mail/lib-2018-05/0062.html
  Reported-by: Sean Miller
  Closes #2600

- [Linus Lewandowski brought this change]

  httpauth: add support for Bearer tokens
  
  Closes #2102

- TODO: CURLINFO_PAUSE_STATE
  
  Closes #2588

Sergei Nikulov (24 May 2018)
- cmake: set -d postfix for debug builds if not specified
         using -DCMAKE_DEBUG_POSTFIX explicitly
  
         fixes #2121, obsoletes #2384

Daniel Stenberg (23 May 2018)
- configure: add basic test of --with-ssl prefix
  
  When given a prefix, the $PREFIX_OPENSSL/lib/openssl.pc or
  $PREFIX_OPENSSL/include/openssl/ssl.h files must be present or cause an
  error. Helps users detect when giving configure the wrong path.
  
  Reported-by: Oleg Pudeyev
  Assisted-by: Per Malmberg
  Fixes #2580

Patrick Monnerat (22 May 2018)
- http resume: skip body if http code 416 (range error) is ignored.
  
  This avoids appending error data to already existing good data.
  
  Test 92 is updated to match this change.
  New test 1156 checks all combinations of --range/--resume, --fail,
  Content-Range header and http status code 200/416.
  
  Fixes #1163
  Reported-By: Ithubg on github
  Closes #2578

Daniel Stenberg (22 May 2018)
- tftp: make sure error is zero terminated before printfing it

- configure: add missing m4/ax_compile_check_sizeof.m4
  
  follow-up to mistake in 6876ccf90b4

Jay Satiro (22 May 2018)
- [Johannes Schindelin brought this change]

  schannel: make CAinfo parsing resilient to CR/LF
  
  OpenSSL has supported --cacert for ages, always accepting LF-only line
  endings ("Unix line endings") as well as CR/LF line endings ("Windows
  line endings").
  
  When we introduced support for --cacert also with Secure Channel (or in
  cURL speak: "WinSSL"), we did not take care to support CR/LF line
  endings, too, even if we are much more likely to receive input in that
  form when using Windows.
  
  Let's fix that.
  
  Happily, CryptQueryObject(), the function we use to parse the ca-bundle,
  accepts CR/LF input already, and the trailing LF before the END
  CERTIFICATE marker catches naturally any CR/LF line ending, too. So all
  we need to care about is the BEGIN CERTIFICATE marker. We do not
  actually need to verify here that the line ending is CR/LF. Just
  checking for a CR or an LF is really plenty enough.
  
  Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
  
  Closes https://github.com/curl/curl/pull/2592

Daniel Stenberg (22 May 2018)
- CURLOPT_ACCEPT_ENCODING.3: add brotli and clarify a bit

- RELEASE-NOTES: synced

- KNOWN_BUGS: mention the -O with %-encoded file names
  
  Closes #2573

- checksrc: make sure sizeof() is used *with* parentheses
  
  ... and unify the source code to adhere.
  
  Closes #2563

- curl: added --styled-output
  
  It is enabled by default, so --no-styled-output will switch off the
  detection/use of bold headers.
  
  Closes #2538

- curl: show headers in bold
  
  The feature is only enabled if the output is believed to be a tty.
  
  -J: There's some minor differences and improvements in -J handling, as
  now J should work with -i and it actually creates a file first using the
  initial name and then *renames* that to the one found in
  Content-Disposition (if any).
  
  -i: only shows headers for HTTP transfers now (as documented).
  Previously it would also show for pieces of the transfer that were HTTP
  (for example when doing FTP over a HTTP proxy).
  
  -i: now shows trailers as well. Previously they were not shown at all.
  
  --libcurl: the CURLOPT_HEADER is no longer set, as the header output is
  now done in the header callback.

- configure: compile-time SIZEOF checks
  
  ... instead of exeucting code to get the size. Removes the use of
  LD_LIBRARY_PATH for this.
  
  Fixes #2586
  Closes #2589
  Reported-by: Bernhard Walle

- configure: replace AC_TRY_RUN with CURL_RUN_IFELSE
  
  ... and export LD_LIBRARY_PATH properly. This is a follow-up from
  2d4c215.
  
  Fixes #2586
  Reported-by: Bernhard Walle

- docs: clarify CURLOPT_HTTPGET somewhat
  
  Reported-by: bsammon on github
  Fixes #2590

- curl_fnmatch: only allow two asterisks for matching
  
  The previous limit of 5 can still end up in situation that takes a very
  long time and consumes a lot of CPU.
  
  If there is still a rare use case for this, a user can provide their own
  fnmatch callback for a version that allows a larger set of wildcards.
  
  This commit was triggered by yet another OSS-Fuzz timeout due to this.
  Bug: https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=8369
  
  Closes #2587

- checksrc: fix too long line
  
  follow-up to e05ad5d

- [Aleks brought this change]

  docs: mention HAproxy protocol "version 1"
  
  ...as there's also a version 2.
  
  Closes #2579

- examples/progressfunc: make it build on older libcurls
  
  This example was changed in ce2140a8c1 to use the new microsecond based
  getinfo option. This change makes it conditionally keep using the older
  option so that the example still builds with older libcurl versions.
  
  Closes #2584

- stub_gssapi: fix numerous 'unused parameter' warnings
  
  follow-up to d9e92fd9fd1d

- [Philip Prindeville brought this change]

  getinfo: add microsecond precise timers for various intervals
  
  Provide a set of new timers that return the time intervals using integer
  number of microseconds instead of floats.
  
  The new info names are as following:
  
  CURLINFO_APPCONNECT_TIME_T
  CURLINFO_CONNECT_TIME_T
  CURLINFO_NAMELOOKUP_TIME_T
  CURLINFO_PRETRANSFER_TIME_T
  CURLINFO_REDIRECT_TIME_T
  CURLINFO_STARTTRANSFER_TIME_T
  CURLINFO_TOTAL_TIME_T
  
  Closes #2495

- openssl: acknowledge --tls-max for default version too
  
  ... previously it only used the max setting if a TLS version was also
  explicitly asked for.
  
  Reported-by: byte_bucket
  Fixes #2571
  Closes #2572

- bump: start working on the pending 7.61.0

- [Dagobert Michelsen brought this change]

  tests/libtest/Makefile: Do not unconditionally add gcc-specific flags
  
  The warning flag leads e.g. Sun Studio compiler to bail out.
  
  Closes #2576

- schannel_verify: fix build for non-schannel

Jay Satiro (16 May 2018)
- rand: fix typo

- schannel: disable manual verify if APIs not available
  
  .. because original MinGW and old compilers do not have the Windows API
  definitions needed to support manual verification.

- [Archangel_SDY brought this change]

  schannel: disable client cert option if APIs not available
  
  Original MinGW targets Windows 2000 by default, which lacks some APIs and
  definitions for this feature. Disable it if these APIs are not available.
  
  Closes https://github.com/curl/curl/pull/2522

Version 7.60.0 (15 May 2018)

Daniel Stenberg (15 May 2018)
- RELEASE-NOTES: 7.60.0 release

- THANKS: added people from the curl 7.60.0 release

- docs/libcurl/index.html: removed
  
  The HTML files are long gone from the dist, now remove the last HTML
  file pointing to those missing files.
  
  d

- [steini2000 brought this change]

  http2: remove unused variable
  
  Closes #2570

- [steini2000 brought this change]

  http2: use easy handle of stream for logging

- gcc: disable picky gcc-8 function pointer warnings in two places
  
  Reported-by: Rikard Falkeborn
  Bug: #2560
  Closes #2569

- http2: use the correct function pointer typedef
  
  Fixes gcc-8 picky compiler warnings
  Reported-by: Rikard Falkeborn
  Bug: #2560
  Closes #2568

- CODE_STYLE: mention return w/o parens, but sizeof with
  
  ... and remove the github markdown syntax so that it renders better on
  the web site. Also, don't use back-ticks inlined to allow the CSS to
  highlight source code better.

- [Rikard Falkeborn brought this change]

  examples: Fix format specifiers
  
  Closes #2561

- [Rikard Falkeborn brought this change]

  tool: Fix format specifiers

- [Rikard Falkeborn brought this change]

  ntlm: Fix format specifiers

- [Rikard Falkeborn brought this change]

  tests: Fix format specifiers

- [Rikard Falkeborn brought this change]

  lib: Fix format specifiers

- contributors.sh: use "on github", not at

- http2: getsock fix for uploads
  
  When there's an upload in progress, make sure to wait for the socket to
  become writable.
  
  Detected-by: steini2000 on github
  Bug: #2520
  Closes #2567

- pingpong: fix response cache memcpy overflow
  
  Response data for a handle with a large buffer might be cached and then
  used with the "closure" handle when it has a smaller buffer and then the
  larger cache will be copied and overflow the new smaller heap based
  buffer.
  
  Reported-by: Dario Weisser
  CVE: CVE-2018-1000300
  Bug: https://curl.haxx.se/docs/adv_2018-82c2.html

- http: restore buffer pointer when bad response-line is parsed
  
  ... leaving the k->str could lead to buffer over-reads later on.
  
  CVE: CVE-2018-1000301
  Assisted-by: Max Dymond
  
  Detected by OSS-Fuzz.
  Bug: https://curl.haxx.se/docs/adv_2018-b138.html
  Bug: https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=7105

Patrick Monnerat (13 May 2018)
- cookies: do not take cookie name as a parameter
  
  RFC 6265 section 4.2.1 does not set restrictions on cookie names.
  This is a follow-up to commit 7f7fcd0.
  Also explicitly check proper syntax of cookie name/value pair.
  
  New test 1155 checks that cookie names are not reserved words.
  
  Reported-By: anshnd at github
  Fixes #2564
  Closes #2566

Daniel Stenberg (12 May 2018)
- smb: reject negative file sizes
  
  Assisted-by: Max Dymond
  
  Detected by OSS-Fuzz
  Bug: https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=8245

- setup_transfer: deal with both sockets being -1
  
  Detected by Coverity; CID 1435559.  Follow-up to f8d608f38d00. It would
  index the array with -1 if neither index was a socket.

- travis: add build using NSS
  
  Closes #2558

- [Sunny Purushe brought this change]

  openssl: change FILE ops to BIO ops
  
  To make builds with VS2015 work. Recent changes in VS2015 _IOB_ENTRIES
  handling is causing problems. This fix changes the OpenSSL backend code
  to use BIO functions instead of FILE I/O functions to circumvent those
  problems.
  
  Closes #2512

- travis: add a build using WolfSSL
  
  Assisted-by: Dan Fandrich
  
  Closes #2528

- RELEASE-NOTES: typo

- RELEASE-NOTES: synced

- [Daniel Gustafsson brought this change]

  URLs: fix one more http url
  
  This file wasn't included in commit 4af40b3646d3b09 which updated all
  haxx.se http urls to https. The file was committed prior to that update,
  but may have been merged after it and hence didn't get updated.
  
  Closes #2550

- github/lock: auto-lock closed issues after 90 days of inactivity

- vtls: fix missing commas
  
  follow-up to e66cca046cef

- vtls: use unified "supports" bitfield member in backends
  
  ... instead of previous separate struct fields, to make it easier to
  extend and change individual backends without having to modify them all.
  
  closes #2547

- transfer: don't unset writesockfd on setup of multiplexed conns
  
  Curl_setup_transfer() can be called to setup a new individual transfer
  over a multiplexed connection so it shouldn't unset writesockfd.
  
  Bug: #2520
  Closes #2549

- [Frank Gevaerts brought this change]

  configure: put CURLDEBUG and DEBUGBUILD in lib/curl_config.h
  
  They are removed from the compiler flags.
  
  This ensures that make dependency tracking will force a rebuild whenever
  configure --enable-debug or --enable-curldebug changes.
  
  Closes #2548

- http: don't set the "rewind" flag when not uploading anything
  
  It triggers an assert.
  
  Detected by OSS-Fuzz
  Bug: https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=8144
  Closes #2546

- travis: add an mbedtls build
  
  Closes #2531

- configure: only check for CA bundle for file-using SSL backends
  
  When only building with SSL backends that don't use the CA bundle file
  (by default), skip the check.
  
  Fixes #2543
  Fixes #2180
  Closes #2545

- ssh-libssh.c: fix left shift compiler warning
  
  ssh-libssh.c:2429:21: warning: result of '1 << 31' requires 33 bits to
  represent, but 'int' only has 32 bits [-Wshift-overflow=]
  
  'len' will never be that big anyway so I converted the run-time check to
  a regular assert.

- [Stephan Mühlstrasser brought this change]

  URL: fix ASCII dependency in strcpy_url and strlen_url
  
  Commit 3c630f9b0af097663a64e5c875c580aa9808a92b partially reverted the
  changes from commit dd7521bcc1b7a6fcb53c31f9bd1192fcc884bd56 because of
  the problem that strcpy_url() was modified unilaterally without also
  modifying strlen_url(). As a consequence strcpy_url() was again
  depending on ASCII encoding.
  
  This change fixes strlen_url() and strcpy_url() in parallel to use a
  common host-encoding independent criterion for deciding whether an URL
  character must be %-escaped.
  
  Closes #2535

- [Denis Ollier brought this change]

  docs: remove extraneous commas in man pages
  
  Closes #2544

- RELEASE-NOTES: synced

- Revert "TODO: remove configure --disable-pthreads"
  
  This reverts commit d5d683a97f9765bddfd964fe32e137aa6e703ed3.
  
  --disable-pthreads can be used to disable pthreads and get the threaded
  resolver to use the windows threading when building with mingw.

- vtls: don't define MD5_DIGEST_LENGTH for wolfssl
  
  ... as it defines it (too)

- TODO: remove configure --disable-pthreads

Jay Satiro (2 May 2018)
- [David Garske brought this change]

  wolfssl: Fix non-blocking connect
  
  Closes https://github.com/curl/curl/pull/2542

Daniel Stenberg (30 Apr 2018)
- CURLOPT_URL.3: add ENCODING section [ci skip]
  
  Feedback-by: Michael Kilburn

- KNOWN_BUGS: Client cert with Issuer DN differs between backends
  
  Closes #1411

- KNOWN_BUGS: Passive transfer tries only one IP address
  
  Closes #1508

- KNOWN_BUGS: --upload-file . hang if delay in STDIN
  
  Closes #2051

- KNOWN_BUGS: Connection information when using TCP Fast Open
  
  Closes #1332

- travis: enable libssh2 on both macos and Linux
  
  It seems to not be detected by default anymore (which is a bug I
  believe)
  
  Closes #2541

- TODO: Support the clienthello extension
  
  Closes #2299

- TODO: CLOEXEC
  
  Closes #2252

- tests: provide 'manual' as a feature to optionally require
  
  ... and make test 1026 rely on that feature so that --disable-manual
  builds don't cause test failures.
  
  Reported-by: Max Dymond and Anders Roxell
  Fixes #2533
  Closes #2540

- CURLINFO_PROTOCOL.3: mention the existing defined names

Jay Satiro (27 Apr 2018)
- [Daniel Gustafsson brought this change]

  cookies: remove unused macro
  
  Commit 2bc230de63 made the macro MAX_COOKIE_LINE_TXT become unused,
  so remove as it's not part of the published API.
  
  Closes https://github.com/curl/curl/pull/2537

Daniel Stenberg (27 Apr 2018)
- [Daniel Gustafsson brought this change]

  checksrc: force indentation of lines after an else
  
  This extends the INDENTATION case to also handle 'else' statements
  and require proper indentation on the following line. Also fixes the
  offending cases found in the codebase.
  
  Closes #2532

- http2: fix null pointer dereference in http2_connisdead
  
  This function can get called on a connection that isn't setup enough to
  have the 'recv_underlying' function pointer initialized so it would try
  to call the NULL pointer.
  
  Reported-by: Dario Weisser
  
  Follow-up to db1b2c7fe9b093f8 (never shipped in a release)
  Closes #2536

- http2: get rid of another strstr()
  
  Follow-up to 1514c44655e12e: replace another strstr() call done on a
  buffer that might not be zero terminated - with a memchr() call, even if
  we know the substring will be found.
  
  Assisted-by: Max Dymond
  
  Detected by OSS-Fuzz
  Bug: https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=8021
  
  Closes #2534

- cyassl: adapt to libraries without TLS 1.0 support built-in
  
  WolfSSL doesn't enable it by default anymore

- configure: provide --with-wolfssl as an alias for --with-cyassl

- RELEASE-NOTES: synced

- [Daniel Gustafsson brought this change]

  os400.c: fix ASSIGNWITHINCONDITION checksrc warnings
  
  All occurrences of assignment within conditional expression in
  os400sys.c rewritten into two steps: first assignment and then the check
  on the success of the assignment. Also adjust related incorrect brace
  positions to match project indentation style.
  
  This was spurred by seeing "if((inp = input_token))", but while in there
  all warnings were fixed.
  
  There should be no functional change from these changes.
  
  Closes #2525

- [Daniel Gustafsson brought this change]

  cookies: ensure that we have cookies before writing jar
  
  The jar should be written iff there are cookies, so ensure that we still
  have cookies after expiration to avoid creating an empty file.
  
  Closes #2529

- strcpy_url: only %-encode values >= 0x80
  
  OSS-Fuzz detected
  
  https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=8000
  
  Broke in dd7521bcc1b7

- mime: avoid NULL pointer dereference risk
  
  Coverity detected, CID 1435120
  
  Closes #2527

- [Stephan Mühlstrasser brought this change]

  ctype: restore character classification for non-ASCII platforms
  
  With commit 4272a0b0fc49a1ac0ceab5c4a365c9f6ab8bf8e2 curl-speficic
  character classification macros and functions were introduced in
  curl_ctype.[ch] to avoid dependencies on the locale. This broke curl on
  non-ASCII, e.g. EBCDIC platforms. This change restores the previous set
  of character classification macros when CURL_DOES_CONVERSIONS is
  defined.
  
  Closes #2494

- ftplistparser: keep state between invokes
  
  Fixes FTP wildcard parsing when done over a number of read buffers.
  
  Regression from f786d1f14
  
  Reported-by: wncboy on github
  Fixes #2445
  Closes #2526

- examples/http2-upload: expand buffer to avoid silly warning
  
  http2-upload.c:135:44: error: ‘%02d’ directive output may be truncated
  writing between 2 and 11 bytes into a region of size between 8 and 17

- examples/sftpuploadresume: typecast fseek argument to long
  
  /docs/examples/sftpuploadresume.c:102:12: warning: conversion to 'long
  int' from 'curl_off_t {aka long long int}' may alter its value

- Revert "ftplistparser: keep state between invokes"
  
  This reverts commit abbc8457d85aca74b7cfda1d394b0844932b2934.
  
  Caused fuzzer problems on travis not seen when this was a PR!

- Curl_memchr: zero length input can't match
  
  Avoids undefined behavior.
  
  Reported-by: Geeknik Labs

- ftplistparser: keep state between invokes
  
  Fixes FTP wildcard parsing when doing over a number of read buffers.
  
  Regression from f786d1f14
  
  Reported-by: wncboy on github
  Fixes #2445
  Closes #2519

- ftplistparser: renamed some members and variables
  
  ... to make them better spell out what they're for.

- RELEASE-NOTES: synced

- [Christian Schmitz brought this change]

  curl_global_sslset: always provide available backends
  
  Closes #2499

- http2: convert an assert to run-time check
  
  Fuzzing has proven we can reach code in on_frame_recv with status_code
  not having been set, so let's detect that in run-time (instead of with
  assert) and error error accordingly.
  
  (This should no longer happen with the latest nghttp2)
  
  Detected by OSS-Fuzz
  Bug: https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=7903
  Closes #2514

- curl.1: clarify that options and URLs can be mixed
  
  Fixes #2515
  Closes #2517

Jay Satiro (23 Apr 2018)
- [Archangel_SDY brought this change]

  CURLOPT_SSLCERT.3: improve WinSSL-specific usage info
  
  Ref: https://github.com/curl/curl/pull/2376#issuecomment-381858780
  
  Closes https://github.com/curl/curl/pull/2504

- [Archangel_SDY brought this change]

  schannel: fix build error on targets <= XP
  
  - Use CRYPT_STRING_HEX instead of CRYPT_STRING_HEXRAW since XP doesn't
    support the latter.
  
  Ref: https://github.com/curl/curl/pull/2376#issuecomment-382153668
  
  Closes https://github.com/curl/curl/pull/2504

Daniel Stenberg (23 Apr 2018)
- Revert "ftplistparser: keep state between invokes"
  
  This reverts commit 8fb78f9ddc6d858d630600059b8ad84a80892fd9.
  
  Unfortunately this fix introduces memory leaks I've not been able to fix
  in several days. Reverting this for now to get the leaks fixed.

Jay Satiro (21 Apr 2018)
- tool_help: clarify --max-time unit of time is seconds
  
  Before:
   -m, --max-time <time> Maximum time allowed for the transfer
  
  After:
   -m, --max-time <seconds> Maximum time allowed for the transfer

Daniel Stenberg (20 Apr 2018)
- http2: handle GOAWAY properly
  
  When receiving REFUSED_STREAM, mark the connection for close and retry
  streams accordingly on another/fresh connection.
  
  Reported-by: Terry Wu
  Fixes #2416
  Fixes #1618
  Closes #2510

- http2: clear the "drain counter" when a stream is closed
  
  This fixes the notorious "httpc->drain_total >= data->state.drain"
  assert.
  
  Reported-by: Anders Bakken
  
  Fixes #1680
  Closes #2509

- http2: avoid strstr() on data not zero terminated
  
  It's not strictly clear if the API contract allows us to call strstr()
  on a string that isn't zero terminated even when we know it will find
  the substring, and clang's ASAN check dislikes us for it.
  
  Also added a check of the return code in case it fails, even if I can't
  think of a situation how that can trigger.
  
  Detected by OSS-Fuzz
  Closes #2513
  Bug: https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=7760

- [Stephan Mühlstrasser brought this change]

  openssl: fix subjectAltName check on non-ASCII platforms
  
  Curl_cert_hostcheck operates with the host character set, therefore the
  ASCII subjectAltName string retrieved with OpenSSL must be converted to
  the host encoding before comparison.
  
  Closes #2493

Jay Satiro (20 Apr 2018)
- openssl: Add support for OpenSSL 1.1.1 verbose-mode trace messages
  
  - Support handling verbose-mode trace messages of type
    SSL3_RT_INNER_CONTENT_TYPE, SSL3_MT_ENCRYPTED_EXTENSIONS,
    SSL3_MT_END_OF_EARLY_DATA, SSL3_MT_KEY_UPDATE, SSL3_MT_NEXT_PROTO,
    SSL3_MT_MESSAGE_HASH
  
  Reported-by: iz8mbw@users.noreply.github.com
  
  Fixes https://github.com/curl/curl/issues/2403

Daniel Stenberg (19 Apr 2018)
- ftplistparser: keep state between invokes
  
  Regression from f786d1f14
  
  Reported-by: wncboy on github
  Fixes #2445
  Closes #2508

- detect_proxy: only show proxy use if it had contents

- http2: handle on_begin_headers() called more than once
  
  This triggered an assert if called more than once in debug mode (and a
  memory leak if not debug build). With the right sequence of HTTP/2
  headers incoming it can happen.
  
  Detected by OSS-Fuzz
  
  Closes #2507
  Bug: https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=7764

Jay Satiro (18 Apr 2018)
- [Dan McNulty brought this change]

  schannel: add support for CURLOPT_CAINFO
  
  - Move verify_certificate functionality in schannel.c into a new
    file called schannel_verify.c. Additionally, some structure defintions
    from schannel.c have been moved to schannel.h to allow them to be
    used in schannel_verify.c.
  
  - Make verify_certificate functionality for Schannel available on
    all versions of Windows instead of just Windows CE. verify_certificate
    will be invoked on Windows CE or when the user specifies
    CURLOPT_CAINFO and CURLOPT_SSL_VERIFYPEER.
  
  - In verify_certificate, create a custom certificate chain engine that
    exclusively trusts the certificate store backed by the CURLOPT_CAINFO
    file.
  
  - doc updates of --cacert/CAINFO support for schannel
  
  - Use CERT_NAME_SEARCH_ALL_NAMES_FLAG when invoking CertGetNameString
    when available. This implements a TODO in schannel.c to improve
    handling of multiple SANs in a certificate. In particular, all SANs
    will now be searched instead of just the first name.
  
  - Update tool_operate.c to not search for the curl-ca-bundle.crt file
    when using Schannel to maintain backward compatibility. Previously,
    any curl-ca-bundle.crt file found in that search would have been
    ignored by Schannel. But, with CAINFO support, the file found by
    that search would have been used as the certificate store and
    could cause issues for any users that have curl-ca-bundle.crt in
    the search path.
  
  - Update url.c to not set the build time CURL_CA_BUNDLE if the selected
    SSL backend is Schannel. We allow setting CA location for schannel
    only when explicitly specified by the user via CURLOPT_CAINFO /
    --cacert.
  
  - Add new test cases 3000 and 3001. These test cases check that the first
    and last SAN, respectively, matches the connection hostname. New test
    certificates have been added for these cases. For 3000, the certificate
    prefix is Server-localhost-firstSAN and for 3001, the certificate
    prefix is Server-localhost-secondSAN.
  
  - Remove TODO 15.2 (Add support for custom server certificate
    validation), this commit addresses it.
  
  Closes https://github.com/curl/curl/pull/1325

- schannel: fix warning
  
  - Fix warning 'integer from pointer without a cast' on 3rd arg in
    CertOpenStore. The arg type HCRYPTPROV may be a pointer or integer
    type of the same size.
  
  Follow-up to e35b025.
  
  Caught by Marc's CI builds.

- [Jakub Wilk brought this change]

  docs: fix typos
  
  Closes https://github.com/curl/curl/pull/2503

Daniel Stenberg (17 Apr 2018)
- RELEASE-NOTES: synced

Jay Satiro (17 Apr 2018)
- [Kees Dekker brought this change]

  winbuild: Support custom devel paths for each dependency
  
  - Support custom devel paths for c-ares, mbedTLS, nghttp2, libSSH2,
    OpenSSL and zlib. Respectively: CARES_PATH, MBEDTLS_PATH,
    NGHTTP2_PATH, SSH2_PATH, SSL_PATH and ZLIB_PATH.
  
  - Use lib.exe for making the static library instead of link.exe /lib.
    The latter is undocumented and could cause problems as noted in the
    comments.
  
  - Remove a dangling URL that no longer worked. (I was not able to find
    the IDN download at MSDN/microsoft.com, so it seems to be removed.)
  
  - Remove custom override for release-ssh2-ssl-dll-zlib configuration.
    Nobody knows why it was there and as far as we can see is unnecessary.
  
  Closes https://github.com/curl/curl/pull/2474

Daniel Stenberg (17 Apr 2018)
- [Jess brought this change]

  README.md: add backers and sponsors
  
  Closes #2484

- [Archangel_SDY brought this change]

  schannel: add client certificate authentication
  
  Users can now specify a client certificate in system certificates store
  explicitly using expression like `--cert "CurrentUser\MY\<thumbprint>"`
  
  Closes #2376

Marcel Raad (16 Apr 2018)
- [toughengineer brought this change]

  ntlm_sspi: fix authentication using Credential Manager
  
  If you pass empty user/pass asking curl to use Windows Credential
  Storage (as stated in the docs) and it has valid credentials for the
  domain, e.g.
  curl -v -u : --ntlm example.com
  currently authentication fails.
  This change fixes it by providing proper SPN string to the SSPI API
  calls.
  
  Fixes https://github.com/curl/curl/issues/1622
  Closes https://github.com/curl/curl/pull/1660

Daniel Stenberg (16 Apr 2018)
- configure: keep LD_LIBRARY_PATH changes local
  
  ... only set it when we actually have to run tests to reduce its impact
  on for example build commands etc.
  
  Fixes #2490
  Closes #2492
  
  Reported-by: Dmitry Mikhirev

Marcel Raad (16 Apr 2018)
- urldata: make service names unconditional
  
  The ifdefs have become quite long. Also, the condition for the
  definition of CURLOPT_SERVICE_NAME and for setting it from
  CURLOPT_SERVICE_NAME have diverged. We will soon also need the two
  options for NTLM, at least when using SSPI, for
  https://github.com/curl/curl/pull/1660.
  Just make the definitions unconditional to make that easier.
  
  Closes https://github.com/curl/curl/pull/2479

Daniel Stenberg (16 Apr 2018)
- test1148: tolerate progress updates better
  
  Fixes #2446
  Closes #2488

- [Christian Schmitz brought this change]

  ssh: show libSSH2 error code when closing fails
  
  Closes #2500

Jay Satiro (15 Apr 2018)
- [Daniel Gustafsson brought this change]

  vauth: Fix typo
  
  Address various spellings of "credentials".
  
  Closes https://github.com/curl/curl/pull/2496

- [Dagobert Michelsen brought this change]

  system.h: Add sparcv8plus to oracle/sunpro 32-bit detection
  
  With specific compiler options selecting the arch like -xarch=sparc on
  newer compilers like Oracle Studio 12.4 there is no definition of
  __sparcv8 but __sparcv8plus which means the V9 ISA, but limited to the
  32ÎíÎñbit subset defined by the V8plus ISA specification, without the
  Visual Instruction Set (VIS), and without other implementation-specific
  ISA extensions. So it should be the same as __sparcv8.
  
  Closes https://github.com/curl/curl/pull/2491

- [Daniel Gustafsson brought this change]

  checksrc: Fix typo
  
  Fix typo in "semicolon" spelling and remove stray tab character.
  
  Closes https://github.com/curl/curl/pull/2498

- [Daniel Gustafsson brought this change]

  all: Refactor malloc+memset to use calloc
  
  When a zeroed out allocation is required, use calloc() rather than
  malloc() followed by an explicit memset(). The result will be the
  same, but using calloc() everywhere increases consistency in the
  codebase and avoids the risk of subtle bugs when code is injected
  between malloc and memset by accident.
  
  Closes https://github.com/curl/curl/pull/2497

Daniel Stenberg (12 Apr 2018)
- duphandle: make sure CURLOPT_RESOLVE is duplicated fine too
  
  Verified in test 1502 now
  
  Fixes #2485
  Closes #2486
  Reported-by: Ernst Sjöstrand

- mailmap: add a monnerat fixup [ci skip]

- proxy: show getenv proxy use in verbose output
  
  ... to aid debugging etc as it sometimes isn't immediately obvious why
  curl uses or doesn't use a proxy.
  
  Inspired by #2477
  
  Closes #2480

- travis: build libpsl and make builds use it
  
  closes #2471

- travis: bump to clang 6 and gcc 7
  
  Extra-eye-on-this-by: Marcel Raad
  
  Closes #2478

Marcel Raad (10 Apr 2018)
- travis: use trusty for coverage build
  
  This works now and precise is in the process of being decommissioned.
  
  Closes https://github.com/curl/curl/pull/2476

- lib: silence null-dereference warnings
  
  In debug mode, MingGW-w64's GCC 7.3 issues null-dereference warnings
  when dereferencing pointers after DEBUGASSERT-ing that they are not
  NULL.
  Fix this by removing the DEBUGASSERTs.
  
  Suggested-by: Daniel Stenberg
  Ref: https://github.com/curl/curl/pull/2463

- [Kees Dekker brought this change]

  winbuild: fix URL
  
  Follow up on https://github.com/curl/curl/pull/2472.
  Now using en-us instead of nl-nl as language code in the URL.
  
  Closes https://github.com/curl/curl/pull/2475

Daniel Stenberg (9 Apr 2018)
- [Kees Dekker brought this change]

  winbuild: updated the documentation
  
  The setenv command no longer exists and visual studio build prompts got
  changed. Used Visual Studio 2015/2017 as reference.
  
  Closes #2472

- test1136: fix cookie order after commit c990eadd1277

- build: cleanup to fix clang warnings/errors
  
  unit1309 and vtls/gtls: error: arithmetic on a null pointer treated as a
  cast from integer to pointer is a GNU extension
  
  Reported-by: Rikard Falkeborn
  
  Fixes #2466
  Closes #2468

Jay Satiro (7 Apr 2018)
- examples/sftpuploadresmue: Fix Windows large file seek
  
  - Use _fseeki64 instead of fseek (long) to seek curl_off_t in Windows.
  
  - Use CURL_FORMAT_CURL_OFF_T specifier instead of %ld to print
    curl_off_t.
  
  Caught by Marc's CI builds.

Daniel Stenberg (7 Apr 2018)
- curl_setup: provide a CURL_SA_FAMILY_T type if none exists
  
  ... and use this type instead of 'sa_family_t' in the code since several
  platforms don't have it.
  
  Closes #2463

- [Eric Gallager brought this change]

  build: add picky compiler warning flags for gcc 6 and 7

- configure: detect sa_family_t

Jay Satiro (7 Apr 2018)
- [Stefan Agner brought this change]

  tool_operate: Fix retry on FTP 4xx to ignore other protocols
  
  Only treat response code as FTP response codes in case the
  protocol type is FTP.
  
  This fixes an issue where an HTTP download was treated as FTP
  in case libcurl returned with 33. This happens when the
  download has already finished and the server responses 416:
    HTTP/1.1 416 Requested Range Not Satisfiable
  
  This should not be treated as an FTP error.
  
  Fixes #2464
  Closes #2465

Daniel Stenberg (6 Apr 2018)
- hash: calculate sizes with size_t instead of longs
  
  ... since they return size_t anyway!
  
  closes #2462

- RELEASE-NOTES: synced

- [Jay Satiro brought this change]

  build-openssl.bat: Refer to VS2017 as VC14.1 instead of VC15
  
  .. and do the same for build-wolfssl.bat.
  
  Because MS calls it VC14.1.
  
  Closes https://github.com/curl/curl/pull/2189

- [Kees Dekker brought this change]

  winbuild: make the clean target work without build-type
  
  Due to the check in Makefile.vc and MakefileBuild.vc, no make call can
  be invoked unless a build-type was specified. However, a clean target
  only existed when a build type was specified. As a result, the clean
  target was unreachable. Made clean target unconditional.
  
  Closes #2455

- [patelvivekv1993 brought this change]

  build-openssl.bat: allow custom paths for VS and perl
  
  Fixes #2430
  Closes #2457

- [Laurie Clark-Michalek brought this change]

  FTP: allow PASV on IPv6 connections when a proxy is being used
  
  In the situation of a client connecting to an FTP server using an IPv6
  tunnel proxy, the connection info will indicate that the connection is
  IPv6. However, because the server behing the proxy is IPv4, it is
  permissable to attempt PSV mode. In the case of the FTP server being
  IPv4 only, EPSV will always fail, and with the current logic curl will
  be unable to connect to the server, as the IPv6 fwdproxy causes curl to
  think that EPSV is impossible.
  
  Closes #2432

- [Jon DeVree brought this change]

  file: restore old behavior for file:////foo/bar URLs
  
  curl 7.57.0 and up interpret this according to Appendix E.3.2 of RFC
  8089 but then returns an error saying this is unimplemented. This is
  actually a regression in behavior on both Windows and Unix.
  
  Before curl 7.57.0 this URL was treated as a path of "//foo/bar" and
  then passed to the relevant OS API. This means that the behavior of this
  case is actually OS dependent.
  
  The Unix path resolution rules say that the OS must handle swallowing
  the extra "/" and so this path is the same as "/foo/bar"
  
  The Windows path resolution rules say that this is a UNC path and
  automatically handles the SMB access for the program. So curl on Windows
  was already doing Appendix E.3.2 without any special code in curl.
  
  Regression
  
  Closes #2438

- [Gaurav Malhotra brought this change]

  Revert "openssl: Don't add verify locations when verifypeer==0"
  
  This reverts commit dc85437736e1fc90e689bb1f6c51c8f1aa9430eb.
  
  libcurl (with the OpenSSL backend) performs server certificate verification
  even if verifypeer == 0 and the verification result is available using
  CURLINFO_SSL_VERIFYRESULT. The commit that is being reverted caused the
  CURLINFO_SSL_VERIFYRESULT to not have useful information for the
  verifypeer == 0 use case (it would always have
  X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT_LOCALLY).
  
  Closes #2451

- [Wyatt O'Day brought this change]

  tls: fix mbedTLS 2.7.0 build + handle sha256 failures
  
  (mbedtls 2.70 compiled with MBEDTLS_DEPRECATED_REMOVED)
  
  Closes #2453

- [Lauri Kasanen brought this change]

  cookie: case-insensitive hashing for the domains
  
  closes #2458

Patrick Monnerat (4 Apr 2018)
- cookie: fix and optimize 2nd top level domain name extraction
  
  This fixes a segfault occurring when a name of the (invalid) form "domain..tld"
  is processed.
  
  test46 updated to cover this case.
  
  Follow-up to commit c990ead.
  
  Ref: https://github.com/curl/curl/pull/2440

Daniel Stenberg (4 Apr 2018)
- openssl: provide defines for argument typecasts to build warning-free
  
  ... as OpenSSL >= 1.1.0 and libressl >= 2.7.0 use different argument types.

- [Bernard Spil brought this change]

  openssl: fix build with LibreSSL 2.7
  
   - LibreSSL 2.7 implements (most of) OpenSSL 1.1 API
  
  Fixes #2319
  Closes #2447
  Closes #2448
  
  Signed-off-by: Bernard Spil <brnrd@FreeBSD.org>

- [Lauri Kasanen brought this change]

  cookie: store cookies per top-level-domain-specific hash table
  
  This makes libcurl handle thousands of cookies much better and speedier.
  
  Closes #2440

- [Lauri Kasanen brought this change]

  cookies: when reading from a file, only remove_expired once
  
  This drops the cookie load time for 8k cookies from 178ms to 15ms.
  
  Closes #2441

- test1148: set a fixed locale for the test
  
  ...as otherwise it might use a different decimal sign.
  
  Bug: #2436
  Reported-by: Oumph on github

Jay Satiro (31 Mar 2018)
- docs: fix CURLINFO_*_T examples use of CURL_FORMAT_CURL_OFF_T
  
  - Put a percent sign before each CURL_FORMAT_CURL_OFF_T in printf.
  
  For example "%" CURL_FORMAT_CURL_OFF_T becomes %lld or similar.
  
  Bug: https://curl.haxx.se/mail/lib-2018-03/0140.html
  Reported-by: David L.

Sergei Nikulov (27 Mar 2018)
- [Michał Janiszewski brought this change]

  cmake: Add advapi32 as explicit link library for win32
  
  ARM targets need advapi32 explicitly.
  
  Closes #2363

Daniel Stenberg (27 Mar 2018)
- TODO: connection cache sharing is now supporte

Jay Satiro (26 Mar 2018)
- travis: enable apt retry on fail
  
  This is a workaround for an unsolved travis issue that is causing CI
  instances to sporadically fail due to 'unable to connect' issues during
  apt stage.
  
  Ref: https://github.com/travis-ci/travis-ci/issues/8507
  Ref: https://github.com/travis-ci/travis-ci/issues/9112#issuecomment-376305909

Michael Kaufmann (26 Mar 2018)
- runtests.pl: fix warning 'use of uninitialized value'
  
  follow-up to a9a7b60
  
  Closes #2428

Daniel Stenberg (24 Mar 2018)
- gitignore: ignore more generated files

- threaded resolver: track resolver time and set suitable timeout values
  
  In order to make curl_multi_timeout() return suitable "sleep" times even
  when there's no socket to wait for while the name is being resolved in a
  helper thread.
  
  It will increases the timeouts as time passes.
  
  Closes #2419

- [Howard Chu brought this change]

  openldap: fix for NULL return from ldap_get_attribute_ber()
  
  Closes #2399

GitHub (22 Mar 2018)
- [Sergei Nikulov brought this change]

  travis-ci: enable -Werror for CMake builds (#2418)

- [Sergei Nikulov brought this change]

  cmake: avoid warn-as-error during config checks (#2411)
  
  - Move the CURL_WERROR option processing after the configuration checks
    to avoid failures in case of warnings during the configuration checks.
  
  This is a partial fix for #2358

- [Sergei Nikulov brought this change]

  timeval: remove compilation warning by casting (#2417)
  
  This is fixes #2358

Daniel Stenberg (22 Mar 2018)
- http2: read pending frames (including GOAWAY) in connection-check
  
  If a connection has received a GOAWAY frame while not being used, the
  function now reads frames off the connection before trying to reuse it
  to avoid reusing connections the server has told us not to use.
  
  Reported-by: Alex Baines
  Fixes #1967
  Closes #2402

- [Bas van Schaik brought this change]

  CI: add lgtm.yml for tweaking lgtm.com analysis
  
  Closes #2414

- CURLINFO_SSL_VERIFYRESULT.3: fix the example, add some text
  
  Reported-by: Michal Trybus
  
  Fixes #2400

- TODO: expand ~/ in config files
  
  Closes #2317

- cookie.d: mention that "-" as filename means stdin
  
  Reported-by: Dongliang Mu
  Fixes #2410

- CURLINFO_COOKIELIST.3: made the example not leak memory
  
  Reported-by: Muz Dima

- vauth/cleartext: fix integer overflow check
  
  Make the integer overflow check not rely on the undefined behavior that
  a size_t wraps around on overflow.
  
  Detected by lgtm.com
  Closes #2408

- lib/curl_path.h: add #ifdef header guard
  
  Detected by lgtm.com

- vauth/ntlm.h: fix the #ifdef header guard
  
  Detected by lgtm.com

Jay Satiro (20 Mar 2018)
- examples/hiperfifo: checksrc compliance

Daniel Stenberg (19 Mar 2018)
- [Nikos Tsipinakis brought this change]

  parsedate: support UT timezone
  
  RFC822 section 5.2 mentions Universal Time, 'UT', to be synonymous with
  GMT.
  
  Closes #2401

- RELEASE-NOTES: synced

- [Don brought this change]

  cmake: add support for brotli
  
  Currently CMake cannot detect Brotli support. This adds detection of the
  libraries and associated header files. It also adds this to the
  generated config.
  
  Closes #2392

- [Chris Araman brought this change]

  darwinssl: fix iOS build

Patrick Monnerat (18 Mar 2018)
- ILE/RPG binding: Add CURLOPT_HAPROXYPROTOCOL/Fix CURLOPT_DNS_SHUFFLE_ADDRESSES

Daniel Stenberg (17 Mar 2018)
- [Rick Deist brought this change]

  resolve: add CURLOPT_DNS_SHUFFLE_ADDRESSES
  
  This patch adds CURLOPT_DNS_SHUFFLE_ADDRESSES to explicitly request
  shuffling of IP addresses returned for a hostname when there is more
  than one. This is useful when the application knows that a round robin
  approach is appropriate and is willing to accept the consequences of
  potentially discarding some preference order returned by the system's
  implementation.
  
  Closes #1694

- add_handle/easy_perform: clear errorbuffer on start if set
  
  To offer applications a more defined behavior, we clear the buffer as
  early as possible.
  
  Assisted-by: Jay Satiro
  
  Fixes #2190
  Closes #2377

- [Lawrence Matthews brought this change]

  CURLOPT_HAPROXYPROTOCOL: support the HAProxy PROXY protocol
  
  Add --haproxy-protocol for the command line tool
  
  Closes #2162

- curl_version_info.3: fix ssl_version description
  
  Reported-by: Vincas Razma
  Fixes #2364

- multi: improved pending transfers handling => improved performance
  
  When a transfer is requested to get done and it is put in the pending
  queue when limited by number of connections, total or per-host, libcurl
  would previously very aggressively retry *ALL* pending transfers to get
  them transferring. That was very time consuming.
  
  By reducing the aggressiveness in how pending are being retried, we
  waste MUCH less time on putting transfers back into pending again.
  
  Some test cases got a factor 30(!) speed improvement with this change.
  
  Reported-by: Cyril B
  Fixes #2369
  Closes #2383

- pause: when changing pause state, update socket state
  
  Especially unpausing a transfer might have to move the socket back to the
  "currently used sockets" hash to get monitored. Otherwise it would never get
  any more data and get stuck. Easily triggered with pausing using the
  multi_socket API.
  
  Reported-by: Philip Prindeville
  Bug: https://curl.haxx.se/mail/lib-2018-03/0048.html
  Fixes #2393
  Closes #2391

- [Philip Prindeville brought this change]

  examples/hiperfifo.c: improved
  
   * use member struct event’s instead of pointers to alloc’d struct
     events
  
   * simplify the cases for the mcode_or_die() function via macros;
  
   * make multi_timer_cb() actually do what the block comment says it
     should;
  
   * accept a “stop” command on the FIFO to shut down the service;
  
   * use cleaner notation for unused variables than the (void) hack;
  
   * allow following redirections (304’s);

- rate-limit: use three second window to better handle high speeds
  
  Due to very frequent updates of the rate limit "window", it could
  attempt to rate limit within the same milliseconds and that then made
  the calculations wrong, leading to it not behaving correctly on very
  fast transfers.
  
  This new logic updates the rate limit "window" to be no shorter than the
  last three seconds and only updating the timestamps for this when
  switching between the states TOOFAST/PERFORM.
  
  Reported-by: 刘佩东
  Fixes #2386
  Closes #2388

- [luz.paz brought this change]

  cleanup: misc typos in strings and comments
  
  Found via `codespell`
  
  Closes #2389

- RELEASE-NOTES: toward 7.60.0

- [Kobi Gurkan brought this change]

  http2: fixes typo
  
  Closes #2387

- user-agent.d:: mention --proxy-header as well
  
  Bug: https://github.com/curl/curl/issues/2381

- transfer: make HTTP without headers count correct body size
  
  This is what "HTTP/0.9" basically looks like.
  
  Reported on IRC
  
  Closes #2382

- test1208: marked flaky
  
  It fails somewhere between every 3rd to 10th travis-CI run

- SECURITY-PROCESS: mention how we write/add advisories

- [dasimx brought this change]

  FTP: fix typo in recursive callback detection for seeking
  
  Fixes #2380

Version 7.59.0 (13 Mar 2018)

Daniel Stenberg (13 Mar 2018)
- release: 7.59.0

Kamil Dudka (13 Mar 2018)
- tests/.../spnego.py: fix identifier typo
  
  Detected by Coverity Analysis:
  
  Error: IDENTIFIER_TYPO:
  curl-7.58.0/tests/python_dependencies/impacket/spnego.py:229: identifier_typo: Using "SuportedMech" appears to be a typo:
  * Identifier "SuportedMech" is only known to be referenced here, or in copies of this code.
  * Identifier "SupportedMech" is referenced elsewhere at least 4 times.
  curl-7.58.0/tests/python_dependencies/impacket/smbserver.py:2651: identifier_use: Example 1: Using identifier "SupportedMech".
  curl-7.58.0/tests/python_dependencies/impacket/smbserver.py:2308: identifier_use: Example 2: Using identifier "SupportedMech".
  curl-7.58.0/tests/python_dependencies/impacket/spnego.py:252: identifier_use: Example 3: Using identifier "SupportedMech" (2 total uses in this function).
  curl-7.58.0/tests/python_dependencies/impacket/spnego.py:229: remediation: Should identifier "SuportedMech" be replaced by "SupportedMech"?
  
  Closes #2379

Daniel Stenberg (13 Mar 2018)
- CURLOPT_COOKIEFILE.3: "-" as file name means stdin
  
  Reported-by: Aron Bergman
  Bug: https://curl.haxx.se/mail/lib-2018-03/0049.html
  
  [ci skip]

- Revert "hostip: fix compiler warning: 'variable set but not used'"
  
  This reverts commit a577059f92fc65bd6b81717f0737f897a5b34248.
  
  The assignment really needs to be there or we risk working with an
  uninitialized pointer.

Michael Kaufmann (12 Mar 2018)
- limit-rate: fix compiler warning
  
  follow-up to 72a0f62

Viktor Szakats (12 Mar 2018)
- checksrc.pl: add -i and -m options
  
  To sync it with changes made for the libssh2 project.
  Also cleanup some whitespace.

- curl-openssl.m4: fix spelling [ci skip]

- FAQ: fix a broken URL [ci skip]

Daniel Stenberg (12 Mar 2018)
- http2: mark the connection for close on GOAWAY
  
  ... don't consider it an error!
  
  Assisted-by: Jay Satiro
  Reported-by: Łukasz Domeradzki
  Fixes #2365
  Closes #2375

- credits: Viktor prefers without accent

- openldap: white space changes, fixed up the copyright years

- openldap: check ldap_get_attribute_ber() results for NULL before using
  
  CVE-2018-1000121
  Reported-by: Dario Weisser
  Bug: https://curl.haxx.se/docs/adv_2018-97a2.html

- FTP: reject path components with control codes
  
  Refuse to operate when given path components featuring byte values lower
  than 32.
  
  Previously, inserting a %00 sequence early in the directory part when
  using the 'singlecwd' ftp method could make curl write a zero byte
  outside of the allocated buffer.
  
  Test case 340 verifies.
  
  CVE-2018-1000120
  Reported-by: Duy Phan Thanh
  Bug: https://curl.haxx.se/docs/adv_2018-9cd6.html

- readwrite: make sure excess reads don't go beyond buffer end
  
  CVE-2018-1000122
  Bug: https://curl.haxx.se/docs/adv_2018-b047.html
  
  Detected by OSS-fuzz

- BUGS: updated link to security process

- limit-rate: kick in even before "limit" data has been received
  
  ... and make sure to avoid integer overflows with really large values.
  
  Reported-by: 刘佩东
  Fixes #2371
  Closes #2373

- docs/SECURITY.md -> docs/SECURITY-PROCESS.md

- SECURITY.md: call it the security process

Michael Kaufmann (11 Mar 2018)
- Curl_range: fix FTP-only and FILE-only builds
  
  follow-up to e04417d

- hostip: fix compiler warning: 'variable set but not used'

Daniel Stenberg (11 Mar 2018)
- HTTP: allow "header;" to replace an internal header with a blank one
  
  Reported-by: Michael Kaufmann
  Fixes #2357
  Closes #2362

- http2: verbose output new MAX_CONCURRENT_STREAMS values
  
  ... as it is interesting for many users.

- SECURITY: distros' max embargo time is 14 days now

Patrick Monnerat (8 Mar 2018)
- curl tool: accept --compressed also if Brotli is enabled and zlib is not.

Daniel Stenberg (5 Mar 2018)
- THANKS + mailmap: remove duplicates, fixup full names

- [sergii.kavunenko brought this change]

  WolfSSL: adding TLSv1.3
  
  Closes #2349
usr/share/doc/alt-curlssl/FEATURES000064400000013671151162240310012635 0ustar00                                  _   _ ____  _
                              ___| | | |  _ \| |
                             / __| | | | |_) | |
                            | (__| |_| |  _ <| |___
                             \___|\___/|_| \_\_____|

FEATURES

curl tool
 - config file support
 - multiple URLs in a single command line
 - range "globbing" support: [0-13], {one,two,three}
 - multiple file upload on a single command line
 - custom maximum transfer rate
 - redirectable stderr
 - metalink support (*13)

libcurl
 - full URL syntax with no length limit
 - custom maximum download time
 - custom least download speed acceptable
 - custom output result after completion
 - guesses protocol from host name unless specified
 - uses .netrc
 - progress bar with time statistics while downloading
 - "standard" proxy environment variables support
 - compiles on win32 (reported builds on 40+ operating systems)
 - selectable network interface for outgoing traffic
 - IPv6 support on unix and Windows
 - persistent connections
 - socks 4 + 5 support, with or without local name resolving
 - supports user name and password in proxy environment variables
 - operations through proxy "tunnel" (using CONNECT)
 - support for large files (>2GB and >4GB) during upload and download
 - replaceable memory functions (malloc, free, realloc, etc)
 - asynchronous name resolving (*6)
 - both a push and a pull style interface
 - international domain names (*11)

HTTP
 - HTTP/1.1 compliant (optionally uses 1.0)
 - GET
 - PUT
 - HEAD
 - POST
 - Pipelining
 - multipart formpost (RFC1867-style)
 - authentication: Basic, Digest, NTLM (*9) and Negotiate (SPNEGO) (*3)
   to server and proxy
 - resume (both GET and PUT)
 - follow redirects
 - maximum amount of redirects to follow
 - custom HTTP request
 - cookie get/send fully parsed
 - reads/writes the netscape cookie file format
 - custom headers (replace/remove internally generated headers)
 - custom user-agent string
 - custom referrer string
 - range
 - proxy authentication
 - time conditions
 - via http-proxy
 - retrieve file modification date
 - Content-Encoding support for deflate and gzip
 - "Transfer-Encoding: chunked" support in uploads
 - data compression (*12)
 - HTTP/2 (*5)

HTTPS (*1)
 - (all the HTTP features)
 - using client certificates
 - verify server certificate
 - via http-proxy
 - select desired encryption
 - force usage of a specific SSL version (SSLv2 (*7), SSLv3 (*10) or TLSv1)

FTP
 - download
 - authentication
 - Kerberos 5 (*14)
 - active/passive using PORT, EPRT, PASV or EPSV
 - single file size information (compare to HTTP HEAD)
 - 'type=' URL support
 - dir listing
 - dir listing names-only
 - upload
 - upload append
 - upload via http-proxy as HTTP PUT
 - download resume
 - upload resume
 - custom ftp commands (before and/or after the transfer)
 - simple "range" support
 - via http-proxy
 - all operations can be tunneled through a http-proxy
 - customizable to retrieve file modification date
 - no dir depth limit

FTPS (*1)
 - implicit ftps:// support that use SSL on both connections
 - explicit "AUTH TLS" and "AUTH SSL" usage to "upgrade" plain ftp://
   connection to use SSL for both or one of the connections

SCP (*8)
 - both password and public key auth

SFTP (*8)
 - both password and public key auth
 - with custom commands sent before/after the transfer

TFTP
 - download
 - upload

TELNET
 - connection negotiation
 - custom telnet options
 - stdin/stdout I/O

LDAP (*2)
 - full LDAP URL support

DICT
 - extended DICT URL support

FILE
 - URL support
 - upload
 - resume

SMB
 - SMBv1 over TCP and SSL
 - download
 - upload
 - authentication with NTLMv1

SMTP
 - authentication: Plain, Login, CRAM-MD5, Digest-MD5, NTLM (*9), Kerberos 5
   (*4) and External.
 - send e-mails
 - mail from support
 - mail size support
 - mail auth support for trusted server-to-server relaying
 - multiple recipients
 - via http-proxy

SMTPS (*1)
 - implicit smtps:// support
 - explicit "STARTTLS" usage to "upgrade" plain smtp:// connections to use SSL
 - via http-proxy

POP3
 - authentication: Clear Text, APOP and SASL
 - SASL based authentication: Plain, Login, CRAM-MD5, Digest-MD5, NTLM (*9),
   Kerberos 5 (*4) and External.
 - list e-mails
 - retrieve e-mails
 - enhanced command support for: CAPA, DELE, TOP, STAT, UIDL and NOOP via
   custom requests
 - via http-proxy

POP3S (*1)
 - implicit pop3s:// support
 - explicit "STLS" usage to "upgrade" plain pop3:// connections to use SSL
 - via http-proxy

IMAP
 - authentication: Clear Text and SASL
 - SASL based authentication: Plain, Login, CRAM-MD5, Digest-MD5, NTLM (*9),
   Kerberos 5 (*4) and External.
 - list the folders of a mailbox
 - select a mailbox with support for verifying the UIDVALIDITY
 - fetch e-mails with support for specifying the UID and SECTION
 - upload e-mails via the append command
 - enhanced command support for: EXAMINE, CREATE, DELETE, RENAME, STATUS,
   STORE, COPY and UID via custom requests
 - via http-proxy

IMAPS (*1)
 - implicit imaps:// support
 - explicit "STARTTLS" usage to "upgrade" plain imap:// connections to use SSL
 - via http-proxy

FOOTNOTES
=========

  *1 = requires a TLS library
  *2 = requires OpenLDAP or WinLDAP
  *3 = requires a GSS-API implementation (such as Heimdal or MIT Kerberos) or
       SSPI (native Windows)
  *4 = requires a GSS-API implementation, however, only Windows SSPI is
       currently supported
  *5 = requires nghttp2 and possibly a recent TLS library
  *6 = requires c-ares
  *7 = requires OpenSSL, NSS, GSKit, WinSSL or Secure Transport; GnuTLS, for
       example, only supports SSLv3 and TLSv1
  *8 = requires libssh2
  *9 = requires OpenSSL, GnuTLS, mbedTLS, NSS, yassl, Secure Transport or SSPI
       (native Windows)
  *10 = requires an SSL library that supports SSLv3
  *11 = requires libidn or Windows
  *12 = requires libz
  *13 = requires libmetalink, and either an Apple or Microsoft operating
        system, or OpenSSL, or GnuTLS, or NSS
  *14 = requires a GSS-API implementation (such as Heimdal or MIT Kerberos)
usr/share/doc/alt-curlssl/BUGS000064400000030771151162240360012164 0ustar00                                  _   _ ____  _
                              ___| | | |  _ \| |
                             / __| | | | |_) | |
                            | (__| |_| |  _ <| |___
                             \___|\___/|_| \_\_____|

BUGS

 1. Bugs
  1.1 There are still bugs
  1.2 Where to report
  1.3 Security bugs
  1.4 What to report
  1.5 libcurl problems
  1.6 Who will fix the problems
  1.7 How to get a stack trace
  1.8 Bugs in libcurl bindings
  1.9 Bugs in old versions

 2. Bug fixing procedure
 2.1 What happens on first filing
 2.2 First response
 2.3 Not reproducible
 2.4 Unresponsive
 2.5 Lack of time/interest
 2.6 KNOWN_BUGS
 2.7 TODO
 2.8 Closing off stalled bugs

==============================================================================

1.1 There are still bugs

  Curl and libcurl keep being developed. Adding features and changing code
  means that bugs will sneak in, no matter how hard we try not to.

  Of course there are lots of bugs left. And lots of misfeatures.

  To help us make curl the stable and solid product we want it to be, we need
  bug reports and bug fixes.

1.2 Where to report

  If you can't fix a bug yourself and submit a fix for it, try to report an as
  detailed report as possible to a curl mailing list to allow one of us to
  have a go at a solution. You can optionally also post your bug/problem at
  curl's bug tracking system over at

        https://github.com/curl/curl/issues

  Please read the rest of this document below first before doing that!

  If you feel you need to ask around first, find a suitable mailing list and
  post there. The lists are available on https://curl.haxx.se/mail/

1.3 Security bugs

  If you find a bug or problem in curl or libcurl that you think has a
  security impact, for example a bug that can put users in danger or make them
  vulnerable if the bug becomes public knowledge, then please report that bug
  using our security development process.

  Security related bugs or bugs that are suspected to have a security impact,
  should be reported by email to curl-security@haxx.se so that they first can
  be dealt with away from the public to minimize the harm and impact it will
  have on existing users out there who might be using the vulnerable versions.

  The curl project's process for handling security related issues is
  documented here:

        https://curl.haxx.se/dev/secprocess.html

1.4 What to report

  When reporting a bug, you should include all information that will help us
  understand what's wrong, what you expected to happen and how to repeat the
  bad behavior. You therefore need to tell us:

   - your operating system's name and version number

   - what version of curl you're using (curl -V is fine)

   - versions of the used libraries that libcurl is built to use

   - what URL you were working with (if possible), at least which protocol

  and anything and everything else you think matters. Tell us what you
  expected to happen, tell use what did happen, tell us how you could make it
  work another way. Dig around, try out, test. Then include all the tiny bits
  and pieces in your report. You will benefit from this yourself, as it will
  enable us to help you quicker and more accurately.

  Since curl deals with networks, it often helps us if you include a protocol
  debug dump with your bug report. The output you get by using the -v or
  --trace options.

  If curl crashed, causing a core dump (in unix), there is hardly any use to
  send that huge file to anyone of us. Unless we have an exact same system
  setup as you, we can't do much with it. Instead we ask you to get a stack
  trace and send that (much smaller) output to us instead!

  The address and how to subscribe to the mailing lists are detailed in the
  MANUAL file.

1.5 libcurl problems

  When you've written your own application with libcurl to perform transfers,
  it is even more important to be specific and detailed when reporting bugs.

  Tell us the libcurl version and your operating system. Tell us the name and
  version of all relevant sub-components like for example the SSL library
  you're using and what name resolving your libcurl uses. If you use SFTP or
  SCP, the libssh2 version is relevant etc.

  Showing us a real source code example repeating your problem is the best way
  to get our attention and it will greatly increase our chances to understand
  your problem and to work on a fix (if we agree it truly is a problem).

  Lots of problems that appear to be libcurl problems are actually just abuses
  of the libcurl API or other malfunctions in your applications. It is advised
  that you run your problematic program using a memory debug tool like
  valgrind or similar before you post memory-related or "crashing" problems to
  us.

1.6 Who will fix the problems

  If the problems or bugs you describe are considered to be bugs, we want to
  have the problems fixed.

  There are no developers in the curl project that are paid to work on bugs.
  All developers that take on reported bugs do this on a voluntary basis. We
  do it out of an ambition to keep curl and libcurl excellent products and out
  of pride.

  But please do not assume that you can just lump over something to us and it
  will then magically be fixed after some given time. Most often we need
  feedback and help to understand what you've experienced and how to repeat a
  problem. Then we may only be able to assist YOU to debug the problem and to
  track down the proper fix.

  We get reports from many people every month and each report can take a
  considerable amount of time to really go to the bottom with.

1.7 How to get a stack trace

  First, you must make sure that you compile all sources with -g and that you
  don't 'strip' the final executable. Try to avoid optimizing the code as
  well, remove -O, -O2 etc from the compiler options.

  Run the program until it cores.

  Run your debugger on the core file, like '<debugger> curl core'. <debugger>
  should be replaced with the name of your debugger, in most cases that will
  be 'gdb', but 'dbx' and others also occur.

  When the debugger has finished loading the core file and presents you a
  prompt, enter 'where' (without the quotes) and press return.

  The list that is presented is the stack trace. If everything worked, it is
  supposed to contain the chain of functions that were called when curl
  crashed. Include the stack trace with your detailed bug report. It'll help a
  lot.

1.8 Bugs in libcurl bindings

  There will of course pop up bugs in libcurl bindings. You should then
  primarily approach the team that works on that particular binding and see
  what you can do to help them fix the problem.

  If you suspect that the problem exists in the underlying libcurl, then
  please convert your program over to plain C and follow the steps outlined
  above.

1.9 Bugs in old versions

  The curl project typically releases new versions every other month, and we
  fix several hundred bugs per year. For a huge table of releases, number of
  bug fixes and more, see: https://curl.haxx.se/docs/releases.html

  The developers in the curl project do not have bandwidth or energy enough to
  maintain several branches or to spend much time on hunting down problems in
  old versions when chances are we already fixed them or at least that they've
  changed nature and appearance in later versions.

  When you experience a problem and want to report it, you really SHOULD
  include the version number of the curl you're using when you experience the
  issue. If that version number shows us that you're using an out-of-date
  curl, you should also try out a modern curl version to see if the problem
  persists or how/if it has changed in appearance.

  Even if you cannot immediately upgrade your application/system to run the
  latest curl version, you can most often at least run a test version or
  experimental build or similar, to get this confirmed or not.

  At times people insist that they cannot upgrade to a modern curl version,
  but instead they "just want the bug fixed". That's fine, just don't count on
  us spending many cycles on trying to identify which single commit, if that's
  even possible, that at some point in the past fixed the problem you're now
  experiencing.

  Security wise, it is almost always a bad idea to lag behind the current curl
  versions by a lot. We keeping discovering and reporting security problems
  over time see you can see in this table:
  https://curl.haxx.se/docs/vulnerabilities.html

2. Bug fixing procedure

2.1 What happens on first filing

  When a new issue is posted in the issue tracker or on the mailing list, the
  team of developers first need to see the report. Maybe they took the day
  off, maybe they're off in the woods hunting. Have patience. Allow at least a
  few days before expecting someone to have responded.

  In the issue tracker you can expect that some labels will be set on the
  issue to help categorize it.

2.2 First response

  If your issue/bug report wasn't perfect at once (and few are), chances are
  that someone will ask follow-up questions. Which version did you use? Which
  options did you use? How often does the problem occur? How can we reproduce
  this problem? Which protocols does it involve? Or perhaps much more specific
  and deep diving questions. It all depends on your specific issue.

  You should then respond to these follow-up questions and provide more info
  about the problem, so that we can help you figure it out. Or maybe you can
  help us figure it out. An active back-and-forth communication is important
  and the key for finding a cure and landing a fix.

2.3 Not reproducible

  For problems that we can't reproduce and can't understand even after having
  gotten all the info we need and having studied the source code over again,
  are really hard to solve so then we may require further work from you who
  actually see or experience the problem.

2.4 Unresponsive

  If the problem haven't been understood or reproduced, and there's nobody
  responding to follow-up questions or questions asking for clarifications or
  for discussing possible ways to move forward with the task, we take that as
  a strong suggestion that the bug is not important.

  Unimportant issues will be closed as inactive sooner or later as they can't
  be fixed. The inactivity period (waiting for responses) should not be
  shorter than two weeks but may extend months.

2.5 Lack of time/interest

  Bugs that are filed and are understood can unfortunately end up in the
  "nobody cares enough about it to work on it" category. Such bugs are
  perfectly valid problems that *should* get fixed but apparently aren't. We
  try to mark such bugs as "KNOWN_BUGS material" after a time of inactivity
  and if no activity is noticed after yet some time those bugs are added to
  KNOWN_BUGS and are closed in the issue tracker.

2.6 KNOWN_BUGS

  This is a list of known bugs. Bugs we know exist and that have been pointed
  out but that haven't yet been fixed. The reasons for why they haven't been
  fixed can involve anything really, but the primary reason is that nobody has
  considered these problems to be important enough to spend the necessary time
  and effort to have them fixed.

  The KNOWN_BUGS are always up for grabs and we will always love the ones who
  bring one of them back to live and offers solutions to them.

  The KNOWN_BUGS document has a sibling document known as TODO.

2.7 TODO

  Issues that are filed or reported that aren't really bugs but more missing
  features or ideas for future improvements and so on are marked as
  'enhancement' or 'feature-request' and will be added to the TODO document
  instead and the issue is closed. We don't keep TODO items in the issue
  tracker.

  The TODO document is full of ideas and suggestions of what we can add or fix
  one day. You're always encouraged and free to grab one of those items and
  take up a discussion with the curl development team on how that could be
  implemented or provided in the project so that you can work on ticking it
  odd that document.

  If the issue is rather a bug and not a missing feature or functionality, it
  is listed in KNOWN_BUGS instead.

2.8 Closing off stalled bugs

  The issue and pull request trackers on https://github.com/curl/curl will
  only hold "active" entries (using a non-precise definition of what active
  actually is, but they're at least not completely dead). Those that are
  abandoned or in other ways dormant will be closed and sometimes added to
  TODO and KNOWN_BUGS instead.

  This way, we only have "active" issues open on github. Irrelevant issues and
  pull requests will not distract developers or casual visitors.
usr/share/doc/alt-curlssl/TODO000064400000135657151162240440012201 0ustar00                                  _   _ ____  _
                              ___| | | |  _ \| |
                             / __| | | | |_) | |
                            | (__| |_| |  _ <| |___
                             \___|\___/|_| \_\_____|

                Things that could be nice to do in the future

 Things to do in project curl. Please tell us what you think, contribute and
 send us patches that improve things!

 Be aware that these are things that we could do, or have once been considered
 things we could do. If you want to work on any of these areas, please
 consider bringing it up for discussions first on the mailing list so that we
 all agree it is still a good idea for the project!

 All bugs documented in the KNOWN_BUGS document are subject for fixing!

 1. libcurl
 1.2 More data sharing
 1.3 struct lifreq
 1.4 signal-based resolver timeouts
 1.5 get rid of PATH_MAX
 1.6 Modified buffer size approach
 1.7 Support HTTP/2 for HTTP(S) proxies
 1.8 CURLOPT_RESOLVE for any port number
 1.9 Cache negative name resolves
 1.10 auto-detect proxy
 1.11 minimize dependencies with dynamically loaded modules
 1.12 updated DNS server while running
 1.13 c-ares and CURLOPT_OPENSOCKETFUNCTION
 1.14 Typesafe curl_easy_setopt()
 1.15 Monitor connections in the connection pool
 1.16 Try to URL encode given URL
 1.17 Add support for IRIs
 1.18 try next proxy if one doesn't work
 1.19 Timeout idle connections from the pool
 1.20 SRV and URI DNS records
 1.21 Have the URL API offer IDN decoding
 1.22 CURLINFO_PAUSE_STATE
 1.23 Offer API to flush the connection pool
 1.24 TCP Fast Open for windows
 1.25 Expose tried IP addresses that failed
 1.26 CURL_REFUSE_CLEARTEXT
 1.27 hardcode the "localhost" addresses
 1.28 FD_CLOEXEC

 2. libcurl - multi interface
 2.1 More non-blocking
 2.2 Better support for same name resolves
 2.3 Non-blocking curl_multi_remove_handle()
 2.4 Split connect and authentication process
 2.5 Edge-triggered sockets should work
 2.6 multi upkeep

 3. Documentation
 3.2 Provide cmake config-file

 4. FTP
 4.1 HOST
 4.2 Alter passive/active on failure and retry
 4.3 Earlier bad letter detection
 4.4 REST for large files
 4.5 ASCII support
 4.6 GSSAPI via Windows SSPI
 4.7 STAT for LIST without data connection
 4.8 Option to ignore private IP addresses in PASV response

 5. HTTP
 5.1 Better persistency for HTTP 1.0
 5.2 support FF3 sqlite cookie files
 5.3 Rearrange request header order
 5.5 auth= in URLs
 5.6 Refuse "downgrade" redirects
 5.7 QUIC

 6. TELNET
 6.1 ditch stdin
 6.2 ditch telnet-specific select
 6.3 feature negotiation debug data

 7. SMTP
 7.1 Pipelining
 7.2 Enhanced capability support
 7.3 Add CURLOPT_MAIL_CLIENT option

 8. POP3
 8.1 Pipelining
 8.2 Enhanced capability support

 9. IMAP
 9.1 Enhanced capability support

 10. LDAP
 10.1 SASL based authentication mechanisms

 11. SMB
 11.1 File listing support
 11.2 Honor file timestamps
 11.3 Use NTLMv2
 11.4 Create remote directories

 12. New protocols
 12.1 RSYNC

 13. SSL
 13.1 Disable specific versions
 13.2 Provide mutex locking API
 13.3 Support in-memory certs/ca certs/keys
 13.4 Cache/share OpenSSL contexts
 13.5 Export session ids
 13.6 Provide callback for cert verification
 13.7 improve configure --with-ssl
 13.8 Support DANE
 13.9 Configurable loading of OpenSSL configuration file
 13.10 Support Authority Information Access certificate extension (AIA)
 13.11 Support intermediate & root pinning for PINNEDPUBLICKEY
 13.12 Support HSTS
 13.13 Support HPKP
 13.14 Support the clienthello extension

 14. GnuTLS
 14.1 SSL engine stuff
 14.2 check connection

 15. WinSSL/SChannel
 15.1 Add support for client certificate authentication
 15.3 Add support for the --ciphers option
 15.4 Add option to disable client certificate auto-send

 16. SASL
 16.1 Other authentication mechanisms
 16.2 Add QOP support to GSSAPI authentication
 16.3 Support binary messages (i.e.: non-base64)

 17. SSH protocols
 17.1 Multiplexing
 17.2 SFTP performance
 17.3 Support better than MD5 hostkey hash
 17.4 Support CURLOPT_PREQUOTE

 18. Command line tool
 18.1 sync
 18.2 glob posts
 18.3 prevent file overwriting
 18.4 simultaneous parallel transfers
 18.5 UTF-8 filenames in Content-Disposition
 18.6 warning when setting an option
 18.7 warning if curl version is not in sync with libcurl version
 18.8 offer color-coded HTTP header output
 18.9 Choose the name of file in braces for complex URLs
 18.10 improve how curl works in a windows console window
 18.11 Windows: set attribute 'archive' for completed downloads
 18.12 keep running, read instructions from pipe/socket
 18.13 support metalink in http headers
 18.14 --fail without --location should treat 3xx as a failure
 18.15 --retry should resume
 18.16 send only part of --data
 18.17 consider file name from the redirected URL with -O ?
 18.18 retry on network is unreachable
 18.19 expand ~/ in config files
 18.20 host name sections in config files

 19. Build
 19.1 roffit
 19.2 Enable PIE and RELRO by default

 20. Test suite
 20.1 SSL tunnel
 20.2 nicer lacking perl message
 20.3 more protocols supported
 20.4 more platforms supported
 20.5 Add support for concurrent connections
 20.6 Use the RFC6265 test suite
 20.7 Support LD_PRELOAD on macOS

 21. Next SONAME bump
 21.1 http-style HEAD output for FTP
 21.2 combine error codes
 21.3 extend CURLOPT_SOCKOPTFUNCTION prototype

 22. Next major release
 22.1 cleanup return codes
 22.2 remove obsolete defines
 22.3 size_t
 22.4 remove several functions
 22.5 remove CURLOPT_FAILONERROR
 22.7 remove progress meter from libcurl
 22.8 remove 'curl_httppost' from public

==============================================================================

1. libcurl

1.2 More data sharing

 curl_share_* functions already exist and work, and they can be extended to
 share more. For example, enable sharing of the ares channel.

1.3 struct lifreq

 Use 'struct lifreq' and SIOCGLIFADDR instead of 'struct ifreq' and
 SIOCGIFADDR on newer Solaris versions as they claim the latter is obsolete.
 To support IPv6 interface addresses for network interfaces properly.

1.4 signal-based resolver timeouts

 libcurl built without an asynchronous resolver library uses alarm() to time
 out DNS lookups. When a timeout occurs, this causes libcurl to jump from the
 signal handler back into the library with a sigsetjmp, which effectively
 causes libcurl to continue running within the signal handler. This is
 non-portable and could cause problems on some platforms. A discussion on the
 problem is available at https://curl.haxx.se/mail/lib-2008-09/0197.html

 Also, alarm() provides timeout resolution only to the nearest second. alarm
 ought to be replaced by setitimer on systems that support it.

1.5 get rid of PATH_MAX

 Having code use and rely on PATH_MAX is not nice:
 https://insanecoding.blogspot.com/2007/11/pathmax-simply-isnt.html

 Currently the SSH based code uses it a bit, but to remove PATH_MAX from there
 we need libssh2 to properly tell us when we pass in a too small buffer and
 its current API (as of libssh2 1.2.7) doesn't.

1.6 Modified buffer size approach

 Current libcurl allocates a fixed 16K size buffer for download and an
 additional 16K for upload. They are always unconditionally part of the easy
 handle. If CRLF translations are requested, an additional 32K "scratch
 buffer" is allocated. A total of 64K transfer buffers in the worst case.

 First, while the handles are not actually in use these buffers could be freed
 so that lingering handles just kept in queues or whatever waste less memory.

 Secondly, SFTP is a protocol that needs to handle many ~30K blocks at once
 since each need to be individually acked and therefore libssh2 must be
 allowed to send (or receive) many separate ones in parallel to achieve high
 transfer speeds. A current libcurl build with a 16K buffer makes that
 impossible, but one with a 512K buffer will reach MUCH faster transfers. But
 allocating 512K unconditionally for all buffers just in case they would like
 to do fast SFTP transfers at some point is not a good solution either.

 Dynamically allocate buffer size depending on protocol in use in combination
 with freeing it after each individual transfer? Other suggestions?

1.7 Support HTTP/2 for HTTP(S) proxies

 Support for doing HTTP/2 to HTTP and HTTPS proxies is still missing.

1.8 CURLOPT_RESOLVE for any port number

 This option allows applications to set a replacement IP address for a given
 host + port pair. Consider making support for providing a replacement address
 for the host name on all port numbers.

 See https://github.com/curl/curl/issues/1264

1.9 Cache negative name resolves

 A name resolve that has failed is likely to fail when made again within a
 short period of time. Currently we only cache positive responses.

1.10 auto-detect proxy

 libcurl could be made to detect the system proxy setup automatically and use
 that. On Windows, macOS and Linux desktops for example.

 The pull-request to use libproxy for this was deferred due to doubts on the
 reliability of the dependency and how to use it:
 https://github.com/curl/curl/pull/977

 libdetectproxy is a (C++) library for detecting the proxy on Windows
 https://github.com/paulharris/libdetectproxy

1.11 minimize dependencies with dynamically loaded modules

 We can create a system with loadable modules/plug-ins, where these modules
 would be the ones that link to 3rd party libs. That would allow us to avoid
 having to load ALL dependencies since only the necessary ones for this
 app/invoke/used protocols would be necessary to load.  See
 https://github.com/curl/curl/issues/349

1.12 updated DNS server while running

 If /etc/resolv.conf gets updated while a program using libcurl is running, it
 is may cause name resolves to fail unless res_init() is called. We should
 consider calling res_init() + retry once unconditionally on all name resolve
 failures to mitigate against this. Firefox works like that. Note that Windows
 doesn't have res_init() or an alternative.

 https://github.com/curl/curl/issues/2251

1.13 c-ares and CURLOPT_OPENSOCKETFUNCTION

 curl will create most sockets via the CURLOPT_OPENSOCKETFUNCTION callback and
 close them with the CURLOPT_CLOSESOCKETFUNCTION callback. However, c-ares
 does not use those functions and instead opens and closes the sockets
 itself. This means that when curl passes the c-ares socket to the
 CURLMOPT_SOCKETFUNCTION it isn't owned by the application like other sockets.

 See https://github.com/curl/curl/issues/2734

1.14 Typesafe curl_easy_setopt()

 One of the most common problems in libcurl using applications is the lack of
 type checks for curl_easy_setopt() which happens because it accepts varargs
 and thus can take any type.

 One possible solution to this is to introduce a few different versions of the
 setopt version for the different kinds of data you can set.

  curl_easy_set_num() - sets a long value

  curl_easy_set_large() - sets a curl_off_t value

  curl_easy_set_ptr() - sets a pointer

  curl_easy_set_cb() - sets a callback PLUS its callback data

1.15 Monitor connections in the connection pool

 libcurl's connection cache or pool holds a number of open connections for the
 purpose of possible subsequent connection reuse. It may contain a few up to a
 significant amount of connections. Currently, libcurl leaves all connections
 as they are and first when a connection is iterated over for matching or
 reuse purpose it is verified that it is still alive.

 Those connections may get closed by the server side for idleness or they may
 get a HTTP/2 ping from the peer to verify that they're still alive. By adding
 monitoring of the connections while in the pool, libcurl can detect dead
 connections (and close them) better and earlier, and it can handle HTTP/2
 pings to keep such ones alive even when not actively doing transfers on them.

1.16 Try to URL encode given URL

 Given a URL that for example contains spaces, libcurl could have an option
 that would try somewhat harder than it does now and convert spaces to %20 and
 perhaps URL encoded byte values over 128 etc (basically do what the redirect
 following code already does).

 https://github.com/curl/curl/issues/514

1.17 Add support for IRIs

 IRIs (RFC 3987) allow localized, non-ascii, names in the URL. To properly
 support this, curl/libcurl would need to translate/encode the given input
 from the input string encoding into percent encoded output "over the wire".

 To make that work smoothly for curl users even on Windows, curl would
 probably need to be able to convert from several input encodings.

1.18 try next proxy if one doesn't work

 Allow an application to specify a list of proxies to try, and failing to
 connect to the first go on and try the next instead until the list is
 exhausted. Browsers support this feature at least when they specify proxies
 using PACs.

 https://github.com/curl/curl/issues/896

1.19 Timeout idle connections from the pool

 libcurl currently keeps connections in its connection pool for an indefinite
 period of time, until it either gets reused, gets noticed that it has been
 closed by the server or gets pruned to make room for a new connection.

 To reduce overhead (especially for when we add monitoring of the connections
 in the pool), we should introduce a timeout so that connections that have
 been idle for N seconds get closed.

1.20 SRV and URI DNS records

 Offer support for resolving SRV and URI DNS records for libcurl to know which
 server to connect to for various protocols (including HTTP!).

1.21 Have the URL API offer IDN decoding

 Similar to how URL decoding/encoding is done, we could have URL functions to
 convert IDN host names to punycode (probably not the reverse).
 https://github.com/curl/curl/issues/3232

1.22 CURLINFO_PAUSE_STATE

 Return information about the transfer's current pause state, in both
 directions. https://github.com/curl/curl/issues/2588

1.23 Offer API to flush the connection pool

 Sometimes applications want to flush all the existing connections kept alive.
 An API could allow a forced flush or just a forced loop that would properly
 close all connections that have been closed by the server already.

1.24 TCP Fast Open for windows

 libcurl supports the CURLOPT_TCP_FASTOPEN option since 7.49.0 for Linux and
 Mac OS. Windows supports TCP Fast Open starting with Windows 10, version 1607
 and we should add support for it.

1.25 Expose tried IP addresses that failed

 When libcurl fails to connect to a host, it should be able to offer the
 application the list of IP addresses that were used in the attempt.

 https://github.com/curl/curl/issues/2126

1.26 CURL_REFUSE_CLEARTEXT

 An environment variable that when set will make libcurl refuse to use any
 cleartext network protocol. That's all non-encrypted ones (FTP, HTTP, Gopher,
 etc). By adding the check to libcurl and not just curl, this environment
 variable can then help users to block all libcurl-using programs from
 accessing the network using unsafe protocols.

 The variable could be given some sort of syntax or different levels and be
 used to also allow for example users to refuse libcurl to do transfers with
 HTTPS certificate checks disabled.

 It could also automatically refuse usernames in URLs when set
 (see CURLOPT_DISALLOW_USERNAME_IN_URL)

1.27 hardcode the "localhost" addresses

 There's this new spec getting adopted that says "localhost" should always and
 unconditionally be a local address and not get resolved by a DNS server. A
 fine way for curl to fix this would be to simply hard-code the response to
 127.0.0.1 and/or ::1 (depending on what IP versions that are requested). This
 is what the browsers probably will do with this hostname.

 https://bugzilla.mozilla.org/show_bug.cgi?id=1220810

 https://tools.ietf.org/html/draft-ietf-dnsop-let-localhost-be-localhost-02

1.28 FD_CLOEXEC

 It sets the close-on-exec flag for the file descriptor, which causes the file
 descriptor to be automatically (and atomically) closed when any of the
 exec-family functions succeed. Should probably be set by default?

 https://github.com/curl/curl/issues/2252

2. libcurl - multi interface

2.1 More non-blocking

 Make sure we don't ever loop because of non-blocking sockets returning
 EWOULDBLOCK or similar. Blocking cases include:

 - Name resolves on non-windows unless c-ares or the threaded resolver is used
 - SOCKS proxy handshakes
 - file:// transfers
 - TELNET transfers
 - The "DONE" operation (post transfer protocol-specific actions) for the
   protocols SFTP, SMTP, FTP. Fixing Curl_done() for this is a worthy task.

2.2 Better support for same name resolves

 If a name resolve has been initiated for name NN and a second easy handle
 wants to resolve that name as well, make it wait for the first resolve to end
 up in the cache instead of doing a second separate resolve. This is
 especially needed when adding many simultaneous handles using the same host
 name when the DNS resolver can get flooded.

2.3 Non-blocking curl_multi_remove_handle()

 The multi interface has a few API calls that assume a blocking behavior, like
 add_handle() and remove_handle() which limits what we can do internally. The
 multi API need to be moved even more into a single function that "drives"
 everything in a non-blocking manner and signals when something is done. A
 remove or add would then only ask for the action to get started and then
 multi_perform() etc still be called until the add/remove is completed.

2.4 Split connect and authentication process

 The multi interface treats the authentication process as part of the connect
 phase. As such any failures during authentication won't trigger the relevant
 QUIT or LOGOFF for protocols such as IMAP, POP3 and SMTP.

2.5 Edge-triggered sockets should work

 The multi_socket API should work with edge-triggered socket events. One of
 the internal actions that need to be improved for this to work perfectly is
 the 'maxloops' handling in transfer.c:readwrite_data().

2.6 multi upkeep

 In libcurl 7.62.0 we introduced curl_easy_upkeep. It unfortunately only works
 on easy handles. We should introduces a version of that for the multi handle,
 and also consider doing "upkeep" automatically on connections in the
 connection pool when the multi handle is in used.

 See https://github.com/curl/curl/issues/3199

3. Documentation

3.2 Provide cmake config-file

 A config-file package is a set of files provided by us to allow applications
 to write cmake scripts to find and use libcurl easier. See
 https://github.com/curl/curl/issues/885

4. FTP

4.1 HOST

 HOST is a command for a client to tell which host name to use, to offer FTP
 servers named-based virtual hosting:

 https://tools.ietf.org/html/rfc7151

4.2 Alter passive/active on failure and retry

 When trying to connect passively to a server which only supports active
 connections, libcurl returns CURLE_FTP_WEIRD_PASV_REPLY and closes the
 connection. There could be a way to fallback to an active connection (and
 vice versa). https://curl.haxx.se/bug/feature.cgi?id=1754793

4.3 Earlier bad letter detection

 Make the detection of (bad) %0d and %0a codes in FTP URL parts earlier in the
 process to avoid doing a resolve and connect in vain.

4.4 REST for large files

 REST fix for servers not behaving well on >2GB requests. This should fail if
 the server doesn't set the pointer to the requested index. The tricky
 (impossible?) part is to figure out if the server did the right thing or not.

4.5 ASCII support

 FTP ASCII transfers do not follow RFC959. They don't convert the data
 accordingly.

4.6 GSSAPI via Windows SSPI

 In addition to currently supporting the SASL GSSAPI mechanism (Kerberos V5)
 via third-party GSS-API libraries, such as Heimdal or MIT Kerberos, also add
 support for GSSAPI authentication via Windows SSPI.

4.7 STAT for LIST without data connection

 Some FTP servers allow STAT for listing directories instead of using LIST,
 and the response is then sent over the control connection instead of as the
 otherwise usedw data connection: https://www.nsftools.com/tips/RawFTP.htm#STAT

 This is not detailed in any FTP specification.

4.8 Option to ignore private IP addresses in PASV response

 Some servers respond with and some other FTP client implementations can
 ignore private (RFC 1918 style) IP addresses when received in PASV responses.
 To consider for libcurl as well. See https://github.com/curl/curl/issues/1455

5. HTTP

5.1 Better persistency for HTTP 1.0

 "Better" support for persistent connections over HTTP 1.0
 https://curl.haxx.se/bug/feature.cgi?id=1089001

5.2 support FF3 sqlite cookie files

 Firefox 3 is changing from its former format to a a sqlite database instead.
 We should consider how (lib)curl can/should support this.
 https://curl.haxx.se/bug/feature.cgi?id=1871388

5.3 Rearrange request header order

 Server implementors often make an effort to detect browser and to reject
 clients it can detect to not match. One of the last details we cannot yet
 control in libcurl's HTTP requests, which also can be exploited to detect
 that libcurl is in fact used even when it tries to impersonate a browser, is
 the order of the request headers. I propose that we introduce a new option in
 which you give headers a value, and then when the HTTP request is built it
 sorts the headers based on that number. We could then have internally created
 headers use a default value so only headers that need to be moved have to be
 specified.

5.5 auth= in URLs

 Add the ability to specify the preferred authentication mechanism to use by
 using ;auth=<mech> in the login part of the URL.

 For example:

 http://test:pass;auth=NTLM@example.com would be equivalent to specifying --user
 test:pass;auth=NTLM or --user test:pass --ntlm from the command line.

 Additionally this should be implemented for proxy base URLs as well.

5.6 Refuse "downgrade" redirects

 See https://github.com/curl/curl/issues/226

 Consider a way to tell curl to refuse to "downgrade" protocol with a redirect
 and/or possibly a bit that refuses redirect to change protocol completely.

5.7 QUIC

 The standardization process of QUIC has been taken to the IETF and can be
 followed on the [IETF QUIC Mailing
 list](https://www.ietf.org/mailman/listinfo/quic). I'd like us to get on the
 bandwagon. Ideally, this would be done with a separate library/project to
 handle the binary/framing layer in a similar fashion to how HTTP/2 is
 implemented. This, to allow other projects to benefit from the work and to
 thus broaden the interest and chance of others to participate.


6. TELNET

6.1 ditch stdin

Reading input (to send to the remote server) on stdin is a crappy solution for
library purposes. We need to invent a good way for the application to be able
to provide the data to send.

6.2 ditch telnet-specific select

 Move the telnet support's network select() loop go away and merge the code
 into the main transfer loop. Until this is done, the multi interface won't
 work for telnet.

6.3 feature negotiation debug data

  Add telnet feature negotiation data to the debug callback as header data.


7. SMTP

7.1 Pipelining

 Add support for pipelining emails.

7.2 Enhanced capability support

 Add the ability, for an application that uses libcurl, to obtain the list of
 capabilities returned from the EHLO command.

7.3 Add CURLOPT_MAIL_CLIENT option

 Rather than use the URL to specify the mail client string to present in the
 HELO and EHLO commands, libcurl should support a new CURLOPT specifically for
 specifying this data as the URL is non-standard and to be honest a bit of a
 hack ;-)

 Please see the following thread for more information:
 https://curl.haxx.se/mail/lib-2012-05/0178.html


8. POP3

8.1 Pipelining

 Add support for pipelining commands.

8.2 Enhanced capability support

 Add the ability, for an application that uses libcurl, to obtain the list of
 capabilities returned from the CAPA command.

9. IMAP

9.1 Enhanced capability support

 Add the ability, for an application that uses libcurl, to obtain the list of
 capabilities returned from the CAPABILITY command.

10. LDAP

10.1 SASL based authentication mechanisms

 Currently the LDAP module only supports ldap_simple_bind_s() in order to bind
 to an LDAP server. However, this function sends username and password details
 using the simple authentication mechanism (as clear text). However, it should
 be possible to use ldap_bind_s() instead specifying the security context
 information ourselves.

11. SMB

11.1 File listing support

Add support for listing the contents of a SMB share. The output should probably
be the same as/similar to FTP.

11.2 Honor file timestamps

The timestamp of the transferred file should reflect that of the original file.

11.3 Use NTLMv2

Currently the SMB authentication uses NTLMv1.

11.4 Create remote directories

Support for creating remote directories when uploading a file to a directory
that doesn't exist on the server, just like --ftp-create-dirs.

12. New protocols

12.1 RSYNC

 There's no RFC for the protocol or an URI/URL format.  An implementation
 should most probably use an existing rsync library, such as librsync.

13. SSL

13.1 Disable specific versions

 Provide an option that allows for disabling specific SSL versions, such as
 SSLv2 https://curl.haxx.se/bug/feature.cgi?id=1767276

13.2 Provide mutex locking API

 Provide a libcurl API for setting mutex callbacks in the underlying SSL
 library, so that the same application code can use mutex-locking
 independently of OpenSSL or GnutTLS being used.

13.3 Support in-memory certs/ca certs/keys

 You can specify the private and public keys for SSH/SSL as file paths. Some
 programs want to avoid using files and instead just pass them as in-memory
 data blobs. There's probably a challenge to make this work across the
 plethory of different TLS and SSH backends that curl supports.
 https://github.com/curl/curl/issues/2310

13.4 Cache/share OpenSSL contexts

 "Look at SSL cafile - quick traces look to me like these are done on every
 request as well, when they should only be necessary once per SSL context (or
 once per handle)". The major improvement we can rather easily do is to make
 sure we don't create and kill a new SSL "context" for every request, but
 instead make one for every connection and re-use that SSL context in the same
 style connections are re-used. It will make us use slightly more memory but
 it will libcurl do less creations and deletions of SSL contexts.

 Technically, the "caching" is probably best implemented by getting added to
 the share interface so that easy handles who want to and can reuse the
 context specify that by sharing with the right properties set.

 https://github.com/curl/curl/issues/1110

13.5 Export session ids

 Add an interface to libcurl that enables "session IDs" to get
 exported/imported. Cris Bailiff said: "OpenSSL has functions which can
 serialise the current SSL state to a buffer of your choice, and recover/reset
 the state from such a buffer at a later date - this is used by mod_ssl for
 apache to implement and SSL session ID cache".

13.6 Provide callback for cert verification

 OpenSSL supports a callback for customised verification of the peer
 certificate, but this doesn't seem to be exposed in the libcurl APIs. Could
 it be? There's so much that could be done if it were!

13.7 improve configure --with-ssl

 make the configure --with-ssl option first check for OpenSSL, then GnuTLS,
 then NSS...

13.8 Support DANE

 DNS-Based Authentication of Named Entities (DANE) is a way to provide SSL
 keys and certs over DNS using DNSSEC as an alternative to the CA model.
 https://www.rfc-editor.org/rfc/rfc6698.txt

 An initial patch was posted by Suresh Krishnaswamy on March 7th 2013
 (https://curl.haxx.se/mail/lib-2013-03/0075.html) but it was a too simple
 approach. See Daniel's comments:
 https://curl.haxx.se/mail/lib-2013-03/0103.html . libunbound may be the
 correct library to base this development on.

 Björn Stenberg wrote a separate initial take on DANE that was never
 completed.

13.9 Configurable loading of OpenSSL configuration file

 libcurl calls the OpenSSL function CONF_modules_load_file() in openssl.c,
 Curl_ossl_init(). "We regard any changes in the OpenSSL configuration as a
 security risk or at least as unnecessary."

 Please add a configuration switch or something similar to disable the
 CONF_modules_load_file() call.

 See https://github.com/curl/curl/issues/2724

13.10 Support Authority Information Access certificate extension (AIA)

 AIA can provide various things like CRLs but more importantly information
 about intermediate CA certificates that can allow validation path to be
 fulfilled when the HTTPS server doesn't itself provide them.

 Since AIA is about downloading certs on demand to complete a TLS handshake,
 it is probably a bit tricky to get done right.

 See https://github.com/curl/curl/issues/2793

13.11 Support intermediate & root pinning for PINNEDPUBLICKEY

 CURLOPT_PINNEDPUBLICKEY does not consider the hashes of intermediate & root
 certificates when comparing the pinned keys. Therefore it is not compatible
 with "HTTP Public Key Pinning" as there also intermediate and root certificates
 can be pinned. This is very useful as it prevents webadmins from "locking
 themself out of their servers".

 Adding this feature would make curls pinning 100% compatible to HPKP and allow
 more flexible pinning.

13.12 Support HSTS

 "HTTP Strict Transport Security" is TOFU (trust on first use), time-based
 features indicated by a HTTP header send by the webserver. It is widely used
 in browsers and it's purpose is to prevent insecure HTTP connections after
 a previous HTTPS connection. It protects against SSLStripping attacks.

 Doc: https://developer.mozilla.org/en-US/docs/Web/Security/HTTP_strict_transport_security
 RFC 6797: https://tools.ietf.org/html/rfc6797

13.13 Support HPKP

 "HTTP Public Key Pinning" is TOFU (trust on first use), time-based
 features indicated by a HTTP header send by the webserver. It's purpose is
 to prevent Man-in-the-middle attacks by trusted CAs by allowing webadmins
 to specify which CAs/certificates/public keys to trust when connection to
 their websites.

 It can be build based on PINNEDPUBLICKEY.

 Wikipedia: https://en.wikipedia.org/wiki/HTTP_Public_Key_Pinning
 OWASP: https://www.owasp.org/index.php/Certificate_and_Public_Key_Pinning
 Doc: https://developer.mozilla.org/de/docs/Web/Security/Public_Key_Pinning
 RFC: https://tools.ietf.org/html/draft-ietf-websec-key-pinning-21

13.14 Support the clienthello extension

 Certain stupid networks and middle boxes have a problem with SSL handshake
 pakets that are within a certain size range because how that sets some bits
 that previously (in older TLS version) were not set. The clienthello
 extension adds padding to avoid that size range.

 https://tools.ietf.org/html/rfc7685
 https://github.com/curl/curl/issues/2299

14. GnuTLS

14.1 SSL engine stuff

 Is this even possible?

14.2 check connection

 Add a way to check if the connection seems to be alive, to correspond to the
 SSL_peak() way we use with OpenSSL.

15. WinSSL/SChannel

15.1 Add support for client certificate authentication

 WinSSL/SChannel currently makes use of the OS-level system and user
 certificate and private key stores. This does not allow the application
 or the user to supply a custom client certificate using curl or libcurl.

 Therefore support for the existing -E/--cert and --key options should be
 implemented by supplying a custom certificate to the SChannel APIs, see:
 - Getting a Certificate for Schannel
   https://msdn.microsoft.com/en-us/library/windows/desktop/aa375447.aspx

15.3 Add support for the --ciphers option

 The cipher suites used by WinSSL/SChannel are configured on an OS-level
 instead of an application-level. This does not allow the application or
 the user to customize the configured cipher suites using curl or libcurl.

 Therefore support for the existing --ciphers option should be implemented
 by mapping the OpenSSL/GnuTLS cipher suites to the SChannel APIs, see
 - Specifying Schannel Ciphers and Cipher Strengths
   https://msdn.microsoft.com/en-us/library/windows/desktop/aa380161.aspx

15.4 Add option to disable client certificate auto-send

 Microsoft says "By default, Schannel will, with no notification to the client,
 attempt to locate a client certificate and send it to the server." That could
 be considered a privacy violation and unexpected.

 Some Windows users have come to expect that default behavior and to change the
 default to make it consistent with other SSL backends would be a breaking
 change. An option should be added that can be used to disable the default
 Schannel auto-send behavior.

 https://github.com/curl/curl/issues/2262

16. SASL

16.1 Other authentication mechanisms

 Add support for other authentication mechanisms such as OLP,
 GSS-SPNEGO and others.

16.2 Add QOP support to GSSAPI authentication

 Currently the GSSAPI authentication only supports the default QOP of auth
 (Authentication), whilst Kerberos V5 supports both auth-int (Authentication
 with integrity protection) and auth-conf (Authentication with integrity and
 privacy protection).

16.3 Support binary messages (i.e.: non-base64)

  Mandatory to support LDAP SASL authentication.


17. SSH protocols

17.1 Multiplexing

 SSH is a perfectly fine multiplexed protocols which would allow libcurl to do
 multiple parallel transfers from the same host using the same connection,
 much in the same spirit as HTTP/2 does. libcurl however does not take
 advantage of that ability but will instead always create a new connection for
 new transfers even if an existing connection already exists to the host.

 To fix this, libcurl would have to detect an existing connection and "attach"
 the new transfer to the existing one.

17.2 SFTP performance

 libcurl's SFTP transfer performance is sub par and can be improved, mostly by
 the approach mentioned in "1.6 Modified buffer size approach".

17.3 Support better than MD5 hostkey hash

 libcurl offers the CURLOPT_SSH_HOST_PUBLIC_KEY_MD5 option for verifying the
 server's key. MD5 is generally being deprecated so we should implement
 support for stronger hashing algorithms. libssh2 itself is what provides this
 underlying functionality and it supports at least SHA-1 as an alternative.
 SHA-1 is also being deprecated these days so we should consider working with
 libssh2 to instead offer support for SHA-256 or similar.

17.4 Support CURLOPT_PREQUOTE

 The two other QUOTE options are supported for SFTP, but this was left out for
 unknown reasons!

18. Command line tool

18.1 sync

 "curl --sync http://example.com/feed[1-100].rss" or
 "curl --sync http://example.net/{index,calendar,history}.html"

 Downloads a range or set of URLs using the remote name, but only if the
 remote file is newer than the local file. A Last-Modified HTTP date header
 should also be used to set the mod date on the downloaded file.

18.2 glob posts

 Globbing support for -d and -F, as in 'curl -d "name=foo[0-9]" URL'.
 This is easily scripted though.

18.3 prevent file overwriting

 Add an option that prevents curl from overwriting existing local files. When
 used, and there already is an existing file with the target file name
 (either -O or -o), a number should be appended (and increased if already
 existing). So that index.html becomes first index.html.1 and then
 index.html.2 etc.

18.4 simultaneous parallel transfers

 The client could be told to use maximum N simultaneous parallel transfers and
 then just make sure that happens. It should of course not make more than one
 connection to the same remote host. This would require the client to use the
 multi interface. https://curl.haxx.se/bug/feature.cgi?id=1558595

 Using the multi interface would also allow properly using parallel transfers
 with HTTP/2 and supporting HTTP/2 server push from the command line.

18.5 UTF-8 filenames in Content-Disposition

 RFC 6266 documents how UTF-8 names can be passed to a client in the
 Content-Disposition header, and curl does not support this.

 https://github.com/curl/curl/issues/1888

18.6 warning when setting an option

 Display a warning when libcurl returns an error when setting an option.
 This can be useful to tell when support for a particular feature hasn't been
 compiled into the library.

18.7 warning if curl version is not in sync with libcurl version

 This is usually a sign of a funny, weird or unexpected install situations
 that aren't always quickly nor easily detected by users. curl and libcurl are
 always released in sync and should use the same version numbers unless very
 special situations.

18.8 offer color-coded HTTP header output

 By offering different color output on the header name and the header
 contents, they could be made more readable and thus help users working on
 HTTP services.

18.9 Choose the name of file in braces for complex URLs

 When using braces to download a list of URLs and you use complicated names
 in the list of alternatives, it could be handy to allow curl to use other
 names when saving.

 Consider a way to offer that. Possibly like
 {partURL1:name1,partURL2:name2,partURL3:name3} where the name following the
 colon is the output name.

 See https://github.com/curl/curl/issues/221

18.10 improve how curl works in a windows console window

 If you pull the scrollbar when transferring with curl in a Windows console
 window, the transfer is interrupted and can get disconnected. This can
 probably be improved. See https://github.com/curl/curl/issues/322

18.11 Windows: set attribute 'archive' for completed downloads

 The archive bit (FILE_ATTRIBUTE_ARCHIVE, 0x20) separates files that shall be
 backed up from those that are either not ready or have not changed.

 Downloads in progress are neither ready to be backed up, nor should they be
 opened by a different process. Only after a download has been completed it's
 sensible to include it in any integer snapshot or backup of the system.

 See https://github.com/curl/curl/issues/3354

18.12 keep running, read instructions from pipe/socket

 Provide an option that makes curl not exit after the last URL (or even work
 without a given URL), and then make it read instructions passed on a pipe or
 over a socket to make further instructions so that a second subsequent curl
 invoke can talk to the still running instance and ask for transfers to get
 done, and thus maintain its connection pool, DNS cache and more.

18.13 support metalink in http headers

 Curl has support for downloading a metalink xml file, processing it, and then
 downloading the target of the metalink. This is done via the --metalink option.
 It would be nice if metalink also supported downloading via metalink
 information that is stored in HTTP headers (RFC 6249). Theoretically this could
 also be supported with the --metalink option.

 See https://tools.ietf.org/html/rfc6249

 See also https://lists.gnu.org/archive/html/bug-wget/2015-06/msg00034.html for
 an implematation of this in wget.

18.14 --fail without --location should treat 3xx as a failure

 To allow a command line like this to detect a redirect and consider it a
 failure:

    curl -v --fail -O https://example.com/curl-7.48.0.tar.gz

 ... --fail must treat 3xx responses as failures too. The least problematic
 way to implement this is probably to add that new logic in the command line
 tool only and not in the underlying CURLOPT_FAILONERROR logic.

18.15 --retry should resume

 When --retry is used and curl actually retries transfer, it should use the
 already transferred data and do a resumed transfer for the rest (when
 possible) so that it doesn't have to transfer the same data again that was
 already transferred before the retry.

 See https://github.com/curl/curl/issues/1084

18.16 send only part of --data

 When the user only wants to send a small piece of the data provided with
 --data or --data-binary, like when that data is a huge file, consider a way
 to specify that curl should only send a piece of that. One suggested syntax
 would be: "--data-binary @largefile.zip!1073741823-2147483647".

 See https://github.com/curl/curl/issues/1200

18.17 consider file name from the redirected URL with -O ?

 When a user gives a URL and uses -O, and curl follows a redirect to a new
 URL, the file name is not extracted and used from the newly redirected-to URL
 even if the new URL may have a much more sensible file name.

 This is clearly documented and helps for security since there's no surprise
 to users which file name that might get overwritten. But maybe a new option
 could allow for this or maybe -J should imply such a treatment as well as -J
 already allows for the server to decide what file name to use so it already
 provides the "may overwrite any file" risk.

 This is extra tricky if the original URL has no file name part at all since
 then the current code path will error out with an error message, and we can't
 *know* already at that point if curl will be redirected to a URL that has a
 file name...

 See https://github.com/curl/curl/issues/1241

18.18 retry on network is unreachable

 The --retry option retries transfers on "transient failures". We later added
 --retry-connrefused to also retry for "connection refused" errors.

 Suggestions have been brought to also allow retry on "network is unreachable"
 errors and while totally reasonable, maybe we should consider a way to make
 this more configurable than to add a new option for every new error people
 want to retry for?

 https://github.com/curl/curl/issues/1603

18.19 expand ~/ in config files

 For example .curlrc could benefit from being able to do this.

 See https://github.com/curl/curl/issues/2317

18.20 host name sections in config files

 config files would be more powerful if they could set different
 configurations depending on used URLs, host name or possibly origin. Then a
 default .curlrc could a specific user-agent only when doing requests against
 a certain site.


19. Build

19.1 roffit

 Consider extending 'roffit' to produce decent ASCII output, and use that
 instead of (g)nroff when building src/tool_hugehelp.c

19.2 Enable PIE and RELRO by default

 Especially when having programs that execute curl via the command line, PIE
 renders the exploitation of memory corruption vulnerabilities a lot more
 difficult. This can be attributed to the additional information leaks being
 required to conduct a successful attack. RELRO, on the other hand, masks
 different binary sections like the GOT as read-only and thus kills a handful
 of techniques that come in handy when attackers are able to arbitrarily
 overwrite memory. A few tests showed that enabling these features had close
 to no impact, neither on the performance nor on the general functionality of
 curl.


20. Test suite

20.1 SSL tunnel

 Make our own version of stunnel for simple port forwarding to enable HTTPS
 and FTP-SSL tests without the stunnel dependency, and it could allow us to
 provide test tools built with either OpenSSL or GnuTLS

20.2 nicer lacking perl message

 If perl wasn't found by the configure script, don't attempt to run the tests
 but explain something nice why it doesn't.

20.3 more protocols supported

 Extend the test suite to include more protocols. The telnet could just do FTP
 or http operations (for which we have test servers).

20.4 more platforms supported

 Make the test suite work on more platforms. OpenBSD and Mac OS. Remove
 fork()s and it should become even more portable.

20.5 Add support for concurrent connections

 Tests 836, 882 and 938 were designed to verify that separate connections aren't
 used when using different login credentials in protocols that shouldn't re-use
 a connection under such circumstances.

 Unfortunately, ftpserver.pl doesn't appear to support multiple concurrent
 connections. The read while() loop seems to loop until it receives a disconnect
 from the client, where it then enters the waiting for connections loop. When
 the client opens a second connection to the server, the first connection hasn't
 been dropped (unless it has been forced - which we shouldn't do in these tests)
 and thus the wait for connections loop is never entered to receive the second
 connection.

20.6 Use the RFC6265 test suite

 A test suite made for HTTP cookies (RFC 6265) by Adam Barth is available at
 https://github.com/abarth/http-state/tree/master/tests

 It'd be really awesome if someone would write a script/setup that would run
 curl with that test suite and detect deviances. Ideally, that would even be
 incorporated into our regular test suite.

20.7 Support LD_PRELOAD on macOS

 LD_RELOAD doesn't work on macOS, but there are tests which require it to run
 properly. Look into making the preload support in runtests.pl portable such
 that it uses DYLD_INSERT_LIBRARIES on macOS.

21. Next SONAME bump

21.1 http-style HEAD output for FTP

 #undef CURL_FTP_HTTPSTYLE_HEAD in lib/ftp.c to remove the HTTP-style headers
 from being output in NOBODY requests over FTP

21.2 combine error codes

 Combine some of the error codes to remove duplicates.  The original
 numbering should not be changed, and the old identifiers would be
 macroed to the new ones in an CURL_NO_OLDIES section to help with
 backward compatibility.

 Candidates for removal and their replacements:

    CURLE_FILE_COULDNT_READ_FILE => CURLE_REMOTE_FILE_NOT_FOUND

    CURLE_FTP_COULDNT_RETR_FILE => CURLE_REMOTE_FILE_NOT_FOUND

    CURLE_FTP_COULDNT_USE_REST => CURLE_RANGE_ERROR

    CURLE_FUNCTION_NOT_FOUND => CURLE_FAILED_INIT

    CURLE_LDAP_INVALID_URL => CURLE_URL_MALFORMAT

    CURLE_TFTP_NOSUCHUSER => CURLE_TFTP_ILLEGAL

    CURLE_TFTP_NOTFOUND => CURLE_REMOTE_FILE_NOT_FOUND

    CURLE_TFTP_PERM => CURLE_REMOTE_ACCESS_DENIED

21.3 extend CURLOPT_SOCKOPTFUNCTION prototype

 The current prototype only provides 'purpose' that tells what the
 connection/socket is for, but not any protocol or similar. It makes it hard
 for applications to differentiate on TCP vs UDP and even HTTP vs FTP and
 similar.

22. Next major release

22.1 cleanup return codes

 curl_easy_cleanup() returns void, but curl_multi_cleanup() returns a
 CURLMcode. These should be changed to be the same.

22.2 remove obsolete defines

 remove obsolete defines from curl/curl.h

22.3 size_t

 make several functions use size_t instead of int in their APIs

22.4 remove several functions

 remove the following functions from the public API:

 curl_getenv

 curl_mprintf (and variations)

 curl_strequal

 curl_strnequal

 They will instead become curlx_ - alternatives. That makes the curl app
 still capable of using them, by building with them from source.

 These functions have no purpose anymore:

 curl_multi_socket

 curl_multi_socket_all

22.5 remove CURLOPT_FAILONERROR

 Remove support for CURLOPT_FAILONERROR, it has gotten too kludgy and weird
 internally. Let the app judge success or not for itself.

22.7 remove progress meter from libcurl

 The internally provided progress meter output doesn't belong in the library.
 Basically no application wants it (apart from curl) but instead applications
 can and should do their own progress meters using the progress callback.

 The progress callback should then be bumped as well to get proper 64bit
 variable types passed to it instead of doubles so that big files work
 correctly.

22.8 remove 'curl_httppost' from public

 curl_formadd() was made to fill in a public struct, but the fact that the
 struct is public is never really used by application for their own advantage
 but instead often restricts how the form functions can or can't be modified.

 Changing them to return a private handle will benefit the implementation and
 allow us much greater freedoms while still maintaining a solid API and ABI.
usr/share/doc/alt-curlssl/COPYING000064400000002100151162240510012512 0ustar00COPYRIGHT AND PERMISSION NOTICE

Copyright (c) 1996 - 2019, Daniel Stenberg, <daniel@haxx.se>, and many
contributors, see the THANKS file.

All rights reserved.

Permission to use, copy, modify, and distribute this software for any purpose
with or without fee is hereby granted, provided that the above copyright
notice and this permission notice appear in all copies.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN
NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE
OR OTHER DEALINGS IN THE SOFTWARE.

Except as contained in this notice, the name of a copyright holder shall not
be used in advertising or otherwise to promote the sale, use or other dealings
in this Software without prior written authorization of the copyright holder.
usr/share/doc/alt-curlssl/README000064400000003112151162240570012351 0ustar00                                  _   _ ____  _
                              ___| | | |  _ \| |
                             / __| | | | |_) | |
                            | (__| |_| |  _ <| |___
                             \___|\___/|_| \_\_____|

README

  Curl is a command line tool for transferring data specified with URL
  syntax. Find out how to use curl by reading the curl.1 man page or the
  MANUAL document. Find out how to install Curl by reading the INSTALL
  document.

  libcurl is the library curl is using to do its job. It is readily
  available to be used by your software. Read the libcurl.3 man page to
  learn how!

  You find answers to the most frequent questions we get in the FAQ document.

  Study the COPYING file for distribution terms and similar. If you distribute
  curl binaries or other binaries that involve libcurl, you might enjoy the
  LICENSE-MIXING document.

CONTACT

  If you have problems, questions, ideas or suggestions, please contact us
  by posting to a suitable mailing list. See https://curl.haxx.se/mail/

  All contributors to the project are listed in the THANKS document.

WEB SITE

  Visit the curl web site for the latest news and downloads:

        https://curl.haxx.se/

GIT

  To download the very latest source off the GIT server do this:

    git clone https://github.com/curl/curl.git

  (you'll get a directory named curl created, filled with the source code)

NOTICE

  Curl contains pieces of source code that is Copyright (c) 1998, 1999
  Kungliga Tekniska Högskolan. This notice is included here to comply with the
  distribution terms.
usr/share/doc/alt-curlssl/MANUAL000064400000116131151162240640012375 0ustar00LATEST VERSION

  You always find news about what's going on as well as the latest versions
  from the curl web pages, located at:

        https://curl.haxx.se

SIMPLE USAGE

  Get the main page from Netscape's web-server:

        curl http://www.netscape.com/

  Get the README file the user's home directory at funet's ftp-server:

        curl ftp://ftp.funet.fi/README

  Get a web page from a server using port 8000:

        curl http://www.weirdserver.com:8000/

  Get a directory listing of an FTP site:

        curl ftp://cool.haxx.se/

  Get the definition of curl from a dictionary:

        curl dict://dict.org/m:curl

  Fetch two documents at once:

        curl ftp://cool.haxx.se/ http://www.weirdserver.com:8000/

  Get a file off an FTPS server:

        curl ftps://files.are.secure.com/secrets.txt

  or use the more appropriate FTPS way to get the same file:

        curl --ftp-ssl ftp://files.are.secure.com/secrets.txt

  Get a file from an SSH server using SFTP:

        curl -u username sftp://example.com/etc/issue

  Get a file from an SSH server using SCP using a private key
  (not password-protected) to authenticate:

        curl -u username: --key ~/.ssh/id_rsa \
             scp://example.com/~/file.txt

  Get a file from an SSH server using SCP using a private key
  (password-protected) to authenticate:

        curl -u username: --key ~/.ssh/id_rsa --pass private_key_password \
             scp://example.com/~/file.txt

  Get the main page from an IPv6 web server:

        curl "http://[2001:1890:1112:1::20]/"

  Get a file from an SMB server:

        curl -u "domain\username:passwd" smb://server.example.com/share/file.txt

DOWNLOAD TO A FILE

  Get a web page and store in a local file with a specific name:

        curl -o thatpage.html http://www.netscape.com/

  Get a web page and store in a local file, make the local file get the name
  of the remote document (if no file name part is specified in the URL, this
  will fail):

        curl -O http://www.netscape.com/index.html

  Fetch two files and store them with their remote names:

        curl -O www.haxx.se/index.html -O curl.haxx.se/download.html

USING PASSWORDS

 FTP

   To ftp files using name+passwd, include them in the URL like:

        curl ftp://name:passwd@machine.domain:port/full/path/to/file

   or specify them with the -u flag like

        curl -u name:passwd ftp://machine.domain:port/full/path/to/file

 FTPS

   It is just like for FTP, but you may also want to specify and use
   SSL-specific options for certificates etc.

   Note that using FTPS:// as prefix is the "implicit" way as described in the
   standards while the recommended "explicit" way is done by using FTP:// and
   the --ftp-ssl option.

 SFTP / SCP

   This is similar to FTP, but you can use the --key option to specify a
   private key to use instead of a password. Note that the private key may
   itself be protected by a password that is unrelated to the login password
   of the remote system; this password is specified using the --pass option.
   Typically, curl will automatically extract the public key from the private
   key file, but in cases where curl does not have the proper library support,
   a matching public key file must be specified using the --pubkey option.

 HTTP

   Curl also supports user and password in HTTP URLs, thus you can pick a file
   like:

        curl http://name:passwd@machine.domain/full/path/to/file

   or specify user and password separately like in

        curl -u name:passwd http://machine.domain/full/path/to/file

   HTTP offers many different methods of authentication and curl supports
   several: Basic, Digest, NTLM and Negotiate (SPNEGO). Without telling which
   method to use, curl defaults to Basic. You can also ask curl to pick the
   most secure ones out of the ones that the server accepts for the given URL,
   by using --anyauth.

   NOTE! According to the URL specification, HTTP URLs can not contain a user
   and password, so that style will not work when using curl via a proxy, even
   though curl allows it at other times. When using a proxy, you _must_ use
   the -u style for user and password.

 HTTPS

   Probably most commonly used with private certificates, as explained below.

PROXY

 curl supports both HTTP and SOCKS proxy servers, with optional authentication.
 It does not have special support for FTP proxy servers since there are no
 standards for those, but it can still be made to work with many of them. You
 can also use both HTTP and SOCKS proxies to transfer files to and from FTP
 servers.

 Get an ftp file using an HTTP proxy named my-proxy that uses port 888:

        curl -x my-proxy:888 ftp://ftp.leachsite.com/README

 Get a file from an HTTP server that requires user and password, using the
 same proxy as above:

        curl -u user:passwd -x my-proxy:888 http://www.get.this/

 Some proxies require special authentication. Specify by using -U as above:

        curl -U user:passwd -x my-proxy:888 http://www.get.this/

 A comma-separated list of hosts and domains which do not use the proxy can
 be specified as:

        curl --noproxy localhost,get.this -x my-proxy:888 http://www.get.this/

 If the proxy is specified with --proxy1.0 instead of --proxy or -x, then
 curl will use HTTP/1.0 instead of HTTP/1.1 for any CONNECT attempts.

 curl also supports SOCKS4 and SOCKS5 proxies with --socks4 and --socks5.

 See also the environment variables Curl supports that offer further proxy
 control.

 Most FTP proxy servers are set up to appear as a normal FTP server from the
 client's perspective, with special commands to select the remote FTP server.
 curl supports the -u, -Q and --ftp-account options that can be used to
 set up transfers through many FTP proxies. For example, a file can be
 uploaded to a remote FTP server using a Blue Coat FTP proxy with the
 options:

   curl -u "Remote-FTP-Username@remote.ftp.server Proxy-Username:Remote-Pass" \
        --ftp-account Proxy-Password --upload-file local-file \
        ftp://my-ftp.proxy.server:21/remote/upload/path/

 See the manual for your FTP proxy to determine the form it expects to set up
 transfers, and curl's -v option to see exactly what curl is sending.

RANGES

  HTTP 1.1 introduced byte-ranges. Using this, a client can request
  to get only one or more subparts of a specified document. Curl supports
  this with the -r flag.

  Get the first 100 bytes of a document:

        curl -r 0-99 http://www.get.this/

  Get the last 500 bytes of a document:

        curl -r -500 http://www.get.this/

  Curl also supports simple ranges for FTP files as well. Then you can only
  specify start and stop position.

  Get the first 100 bytes of a document using FTP:

        curl -r 0-99 ftp://www.get.this/README

UPLOADING

 FTP / FTPS / SFTP / SCP

  Upload all data on stdin to a specified server:

        curl -T - ftp://ftp.upload.com/myfile

  Upload data from a specified file, login with user and password:

        curl -T uploadfile -u user:passwd ftp://ftp.upload.com/myfile

  Upload a local file to the remote site, and use the local file name at the remote
  site too:

        curl -T uploadfile -u user:passwd ftp://ftp.upload.com/

  Upload a local file to get appended to the remote file:

        curl -T localfile -a ftp://ftp.upload.com/remotefile

  Curl also supports ftp upload through a proxy, but only if the proxy is
  configured to allow that kind of tunneling. If it does, you can run curl in
  a fashion similar to:

        curl --proxytunnel -x proxy:port -T localfile ftp.upload.com

SMB / SMBS

        curl -T file.txt -u "domain\username:passwd" \
             smb://server.example.com/share/

 HTTP

  Upload all data on stdin to a specified HTTP site:

        curl -T - http://www.upload.com/myfile

  Note that the HTTP server must have been configured to accept PUT before
  this can be done successfully.

  For other ways to do HTTP data upload, see the POST section below.

VERBOSE / DEBUG

  If curl fails where it isn't supposed to, if the servers don't let you in,
  if you can't understand the responses: use the -v flag to get verbose
  fetching. Curl will output lots of info and what it sends and receives in
  order to let the user see all client-server interaction (but it won't show
  you the actual data).

        curl -v ftp://ftp.upload.com/

  To get even more details and information on what curl does, try using the
  --trace or --trace-ascii options with a given file name to log to, like
  this:

        curl --trace trace.txt www.haxx.se


DETAILED INFORMATION

  Different protocols provide different ways of getting detailed information
  about specific files/documents. To get curl to show detailed information
  about a single file, you should use -I/--head option. It displays all
  available info on a single file for HTTP and FTP. The HTTP information is a
  lot more extensive.

  For HTTP, you can get the header information (the same as -I would show)
  shown before the data by using -i/--include. Curl understands the
  -D/--dump-header option when getting files from both FTP and HTTP, and it
  will then store the headers in the specified file.

  Store the HTTP headers in a separate file (headers.txt in the example):

        curl --dump-header headers.txt curl.haxx.se

  Note that headers stored in a separate file can be very useful at a later
  time if you want curl to use cookies sent by the server. More about that in
  the cookies section.

POST (HTTP)

  It's easy to post data using curl. This is done using the -d <data>
  option.  The post data must be urlencoded.

  Post a simple "name" and "phone" guestbook.

        curl -d "name=Rafael%20Sagula&phone=3320780" \
             http://www.where.com/guest.cgi

  How to post a form with curl, lesson #1:

  Dig out all the <input> tags in the form that you want to fill in.

  If there's a "normal" post, you use -d to post. -d takes a full "post
  string", which is in the format

        <variable1>=<data1>&<variable2>=<data2>&...

  The 'variable' names are the names set with "name=" in the <input> tags, and
  the data is the contents you want to fill in for the inputs. The data *must*
  be properly URL encoded. That means you replace space with + and that you
  replace weird letters with %XX where XX is the hexadecimal representation of
  the letter's ASCII code.

  Example:

  (page located at http://www.formpost.com/getthis/

        <form action="post.cgi" method="post">
        <input name=user size=10>
        <input name=pass type=password size=10>
        <input name=id type=hidden value="blablabla">
        <input name=ding value="submit">
        </form>

  We want to enter user 'foobar' with password '12345'.

  To post to this, you enter a curl command line like:

        curl -d "user=foobar&pass=12345&id=blablabla&ding=submit" \
             http://www.formpost.com/getthis/post.cgi


  While -d uses the application/x-www-form-urlencoded mime-type, generally
  understood by CGI's and similar, curl also supports the more capable
  multipart/form-data type. This latter type supports things like file upload.

  -F accepts parameters like -F "name=contents". If you want the contents to
  be read from a file, use <@filename> as contents. When specifying a file,
  you can also specify the file content type by appending ';type=<mime type>'
  to the file name. You can also post the contents of several files in one
  field.  For example, the field name 'coolfiles' is used to send three files,
  with different content types using the following syntax:

        curl -F "coolfiles=@fil1.gif;type=image/gif,fil2.txt,fil3.html" \
             http://www.post.com/postit.cgi

  If the content-type is not specified, curl will try to guess from the file
  extension (it only knows a few), or use the previously specified type (from
  an earlier file if several files are specified in a list) or else it will
  use the default type 'application/octet-stream'.

  Emulate a fill-in form with -F. Let's say you fill in three fields in a
  form. One field is a file name which to post, one field is your name and one
  field is a file description. We want to post the file we have written named
  "cooltext.txt". To let curl do the posting of this data instead of your
  favourite browser, you have to read the HTML source of the form page and
  find the names of the input fields. In our example, the input field names
  are 'file', 'yourname' and 'filedescription'.

        curl -F "file=@cooltext.txt" -F "yourname=Daniel" \
             -F "filedescription=Cool text file with cool text inside" \
             http://www.post.com/postit.cgi

  To send two files in one post you can do it in two ways:

  1. Send multiple files in a single "field" with a single field name:

        curl -F "pictures=@dog.gif,cat.gif"

  2. Send two fields with two field names:

        curl -F "docpicture=@dog.gif" -F "catpicture=@cat.gif"

  To send a field value literally without interpreting a leading '@'
  or '<', or an embedded ';type=', use --form-string instead of
  -F. This is recommended when the value is obtained from a user or
  some other unpredictable source. Under these circumstances, using
  -F instead of --form-string would allow a user to trick curl into
  uploading a file.

REFERRER

  An HTTP request has the option to include information about which address
  referred it to the actual page.  Curl allows you to specify the
  referrer to be used on the command line. It is especially useful to
  fool or trick stupid servers or CGI scripts that rely on that information
  being available or contain certain data.

        curl -e www.coolsite.com http://www.showme.com/

  NOTE: The Referer: [sic] field is defined in the HTTP spec to be a full URL.

USER AGENT

  An HTTP request has the option to include information about the browser
  that generated the request. Curl allows it to be specified on the command
  line. It is especially useful to fool or trick stupid servers or CGI
  scripts that only accept certain browsers.

  Example:

  curl -A 'Mozilla/3.0 (Win95; I)' http://www.nationsbank.com/

  Other common strings:
    'Mozilla/3.0 (Win95; I)'     Netscape Version 3 for Windows 95
    'Mozilla/3.04 (Win95; U)'    Netscape Version 3 for Windows 95
    'Mozilla/2.02 (OS/2; U)'     Netscape Version 2 for OS/2
    'Mozilla/4.04 [en] (X11; U; AIX 4.2; Nav)'           NS for AIX
    'Mozilla/4.05 [en] (X11; U; Linux 2.0.32 i586)'      NS for Linux

  Note that Internet Explorer tries hard to be compatible in every way:
    'Mozilla/4.0 (compatible; MSIE 4.01; Windows 95)'    MSIE for W95

  Mozilla is not the only possible User-Agent name:
    'Konqueror/1.0'             KDE File Manager desktop client
    'Lynx/2.7.1 libwww-FM/2.14' Lynx command line browser

COOKIES

  Cookies are generally used by web servers to keep state information at the
  client's side. The server sets cookies by sending a response line in the
  headers that looks like 'Set-Cookie: <data>' where the data part then
  typically contains a set of NAME=VALUE pairs (separated by semicolons ';'
  like "NAME1=VALUE1; NAME2=VALUE2;"). The server can also specify for what
  path the "cookie" should be used for (by specifying "path=value"), when the
  cookie should expire ("expire=DATE"), for what domain to use it
  ("domain=NAME") and if it should be used on secure connections only
  ("secure").

  If you've received a page from a server that contains a header like:
        Set-Cookie: sessionid=boo123; path="/foo";

  it means the server wants that first pair passed on when we get anything in
  a path beginning with "/foo".

  Example, get a page that wants my name passed in a cookie:

        curl -b "name=Daniel" www.sillypage.com

  Curl also has the ability to use previously received cookies in following
  sessions. If you get cookies from a server and store them in a file in a
  manner similar to:

        curl --dump-header headers www.example.com

  ... you can then in a second connect to that (or another) site, use the
  cookies from the 'headers' file like:

        curl -b headers www.example.com

  While saving headers to a file is a working way to store cookies, it is
  however error-prone and not the preferred way to do this. Instead, make curl
  save the incoming cookies using the well-known netscape cookie format like
  this:

        curl -c cookies.txt www.example.com

  Note that by specifying -b you enable the "cookie awareness" and with -L
  you can make curl follow a location: (which often is used in combination
  with cookies). So that if a site sends cookies and a location, you can
  use a non-existing file to trigger the cookie awareness like:

        curl -L -b empty.txt www.example.com

  The file to read cookies from must be formatted using plain HTTP headers OR
  as netscape's cookie file. Curl will determine what kind it is based on the
  file contents.  In the above command, curl will parse the header and store
  the cookies received from www.example.com.  curl will send to the server the
  stored cookies which match the request as it follows the location.  The
  file "empty.txt" may be a nonexistent file.

  To read and write cookies from a netscape cookie file, you can set both -b
  and -c to use the same file:

        curl -b cookies.txt -c cookies.txt www.example.com

PROGRESS METER

  The progress meter exists to show a user that something actually is
  happening. The different fields in the output have the following meaning:

  % Total    % Received % Xferd  Average Speed          Time             Curr.
                                 Dload  Upload Total    Current  Left    Speed
  0  151M    0 38608    0     0   9406      0  4:41:43  0:00:04  4:41:39  9287

  From left-to-right:
   %             - percentage completed of the whole transfer
   Total         - total size of the whole expected transfer
   %             - percentage completed of the download
   Received      - currently downloaded amount of bytes
   %             - percentage completed of the upload
   Xferd         - currently uploaded amount of bytes
   Average Speed
   Dload         - the average transfer speed of the download
   Average Speed
   Upload        - the average transfer speed of the upload
   Time Total    - expected time to complete the operation
   Time Current  - time passed since the invoke
   Time Left     - expected time left to completion
   Curr.Speed    - the average transfer speed the last 5 seconds (the first
                   5 seconds of a transfer is based on less time of course.)

  The -# option will display a totally different progress bar that doesn't
  need much explanation!

SPEED LIMIT

  Curl allows the user to set the transfer speed conditions that must be met
  to let the transfer keep going. By using the switch -y and -Y you
  can make curl abort transfers if the transfer speed is below the specified
  lowest limit for a specified time.

  To have curl abort the download if the speed is slower than 3000 bytes per
  second for 1 minute, run:

        curl -Y 3000 -y 60 www.far-away-site.com

  This can very well be used in combination with the overall time limit, so
  that the above operation must be completed in whole within 30 minutes:

        curl -m 1800 -Y 3000 -y 60 www.far-away-site.com

  Forcing curl not to transfer data faster than a given rate is also possible,
  which might be useful if you're using a limited bandwidth connection and you
  don't want your transfer to use all of it (sometimes referred to as
  "bandwidth throttle").

  Make curl transfer data no faster than 10 kilobytes per second:

        curl --limit-rate 10K www.far-away-site.com

    or

        curl --limit-rate 10240 www.far-away-site.com

  Or prevent curl from uploading data faster than 1 megabyte per second:

        curl -T upload --limit-rate 1M ftp://uploadshereplease.com

  When using the --limit-rate option, the transfer rate is regulated on a
  per-second basis, which will cause the total transfer speed to become lower
  than the given number. Sometimes of course substantially lower, if your
  transfer stalls during periods.

CONFIG FILE

  Curl automatically tries to read the .curlrc file (or _curlrc file on win32
  systems) from the user's home dir on startup.

  The config file could be made up with normal command line switches, but you
  can also specify the long options without the dashes to make it more
  readable. You can separate the options and the parameter with spaces, or
  with = or :. Comments can be used within the file. If the first letter on a
  line is a '#'-symbol the rest of the line is treated as a comment.

  If you want the parameter to contain spaces, you must enclose the entire
  parameter within double quotes ("). Within those quotes, you specify a
  quote as \".

  NOTE: You must specify options and their arguments on the same line.

  Example, set default time out and proxy in a config file:

        # We want a 30 minute timeout:
        -m 1800
        # ... and we use a proxy for all accesses:
        proxy = proxy.our.domain.com:8080

  White spaces ARE significant at the end of lines, but all white spaces
  leading up to the first characters of each line are ignored.

  Prevent curl from reading the default file by using -q as the first command
  line parameter, like:

        curl -q www.thatsite.com

  Force curl to get and display a local help page in case it is invoked
  without URL by making a config file similar to:

        # default url to get
        url = "http://help.with.curl.com/curlhelp.html"

  You can specify another config file to be read by using the -K/--config
  flag. If you set config file name to "-" it'll read the config from stdin,
  which can be handy if you want to hide options from being visible in process
  tables etc:

        echo "user = user:passwd" | curl -K - http://that.secret.site.com

EXTRA HEADERS

  When using curl in your own very special programs, you may end up needing
  to pass on your own custom headers when getting a web page. You can do
  this by using the -H flag.

  Example, send the header "X-you-and-me: yes" to the server when getting a
  page:

        curl -H "X-you-and-me: yes" www.love.com

  This can also be useful in case you want curl to send a different text in a
  header than it normally does. The -H header you specify then replaces the
  header curl would normally send. If you replace an internal header with an
  empty one, you prevent that header from being sent. To prevent the Host:
  header from being used:

        curl -H "Host:" www.server.com

FTP and PATH NAMES

  Do note that when getting files with the ftp:// URL, the given path is
  relative the directory you enter. To get the file 'README' from your home
  directory at your ftp site, do:

        curl ftp://user:passwd@my.site.com/README

  But if you want the README file from the root directory of that very same
  site, you need to specify the absolute file name:

        curl ftp://user:passwd@my.site.com//README

  (I.e with an extra slash in front of the file name.)

SFTP and SCP and PATH NAMES

  With sftp: and scp: URLs, the path name given is the absolute name on the
  server. To access a file relative to the remote user's home directory,
  prefix the file with /~/ , such as:

        curl -u $USER sftp://home.example.com/~/.bashrc

FTP and firewalls

  The FTP protocol requires one of the involved parties to open a second
  connection as soon as data is about to get transferred. There are two ways to
  do this.

  The default way for curl is to issue the PASV command which causes the
  server to open another port and await another connection performed by the
  client. This is good if the client is behind a firewall that doesn't allow
  incoming connections.

        curl ftp.download.com

  If the server, for example, is behind a firewall that doesn't allow connections
  on ports other than 21 (or if it just doesn't support the PASV command), the
  other way to do it is to use the PORT command and instruct the server to
  connect to the client on the given IP number and port (as parameters to the
  PORT command).

  The -P flag to curl supports a few different options. Your machine may have
  several IP-addresses and/or network interfaces and curl allows you to select
  which of them to use. Default address can also be used:

        curl -P - ftp.download.com

  Download with PORT but use the IP address of our 'le0' interface (this does
  not work on windows):

        curl -P le0 ftp.download.com

  Download with PORT but use 192.168.0.10 as our IP address to use:

        curl -P 192.168.0.10 ftp.download.com

NETWORK INTERFACE

  Get a web page from a server using a specified port for the interface:

        curl --interface eth0:1 http://www.netscape.com/

  or

        curl --interface 192.168.1.10 http://www.netscape.com/

HTTPS

  Secure HTTP requires SSL libraries to be installed and used when curl is
  built. If that is done, curl is capable of retrieving and posting documents
  using the HTTPS protocol.

  Example:

        curl https://www.secure-site.com

  Curl is also capable of using your personal certificates to get/post files
  from sites that require valid certificates. The only drawback is that the
  certificate needs to be in PEM-format. PEM is a standard and open format to
  store certificates with, but it is not used by the most commonly used
  browsers (Netscape and MSIE both use the so called PKCS#12 format). If you
  want curl to use the certificates you use with your (favourite) browser, you
  may need to download/compile a converter that can convert your browser's
  formatted certificates to PEM formatted ones. This kind of converter is
  included in recent versions of OpenSSL, and for older versions Dr Stephen
  N. Henson has written a patch for SSLeay that adds this functionality. You
  can get his patch (that requires an SSLeay installation) from his site at:
  https://web.archive.org/web/20170715155512/www.drh-consultancy.demon.co.uk/

  Example on how to automatically retrieve a document using a certificate with
  a personal password:

        curl -E /path/to/cert.pem:password https://secure.site.com/

  If you neglect to specify the password on the command line, you will be
  prompted for the correct password before any data can be received.

  Many older SSL-servers have problems with SSLv3 or TLS, which newer versions
  of OpenSSL etc use, therefore it is sometimes useful to specify what
  SSL-version curl should use. Use -3, -2 or -1 to specify that exact SSL
  version to use (for SSLv3, SSLv2 or TLSv1 respectively):

        curl -2 https://secure.site.com/

  Otherwise, curl will first attempt to use v3 and then v2.

  To use OpenSSL to convert your favourite browser's certificate into a PEM
  formatted one that curl can use, do something like this:

    In Netscape, you start with hitting the 'Security' menu button.

    Select 'certificates->yours' and then pick a certificate in the list

    Press the 'Export' button

    enter your PIN code for the certs

    select a proper place to save it

    Run the 'openssl' application to convert the certificate. If you cd to the
    openssl installation, you can do it like:

     # ./apps/openssl pkcs12 -in [file you saved] -clcerts -out [PEMfile]

    In Firefox, select Options, then Advanced, then the Encryption tab,
    View Certificates. This opens the Certificate Manager, where you can
    Export. Be sure to select PEM for the Save as type.

    In Internet Explorer, select Internet Options, then the Content tab, then
    Certificates. Then you can Export, and depending on the format you may
    need to convert to PEM.

    In Chrome, select Settings, then Show Advanced Settings. Under HTTPS/SSL
    select Manage Certificates.

RESUMING FILE TRANSFERS

 To continue a file transfer where it was previously aborted, curl supports
 resume on HTTP(S) downloads as well as FTP uploads and downloads.

 Continue downloading a document:

        curl -C - -o file ftp://ftp.server.com/path/file

 Continue uploading a document(*1):

        curl -C - -T file ftp://ftp.server.com/path/file

 Continue downloading a document from a web server(*2):

        curl -C - -o file http://www.server.com/

 (*1) = This requires that the FTP server supports the non-standard command
        SIZE. If it doesn't, curl will say so.

 (*2) = This requires that the web server supports at least HTTP/1.1. If it
        doesn't, curl will say so.

TIME CONDITIONS

 HTTP allows a client to specify a time condition for the document it
 requests. It is If-Modified-Since or If-Unmodified-Since. Curl allows you to
 specify them with the -z/--time-cond flag.

 For example, you can easily make a download that only gets performed if the
 remote file is newer than a local copy. It would be made like:

        curl -z local.html http://remote.server.com/remote.html

 Or you can download a file only if the local file is newer than the remote
 one. Do this by prepending the date string with a '-', as in:

        curl -z -local.html http://remote.server.com/remote.html

 You can specify a "free text" date as condition. Tell curl to only download
 the file if it was updated since January 12, 2012:

        curl -z "Jan 12 2012" http://remote.server.com/remote.html

 Curl will then accept a wide range of date formats. You always make the date
 check the other way around by prepending it with a dash '-'.

DICT

  For fun try

        curl dict://dict.org/m:curl
        curl dict://dict.org/d:heisenbug:jargon
        curl dict://dict.org/d:daniel:web1913

  Aliases for 'm' are 'match' and 'find', and aliases for 'd' are 'define'
  and 'lookup'. For example,

        curl dict://dict.org/find:curl

  Commands that break the URL description of the RFC (but not the DICT
  protocol) are

        curl dict://dict.org/show:db
        curl dict://dict.org/show:strat

  Authentication is still missing (but this is not required by the RFC)

LDAP

  If you have installed the OpenLDAP library, curl can take advantage of it
  and offer ldap:// support.
  On Windows, curl will use WinLDAP from Platform SDK by default.

  Default protocol version used by curl is LDAPv3. LDAPv2 will be used as
  fallback mechanism in case if LDAPv3 will fail to connect.

  LDAP is a complex thing and writing an LDAP query is not an easy task. I do
  advise you to dig up the syntax description for that elsewhere. One such
  place might be:

  RFC 2255, "The LDAP URL Format" https://curl.haxx.se/rfc/rfc2255.txt

  To show you an example, this is how I can get all people from my local LDAP
  server that has a certain sub-domain in their email address:

        curl -B "ldap://ldap.frontec.se/o=frontec??sub?mail=*sth.frontec.se"

  If I want the same info in HTML format, I can get it by not using the -B
  (enforce ASCII) flag.

  You also can use authentication when accessing LDAP catalog:

      curl -u user:passwd "ldap://ldap.frontec.se/o=frontec??sub?mail=*"
      curl "ldap://user:passwd@ldap.frontec.se/o=frontec??sub?mail=*"

  By default, if user and password provided, OpenLDAP/WinLDAP will use basic
  authentication. On Windows you can control this behavior by providing
  one of --basic, --ntlm or --digest option in curl command line

      curl --ntlm "ldap://user:passwd@ldap.frontec.se/o=frontec??sub?mail=*"

  On Windows, if no user/password specified, auto-negotiation mechanism will
  be used with current logon credentials (SSPI/SPNEGO).

ENVIRONMENT VARIABLES

  Curl reads and understands the following environment variables:

        http_proxy, HTTPS_PROXY, FTP_PROXY

  They should be set for protocol-specific proxies. General proxy should be
  set with

        ALL_PROXY

  A comma-separated list of host names that shouldn't go through any proxy is
  set in (only an asterisk, '*' matches all hosts)

        NO_PROXY

  If the host name matches one of these strings, or the host is within the
  domain of one of these strings, transactions with that node will not be
  proxied. When a domain is used, it needs to start with a period. A user can
  specify that both www.example.com and foo.example.com should not use a
  proxy by setting NO_PROXY to ".example.com". By including the full name you
  can exclude specific host names, so to make www.example.com not use a proxy
  but still have foo.example.com do it, set NO_PROXY to "www.example.com"

  The usage of the -x/--proxy flag overrides the environment variables.

NETRC

  Unix introduced the .netrc concept a long time ago. It is a way for a user
  to specify name and password for commonly visited FTP sites in a file so
  that you don't have to type them in each time you visit those sites. You
  realize this is a big security risk if someone else gets hold of your
  passwords, so therefore most unix programs won't read this file unless it is
  only readable by yourself (curl doesn't care though).

  Curl supports .netrc files if told to (using the -n/--netrc and
  --netrc-optional options). This is not restricted to just FTP,
  so curl can use it for all protocols where authentication is used.

  A very simple .netrc file could look something like:

        machine curl.haxx.se login iamdaniel password mysecret

CUSTOM OUTPUT

  To better allow script programmers to get to know about the progress of
  curl, the -w/--write-out option was introduced. Using this, you can specify
  what information from the previous transfer you want to extract.

  To display the amount of bytes downloaded together with some text and an
  ending newline:

        curl -w 'We downloaded %{size_download} bytes\n' www.download.com

KERBEROS FTP TRANSFER

  Curl supports kerberos4 and kerberos5/GSSAPI for FTP transfers. You need
  the kerberos package installed and used at curl build time for it to be
  available.

  First, get the krb-ticket the normal way, like with the kinit/kauth tool.
  Then use curl in way similar to:

        curl --krb private ftp://krb4site.com -u username:fakepwd

  There's no use for a password on the -u switch, but a blank one will make
  curl ask for one and you already entered the real password to kinit/kauth.

TELNET

  The curl telnet support is basic and very easy to use. Curl passes all data
  passed to it on stdin to the remote server. Connect to a remote telnet
  server using a command line similar to:

        curl telnet://remote.server.com

  And enter the data to pass to the server on stdin. The result will be sent
  to stdout or to the file you specify with -o.

  You might want the -N/--no-buffer option to switch off the buffered output
  for slow connections or similar.

  Pass options to the telnet protocol negotiation, by using the -t option. To
  tell the server we use a vt100 terminal, try something like:

        curl -tTTYPE=vt100 telnet://remote.server.com

  Other interesting options for it -t include:

   - XDISPLOC=<X display> Sets the X display location.

   - NEW_ENV=<var,val> Sets an environment variable.

  NOTE: The telnet protocol does not specify any way to login with a specified
  user and password so curl can't do that automatically. To do that, you need
  to track when the login prompt is received and send the username and
  password accordingly.

PERSISTENT CONNECTIONS

  Specifying multiple files on a single command line will make curl transfer
  all of them, one after the other in the specified order.

  libcurl will attempt to use persistent connections for the transfers so that
  the second transfer to the same host can use the same connection that was
  already initiated and was left open in the previous transfer. This greatly
  decreases connection time for all but the first transfer and it makes a far
  better use of the network.

  Note that curl cannot use persistent connections for transfers that are used
  in subsequence curl invokes. Try to stuff as many URLs as possible on the
  same command line if they are using the same host, as that'll make the
  transfers faster. If you use an HTTP proxy for file transfers, practically
  all transfers will be persistent.

MULTIPLE TRANSFERS WITH A SINGLE COMMAND LINE

  As is mentioned above, you can download multiple files with one command line
  by simply adding more URLs. If you want those to get saved to a local file
  instead of just printed to stdout, you need to add one save option for each
  URL you specify. Note that this also goes for the -O option (but not
  --remote-name-all).

  For example: get two files and use -O for the first and a custom file
  name for the second:

    curl -O http://url.com/file.txt ftp://ftp.com/moo.exe -o moo.jpg

  You can also upload multiple files in a similar fashion:

    curl -T local1 ftp://ftp.com/moo.exe -T local2 ftp://ftp.com/moo2.txt

IPv6

  curl will connect to a server with IPv6 when a host lookup returns an IPv6
  address and fall back to IPv4 if the connection fails. The --ipv4 and --ipv6
  options can specify which address to use when both are available. IPv6
  addresses can also be specified directly in URLs using the syntax:

    http://[2001:1890:1112:1::20]/overview.html

  When this style is used, the -g option must be given to stop curl from
  interpreting the square brackets as special globbing characters.  Link local
  and site local addresses including a scope identifier, such as fe80::1234%1,
  may also be used, but the scope portion must be numeric or match an existing
  network interface on Linux and the percent character must be URL escaped. The
  previous example in an SFTP URL might look like:

    sftp://[fe80::1234%251]/

  IPv6 addresses provided other than in URLs (e.g. to the --proxy, --interface
  or --ftp-port options) should not be URL encoded.

METALINK

  Curl supports Metalink (both version 3 and 4 (RFC 5854) are supported), a way
  to list multiple URIs and hashes for a file. Curl will make use of the mirrors
  listed within for failover if there are errors (such as the file or server not
  being available). It will also verify the hash of the file after the download
  completes. The Metalink file itself is downloaded and processed in memory and
  not stored in the local file system.

  Example to use a remote Metalink file:

    curl --metalink http://www.example.com/example.metalink

  To use a Metalink file in the local file system, use FILE protocol (file://):

    curl --metalink file://example.metalink

  Please note that if FILE protocol is disabled, there is no way to use a local
  Metalink file at the time of this writing. Also note that if --metalink and
  --include are used together, --include will be ignored. This is because including
  headers in the response will break Metalink parser and if the headers are included
  in the file described in Metalink file, hash check will fail.

MAILING LISTS

  For your convenience, we have several open mailing lists to discuss curl,
  its development and things relevant to this. Get all info at
  https://curl.haxx.se/mail/. Some of the lists available are:

  curl-users

    Users of the command line tool. How to use it, what doesn't work, new
    features, related tools, questions, news, installations, compilations,
    running, porting etc.

  curl-library

    Developers using or developing libcurl. Bugs, extensions, improvements.

  curl-announce

    Low-traffic. Only receives announcements of new public versions. At worst,
    that makes something like one or two mails per month, but usually only one
    mail every second month.

  curl-and-php

    Using the curl functions in PHP. Everything curl with a PHP angle. Or PHP
    with a curl angle.

  curl-and-python

    Python hackers using curl with or without the python binding pycurl.

  Please direct curl questions, feature requests and trouble reports to one of
  these mailing lists instead of mailing any individual.
usr/lib64/libcurl.so.4.5.0000075500002403410151162240710010745 0ustar00ELF>@�@�	@8@���� ����(��(/3  � �( �(��$$������  P�td4�4�4�ttQ�tdR�td����(��(P-P-GNU}X�Jkq��������
�C�	��(P	2�	#cBP* �� C�4@��L���,�Xʀ� �b��X�*�����������������������������������������������*��k��f�khZ��t�"�%I[�FZ�Lj+p'�1]� wdA�G;�������M$+nI��\
g�$����o$
�[��:ڸ�8}_S
���L��c'���z	٫��F�"
����#��A�)!`b�-�JSxF��-�D�0�ق��e&
Vzu�3��OEf����#M����U!��M�T&x��)XE��R��Q[���
��	�͹��ƭ=˖�q{_F�����s+}�Gs��oѝ��B@ƾĨGks�����X���$;�����4=�jM���6��O�5��g�/����.J�!=���5ys!�w��!�Kx�
�A U��[F	����
�6
wjn ���U�Q[ 	��E�n
��i����7�'e
3��
����	�g� U����s�!�F"���=aI��;��c�5W_���!��y�
�
sC�	^	�Mo�v2�
� �g�-�6
��w!M
�}�Qk�2 !�hQ� ��z ��%���N��3��
����75�1	�^�
� �Q���w	c
�
��G�
,���.�(�G ������	�N�`�"O !�
�q�
�����1_m�E����	n%%.��U\� �%����e
�D�gh8�6�� )��[���
�\"� �
�c���~!6?cm$&y�J!��],$�>�6:�?!�[I�J��� w����c/5�N
~�F�MK�*9�8���y� \�J/
g���
}��	W�D��6f� 9!��mR��K8������^!�{
h
�
^cm ���E, u8�	�a#�ZN��x��P��ns�P��!�������!�
/�i����	a��1�05q�`�v���`�{����4)���@��� ~��P�'Z y4���hQ��	�@��� �|0p��d��vN��qp�QmpdIX�Q&������O�PS��<v��f��HtЄ��P�D�pqC?����kz5�F\@m*��fAЛAR����U-�pS)�@��!p�f�0[�6�k6p�� ��ST@��;��a5�x�ppi��^	@i�����%�J0�p��(��
��c�����!0��
�q�`��0���0�7F��Q�@Y�v�� '����__gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizememchr__stack_chk_fail__fxstatcurl_msnprintflseekstrchrclock_gettimegettimeofdaystrlencurl_maprintf__ctype_tolower_locinet_ntop__memcpy_chkstrtoul__isoc99_sscanfcurl_mfprintffflushmemcpycurl_mime_namecurl_mime_initcurl_mime_subpartscurl_mime_addpartcurl_mime_headerscurl_mime_typestdinfseekfreadcurl_mime_data_cbcurl_mime_filenamecurl_mime_datacurl_mime_filedatacurl_formaddcurl_formgetcurl_formfreememmoveinet_ptonstrtok_rcurl_getdatestrrchrstrcmpstrncmpqsortfgetscurl_strnequalfclosefopencurl_slist_free_allstdoutfwritecurl_mvaprintfcurl_url_dupcurl_url_setcurl_url_getcurl_url_cleanupstrstr__errno_locationcurl_mvsnprintfcurl_easy_strerrorstrncpygetsocknamelistenstrcpyacceptstrtolcurl_multi_remove_handlecurl_multi_cleanupstderrcurl_easy_unescapeif_nametoindexcurl_urlcurl_getenvgetifaddrsfreeifaddrscurl_versionzlibVersionlibssh2_versioncurl_version_infocurl_easy_escapecurl_escapecurl_unescapecurl_free__sprintf_chkcurl_msprintfcurl_mprintffputccurl_mvsprintfcurl_mvprintfcurl_mvfprintfcurl_slist_appendfilenogeteuidgetpwuid_rcurl_strequalreallocstrdupcalloclibssh2_initsigactioncurl_global_initcurl_global_init_memcurl_global_cleanuplibssh2_exitcurl_easy_initcurl_easy_performcurl_multi_setoptcurl_multi_add_handlecurl_multi_performcurl_multi_info_readcurl_multi_timeoutcurl_easy_cleanupcurl_easy_getinfocurl_easy_duphandlecurl_easy_resetcurl_easy_pausecurl_easy_recvcurl_easy_sendcurl_easy_upkeepfnmatchgss_wrapgss_release_bufferGSS_C_NT_HOSTBASED_SERVICEgss_import_namegss_release_namegss_display_nameperrorgss_unwrapgss_delete_sec_contextgetsockoptgetpeernamesetsockoptmemcmpcurl_multi_initcurl_multi_fdset__fdelt_chkcurl_multi_waitcurl_multi_socketcurl_multi_socket_actioncurl_multi_socket_allcurl_multi_assigninflateInit2_inflateEndinflateInit_inflatestpcpycurl_share_initcurl_share_setoptcurl_share_cleanupMD5_InitMD5_UpdateMD5_Finalcurl_multi_strerrorcurl_share_strerror__xpg_strerror_rgmtime_rpoll__poll_chksendtorecvfromlibssh2_session_block_directionslibssh2_sftp_writelibssh2_sftp_readlibssh2_channel_write_exlibssh2_channel_read_exlibssh2_session_set_blockinglibssh2_session_handshakelibssh2_hostkey_hashlibssh2_session_hostkeylibssh2_knownhost_checkplibssh2_channel_freelibssh2_session_disconnect_exlibssh2_channel_send_eoflibssh2_scp_send64libssh2_sftp_close_handlelibssh2_sftp_shutdownlibssh2_sftp_readdir_exlibssh2_sftp_symlink_exlibssh2_sftp_unlink_exlibssh2_sftp_rmdir_exlibssh2_sftp_last_errorlibssh2_agent_get_identitylibssh2_knownhost_freelibssh2_agent_disconnectlibssh2_agent_freelibssh2_session_freelibssh2_agent_list_identitieslibssh2_sftp_mkdir_exlibssh2_sftp_stat_exlibssh2_sftp_rename_exlibssh2_sftp_statvfslibssh2_knownhost_addlibssh2_knownhost_writefilelibssh2_userauth_listlibssh2_userauth_publickey_fromfile_exlibssh2_sftp_initlibssh2_scp_recv2libssh2_sftp_open_exlibssh2_userauth_password_exlibssh2_userauth_keyboard_interactive_exlibssh2_sftp_seek64libssh2_channel_wait_closedlibssh2_channel_wait_eoflibssh2_session_last_errorlibssh2_agent_connectlibssh2_agent_userauthlibssh2_session_last_errnolibssh2_userauth_authenticatedlibssh2_agent_initaccesslibssh2_session_init_exlibssh2_knownhost_initlibssh2_knownhost_readfilelibssh2_session_flaggetaddrinfofreeaddrinfogss_display_status__strcpy_chkgss_inquire_contextfcntlpthread_createpthread_detachpthread_joinldap_unbind_extldap_resultldap_parse_resultldap_get_optionldap_memfreeldap_set_optionldap_sasl_bindber_sockbuf_add_ioldap_err2stringldap_first_messageldap_next_messageldap_msgtypeldap_get_dn_berldap_get_attribute_berber_memfreeber_freeldap_msgfreeldap_abandon_extldap_url_parseldap_search_extldap_free_urldescldap_pvt_url_scheme2protoldap_init_fdgethostnamepthread_mutex_destroypthread_mutex_lockpthread_mutex_unlockpthread_mutex_initgss_init_sec_contextstrpbrksocketpairforkdup2execlwaitpidkillDES_set_odd_parityDES_set_keyDES_ecb_encryptMD4_InitMD4_UpdateMD4_Finalnghttp2_session_get_stream_user_datanghttp2_session_delnghttp2_priority_spec_initnghttp2_submit_prioritynghttp2_session_sendnghttp2_session_set_stream_user_datanghttp2_submit_rst_streamnghttp2_is_fatalnghttp2_session_get_remote_settingsnghttp2_session_want_writenghttp2_session_want_readnghttp2_session_mem_recvnghttp2_strerrornghttp2_http2_strerrornghttp2_session_resume_datanghttp2_submit_requestnghttp2_submit_pingnghttp2_session_callbacks_newnghttp2_session_callbacks_set_send_callbacknghttp2_session_callbacks_set_on_frame_recv_callbacknghttp2_session_callbacks_set_on_data_chunk_recv_callbacknghttp2_session_callbacks_set_on_stream_close_callbacknghttp2_session_callbacks_set_on_begin_headers_callbacknghttp2_session_callbacks_set_on_header_callbacknghttp2_session_callbacks_set_error_callbacknghttp2_session_client_newnghttp2_session_callbacks_delnghttp2_versioncurl_pushheader_bynumcurl_pushheader_bynamenghttp2_pack_settings_payloadnghttp2_submit_settingsnghttp2_session_set_local_window_sizenghttp2_session_upgradegetpidcurl_mime_free__xstat__xpg_basenamecurl_mime_encoderSHA256_InitSHA256_UpdateSHA256_Finalcurl_easy_setoptstrspnstrcspnEVP_MD_CTX_createEVP_sha256EVP_DigestInit_exEVP_DigestUpdateEVP_DigestFinal_exEVP_MD_CTX_destroyEVP_md5ENGINE_get_firstENGINE_get_nextENGINE_get_idENGINE_by_idENGINE_finishENGINE_freeENGINE_initERR_get_errorERR_error_string_nSSL_SESSION_freeERR_remove_thread_stateERR_clear_errorSSL_readSSL_get_errorSSL_alert_desc_string_longUI_get_string_typeUI_OpenSSLUI_method_get_writerUI_get0_user_dataUI_get_input_flagsUI_method_get_readerUI_set_resultSSL_get_ex_new_indexSSL_get_ex_dataBN_printBIO_ctrlSSL_pendingSSL_freeSSL_get_shutdownSSL_shutdownSSLeaySSL_writeEVP_cleanupENGINE_cleanupERR_free_stringsCONF_modules_freeSSL_COMP_free_compression_methodsENGINE_set_defaultSSL_set_connect_stateSSL_CTX_freeRAND_addRAND_statusRAND_file_nameRAND_load_fileRAND_egdRAND_bytesSSLv23_client_methodSSL_CTX_newSSL_CTX_ctrlSSLv3_client_methodSSL_CTX_set_alpn_protosSSL_CTX_set_cipher_listX509_LOOKUP_fileSSL_CTX_get_cert_storeX509_STORE_add_lookupX509_load_crl_fileX509_STORE_set_flagsSSL_CTX_set_verifySSL_CTX_sess_set_new_cbSSL_newBIO_f_sslBIO_newSSL_set_bioSSL_CTX_set_msg_callbackSSL_CTX_set_next_proto_select_cbSSL_CTX_set_default_passwd_cb_userdataSSL_CTX_set_default_passwd_cbBIO_s_filed2i_PKCS12_bioBIO_freePKCS12_PBE_addPKCS12_parsePKCS12_freeSSL_CTX_use_certificateEVP_PKEY_freeX509_freesk_pop_freeSSL_CTX_load_verify_locationsSSL_CTX_use_certificate_chain_fileSSL_set_fdERR_peek_errorSSL_set_ex_dataSSL_set_sessionSSL_ctrlSSL_CTX_use_PrivateKey_fileENGINE_ctrlENGINE_ctrl_cmdSSL_CTX_use_certificate_fileSSL_get_certificateX509_get_pubkeySSL_get_privatekeyEVP_PKEY_copy_parametersSSL_CTX_check_private_keyUI_create_methodUI_method_get_openerUI_method_set_openerUI_method_get_closerUI_method_set_closerUI_method_set_readerUI_method_set_writerENGINE_load_private_keyUI_destroy_methodSSL_CTX_use_PrivateKeysk_popSSL_CTX_add_client_CAsk_numEVP_PKEY_get1_RSARSA_flagsRSA_freeSSL_connectSSL_get_sessionfputsSSL_get_verify_resultSSL_get_current_cipherSSL_CIPHER_get_nameSSL_versionSSL_get0_alpn_selectedX509_verify_cert_error_stringOPENSSL_load_builtin_modulesENGINE_load_builtin_enginesCONF_modules_load_fileSSL_load_error_stringsSSL_library_initOPENSSL_add_all_algorithms_noconfsetvbufBIO_s_memX509_NAME_print_exSSL_get_peer_certificateX509_get_subject_nameASN1_TIME_printX509_get_issuer_namei2d_X509_PUBKEYX509_get_ext_d2isk_valueGENERAL_NAMES_freePEM_read_bio_X509X509_check_issuedSSL_get_peer_cert_chainASN1_INTEGER_getBIO_printfX509_get_serialNumberi2a_ASN1_OBJECTX509_EXTENSION_get_objecti2t_ASN1_OBJECTX509V3_EXT_printPEM_write_bio_X509d2i_OCSP_RESPONSEOCSP_response_statusOCSP_response_get1_basicOCSP_basic_verifyOCSP_resp_countOCSP_resp_get0OCSP_single_get0_statusOCSP_check_validityOCSP_cert_status_strOCSP_BASICRESP_freeOCSP_RESPONSE_freeX509_EXTENSION_get_dataASN1_STRING_printBN_num_bitsBIO_putsX509_NAME_get_index_by_NIDCRYPTO_freeASN1_STRING_dataASN1_STRING_lengthOCSP_crl_reason_strX509_NAME_get_entryX509_NAME_ENTRY_get_dataASN1_STRING_typeASN1_STRING_to_UTF8OCSP_response_status_strCRYPTO_mallocmemsetftellcurl_global_sslsetlibnghttp2.so.14libssh2.so.1libssl.so.10libcrypto.so.10libgssapi_krb5.so.2libkrb5.so.3libk5crypto.so.3libcom_err.so.2libldap-2.4.so.2liblber-2.4.so.2libz.so.1libpthread.so.0libc.so.6libcurl.so.4gssapi_krb5_2_MITOPENSSL_1.0.2GLIBC_2.2.5GLIBC_2.16GLIBC_2.15GLIBC_2.4GLIBC_2.7GLIBC_2.17GLIBC_2.14GLIBC_2.3.4GLIBC_2.3/opt/alt/openssl/lib64:/opt/alt/libssh2/usr/lib64	

�! 4��
u"�!0"+j
�" t�
�!N" ui	�"�! Лw
�!	^"����"����"ii
�"ii
�"���
�"���	�"ti	�"ii
�"ui	�"��(����(����(��(��(����(���(���(���(�@�(P���(��(�[��(����(`��(@v��(�[��(`[��(@[ �(9(�(�[0�(��8�(`H�(@vh�(@[��(c$��(����(���(���(����(����(@���(��(���(���(�� �(��`�(&�h�(��p�(�x�(���(����(����(@���(���(����(����(����(���(;1��(�7��(�w@�(�8H�(�]P�(;9X�(9`�(	9h�(�p�(�/x�(9��(9��(9��( 9��(&9��(+9��(19��(69��(:9��(?9��(C9��(H9��(M9��(S9��(Z9�(,B�(���(���(3B��(7B��(<B��(BB��(���(FB��(JB��(PB��(TB��(WB��(ZB��(^B�(aB�(dB�(gB�(�A �(�A(�(�A0�(�A8�(jB@�(�@H�(nBP�(sBX�(wB`�(dAh�(�Bp�(�Bx�(�B��(�B��(�B��(�B��(�B��(�B��(�B��(�B��(�B��(�B��(�B��(�B��(�B��(�B��(C��(C��(C�(*C�(4C�(BC�(MC �(\C(�(cC0�(oC8�(vC@�({CH�(�CP�(�CX�(�@`�(�Ch�(�Cp�(�Cx�(�C��(�O��(�O��(�O��(�!��(����(����(p��( ��(P� �(`�@�(`�(H�(��(P�(��(`�(�[h�(]p�(�x�(����(���(�[��(�[��(���(����(����(�[��(����(0��(�� �(k(�($k0�((k8�(,k@�(0kH�(4kP�(8kX�(<k`�(@kh�(Dkp�(Hkx�(Lk��(k��(Pk��(Xk��(bk��(kk��(rk��({k��(k��(�k��(�k��(�k��(�k��(�k��(�k�(�s�(P��(���(��(�(��0�(��8�(P�@�(��H�(��`�(����(%���(P��(@L��(@I��(J��(�I��(�L��(��(��(@�(L@�(*�H�(PP�(@LX�( Ih�(Jp�(�Ix�(J��(��(��(@��(�K��(9��(`s�(l�(�h �({�(�(�e0�(��8�(0lH�(�P�(phX�(�s`�(`hh�(`h��(�g��(����(�e��(����(0l��(���(ph��(�s�(`h�(`h �(�g`�(E�x�( ���(����(����(I���(@���(���(���(А��(����(���(����(���(��@�(O�H�(@�P�(�X�(�h�(Аp�(��x�(���(����(����(����(H9��(��(P��(�� �(��(�(�0�(@�8�(�H�(��P�(P�X�(p�`�(@�h�(@���(p���(����(���(@���(���(����(P���(p��(@��(@� �(p�`�(��h�(��p�(��x�(@���(����(p���(����(����(P��(��(��(!��(/� �(C�(�(X�0�(`�8�(q�@�(��H�(��P�(��`�(Рh�(��p�(�x�(����(����(����( ��(֠�(���(��(��(�(��0�(��`�( ���(C���(��@�(p�X�(��p�(����(����(/S��(v���(#��(��(��@�(�H�(�P�( ~X�(`}h�(P�p�(�x�(����(~��(~��(�}��(���(���( ~��(`}�(P��(��(�� �(~(�(~@�(�}��(]���(���(%���(*���(5���(*���(;���(@���(J���(O���(]���(����(b���(g���(q���(g��(w��(|��(���(�� �(ȟ(�(p�0�( �8�(��@�(p�H�( �P�(��X�(0�`�( �h�(��p�(��x�(���(����(З��(����(Ծ��(/���(9���(F���(Q���(,T��([���(h��(r��(|��(���(�� �(��H�(,�`�(�h�(p�p�(�x�(����(����(����(����(����(����( ���(����(P���(����(p���(����(����(���(`���(���( �(�(��(�(`�(�(��( �(�((�(��(0�(�(8�(`�(@�(��(H�(�(P�(@�(X�(��(`�(��(h�( �(p�(@�(x�(��(��(��(��(@�(��(��(��( �(��(`�(��(��( �(0�(��8�(``�(�Zh�(�Zx�(p��(pR��(�l��(9��(����(`�(�Z�(�Z�(p �(pR0�(�lh�(���(P���(p���(P���(���(����(P���(����(����(����(����(З��(����(����(����(����(���(0��(`��(���(���(���(��(�8�(�8@�(@�(��(/S��(�(��(�)��(�0��(�(��(�(��(�(�(�/ �(��(�(�0�(P�8�(��@�(��H�(�x�(P�(��(Z�(��(`�(��(`�(��(1��(1��(���(���(��(`�(h�((p�([x�(���(���(���(��(��(��(��()��()��(,��(-��(L��(e��(e��(z��(���(���(���(���(���(�(�(�(�( �((�(0�(8�(	@�(�H�(
P�(X�(�`�(
h�(p�(x�(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��( �(!�("�(#�($ �(%(�(&0�('8�()@�(*H�(+P�(,X�(-`�(.h�(/p�(0x�(1��(2��(3��(4��(5��(6��(7��(8��(���(9��(:��(���(;��(<��(=��(>��(?�(@�(A�(B�(C �(D(�(E0�(F8�(G@�(HH�(�P�(IX�(J`�(Kh�(Lp�(Mx�(N��(O��(P��(Q��(���(R��(S��(���(T��(U��(V��(W��(���(X��(Y��(Z��(��(��([�(\�(] �(^(�(_0�(`8�(a@�(bH�(cP�(�X�(�`�(dh�(ep�(fx�(g��(h��(i��(j��(k��(l��(m��(n��(���(o��(p��(���(q��(r��(s��(t��(u�(v�(w�(��(� �(x(�(y0�(z8�({@�(�H�(|P�(}X�(~`�(h�(�p�(�x�(���(���(���(���(���(���(���(���(���(���(���(���(���(���(���(���(��(��(��(��(� �(�(�(�0�(�8�(�@�(�H�(�P�(�X�(�`�(�h�(�p�(�x�(���(���(���(���(���(���(���(���(���(���(���(���(���(���(���(���(��(��(��(��(� �(�(�(�0�(�8�(�@�(�H�(�P�(�X�(�`�(�h�(�p�(�x�(���(���(���(���(���(���(���(���(���(���(���(���(���(���(���(���(��(��(��(��(� �(�(�(�0�(�8�(�@�(�H�(�P�(�X�(�`�(�h�(�p�(�x�(���(���(���(���(���(���(���(���(���(���(���(���(���(���(���(���(��(��(��(��(� �(�(�(�0�(�8�(�@�(�H�(�P�(�X�(�`�(�h�(�p�(�x�(���(���(���(���(���(���(���(���(���(���(��(��(��(��(��(��(�(��(�(�(	 �(
(�(0�(8�(
@�(�H�(P�(X�(`�(h�(�p�(�x�(��(��(��(��(��(��(��(��(��(��(��(��( ��(!��("��(#��($�(%�(&�('�(� �(((�(*0�(+8�(,@�(�H�(.P�(/X�(0`�(1h�(2p�(3x�(4��(5��(6��(7��(8��(9��(:��(;��(<��(=��(>��(?��(���(@��(���(A��(B�(C�(D�(E�(F �(G(�(H0�(I8�(J@�(KH�(LP�(�X�(M`�(Nh�(Op�(Px�(Q��(R��(S��(T��(U��(V��(W��(X��(Y��(Z��([��(\��(]��(^��(_��(���(`�(a�(b�(c�(d �(f(�(g0�(h8�(i@�(jH�(kP�(lX�(m`�(nh�(op�(px�(q��(r��(s��(t��(u��(v��(w��(x��(y��({��(|��(}��(~��(��(���(���(��(��(��(��(� �(�(�(�0�(�8�(�@�(�H�(�P�(�X�(�`�(�h�(�p�(�x�(���(���(���(���(���(���(���(���(���(���(���(���(���(���(���(���(��(��(��(��(� �(�(�(�0�(�8�(�@�(�H�(�P�(�X�(���H��H�q5(H��t��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�������h�������h�������h���q����h���a����h���Q����h���A����h���1����h���!�����%}	(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���%��'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���%�'DH�=q�'H�j�'H9�tH�v�'H��t	�����H�=A�'H�5:�'H)�H��H��H��?H�H�tH�U�'H��t��fD�����=�'u+UH�=��'H��tH�=��'���d�����']������w������U�SH��H��H�g�'H�/��H��H�H���H����[]�Df.���SH�H��H��t+H�-�'H�{��{H�H�C���u�C����1�[�D������SH�H��H��t+H��'H�{��{H�H�C���u�C����1�[�D�������AWE1�1�AVI��AUATI��USH��(H�dH�%(H�D$1�H�L$L�D$H���H��L����Ņ�u*L�|$H�T$1�L�����H��t9H�2�'L����H�T$dH3%(��uxH��([]A\A]A^A_��1�1�L�����H�T$��YA�EI�UI�Ut���tA��H���H�5iH��1��%��1Ҿ%L������v����1���AWAVAUATUH��SH��H��XL�'dH�%(H��$H1�M��$��L���,#A��$Y�H�EH�T$`�H���@�ƉD$������H��$�L��$�I��$8I��$X��L��$�L���P1�H��L���Y�1�L��H�����Å�u!1�H���H�����Å��!�H��$HdH3%(����H��X[]A\A]A^A_�D�D$E1�H��� 4�Å�u�I��$@H����L9���M��$I)�M��MN��|$�S�D$M���PL��L���Z"I��$@H��t!�|$H��1�H�L$���H�L$H9����L��E1���|$I��$�YL9����|$L���t�H��~LH��A�DM��t>I�I)�L��H��������+L��L���h H���0"���(�*H���"���*E����@L�e�/�%M��$M�}L���F�M��$�M��$H���]����x�S���I��$@I��$�L���1��������A���D$����I��$`H�����I��$@�H�D$ E1�H�D$�YfDL)�E1�I��$@�|$L���N�I9��
M�L��L��� H���!��us�VL��H���+��Å�ueI��$H�T$H������Å�uJL�|$ M���TI��$@L��H��t�L9��k���I�4I)�IDŽ$@�a����*�|$����"���f�L���H I��$@�����@�|$��H�$�I��$@�7���H��$�H�t$ �^��Å�����H�Q"H�5���L$8A��$XHD�D$4Hc|$0�ɍ�l�A��D�H�
B�'H��V�PH�H���D$0P�D$<P�D$HPH�|�'RD�D$\H�'L��L��1��a�H��01�L��H�������!���L��L���A��$X�����D$�5���D�t$H�T$`�������H��$�I��$@������|$H��L��� �H����H��A�DI����fD�;L��H�������L���������L�����H���P���A��$`
�������L����������1��6���fD�|$�����D$���H������*E������H�5	L��1��$������|$��g���I�UL��1�H�57�¼���D�7�~���fD�������$���fDI�UH�5�L��1���v��q���H�5 L��1���[��V��������H��8�dH�%(H�D$(1�H�t$�Y���uEH�L$H�t$H��S㥛� H��H��?H��H��)�H�|$(dH3<%(H��u"H��8�f�1�H���V�H�4$�T$�������H��������H)�H��S㥛� H9�:H�
�Zd;�H9�|!)�Hi����Mb����)�Hc�H��H���D��H��������H)�H��Z�{cH9�-H��/�����H9�|Hi�@BHc�Hc�H�H)��H���f�AWAVM��AUI��ATUSH��H��(H�L$dH�<%(H�|$1�H�I�H����H���e��H���������H��H��H��H��H�C�'H��H�z�I��H����I��H���M���CDA��?H��H��L��C�D
E�L5H����P1��i��XZI��H������D$H�CH���e�C�D$H�CH���w�CH��H����D$�L$D�L$�T$�4�D�������<	Ɖ�����҃�0	�A�LH��E�D�������+���H��L��H��1�E�L5�I�����H���<���H�D$A�1�L� H���'�L�����I�1�H�\$dH3%(��H��([]A\A]A^A_��H���������H��H��H��H��H���'H��H�z�I��H���o�����f.�H��L��1������~���DH�ÿHc�H�T$�H����u�1����@H�ÿ����f���AWAVAUATUSH��H��8H�H�H�t$H�T$����H�Ÿ=H���#@��������<=��1��@H���T3H�~��=t��u�E1���=���=H9���H��H�DmL)�H�D$(H�xH�m�'�H�D$ I��H����H����L�k�M�d�H�-\@M�M�E1�1�A�9@��=u}H��I��I��M9�u�M����I����H�����5�A�H��L)���I��I�M9�u�H�D$H�L$ A�H�H�D$H�L$(H�1�H��8[]A\A]A^A_�A�B�@��Atg�D8�tH��D�TE��u�@��uOH��H��N�����H�T$��H�T$A�G��H�T$��H�T$A�G�6����1��@H��'H�|$ �H��8�=[]A\A]A^A_�fDH��H�~�<;=A��R���H�xA��C���f.�<=t
�=����1������L�|$ ����D��H�=�	�����H�=E	������H�V1�H��tH�GH)�H;�����U��1�H��SH�=��H���'�H��H��t0���:t(��t$���H��H�H�����J����t��:u�H��H��[]�DSH��H�?�THH���'H��[H���@��H�ot�@��@f.�AWAVAUA��ATI��H����USH��(dH�%(H�D$1��2���H���)H��H���~��I��$�H��H�PI���SL�=X�'H��H����I��$��u1I�H���H�L$dH3%(H����H��([]A\A]A^A_�H�|$���I��$�H�UH�$H��t�H�L$H)�H9��H�5�L��1�1��y�I��$�I�VH����Q�w���A��$I��h���H���D��H�=���:���H��H��t2H�����I��$�H��H�PI���#RH��H����������f�1��������@�����'H���'��t�f.�H��H�S�H��H�
FSL�/����zO��1���u�8�'H�Q�'H���f�f.�����'��uÐH��H�=%�'�R���'H��Ð��1�H��tDH�(��H��u���Df.����GI��t��
t,1��f�H�w �ѿL��H���y�f�H�w �ѿ
L��H���Y�f���SH��0dH�%(H�D$(1�H����tuH���H��thH���t���תH�|$�}��H���H���H�t$H�3���H�D$H�D$H�D$�oQH���t
�H����H�D$(dH3%(uH��0[���f.���AUA��ATI��UH��SH��H�H���H��t���*�H�}D��L���[���H��H��tH�@H���t
�H���W�H��H��[]A\A]�f���AWAVAUATUSH��H�H���R1��fD��H�@(�kH��u�E1�uH��D��[]A\A]A^A_É�H�t$I��Hc�H�5�L�$���L�5h�'L��A�I��H����H�D$H��H��I��H��H�R(I��9��H��A�I��H����H��H��L���'��uiHc�f�A���~1��I�<�I��H�H�8I��H����u�1�f�I��I�t�H��H�r(9��K�D'�H�L$H�@(I�H�H���'L��E1��f�H���'A�L�������f�E1�����A����f.���AUATI��U��SH��H����aH�t$tH�t$�B���������H�����H��H����H�������I��H���'�H��H��tnH�@H�D$H�{H��u��H�{t>I��$�I�UH��H���KI��H��tOH�@H���'H��H��L��[]A\A]�H�C�fDH�a�'H��H��E1�[L��]A\A]�L�-A�'H��A�UH��A�U�f���H��toUH��SH��H��H���t����H�mt+H���tH��H�߾[]�>�fDH��[]ÐH������H���u���@H�nt�H��������H�
�MH�~M�L�������If.���H��tWUH��SH��H��H���t���B�H����LH���tH��H�߾[]�}�DH��[]ÐH���L���AWAVAUATI��USH��H��dH�%(H��$x1��D$$ƇH���H�D$(L�t$pH�D$H�D$0H�D$�~L��L�����H��H�t$H+H���
�DpH�����H=��wL�|$(I9�t
A�?:�kL�+1�L��L��H�5q1��ҪH���?H�[H���}L�+M��t�A�}-t.�:L���1��H��H��t�H��L)�H����N���1��f�1�H�L$$I�}L��H�5C�����taH�H�5�L��1��M�H�[H��u�@IDŽ$1�H��$xdH3%(�-H�Ĉ[]A\A]A^A_�f��t$$L����H��H����H���@��I��$�I��t��L��� �I��$�I�UH���,II��$�t
�L���T�H���'H������D$$I�G1�H�D$H�$f�A�?��M�o�,L������H����H�D$(A�[H����L)�I����H��?��L��L�l$�@L������t$$L��B�D<0�BH����H�$H����H�A(L�|$(H�$A�?�i���H�����t$$L����I��H����H�����I��$�I��t��L���֢I��I��$�L��L���oHH��t+�L$$L��H�5�1�L���B�I��$�L��L���GH���'L���L$$L��H��L���!���H����H�hI��$�H�@t
�L��裢L�D$�L$$1�L��H�5��L���Ƨ�|$p*���|$q����L$$L��H�5��1�L��蘧AƄ$���f.�L9�tW�x�]uQM�oH�P�L)�I���D���I�����f�L�����L�����H���f���H�T$H�5��L���$�L�+�6���@I��$�t
�L���H���;��������f���H����u�k��*��AWAVA��AUI��ATI��UH��SH��8H�dH�%(H�D$(1�H�H���H��H�D$ t���àI�<$D��L�����H�D$ H��tZ1�L��H�5n�H���6�H�D$ E1�H�@H���u?H�EH�L$(dH3%(D����H��8[]A\A]A^A_�DH���A�����t �H��蓠H�D$ H��u�f�L��������H���t=�H��虌H���H���1����1�H�߉D$�u��D$���������H�L$D��L��L����H�D$H�|$��H���t��H���|�H�t$D��L��H������H���H�D$ t�H��譟H�D$ H��tSE1����A��������DH�L$D��L��L���&H�D$�g����D$��uH�D$ �w���fDH�|$�F9��H�t$ L�������u�H�D$ E1�H��A���@����J��f.���H�M��x�{���������f���H����t1��D�c���USH��H��H���H��tH�GhHLJ�H���0*�Ņ�u
H����[]ÐH�;H�޺�H����[]��H���H��?~��H�W)QΠ�EH��H��H��H��?H��H��
H)�H���[&@Hi�����H�|�j�Y�HH�H��H��?H��1�H��
H)�	I��H������DH����	1����DH�|�j�Y�HH��H��H��H��?H��H���������H��
H)�Hi���H�H��H��H��H��?L�2I��I)�L��L��H��H)�1�L��H���	����H�--:--:--�GH��@f.�SH��H������H���?�~~H����?�H����pH9��6H�����H9���H������	H9��`H������'H��H9��"H��(H���H��1�������#fDH��H�[��1�H��
H�����H��[�fDH��H�.�H��1�����H��[�f�H��H���H�߁��?H��I��
�H��H��I��1�H��I��H����@���fDI��H���H��A��H��H�q�<�L��H��1�I�H���I�����H��[�DH��H����1�H��H�������#���fDH��2H���H��1��������f�H��H�U��1�H��H���������@f.���HLJ(HLJ0��X��@f.���UH��S��H������
wHL��H��Ic�L�>��H��xH��t%H���H���H���n��H��HN�HH��[]��H���H�����H���H�����H���H���ƅ��f�H����{���@H����k���@H����[���@����t���H���ƅ��<���H���H���H����H����?���@f.���H��SH�|$L�T$H)�H��tFH��tAH��S㥛� H��H9�7Hi��H�H��H��H��L��L�����H9�~
H)�H��[�D1�[�@H�H��H��������H9��Hi��뻐f.���H��8�@��ATI��UH��SH��(H��H�� R[]A\�fDH��H��H��H���G�H=�~�H��8H�� L��H��H��~�H���H���L��H����H=�~�H��@L���H���H��[]A\����SH��LJ��)�ƃ�H�߁�X�H��H���H���Hǃ�ǃ�Hǃǃ[����@��H��@�@����XH��x��@H��(��X�HLJ(�࿉�XÐf.�����XH��x�� H��0��X�HLJ0��߉�XÐf.���AWAVAUATUSH���H�dH�%(H��$�1�L��8D���L��@L�D$��H���H��I��H���L��H�����L�D$H��4�ׂ�CH��H��`H��H��H��H��?H��H)�I��H��S㥛� H��H��S㥛� H��H��H)�I9���Ii��A�H��LO�H�I��H��H��S㥛� H��hI9���Mi���H��HN�L��H�H��I��L��p1�H9� �D��A����*H�� A��D��)RD���)�H��@H�8Hc�L�4�H��I�� H�����H�H�)L�i�H�������1҃�~��A����)R�)���Lc�H��L��I��H��H�LH���H��H���HD�I�� J+�� H=7�A��f�f���H*��H*��^
���^��H,�H��H���X�̓���H��X��H��P���������u4H��@H���H���TH�5e�1��~����X�ɀ��X�� ��H��pH����H��0H��H�H��H��H��'�gH�ףp=
ףH��H��H��@H�H��?H��H)�H��H�H��H�D$��@tH��hH����H�D$E1����1�H��$�dH3<%(���lH���[]A\A]A^A_�I�4?�H��H���M��A�L��MO�H�I��H���B���M��L��IO�H�H��I���[���@Hi��H�H��H��H��V����H����H��0H��8H��(H���L��@��X��1�H���������H�5P�H��1��U����H�߾�f�f��f��f��H����H*�(�H*�@�H*�0�H*�8��P���D��@��H��h1�H�D$H����H��(H��H�H��I��H��'��H�ףp=
ףH��H��H��8H�H��?H��H)�H��H�H��H�D$I9�LL�M��~$L��L)���H�D$E1�H�D$1�L��$�L��$�L�����L��L��L��$���L��L�����X� �uH��0H��@H��8H�Ѩ@tH��(H�H�H��'�WH�ףp=
ףH��H��H��H��?H�4
H��H)�H��H�H��H�D$H��HH�L$HL�d$PH��$��J�H��pI�t$(H�D$@�4�H��hI�t$H�D$8��H��@I�t$
H�D$0��H��8L��H�D$(���H�L$HI�t$H�D$ H�����L�\$@H���H�5�H��1�ASAWAVAUL�T$XARL�D$XAPH�T$XR�t$PL�L$`L�D$PH�T$H�Q��H���H��@�����f���@H�5��1��*��H������fDH��@H�����f�H�D$H������H��H��H��H�H��H�D$���H�D$H�������H��@H��H��H��H�H��H�D$���@H�D$H�������H��8H��H��H��H�H��H�D$�a���H�D$E1�1�������f�f.���USH��H�Hǃ �����Ņ�u��Xtǃ�H����[]Ð��Pu�H���H�5� 1�������H��tkH��tfAUI��H�zATUH��SH��H��H���'�I��H��tFH��H��H���0���A�L��L��� ��L���H���'�H����[]A\A]�D���H�����[]A\A]�fDAWAVI��AUATUSH��H��(H�|$H�t$H�L$�8��H�$H����L��H���@�����A��A��H����A ����H�{H�]H�<$�L���H��H����H�SH�sH�����A�Ņ�u^H�|$���I��H��toH��H���̿����A�����PfDH��DL�����I��H��t8H�u@1�H���ҹ��A�Ņ�t+E��H�|$�H��(D��[]A\A]A^A_�@A���H�u8H��tL��������*H�{HuH�SH�sL��� ������H�SPH�s �€tH�shH��H�����HD����H�U�H�=��H���������H���'H�
��'E1�L��H���'H�����L��T�������CP��H�sXD��H��tH�{HtL��������A����H�mHH��t�������H�H��t���>���E��E����������D��tSH�S0H�����H�s(L��H��HD�������{���A�����D�CPQt��v���DH��L������<�����@tL�K`H�T$E1�1�L���u���H��H�sL��葶����L�$$����1�L�������t���f���AWAVAUATUS�H��H�|$X�H�t$H��H��$�H��$�L��$�L��$�dH�%(H�D$x1�H��$��D$`H�D$hH��$�H�D$pH���'�H��u2H�t$xdH34%(���7H�ĸ[]A\A]A^A_�f.�I��H��E1�E1�1�L�5{�H��tvE��tq�EL�mH�����e����Ic�L�>��f.�H�K@�L��E��u�D$`��/��	�ƒ�HT$p�D$`H�H�C(H��u�f��D$`��/���ƒ�HT$p�D$`���u�L��E1�L�|$PH�D$��DH�}��H�}(H�E@t���H����	H��	��H�}H��H����
H��
���tH�}0�8H���WH�uH����L�m@A��uH9l$P��L�uH�](A��ku=M��t8H��H��uL���J���H�pL����I��H�EH���L�m@H�](�E H�EhL�]�p�H���'L�}HH�D$H�EXL�\$8H�D$H�EpH�D$ H�E0H�D$(H�EPH�D$0H�EH�D$@�H��H����L�\$8L�X1�M��tH�D$@H��uL��H�L$8虳��H�L$8H�AH�D$0M��A�ȀL�qH�A0H�D$(H�YhH�A8H�D$ L�y(H�A@H�D$L�APH�AXH�D$H�A`M���KI�D$HH�AHI�L$HH�E0H�mxI��H��HDD$H�D$H����H�]H������M������DL�|$P�L�%��'I�$�}tH�}��H�EI�$�E�} tH�}��H�EI�$�E �}8tH�}0��H�E0I�$�E8�}`tH�}X��H�EXI�$�E`H�mxH��u�L���	f�I�$H��H�ox��H��u��W���f�H�K@H�{�L�%!�'�I�$L��D�}tH�}��H�EI�$�E�} tH�}��H�EI�$�E �}8tH�}0��H�E0I�$�E8�}`tH�}X��H�EXI�$�E`H�mxH��u��3���f.�H�K@H�;�Q���L��E��u�D$`��/���ƒ�HT$p�D$`H�H���H����f.�H�T$hH�BH�D$h����DE1��u���H�K@@H�{h���L��E��u�D$`��/��ƒ�HT$p�D$`H�H����H�ChH�C�)���@L��E��u�D$`��/���ƒ�HT$p�D$`H�H�{p�o���H�Cp���fDL��E��u�D$`��/���ƒ�HT$p�D$`H�:H�{0���C@�%���H����H�-�'�H��H�D$��H��'����H�T$H���WH�P0H�SxH�@@H�PxH�CxH���@8�E���H�{�����L��E��u�D$`��/���ƒ�HT$p�D$`H�H�C����fDL��E��u�D$`��/���ƒ�HT$p�D$`H�:H�{��C@�E���H���H�M�'�H��H�D$��H�.�'����H�T$H���wH�PH�SxH�@@H�PxH�CxH���@ �e���H�K@0H�{H����L��E��u�D$`��/��ƒ�HT$p�D$`H�H����H�CH���L��E��u�D$`��/���ƒ�HT$p�D$`H�:H�{X�_���H�p�'�H�CXH����C`�����C@
�6���L��E��u�D$`��/�Q�ƒ�HT$p�D$`H�:H����H��'�H�CH����H�K@�C �h���H�{P����L��E��u�D$`��/���ƒ�HT$p�D$`H�H�CP�+���fDE����D$`��/���ƒ�HT$p�D$`H�*H��tTA����f��L�%|�'�[�����L�%d�'�C����H������L�%<�'�����L�m@A�������H9l$P�����L�|$P��"���H����0H��0�I�������H�D$HH�H���H�H�D$HH������;��H�KH�3�DH���y���H9�u�L�m@A���*���H9l$P����H���T�H�EH���X����EL�m@���f.����H�}X�O�H���H��H�$�'�H�E0H�������E8H�]���L��E��u�D$`��/���ƒ�HT$p�D$`H�H�������H�C�=����L�|$P�����H�D$X����fD�L�%��'����H�T$hH�BH�D$h�P���DH�}�3����H���x���H�p����H������H�@�'�H�C0H�������C8���H�t$H���H��HE�����H�T$hH�BH�D$h�a���DH�T$hH�BH�D$h�X���DH�T$hH�BH�D$h�P���DH�T$hH�BH�D$h�X���DH�T$hH�BH�D$h����DH���'�H�CH������H�K@�C ���@H�T$hH�BH�D$h����DH�T$hH�BH�D$h�X���DL�%A�'L�|$P1�I�$����f�H�T$hH�BH�D$h�[���DH�T$hH�BH�D$h�#���DH�T$hH�BH�D$h���DH�T$hH�BH�D$h���DH�T$hH�BH�D$h���L�%��'H�׻A�$����0�����AVAUATUSH��H�$H��H�$H���I��H��I��1�dH�%(H��$�!1�L��I���sL���pH��t1�1�H��L������ut1ҹH�5��L���Ƃ��uZH��$�f.�L�� �H���KH��H��tcH���H��v�H��H��L��A��H9�tŻ�fD��L���o��H��$�!dH3%(uH���![]A\A]A^�f�1����������H��tgATUH�-U�'SH��H�{HL�#����H�CP�uH�{�UH�CPH�U�Xu
H�{��H�UH�{8��H�{X�UH��L��UM��u�[]A\���Df.���AUI��ATI��H��UH��SH��H���oH��t!H��L��H��H��L��[]A\A]�>�fDH��1�[]A\A]�f.��USH��H��H�-x�'H�8�UH�{(�UH�{�UH�{ �UH�{�UH�{�UH�{P�UH�{H�UH�EH��H��[]��f���H�H��@\9B\�����D��DAWI��1�AVM��AUM��ATUSH��螮��I��I�>H��tB1��@H��H��H��t/H�W0H�L9�}�H��t�H��t7H�]I������H��H��u�I��M9�u�H��[]A\A]A^A_�fDI��Ȑf.���AUATUSH��H�H�.H�{L�eH�����F���I��M��tVL���6���L9�u+H�{(L�e(H��tT����I��M����L������L9�tFI9�҃���H����[]A\A]�fD�����H��t�H����[]A\A]ÐE1�M��u��H�{L�eH��tc讥��I��M��t~L��螥��L9�u��C\1�9E\��H���T�[]��A\A]�DE1�M���;���L���d���L9��*����P���fDE1�M��u��fD�����H���7����m���D�����H�������|���DAVAUI��ATI��US���L��H����H9�v
1�[]A\A]A^�f�I��L��H��I)�K�44����tڸH9�t�C�|4�.[��]A\A]A^Ðf.�S�.H���£��1�H��t��[��H��H�5��豿[���‰���ATL�%?�'USA�$H��H��t/H���A����;"H��tYH��t$H�M�H����"t\�;/u��/t2H��[]A\�f��;/t�H���'H��[I�$H�=�o]A\��fD���H�sH��H��H���͵�����;/u�H��t�H�D+��뒐SH��H���H��0dH�%(H�D$(1�H�T$������uH�T$H�޿
�۸������H�L$(dH3%(��uH��0[��ٮ��f�SH�GH�h�L�`�L�OL��L�WH�5I�H��H�
�nL�_0HD€XHE�M��LDɀ@H�O(t I��H��tX�9.H�5�_HE���H��H�5��HD΀ZH�5��PH�=�ARASHD�H�=��1�S�x���H�� [�f�H�
W����H����ATUSH�������t1�[]A\�H���X����.H��H��I���*H��t,H)ؾ.H��H���)H��tH��H��H)�I)�H��HE�I�I9�vD��H��H���{�H��H��	�H��H1�I9�u�[��]A\�D1��D��Y���@f.���AWAVAUATUSH��H�$H��H�$H��hH��$� H�D$ I����M����$� H�|$1��L$L�L$�T$>�$dH�%(H��$X 1�����`�H�D$(H��'�H��H����@�����
H�=:�L��H�D$H�����u�CZI��
A�>#�
�
L�����H��t��
L�����H��t�H�l$HH�5B�L��E1�H��L�-2�轴��I��H�C0H�D$ M���L�|$0M��A����KcD�L�>��A���H�]I��H��$X dH3%(H����H��h []A\A]A^A_�f�L������H=��C	�;L������I��A���t <	t< u@I��A���t< t�<	t��D$0H�D$PL��$P�l$8H��1�L��H��L��H�5��Ƅ$P�D$P�w�������M��tbA�}t[A�EM�u��u�a�I��A����P< t�<	t�;L���k���I��H��u�L���+���L�I���t����H�kPH���e1��}"H�K0�
��1�H�H���,{������H�C0H����H�C0���1�A�>.��I�H���'L���H�C(H����H����H��H�5)�1�A��诲��I��A����H����L��H�5��蚹H��H�5�����C@1��s���I��H�����H�5Y�L��L�=	�'�I��������H�56�L���������L����H�CH����H���w���H��H�5m�H�C H��I��A��1����I��M���4H���+D�d$>�CXH�5��L���ʸ����H��H�5�1�衱��I��A����H����H�L$ 1�L���
�yH��H�5����A��A��1��]���I��H����
E����
L�=��'L��A�H��H�5��H�CH��A��1�H�D$(����I��H���F
H�L$(H���8
L��A�H��H�5`�H�CH��I��A��1��۰��M���7
H���.
A�H��H�5)�1�A��记��I��H������f�H������1�����f�H�=�g��H�=�gI��H�CA�H�C H��tM��A������CXH�5D�L���N����
A��<$t
�CX�o����H�D$0��u�1�H��H�5v�����H���9��d���@L��H����������!�%����t������D�H�QHDʉ��H��H��L)�2H����������!�%����t������D�H�rHD։�@�H��H)�I�H�����H�����H�4H���{D�H��t�@�< �&<	�H���6��O<	t< u9L��I�I�|$H���H��@�H9����P�H���� t�	t���$PM��u�@I��A���t< t�<	t�H�{��H����H��H�=�f衵���aH�J�'H�{�H�-�'L���H�CH��t#H�(�'H�{ �H�{���H�C H��������l$8@�l$0���fD�;L���#���I��H���<�������H��������H�C0�|$0�Y���H�{(uH�|$�H�{uH�|$ �H�{�(���A����uA��tH�{0�����CYA�����|$A���C\��H�|$H�{(tH��t���H�{(������D�4$M�$�I�,$H��u<���H��t�F���t�C@8E@t<f�H�EH�������H��H�sH�}����t�H�}(H�s(H��u�H��u�H�} H�s H����H��t��}Xt�{Xu	E�����ͳ��t��{Y�GH�EL�%l�'H�}H��E\�C\A�$H�}A�$H�}(A�$H�}A�$H�} A�$H�}8A�$H�}HA�$H�}PA�$�oH��E�oKM�oS U �o[0]0�oc@e@�okPmPA�$H��@H�H��u�A��H�������L�EL�M(1�H��H�M�u0H�V�H�55��uH�|$(�@r_AX�Z���A��=�z���H�o�'H��L��H�CH�\�'�H�{��H��H�C��������T$0�7����L�=)�'�l���@�}Y��������f�H���'������f�I��I��H��/�,���H����L)�H��L��L���Ҳ���Q����e���DL�����n���1�����H���'H��1��h���H�{8H������1���H�������HH�H�C0���H��H�=��D�L$?許D�L$?�����<$uA����t�D$0�'�����CX���L���'���H���2����z���H�{(����H��������H�L$(H��H)�H�H9�HN�H�S0�
�����u�< t<	uH��tH��A�D���u��DP���H���'H�|$�H�C(H������#���L�t$ �?L��豔��H���2H�|$ �/H)�H���3H�������L�t$ L)�H�xI��H�hH�@�'�H�CH�������H��L��H��蓛��H�CB�D H�{��H�C H���`������fDH��H�=n]�)����t1�A�>.��I�L���-����H�|$��L����H�{(�D$?H���'�H���'L����T$?H��H�C(�n���������C@���H��H�=��D�L$?蝯D�L$?�����CZ���/L��艟������A����I�$���H�yH�D$H�|$�W�H�t$L���D$?�����������D$?H�Ӧ'H�{(�H���'L����T$?H��H�C(�=����Z���f�A��=�'��1���H��H�T$1�H�$��H�$H�T$1�H�|$H�5W��n�/�H��H�=��螮���H�G�'H�{H�H�*�'L���H�CHH���������H�|$1�L��H�5/��m�D$>�D$0��H�SL�C(1�H�5;�H�L$H�|$�mH��1��J���������u�H���'H�{(�H���'L���H�C(H���'��D$?�T���@M��H�=�sL�|$0A�H�CH���	���E���������L�|$0��L�|$0�A�������t�����fDH��H�=���q���tnH��'H�{P�H��'L���H�CPH��������f�H��1�L�|$0A�H�5��������L�|$0��t���L�|$0��e���H��H�=M������)�H���'H�{8�H�|�'L���H�C8H�����i�������L�|$0�����L�K(L�CH��1�H�K�s0H�5���sH�|$(��kXZ����H�KL�K(1�H�5��L�C�s0H����sH�|$(�kY^����AWAVAUA��ATUSH��H��H��8H�4$H�T$ �W�H����H�,�H�}��H����H�<$��L�}�D$M���}H�D$1�f�A�Xu	E���I�(H��t&A�@t�|$�eH��H�<$虫����I�o H����H���<���I��H����H��'H�|$ �I��H�����?H���8���H��t�H��'A�>/L�t(L��A��H�ˢ'H�=r[�I��H��tjH�â'L�L��L�L$軏��L�L$I9�H�D$(��L��L��H���ڏ��L�L$���}H�L$(L��I9���C�<&/��A��fDM�?M������H�D$H����H�,�H�?�'H��I��H����H��H��tfDH�H�H��H��u�L�t$H�
���L��L���u���I�$I��t%I�T$I�D,�H���@H�
H��H�2H�1H9�u�I�D,�L��H�H���'�H��8H��[]A\A]A^A_�@A��DH�i�'��`�H��H���9I�8H��tH�I�'�H�E8H���I�(H��tH�*�'�H�E(H����I�H��tH��'�H�EH����I� H��tH��'�H�E H����I�H��tH�͠'�H�EH����I�H��tH���'�H�EH��t{I�PH��tH���'�H�EPH��t`I�HH��tH�x�'�H�EHH��tEI�G0H�D$H�E0A�G@�E@A�GX�EXA�GY�EYA�GZ�EZA�G\H�]H��E\����@H����H��tH�+H����H��H��u�1��k���f�L������H�4$����������A�@�|���I�(�v����f.���H��t^AUI��ATL��UH��SH��H�}H��t�H���H��H��u�H�EH��L9�u�IDžH��[]A\A]�����H��tSfDH���H��H��u�[�fD����H����AWI��AVL��AUI��ATUSH���I�mH��tMI��H���,�H9�HD�L9�tLI�$�C�I��H��H��tH�0H�t�I��H��H��u�I�mI��M9�u�H��[]A\A]A^A_�f�I����f.���H��t`AVL�5f�'AUI��ATM��UL��SH��A��H�}H��t�H���H��H��u�H��L9�u�[I�L��]A\A]A^���fD��AWI��AVA��AUI��ATUSH��H��H���~ƂH����I�ԹH�=�^H���������H���'�D$H�(E��$H����H���'���H��H����fDE1�H�꾈H���ś��I��H����H���Q���H��tA�|�
tA���@E��u��H��H�=վ诊��I�؅�t	L�C�A���t%��	t
�� uDI��A���t
�� t�	t�j��E1ɹjL��L����XZ�J����;��E��$AƄ$H��L��[]A\A]A^A_�fDH���'H��L���l��|$t�H���͒���H�D�'� ��I��H����H�-�'H�H��t@H���I��$H����AƄ$�C���H�5�H��蚕���D$H���T���H�=����I��$H��tFAƄ$M��E��M��������H���'1��M��t,�|$tH���	���E1����H���'1��L��������L��������f���ATUSH��H������H���V]L�%��DH�mH��H��t7��
H��H��H�u����H��u�H�UL��H���bH�mH��u�H��赔��H�߾Hǃ[]A\�9]f�[]A\Ðf.���AV��AUATI��US�\I��$H��txH����E1�E1�D��H�,�H��t8DH�}(t#H���!�H��H��tYH��L���
H��tYI��H�mH��u�A��A��tI��$�fDL��L���p\H��[]A\A]A^�@L��踓����fDH��'H��1�L��蚓����1��f�f.���AWAVA��AUATUSH��H��(H����ZH��t������H���y[H��L���H���S���H�5ZL���������H���'���H�=�L� L������H��H���.H��'H���I��H�����D$H��H��E1��H�H��t#�H�x(tD��A��I�D�H�H��u�H��H9�u�H��H�
n���L������E����A�G�L��I�D�H�D$H�h�'H�D$�6f�H��H�5�kL��1��,���H�D$L��H���H9l$�SH�}���I��H��u�H�5߹L��1���H�D$L���|$��H���H�5f�H��1��_E��t!H���H��H��t	H9��t�>���H��(H�߾[]A\A]A^A_�ZL��H�5X��!���I��H��t�H�=j�H������P���H��H����H�Y�'H���I��H��tK�D$�M������tH��H��t���Hǃ��H���Y�%���f�L���X������H��'H�D$@H�D$L���|$���L���#�������f.�@H�GH#H!�@��t H�G�H�G�f.�@��@tH�G@�H�G�@@��u@��t4H�G��DH�G�H�G�f.�@�� u��t-H�G��p���H�G ��[���fDH�G@1��F���f�H���P���u���~���t����t	�1��D���t���t���À��u�Ð����u������X���@f.���H������u1��f����f.���SH��1�H��H���j���uH��[�H�߾�D$�/��D$H��[�D��H���'AT��USH��L�'��H��tJH�3H�x8H���KLH��H��I��$tL���k[1�]A\�@H������fD[�]A\�fD��L�ATU1�SI��H�CH��t2H��I��H�H�sA��H9�~!H���y���HkH)kH��[]A\�f�H���X���H��H�kH��tPH��H�CI�$H�SH���H��xH��H���H�胃Hǃ[]A\��H�CH��[]A\��AVI��AUI��ATUSHVxH�����H���H��L�fpH9�wAH�,RH�H���H��'H��H9�HC�I)�H��H��trI�I���I���L�cpH���L��L���[���H�CpLkxL�H�Cp�1�[]A\A]A^�fD1���H�5z��\[�]A\A]A^��H�5��L����[��f.�ATUSH�/H��H��t?��p
��t4��t/���H��L�b0��t+L��1�H��?ƃ���ubM����[1�]A\�����t̃�w*���	��u!H��`H���tL9�������t�ƃ�H�����H���H��t!H��xH�� @��H����@�uH�� u>L)�H���~c��@��uY��`��uO����L���H�5��H��1��	Y�H����HDž�����@H��[]A\�,y@��������������ƃ�H�5��H��1��X����fDH�RI9���H���@��	�����ATI��UH��SH����}��H��L��H��H9�HF��I~��[]��A\���Df.���AWAVA��AUA��ATUH��SH��H�ƃ�L��ƃ��J��H���� ��H��H��0H���H��8M��tpI��$ t4H��'M��$ H�tI�?��H���'H�L����IDŽ$ A��H����I�|$8�(D��p
����vRD��E��uE��t]1�H��[]A\A]A^A_�@���=�t=�t	��yt{H���X�0���fDI�D$0ID$(H���D���u���yu�H�� ID$(H+�(H���u���1�H�5ѸH���X�4�\�����H���S��s���@f.�ATI��UH��SH��H��u�4@H�[H��t'H�;H��L�������t�H��v:���[]A\��H��L��H�=V������t�1�H���É�[]A\�1���f�H����uH��H��H���b���f�SH��H�=�H��H���Z������t	1�H���‰�[�@AUATUSH��H���<:t��t�H�����t<:u�<H���;@��u��H���;@��t	�?���u�
H����y��H��H��tfH9�w��H��H9�t
�}����u�H���'H)�H�}I��L�m�H��H��tL��H��H���Հ��B�D%H��H��[]A\A]Ð�
H���sy��H��H��u�H���3z��H�H���q�����D��ATI��USH��H���
z�����H��H�t	��
uJH��8�.f�H�;H��L���•��tH��(�Qƀ�vH�[H��u�1�[]A\��H��@��Df.�AWAVE��AUATI��UH��SH��8L�/dH�%(H�D$(1�E��I��HI�� HE�H�F�H��tqH����H�� ��H����H����E��� ����c�E�E1�H�|$(dH3<%(��H��8[]A\A]A^A_�fDH�{t�C��u�A���S��u��EH�
{���A��藦H�
���u�H�}@�E����M��$�M���WH�R�1�H�5��L����R�E���E1��E���fDH��@�/���E���"���H��(����H�5o�L���8mH�������H��'I��$0�I��$(H�=#�1��~��I��$0H���eH�
���EE���;���M��$M����H����3���A���װH�
c�������z���E��u�I��$(t�H�5��L��H�L$�|lH�L$H���?����E��A���gMH�
������������L�=X���@L�-X�U���@������H�5��L���lH���.H�}@�E�����I��$(���������H�5���t���H�������I��$M�<$H�D$H�D$I��$�H�D$ I��$�H�=R1��*}��H��H����H���6v��H�L$ H��L��L�D$H���~�������L�=�'H�|$ I���H�|$H�?��E��H� WH�5��HD�H�T$ H�=��1��|��H�|$H�H�|$ A�H�|$H�?H��tKA��EH�
�����I��$0M�<$H�D$H�D$I��$H�D$ I��$�
���A���_���H�I�'�D$H���D$�F���H��и	�7���軀���f.���������ATH�����H�ƿ���USH��(H�/H��HE��H���c�D���E������H��u	H���	=�t�����=+��H��p���A�Ą�uƅ�H��x�����t%���=��8���t=+�$E���C��p
��t��t
�����H��'H����H��'H���HDž��H���H���;H�������1�[]A\�@��P�t�[]A\�D����@���=+����u����t���p
��t���t�H�S�'H����H���H����ƅ��k���fD���1�H�5��H���O��V����H���H�ƿ����U�������ƅ���������J���D��0�i���1�H�58�H���bM�H����H�Hǀx
�8���f������fDH������j�������f.���AVAUATUSH�/���L��p���������L��pM��tH��xuL��xL���M��tH���uL���I��I��H������ƅ���t"���uH��H��t
��T��L��L��L��H��E1�[]A\A]A^����D����U���H��(�G���ƅ�1�ƅ�[]A\A]A^�@8���i���H��H���A�L��������P�����f.�H����d����[���ƅ����AWI��AVD��AUATUSH��L�'H�<$@���AM��$HI��$xI��$��A���tv�	L��H�=���<q����tx�C��H�MH�KH�{u��I��A���t<,u�<,����I���˽��t�I��A�?@��u�1�H��[]A\A]A^A_�f��L��H�=���p�������C(��H�MH�CH�KH��t
H�� �p���H�<$L��D���}�����AƄ$�H�{ �E���H�e�H�c�H�M H�K A���u�I��A���t�����u�L��H�=���p������A�GI�W��u�f.�H���������H�T$褼H�T$��uۀ:��H��'H��H�$H���H����H�T$I���y���D��#���E����b���fDA�E�����N���H�<$L��D���kH����H���'I��$��I��$�H���FAƄ$�A�E����L��H�=T���n����t2�C��H�5�L��1���H��������)�������L��H�=���n������H�MH�KH�{�����H�CH�5~�L��1��HAƄ$��Z��������M���H�MH�<$L��D��H�K�`C���,����M��$ I��$�I��$p����L��H�=y��n������H�M@H�K@H�{@�����V���I������������H��'��H���fD��ATL�%�'UH��SH�I�$H��t	H�;��I�$H���[H�E]A\����AWMc�I��AVAUATUSH��H��HH�/L�&H�T$F���XM��$L�mdH�%(H�D$81�H�EH�D$H������uu��xL��tiH�T$L�D$0D��H��L�T$�CL�T$��A����H�}H�4'�H��H�t$8dH34%(D���,H��H[]A\A]A^A_����0L��t�L��D�\$ L�T$�aL�T$D�\$ ��A����H��~'H�}�H��댐H�D$0L��L)�H9�I��I��LG�M)�A��$`�H�T$HM���5MZ0H�}I9���I��$xM��H�I)�I���I��$�I��I�RI��I�RI��H���I��$xI��$�I�zM�JI�� Aǂ������@H�t$D�\$,I��@IF�I��$�L�T$ H��H�L$�<q��D�\$,L�T$ I��$�H�L$H�D$�:���Aǂ�U����H�T$L���L��L�\$ L�T$�aDL�\$ L�T$M��u:H�D$0�����I9�uH�������fDA�7���DH�T$L�پL��L�T$L�L�\$�CH�D$0L�T$L�\$�\����}u��f.���AVAUATI��UH��SH�H��H��H�SH�;H9���I��H��tuH�CH�4*H��H9�w$H�L��H���o��Hk1�[]A\A]A^��H����H����H�D-H�I�����H��H9���L�46H��ux�-�H��xH��xH�D-H�H��H�4*H9�s�I�����H�|'L���H���C�H�-�{'�UH�H��U[�]I�$A\A]A^�I�����L����xH��H��tH�;H�SL�s�
���f�H��{'H��I�$����f���ATUH��H��SH���H�T$0H�L$8L�D$@L�L$H��t7)D$P)L$`)T$p)�$�)�$�)�$�)�$�)�$�dH�%(H�D$1�H��L�e�$H��$��D$0H�D$H�D$ H�D$�:v��H��H��tBH����g��H��H��H������H�߉�H��z'�H�L$dH3%(��u-H���[]A\�H��z'I�<$�L��H�E���r��f.���AUATI��1�USH��H��dH�%(H��$�1���1�H��襇�Ņ�uO���uF��xu	���t4H���<y��u(H���xuLH����������A�$�H��$�dH3%(���	H�Ĩ[]A\A]�f�������D$TCP4�D$H�L$H�l$�������L���H��L���H�ۣ1���g��X�ZH�y'��H�$H��tvI��H��1�L������Ņ��D���H�E1�1�H��L��H��p�����Ņ���������L��H�����������fD�D$TCP6�D$�8���fD������9q��f���AUATI��UH��SH��H��H���e��L��H��H��I���`�����L��;@��u�H���;@��t	跲��u�
H���fd��H��tiH)�H��I���#e��I��I9�rCI��fDH��L��H)�L9�r)L��H��H������t�H���[]A\A]��H��1�[]A\A]��
H����c��H��u�H���d��H��u���fDU1�SH����
Ƈ H�T$t0H��x
��0H��t��
tH����H�����t��u1�H����[]�f.�H��H��H�5ԡH���[YH��t&H�ǡH�5͡H���p����� ��H�|$H�5��1��m����Ņ�u�ƃ �@f.���AWAVAUL�-N�ATUH��SH��H����KH�t$u��
H���LD�L�t$L�%e�H��u�ffDL��H��1��>H�[H��tJL�;�:L���b��H��tՀx u�1�L��L��L��H�5s7�����t�H��[]A\A]A^A_�DL���c��L��L��H���"���H��[]A\A]A^A_���AWAVAUATI��USH��XH�T$(dH�%(H�D$H1�H�H�D$@���l���H��8��H�\$0�D$$H�D$H�D$(H�D$H���u�H�+�:H���a��I��L�pH���xA�1�E1�@��u�,@I��A�>@��t
薯��u�A�>@��u	E���I��$HH�3t�H�=ʟ�b������H�3H�D$��p
��������A��$���I��$`t�H�=���.b�����^H�3A��$0���H�=מ�b������H�D$��tH�D$H��H��t
��T��H�H�|$1�H�5T"���H��t�E;�����H�[H�������H�D$H�D$9D$$��H�D$H�\�0�^�����;H���_��I��H��t��xL�pL��@��u��fD�}H�E@��t#H������u�}�u���H��H��fD�x�;�����@�:A�H��A��@���*����2���I��$��{�������H�������E;����fD�H�=���`����u�H�3�I����
H�=�`����u�H�D$H�3��p
������@�
H�=���O`����u�H�3����H�=���/`�����_���H�3����H�3�H�=5��`���������/���1�H�L$HdH3%(��H��X[]A\A]A^A_�H�D$��
tH��@�D$$H�\$0���H�D$H��8�p�������c�����
H�\$0�V���H�D$�D$$H��@H�D$8�@���H��L��x�;�t����Q����Jj��f.���UH��H��AVI��SH��H��H�����`
dH�<%(H�}�1���u(H�}�dH3<%(���_H�e�[A^]�f.�H��h
H��P����-K���A��`
��������+H�
'���u���h�����d���H�]�Hc�`���D��\�������l�F��DƋ�P���H��V��T���H�V��X���V�PRH�0L'�4�H��L'H��L��H���1��_��H�ڋ
H����������!�%����t�H��H��������D�H�JHDщ�@�H��H��H��0H)��c������@H�
<��#���@H�5`�L��1��w9���f�H�
4�����h��Df.���AWAVAUATI��USH��hH�dH�%(H�D$X1���0�D$WH���L���H�D$OH�D$H���H�D$��p
��D$�!��X��t���}H��x
�o��H��u?H�@o'H���H� o'I��$��H��H���
A��$���H���I��$�H�E(H�E0H�$������Y��D$H��u&��XH�0�H���HD�H�$f�H�5.�L���PH��tH�}n'I��$ �IDŽ$ M���fE1�A�}H�T$��H�4$1�L�����L��A��H�0n'�E���
������������A��$�H��m'I��$@�H���IDŽ$@tH�5��L���PH����IDŽ$@H���tH�5i�L����OH���H�D$ L��H�5L��OI��$(H��H�jm'H��i��IDŽ$(H�5R�L���|OH�����D$���F���H�EH�5i.L���FOH����H��H�5��H���W��H�;H�D$8H��l'I��$H�H�5��L��IDŽ$H��NI��H���
��tI��$�H����t����	L���`��I��H���\
�����H�Zl'L����H�5%�L��������/IDŽ$HE��$�E��tE��$�E���kE1�H�5?�L���1N�H��H�v�HE�H�E �D$���ƒ����A���oH��@H���_�I���LI��$0tP�H���4H��@I��$81�A��$01�H�߉D$(�
�D$(�������CH��@E1�L�d$0I��H�l$(L���N@H��I��$��I��$�A��$xH�H��H����H9���I��$@H9��/I��$H)�H9���RH���@H�<$�%���H�����XH�$�
����D$����H�
���Hc�H�>��H�|$ tiH�|$(H�5.�1����A�ƅ��GH��8H�L$ H�|$(H�5�+1����A�ƅ��H�|$(�H�5 ��G�A�ƅ���H�t$@H���_���A�ƅ���H�T$@1�L����A�ƅ���H�EH�����H���c����D$�������>����A��$���L��`I���t!��uH�5��L���KH����H�5��L���KH����H�5��L���KH����H��H�5�H����� H��H���A��$0t�� t
I�����BH�EH����L��H��L�}DžH��xL����X���H�|$(�H�5���������E1�H�|$(L��E1�L��H��p��A�Ņ���H�EA��H��tH�E0E1�H��1�L��PL�E(H�������n^_H�u0H���rA��$0u��tƃDH�T$XdH3%(D����H��h[]A\A]A^A_�f.�ADŽ$01�1�L���(�A�ƅ�u���H��������i����H�t$L��H�=A�1��z[��H��H���vI���3���fD�L$��������!��X���f��+�A�ƅ��0�����H���,�������I��$������D$�������Y��H��`���A��$��	��
�U
A��$0
H��x
�?
H���5
H��t
H���&
H��ƃH�D$8���DH���H�D$ ����Hǃ@D��1t�D$���j
���a
E����
I��$�H��5H�D$0�-H��e'���H�D$@H����H�$H�|$@H�5}�1�H�|$(�`�A�ƅ������L���M���5
E1�A��$�tA��$��8E���gL���R��H�|$(L��H����A�ƅ��\���M��t"H�|$(L��H�5
�1����A��E���5���A��$�tA��$��X
L�5h3H���H�=Y3tI��$@H�H3H��HD�H���L�-33H��t�8tM��$(H�3M��LD�I��$`H�M H�3H���
I��H��HD�H��HD�H��t�:tM��$ M��LDЀ�1L��2tM��$8H��2M��LD�I��$0M��$H��2M��$HH��HD�M��LD�M��LD�H�T$OH���t$@AVWAUVH�5��QARASPH��$�1�H�|$x��H��PI��$0A��H��c'�H��c'IDŽ$0I��$�IDŽ$E�������I��$����uA��$0tH��x
��
H���������H���y%I��$�I��$PH���H��������H��HDt$E1��?����H��I��H�$�%M��M�������L�t$(�=�I�MH���1�H�5��L���t����\	A��M�mM���sM�EM��t�E��u�1�H�5y�L���<����$	M�EI�MH��0�I��$�E��$�����t
A������t
A��P�{A��$�H�
�0H�ʃH�T$H��HE�H�ÍHE�H�=E�1��V��I��$HH�����fDA����DH�50ƃH�D$8����L�}8L���4H��xL��H��H��H�ۦ��A�ƅ������L�}L��H�5Ԏ��CH�}���H���	�x
 L�x
u�I��A�? t�H��81��O��H�}1�L����
(H�}1�1�A���O��E���$���H�}�$A�ƅ�����H�}�$H�E��fDH��PH�E�L����H�������H���H�=��1�IDŽ$(�T��I��$(H���c����f���S�`�H�5F�L����BI��$`I��H�z`'�IDŽ$`M���kL���C��H��H���?����8I��H���H�w.HD�H�=��1��T��L��I��$`H�`'�I��$`�����f�E1�H�T$��H����
H�D$0�����A��$0
H��x
��H���wH��t
H�������H��1H�D$0�z�����L�=>�LE����@<[�A�:L���K��H��t�H�L_'I��$P�M��$P���DI��$H�|$(M�F1�I��$H�5����A�����f�H�}�������A��$�H�
V�H�5[�u
H�
-H��H�T$H�=��1��R��I��$H���DH���H�$���H�ډH�$���H�ӉH�$���L���L���aK��H�|$(L��H���q�A�����f�H��H�D$0����L���'K��I�vL��H�P��]���]L���:J��H����������@H�G�H�$�H�H�Y�H�$�8����H��+H� �HD�H�D$8���DH����,J��I��H���x���I��$�I9�$�t1ɾH���oN�����w1�1Ҿ	L���VN�����^H���H�=a��{e��t21�1ҾL���&N�����.1�1ҾL���
N�����1�1�H�T$@L���S���������tH��\'H����H�D$@ƃ�L��H����(H��H���H�=E���d�������t,H�|$H�5����E��H�����P��t
�x��A��$��I�E��$�A���7��H���H�=��
P��I��$@H���^�����I�wH�=��1���O��I��$HH����������H�5F�L���>H�������H��['I��$8�H��8H�=��1��O��I��$8�]���DL�t$����fDH�5އL���=H���0���H�Y['I��$8�H��0�H��@H��`H��8H���;H�H�=Y�1�H�Q��N��I��$8H��������H�-)H������L���XF������H�5��L�����H�������L�5����L��H�l$(L�d$0H��`H���B�H+�@H��`H���+�H�5l�H��1�A���#�O��H�<$���H�|$ ��H�ޅE�������fD�|$�4A��$�����uH�|$(1�1�H�5�u������E1�L�l$(�H�5؆L���������L��H���Y���L��E1�1�H��pL������A�Ņ���M���)�1�A���%�H�<$A���$����_�H�5H��1�A���"�C�H�5L��1�A��"�'�L��`I���t*��uH�5=�L���R;H���OM������H�T$@L��H���`�������A�����H�=\�1���L��I��$8����H�|$@L���x�A�ƅ��$���������`�H���w�H��	�-���H����8�zL�t$L���xE��A�|�/�a�D$O/H�|$P��KH�����1�����a�F������H��`H�==~1�H�r��L��I��$8����H�5K�H��1�A��^!���L�|$(�H�5܄L����������H��pE1�1�L��L������A�Ņ��gH�EA��H��tH�E0E1�QPH��L�E(�1�L��E1��^XZ�2�A��$���L�}I���t
���#H�EL�hPM����L��I��H��L��I���
H�[H����H�H�|$(1�H�5?�����t�����H�|$O���E1����z�H�|$(1�L��H�5�r�[�����\�����H������L��莁��H�U0���*DE�L9��hH���Z�H��L��M��H�5+�L���8H���vH��H�5 �H�������� L�l$(�H�5@�L���d�����D���L��H�����L��E1�1�H��H��pL��H��xH�EH���Dž���A�Ņ��E���H�5܂H��1�E���8��L�|$(1�H�5��L���=���������H��pE1�1�L��L�����A�Ņ�u�A��APj���I����ƃ �F�E���+��G�H�|$(1�H�5�{����������K�����M��H��L��H�5|1�������1�H��ƃ�ǃ�������I���Oƃ ���H�5��H��1�E���6��H�5�{H��1�E�����H�|$(�H�5�����������������E1�M���:H�|$(�H�5a����I�����g���L��H����~����H�5|�H��1�E�����H�5B�L���W6H������H�|$(L��H�5�o��������������H�|$(�H�5�����������tA��$�uaH��`��M��H�����H��IE��7~��A��$����H�EL�}H�E���H�T$@L��H���������D��r���H�|$(�H�5J��t��������O���H�|$(1�D��H�5e�����������H��H�|$(L��M�o�1���������H�|$(�H�5�������j����{���H��H�|$(L��M�������c���H�|$(1�L��H�5�n�4������������H�T$@L��H��������2������f.���AWI��AVAUL���ATI��USH��H��hL�2H��pH�L$dH�%(H�D$X1�H�D$PL�t$(H�D$H���H�D$8H���H�D$H�D$LH�l$0H�D$ I��xL��
H���rJ��I���H���H��L��L��H)�H��I)�H�PM�4$I��pH)��H������pI��`I���I���A��XI���������
���΀�
�i������A��XA�����uA��w��H���
H�=|�>������I������H��H���$H�Q'�}H���H���I���1�A��UI��h@�Ń�A��`�;H����H���A�ƅ��sI��hI�hI� I���I��pILJhI��`�}��M�4$�b���I��hH���H��L���������^I����<
�‰�<
�%���uA��X�EA��X���'H��������G��?L�L$L�D$ 1�H��4H�T$H�5S}�E������|$L ��D$PA���ǃ0A�����4A��A��HE��P��tD9�~E��I��@tA��p
u����9A��Pt����SA��
�Y	A����A���u	��e��A��
�����t��0��A��`
��tAƇ`AƇ�I���ILJ�ILJ�l����H�GI����
��A����P���c����d����e�>A����P
AƇP���f���t$A���=��*=��'�H���P�������
I���I���1�A��U@��H)Ճ�H���>A�ƅ���	A���I�� H��I�h�Q�H�d�I�� HC�I��(���A�ƅ��[	A���+~>�������:����-���-A��p
������f�A��P�����A��XE���)H�D$I����H�����L��D�D$�[w��I���D�D$I��H���:H��������H�D$�A����A��`�H��L��D�D$I��x�D�D$���I����AƇP����#���A��������������0�(���H����������A��p
����L��H�5ls1���H���`��N@���O���I���H��I����M����H���+�A����j
I�<$AƇP��ALJT�E1�H�L$XdH3%(D���^H��h[]A\A]A^A_��I����H�=<y��8�����H��0I����S�������H��H��PH��t	�8�	H�K'H��I��������H������t A���uI���H����fDA����H�����I���I��H�D$�8��������1�L���X�A����g
A��Q�
L��H�5Zr1��A������9
A������ALJ�f������H�5�qL��1���A�������f.���0I�����
�����H��wH�5�w�>�����6H�߾��I�������DH���H�=�t�47������I����K���H���L���pI��hI������DI�����I���I����[���@I���D���@AƇP���ALJX����f���@����H�5�pL��1��AƇ����DE���AƇPALJXE��������a����L�L$L�D$1�H��0H�T$ H�5�u�|>�����S���b�|$P �J��0�D$LA�����D�tED��0�hA���^H�5pL��1���D��0�A���0�8����Y���fD��`������fDI�������@��������u
��������I����H�=EuH��������R	� H���3��H���<	�x�2	H�X�
A�
H���3��I��H���
A�$H��L��1�H�5�o�E�,$A������������H��P����H��L���b���u
H��P�A������D�����H��tH�5�t� �����I������@I���H�L$1��
H�x�����4I��(H�t$PH��t	H9���I���L��I���p�����H��P��4���fDA���I������@����I���H�T$H�5ysA�
��;��ǃ0
���A����F���@H�5anL��1��_
�H����A������fDI����H�=�p�3������I����H�pH���hA�ƅ��I����`�H�(sH�5,s������K��0I�����u8����"���H�sH�5�r�`��������0I�����
�������I����H�=�r�U2����tA���=��I����H�=�r�'2����A���t=���-,I�����c�oH�������g�H��H���-(A�ƅ����f�E�������|$L�H�5�mL��1��t
A��d���f�A���1�L��ALJ����������I��hI���I���ƴ������AƇPE1����DI����H�=�q�1��I�������I�����H��1���������I��(��H�߾�|�H�5�kL��1��
���fDAƇ����H�D$�����ALJ����ǃ0
�F�@�H�=�p�O0������I��I���t �H�=Kd�%0�����SI����H�=�p�0���������A��`
��uA��I�w���1��6��H�t$H�D$PI���H�x�)��A��II��������I��X���H��L���'�������H��P���������A��=���f�L��L��L���b���A�����"���E��XE������I��hI���L��H����*��������AƇP�H��ALJT�A��������H�5|hL��1��
A�����A�������������_���fDH�5anL��1��AƇPI�$H��ALJ�I��pALJX�&�A�ƅ������I�$����g��1�H���L��H�5�i1��5I�����A���H�5�dL��1���	A���1�H�5uhL����H��蘡A����A�� AƇ�tALJ��������I���H�T$1�H�5sm��5���������D$P ���1�H���0�L��H�5�h1��oI������I����xH�h@��u�%D@��*tH���}@��t
� z�}��t��z���:ILJ@I����s��H��觠L��H�5eh1���I����I���L���(H���L��PI���������M���gPI���L��QI��1�L�B��,���ZL��Y��-I������H�D$(E1�ALJTI�$H�D$0I��p���I���=�A���d���H��H�������A��H��H���Y���H��A��H�T>'�E��������@�����H�L$81��
H���m������I���I9�@�����AƇ�I�����H���	H�=Fl�y+��I������n���I����`���觯��H��H�������8��H��='�I�����DL������H�5#kL��1���A�?���H�5"kL��1��A���
H���w)��I��H����A�
�����5��A��RI��������H��<'�I���H������H���u���A�ƅ���������A������AWAVI��AUI��ATA��UH��SH����0��uTL��L���q9H����H�[H�T�H��8L��@D��H��0���H��1�[]A\A]A^A_�;�H��H��`1���9�t�H��D9f�u�H�@H�\�H�<'L��@H��8M�L���I��H��t1H��@L��L��L��\/��L��8L��@�f���f�H���[]A\A]A^A_�1�����1��f���SH��E1�L��H��dH�<%(H�|$1�9�\L�D$H��A���D$L��I��PB��1�H�H��y
�T$��t7��Qt"H�\$dH3%(��u'H��[�f.�H�1���D�7���3��@��SH��1��&��H���tH�1�[�@��!�����t��t�8[���Q[�f���AWA���AVI��AUM��ATUH��SH��H��L�'dH�%(H�D$1��D$8I��$��"�����H��P1�D9�\@�ƃ8����I�EH�� H��(H)�H9�HG�I��H��M����Hcƹ@L�D$H��H��@HF�H��N��H��H����H��H��L���8-��H��(H�� Im1�H�t$dH34%(��H��[]A\A]A^A_Ð1�D9�\@��Hc�I�EH��I9�$L�D$L��H��IF�$H��N��H��H��y��D$�f�H�4L��L���,��L� 1�ƃ�M�e�d����1����AVI��AUI��ATU��SH��`H��t?�����H��L��L���L��`1�H��A���`�[D��]A\A]A^�@E1�w�H���H�|m�H��gHǾ�c;��L��L��H����L;��[D��]A\A]A^���ATI��USH��H���H��$@H��$HL��$PL��$X��t@)�$`)�$p)�$�)�$�)�$�)�$�)�$�)�$�dH�%(H��$(1�H��t	��`u&H��$(dH3%(��H���[]A\�H��$	H�l$ L��H�D$H�L$H��$0H���D$�D$0H�D$�)��H�H=wRH��H����������!�%����t��H������D�H�QHD�H���@�H��1�H)�����?���DL���#��A�|�
t H���H�je�1��V%���@H���H����1��6%���_����</��f�f.���USH��H���H��$@H��$HL��$PL��$X��t@)�$`)�$p)�$�)�$�)�$�)�$�)�$�)�$�dH�%(H��$(1���`uH�����H��$H�l$ H��H�D$H�L$H��$0H���D$�D$0H�D$�n'��H��
H����������!�%����t������D�H�JHDщ�@�H���H��H)�H��t	���tN��`u%H��$(dH3%(��H���[]�@�D 
H�J1�H��H���D �����H�J��s7��ue��t�u@�0��t���t
�f�t�fDƃ��v���@H�t$ H�0��H�|5�H�|0�H�xH��H��H)��H)Ɖ�����H�뽋u�ɉ0�t
��t���'-�����AUHc�I��H��ATI���@L��UL��SH�����X�_"���EH��H���tH��H��[]A\A]�K��D�(A����A�����uA��su�EQ1�H��H��[]A\A]�D��L����I�<$H�5bH��1��I���I�$D����E7�D��SL��H��dH�%(H�D$1�9�\L�D$@��@������H��D$H�\$dH3%(uH��[��
,��f.���AUHc�I��H��ATI��1�L��UL��SH�����X�����EH��H���tH��H��[]A\A]�@�+��D�(A��tA��u�EQH��H��[]A\A]��D��L����I�<$H�5waH��1��0���I�$D���H���E8H��[]A\A]���AWI��AVAUA��ATUS���H��(L�'H�T$H��uVH���~��I�ƅ�t'I������tA��|A�f�M��uG1�H��([]A\A]A^A_�f.�I�΅��EH�������i��|A��A��$��\E1ۅ�tM��$(H�D$A��tI��$0H�D$H���QL�L$L��f�H��@�@HF�M��t=L��L�L$H�ھL�$I��$�A��L�$L�L$H=��H9���I�H)�u�H�\$H��������L������H�|$L��I��$���1�L��H����H���2L9������1�H�5�_L���P�������fDA��$�u<E1����DH�|$L��
�6)��H����DA��$������H�T$L��D��H��(L��[]A\A]A^A_���I��$������I��$(H�D$����H�D$H�����M�����A��$!�Z����8
�SH�|$L��
AƄ$!�~(��H����H�t$H��J�t6�H9�w+��fD�HH���
I��$(H��H9���f�8
H�Ht��<
���H����I������uHH��L��D�����f.�H��H��L��1�H�5^^���H��(�[]A\A]A^A_�D1�H�5�]L����������D�
H���P���DH�t$N�6I9�v
�<
tx�H��I9�v�H+T$I��M�'���DL��H�T$��8���I��H�pH��H��L���-��L��
H��I��$(AƄ$!�'��H���������
AƄ$!�y���f���AWAVAUATA��UH��SH��H�L$XL�D$`L�L$h��t=)D$p)�$�)�$�)�$�)�$�)�$�)�$�)�$�dH�%(H�D$81�H�t$ H��H�]H��$0�D$ H�D$(H�D$@�D$$0H�D$0�)��H�D$I��H����H�D$H�����I��H�D$H�$�DI9�tSI)�I�L�$L��L��D��H�����A�ƅ�u1��`H�L$t�L��H���3�H�L$I9�u�f�H�!-'H�|$�H�\$8dH3%(D��uH��[]A\A]A^A_�DA����{%��f.��ATUH��SH�xH�����������L�%�,'1�DH�<�A�$H�}xH��H��9���A�$H�ExDž�H���A�$H���HDž�A�$[HDž�]A\�f�L�%1,'��L�%!,'��H�SH�5Z[H��H��H�PH�4�H��HD�H���1����uǃ�H�Ƃ[Ð��ATUH���SH��@������atL1�H��ZH�5�LH���d�����ǃ�"f���H���~���u
�����u�H��@H����H�H;���L�%1+'A�$Hǃ@H���B���H��pA�$H���HǃpA�$H��Hǃ��~�H���P[1�]A\��ƇaH��@H���q���L�%�*'��Hǀ�`��������H�;H�5W^H��1����ƃa�H���ǃ�����f���U1�H��1�SH��H���H���P�������EH��[]�f.���H������ATL���UH��SH���1��A�H��2Hǃ ��H��0H��H��8H���H��(���t1�H���y2��u*L���}�1�1�L��ǃ���������E[]A\�fDATUH��SH�H��(L��H9�}	H���*H��@I�t$0H����H����KH��xfH9��H)�I�t$0H����H��@1�H�5d]H����H��@1�H���H�5/X���u^Dž�[]A\�DH��H��H9���H�I�D$0H��@�H��X1�H���H�5�Y�T���u
Dž� []A\ÐH��A�����H��E1�jD��1�H�������.XH��Z1�H�5\���1�A�D$([Dž�]A\�1�H�5�UH���o�?��H��1�H�5\H���L�$�l���f�H�5�[H��1��o�I�t$0���DATE1�H�\fUS���H��uH�����A�uKH���H�5�H1��N��Ņ�u"D���H�;H�5�[1�ǃ�����[]A\��Ƈ�E1�H����AVAUATI��USH��H�nXdH�%(H�D$1�H�T$H�]L����A�ƋD$=xtZ=y��=wth��HM��tA�$=���H�\$dH3%(D����H��[]A\A]A^�f.��L��H���F�D$�f.��L��H���F�D$�f.��L��H���pF�D$�_����H�5�UH��1�A���Dž��L������DAVAUATUH��SH�H��@H���
@���IH����H��0L��ƃL���H���G�H��@H��81��01�H��A���$�E���#A����H��@E1��FDH���H���L����xI�H���hI9��_H��@L9���L��L)�L9����I���fDH��`H����H)�H��`H����D��LH�5>TH��UH��XHD�1�H����z���u
Dž�![]A\A]A^�H�������H��X1�H���H�5�S�;���u�Dž��H��`H���p���H��@�L���@H��XH�5�S�m���D1�H�5�XH����H��E1�1�jA�����H�����H��D���l*A�E(X1�Dž�Z�5����1�H�5KSH���������D1�H�5�OH��������DS�
H������H��t��[�@H�߾
���[H���‰��f�AWf�AVAUATA��UH��SH���	H�dH�%(H��$�	1�H��$��D$0����L��
H�\$)�$�H�D$8�H�M����L������H���oH��.�.�HB�H�xH��"'�H��H����E�}A��[�%�:L�����I��A��:tEH���6H�T$@L��
��$�����L��L��L)�H���z��L���:�m��I��M��t[�
1�I�~�u
��H���M	�-L��A��f�D$&�8��fD�|$H��t1H�x�
1��=
��H���	f�D$fA9�v1�1�f�L$f�t$&�;twH�EpD���L��$�H�x 苭H�UpM��H��A��ƋzD��莭�D$ ���������u �D$%�nf�1�1�1�f�D$f�T$&L�t$@��XH�T$4�D$4�L���������B�|$@L��$�f��
��I�v�L���0���D$%L�t$81�L��H��L����A�����-H�t$8H���/L�>H�|$�;��M���H�� 'H��H�\$0��D$0����H��1�L��H���0n�D$ ���tA�WI�w L�l$@��L�����H�L$4A�W�D$&H�L$(�L$�T$4��f9�vi�f��|$%��H���
�H�|$D��H�56UH��1�����XL��H�T$(�D$4����L�D$����D$%�\$&�T$4�؋|$0L��D��f��f�D$B�������+�����0H�D$��c�f�����bt	��
�x��f;\$v�H�|$H�5U1�����t$0H���l�D$ �H��$�	dH3%(�D$ �NH���	[]A\A]A^A_�I�v�L��
�J���D$%����M�(M���c������H��0���H�|$H�5�NH��1��>��D$ �q����A�0H����H�5VNH��H�|$1����t$0H���k�D$ �6���fD�|$0H�T$4L���D$4��7�������|$0��!������L��$��L��L���4�����u
����aA��tW���D�D$B�D$@��fA���&�f��trf��
u	E���sA��tA��E��u��u�A��u�f��tD���\������tH���j�D$0ƅ�Dž���\�.���fDE���A��u���$�H��$�H�߄�t#�,D<.D�I��H���G�A�E��u��D���E����H�M1����H��1�H���H��[H�5������A�ą��)��������H�|$H�5MRH��1��3��t$0H����iD�d$ Dž��S���L��H���e.����L��H�5vQH�|$1����H�{'H���D$ ������]L�����I��H���}���I�uH��H)�����H��L���5��1�E1�f�|$fD�D$&�T���H����H�|$D��H�5�KH��1��_��t$0H���i�D$ �������H��0��H�5hKH���2���ƅ�����D$ �O�������0����I���D$%������H��0�g�H�5KKH�����1�f��E��M����H���H�Z1���H�5,K��A�ą��w������G��H�|$H�5sPH��1����t$0H���%hD�d$ Dž�Dž�������f�UH��SH��(H���dH�%(H�D$1��`�H��HN���'��H��H��H�T$1�H�$��`H��t$H9�~H�L$dH3%(u<H��([]��H���H���H�<$H�t$�(��H)�H��u�H����������@f.�AVAUATUSH��H��D��\H�/dH�%(H��$�1�L�t$L�l$�D$�L��L��D�������tMD��H����f1�H�5�OH���1��@H��$�dH3%(��H�Ġ[]A\A]A^ÐL��D��L���D$�����D��H��A���fA���t�1�H�5UOH����ƃ��D��D��\�ʍH��pƃit4�H�����H��xD����p1�H��A����E��u
1��6���fD��\���tH���eǃ\����ƃ��*�����U��DATUSH�/H�����L��uN���!M�$tpH��H���1�H��jA�������XZƃ�1�ǃ�[]A\�DH�5aNH��1������H���
!��uԃ��!M�$u�I�H��`H���B��H��A�4$1ɾ����A�E1�H��H������lY^�p���D��SH��H��tH�?t�H@H��'H��[H����AWL���AVAUATUSH��H��8L�/dH�%(H�D$(1�M��A��0I�l$ƇaƇh���K���H��H��PH�'��H��H��HH����L�5���H��L��������
L�t$D�/H�����I��H���1H��I+T$Hc�PH���o1���@��@��@��L9���H��HA�E1�H��L��H)�H)�H�H�;H���ڨ�Ņ��0��PI�n�P��T��P9��_����H��H��TH�H�4�H�'�H����H��H�(�����}��A��YHǃX��1�H��pƃbtpI�t$H�;H�L$ 1�A�L�D$���Ņ��qH��XL�d$H��t���I)�L��pL�d$L�����L�t$ L9��FH�g'L���H�L$(dH3%(���|H��8[]A\A]A^A_�D�}���/H���y
��I��H���=H��H��'��H)�H�T$�H�T$H��H��H��H�ҹH�;H��HD�A�E1�H���'��Ņ��}ǃPI�nH��������}�����H�;�-�LJP�{����H���x��L��|�/�d���H��H��XE1�1�A�谦�Ņ��A��Y�K���H��X�=���f.�A�D$(���&���H�5LJL��1���]������H��'H�T$L��H���H�T$H���P�����H��������H��'L��HH�|$�H��HI�Hc�P�HH�<���P�����H�5gCL��1�����L���������1�1�����L���X�����L��L��L���b���������A��09�x�����H�5hIL��1����ƃbL�t$ �o���DL���n����c����AU�ATUH��SH��H��'L�/�8�L�eI��$H���H��I���H�5�>H�xH�{Aƅ0����H������x�yƅ�<A��<D��AƅKL�efDI��H���C(L�#L��H�C0H�{L�c��g���uL���[���u
HDž�����1�H����[]A\A]�DH���H�5�=�%���H��t��F���AƅKL�e�g����AƅML�e�O����H�����[]A\A]�fDSH��H������t$1�1�H�5?A����u
ǃ�[�@1�H�%AH�5s2�����u�ǃ�	[�SH��H�?��Kta��8�����cvF��LuWH���H����1�H���H�5�@����u
ǃ�[�f�H��[�7�������tgH��
H��t	��t��1�H�5�@�����C[�1�H���H�5�1����u�H�Ƃǃ�[�f�H��H�5@H���H�PH�4�H��HD�1�������?���ǃ�[�fD1�H�5gF�*���C[�����th�����uN��X�H���NuR��`���t_�F����d���t)Hc��������	��@H������@1��D��\�F��f����@��H��w1��UH��SH��H���>�I��u1�H��[]���{�oI��t��{�bI��tր{ uк
1�H���	��H���Q��E���SH��H�?���t	���tW1�H�5>E���H�ƃ�H���H��>H�5�/ƀ�1�����u���ǃ�[�D���u�1�H�5L>�y���[�f�AWAVA��AUATUSH��H��XL�'H���dH�%(H��$H1�H��
'H�D$ M��$�����Hǃ�I�o��uAA���thH�������H��$HdH3%(���>H��X[]A\A]A^A_���u
A�����D��H�5�=L��1�����
��(H���[���H���RH�T$@H�hH��H�BL�BH��PH�JH�5O=1�L�L$,����AXAY����D$@�T$:D$A��:D$B��:D$C��������H����H��'���f���H������H�������H���H��������������H�� L�|$ ���H��H��L���-�����rH���H�t$ A��H����ƃ�H���l�Ņ���A��$`H�D$ ��H��L���&��H��'H�������H���Hǃ�f���H��'�H���H����ƃ�ǃ�����A��ML�l$0L�|$(I�EH�D$�H���}�*I�GH��I�ML��PH�5�;M�E1�AWL�L$�
��^_��uÀ}���t$0������T$4������L$8�����D�D$<A������|$(����|$,���A��$x�7H�����1�E��L��A�ȉщ�H�5�A���H�X
'���ZYH�����H�������H���H�����D$(��fD$,f�������H�5�AL��1���b���g�������v%DH�5�@L��1��
�:���?���DH�5%:L��1��
�������DH��`�`���@H�l$ ���H���H��H���b*������H�t$ D���H���Y���H���A��L��1�H�5:�������DH�t$ L���#������������A����z����k���H�L$@H�8�L���H��H�L$�g��H�L$H�;1�E��L��H�5?@�j��H�D$ ���H����=���@L��H���e�~��������H��H���K�
�����H��H�5�?L��1����������H�=�81��7���H����
���H����������f.�H�H���@(��t?H��Xt5S1�H��1�H���H�5�8�����u
ǃ�[�f.����f.�H�H���x(u8H��XH��t,S1�H��H�5#7H����k���u
ǃ�[��S���H���XtDH��Xt:��K��|@�������A9�tH����@(��@�[����f.�H���Iu
��`
��t:H��XH��t.S1�H��H�5�7H�������u
ǃ�[�D�K����f.�U��SH��H��L�I����
�����a���pI�� 
@��������V���H��t,����1����H��tH�@�J9�u�H����D���w���F��
�M��b�ǃ�1�A��4��A��0���������z��P����H��HH���ǃdH�1�H�5�6�y���u`ǃ��Tf�ǃ�H���=���H�1��:*u	H������H���1�H�5�&����u���H��[]�fDI��(
@��������fDI��
@��������{�����d������H��H��[]�����H��1�[]���G(��t!ǃ�1��{���H��H��1�[]���H���H���ucA��wH���H��Xth1�H�5�5�M����0���ǃ� �!���H��@H���v���ǃdH������L���.��H���H��H��[]���1�H�5�3���������ǃ����@f.�USH��H�H���j(��uq��NuX��f��H��XH��H���H������Yu`1�H�5�4�b���u`ǃ�H����[]�H��1�[]��LJ�
H���
�[]���f�1�H�524����t���H����[]�H��[]�U��DH���H��t$1�H�5�3������`������f.���MH��3H��3HD��DATUH��SH�� H�?dH�%(H�D$1���8�����c�+�Ӂ��u9��tI��tg��tJ1����H�L$dH3%(��H�� []A\�f���1�H�5�9������u�H���c�����
�H���^����@H�D$H�]H����0L�`u	M����H�
�H��H���H����H�=	�1����H��H���*H��H�5#H���1��r�L�%�'H�|$�D$A�$H��A�$�D$������Dž����@1�H�5t2���������H���~�������f���MH�52H�	2HD��>���f�A�<$�����/L���(�H������L�����A�|�/t�/L���"���L)�E1�H�L$H��L��A�H�������<���H�L$H�������H��P����H��'H�|$���	�������@��ATUSۃ���A8�|t8A��H��1���H���H�5n1�
���u
D�����|[]A\�@�����[]A\�L���f�f.���AWAVAUI��ATL���USH��H��HdH�%(H�D$81���XH�l$,�D$,�D$H�H�D$H��t	�H��H�D$0I�EE1�H�D$�"DA��H���t|IE�E����1�L�����I��H����H=���LM�H���tA��~1�H����`��t8H�L$�|$H��L����������H�D$0H���v���E1��|���fD������|$L���������t ��u�H���)�����N����*�$D���H�|$H�5�6�1�����8H�L$8dH3%(uCH��H[]A\A]A^A_�f.�1�ƃ���DH�|$1�H�5������������AWAVAUI��ATUSH��H��(H�/D��XdH�%(H�D$1�D��\�H����H�50/H��I��1����M���#H���tH���H��t	�83��1ɺ����D��D�������tuE1�u&H�L$dH3%(D����H��([]A\A]A^A_èud�t�1�H�5_6H��E1����H�T$H�|$H���R����|$�A��G�d$��H�5�5H��1�A�
����v���@H�5�5H��1����A�E�W���DH�5Q5H��1�A�
���H�T$H�|$H�������$���f.�H�5�4H��1�A��	������/���Df.�AT1�I��UH��SH��H��H�5�5H�����H�߾	�#��H���f�H��xiH��L��������u+�}u4H����`�H�߉D$H��HN�1��[|�D$H��[]A\�fDL������u�H��L��[]A\�,�@H��1�H�54�7��H���[]A\�f���AVI��AUATUSH��H��L�'dH�%(H�D$1�����D$M��$ui����,H�T$�H���V�|$��uA����D���E�����H�L$dH3%(����H��[]A\A]A^�D�H����Ņ�uŃ�x�H���t���tH�������3fDD���E����A�}(����i�A��$Y�YA��$K�H�������Ņ��9���1�1�H����y���i����A�����fD1�1ҾH��������1�H���1��0����1҅���A�������it\A�}(A�vY�H��A�����E1�1�jH�����D��H���M��iXZuA��v���fD��������1��\���@H�t$H���K����Ņ��A����|$�6���H���.��ƃi��uH������t�����	���f�I�E0����H����4��uGI��$xƃ`A��$MuoH��XteA��$K�H�������Ņ������H���1�1�����ŋ��1�����A��~���fDA�����H���	����b���f�A�M(��u�������ATUSH��H��dH�%(H�D$1�H�L��@��ufA�D$(��tMH��A�����1�E1�jH�����D��H���ZYƃa1�H�T$dH3%(��ucH��[]A\�@ƃ����H�t$�&����Ņ�uA�t$(��t��D��\���tH����Dǃ\����ƃ���5�D��U1�H��1�SH��H���H���������E��u��tH��[]�DH��H��1�[]������AWAVAUATUSH��L���H����XL�+dH�%(H��$1�H��H�D$8�VH�L$8H�T$L������Ņ��
D�t$E����D���A��!��H�
|3D��Hc�H�>��H�D$@����H�@0A����A��$K�wH���H�D$@I��$H���3
H9��*
I��$�1�H�5,)L��H�T$@���A���1
H�D$@D���A��$NH����,H�t$4H���z����Ņ�u,�|$4u%H�561L��1�茽��ƃiǃ�H��$dH34%(����H��[]A\A]A^A_�DL���p�����L�#A����FA��$Nǃ�!��ǃ�H�t$@H�������Ņ��z����|$@�o���H�5�0L��1��ּ��ƃi�R���f.�A�����A�����
A��a��	E��hE�������t��������u|A��lǃ����t���H�5O.L��1��0�����A�����A��N��������5
A��h�@�u���H���%�����f���D��H���3����T���A�����H�;D��H�5�%1���f����)���A��h�P�CL��E�H�5%1���Ņ������ǃ����A���A��hA��c�X�����E��pE��tNH�2%H�5�L��1��L��Ņ������ǃ����A���1�H����Ņ��]
H�E#H�5�L��1���Ņ��L���ǃ�	�=���L�#M��$A����+A��&��H�5�-L��1�����A��$`
E1�����H���D������D��D��H�����������H�����L�#H�t$@A�����A���>A����I��$@H�߾�c�������A����A��^��H���M����^���A�����ǃ��B���A���~D���E���<
D��1�H���4�������A��u�H�D$8I���M��H�xH���&L�rH�T$�H�T$H��H���
M���RM9�����"wH�H����H���I��I�FA�VL9���	��"w�H��s�"�tH�8�&H��H�5�"L��1��ʸ�����A������H�D$8M���H�xH��&M�o�I��H���P	A�G< ufDI��A�E< t�L���t@I��H���B�A�E��u��H�5�"L�������qH���&H����L����U���A���A��c��H���4���oHc�d���`������RH��HH�5B"L��ǃ�H�T�1����Ņ��6���ǃ��'���A��8�����cv����P��������Hc�dH��Hǃ�H�T�H�5� L��1��~�������A���H�;A��c�3����h����������H����������A����+H��������t���D��H���1����b���L�#I��$A����s���A��}�i���A����A������@(ǃ�����H���#��������A�I��$XH����I��$h
H�������H�5d)H9��E������D�����ǃ���d����d;�P�8H��HH�H�T�����@��������g���H���������X���D��H�5F)L��1��|����T�:���H�������H��������1�H�5= L���L���A��$`
����������I��$�H�L$$H�T$ H�5�H�xH�D$4PH�D$8P1�L�L$<L�D$8��ZY����A��$X�����H��X�����A��$I�����I��$XH���q���H�t$@�6���������D$THcL$PD�T$@�|$D��l�t$HD�D$LH���&L�ȋL$X���t�A�H�
�&L��$�H�ARWL��VH����1�RH�?'�R��H�� 1�L��H������������������DA��^��H�;H�51��������1�H���F��Ņ������ƃ�����H�51���1�H��ǃ�����_���A����A��$Kt	H�D$@����H�5�L��1�訳��H�T$@H�5�L��1�蒳�����H�5�%L��1��	�7���ƃh��H�5'L��1��Z�������I��$�1�H�L$@1�H�x�۴H�t$@A���
���H���tBH��$�H��H�]1�H�タ����H��1ɾH��裸���Ņ��q���H�t$@L�����H�������U���H�������F���H�5kH����I��@
H����H���x
����H�5q$L��1��������H�5b�n���ƃ��I���fo�)H��$�1�H��H�ytes
�)�$�H��$��ٷ���Ņ��:�����1�H�wH�5�L���2������ǃ�	1��q�D��H�5�#L��1�蕳����S��H��(H�5�L�牃���������H�H��1��·����H��XH�5�L��1�裷�Ņ����ǃ� ���H�5X1���������L������H�t$@H�����������H���y������H�5GL��1������#�H�5�L��1�����N�D��H�5\L��1�蒲���ǃ��F�1�D��H�5L���j���A�� �$����NA��&���
���H�;H�5�"1��8�����H�p�@H�ʄ�u%�a��H��H�p�@H�����A<"u�~"�;�"H�F��H�����H���Hc��H�1'H�5�L��H��1��$��Ņ��r�ǃ��c�H�� H����H�H�5v	L��1����Ņ��H���&H����L���ǃ��	�D��H�5�L��	�*������H�;D��H�5�1���������L���O������H9���H�5u"L��1�����A�E(AƄ$`�<���I��$�H�5+H�����H��tWH�x�H��H)�H���V�P���(�RL�h�H)�H���L��L9��1I��A�U��(�(���!��u�I��$H9T$@�����H�������I��$�H�T$@���1�L��$��e��H�� �L��H�D$@P�D$<P�D$@P�D$DPD�L$H1�D�D$D�L$@���H�� L��H�t$@����I��$X����������H�����H�6�&H�L$H��@�H�L$1�H�5�L��H��@H��谭��H��@I��������L����H���&L�����H�����H��H�L$@1�1��������9/�q���1�H�VL��H�L$H�5��i�H�L$����uRH��&H�L$H��@�H�L$1�H�5L��H��@H�����H��@I��ǃ�
�d�H�-�&H���S��f.���AWAVAUI��ATL�%R"UH��SH��H��Ƈi����2��A�ą���H�]I�����1�H��L���L�������1�H���
��L��H���/��L��H������H�Eƅa��XtH���@(A�E��H�����A�ą���L���h���H��D��[]A\A]A^A_�fDH��t)�H��蹒H�EH��@��H�}1�蝒H��1�H���F1�H��(�������H�]���������Ic�L�>��1�1�L��购H�}H�51A�ċ����A�E���1�������E��� ���A�}u	E1������H����H��[]A\A]A^A_����H��8H���H��0��H�]�������>�����L���/M�~L���@��I��H�����xH�x�&H���&H�D$�H��H���@A�D$H���&���I��H������
I�H���
H����L��0H��8H�E��0u
ǀ0H�����A�ą���H�D$I�~�H��H����H�}H�5TH��(I�GH��
H��(H���I�G1�H���苩�����������f����H�U����lH��0H�PH�8H��(H�PH���H�@H�@ǃ��9
���iǃ����f�H��H��H�=��H��L�01�H�L$I����I��H����H�L$H��&H�y �H�L$H�}1�I�H�5RL�yL�y 蒨��H�}H��tF��z�H�EL��H��@��(��H�}1�I���R�I���I����A�V���>ǃ����H��0H��tDH�8�,	H�UA�ĸE��t1�������������H��E������_���f�H��E1�������A�������H��(�(���H�EA�Nǃ�������������f����I�H�}H�5*1��S���ǃ�����@H�EA�X�������<��������A�L����H�[�&L��H�D$�H�D$H�������HǃHǃ8Hǃ0�H���H�E��������������DA�?tBH���&L��H�D$�H��H��t]A�����@A�H���&�b���fDǃ�H���������A���������������fD���tA�����A��<���A�F`@tI�F(H���H�����A�ą�����H��1�H����@H��(���ǃ�����f.���AWAVAUATUSH��XH�/�$L��dH�%(H�D$H1�H�D$8M���H��A��L�����N�YH�
���Hc�H�>��fD�<$�6H�g�&H��pH�D$����I�t$H�L$8E1�1�A�H���oA�Dž��tH��X1�H��t���H�ƀ�hH�T$8H�t$��H�D$H��Hǃp�L��������\�����`������D��\H���)ǃ\����ƃ�E����A�D$(ƃ`H�D$I�|$ �I�D$ H�L$HdH3%(D����H��X[]A\A]A^A_��ƃa�H��E��ƃh�r=H��&H��pH�D$���tCH��t.H��Xt$�H��胊H��@��1�H���l�Hǃ�����E���d���ƃa�H����<L��Hǃp豮����\������������H�����sDH��H�T$�S��H�t$��0H�T$H)�x�\���SH��pH���p�H��pH�������Wf�A�T$(��u7��at.���t%�<$��A�D$(ƃ`E1��=����<$u߀�YuqH���H�����I�$H�H9�tH��(H�H9�t
H;��(��`u_H��uZH��~UH�5�
H��1�A�讣�����f�H��`H���t#I�$H�H9�t��
��f.�A�D$(ƃ`E���/���H�� 
H������H�D$,H�D$H�D$@H�D$L�uM��toA�>*�$u�$I��L��H�5�L��1��q�A�Dž�������H�|$H��I�UHH�T$I�E@�w��A�Dž�����<$u�|$,��(H�mH���{����~���fDE1��4����H���Z���H��H�5o�L��1��ڦA�Dž�������{�����\����@����)���fDH�D$H��H���&H�=��H��H��pH����H�5dH��1��:������DE1������A�D$(���c���H�5�H��1�A�輡�������H�5�H��1�A�虡�����@���9��H��H�5�H��1��u���ƃa�H���Q9���@A�����DL�� Hǃ `�L�$���H�|$0H��I�UHH�T$(I�E@���L�$H�|$0A��L�� u	����E��������`uq�T$(����������������H�5�H��1�A�诠��A�D$(ƃ`���f.�H�;L��H�5�
1�A��v������H���I���H��H�51�蒞���H���58�r���H��H�5H
1��/���ƃa�H���8�H����A�����AWAVAUATUSH��(dH�%(H��$1�H����H��H��I��A�+�k��H��H�@�H=���L�d$H��L���L��D��pL�t$����I�,�
H��f��@H�D$�DH9�tcH)�I̋�XM��H��L��ǃpH���D���D��pA�Dž�u.H�;H�L$��`t�L��訜��H�L$H9�u�fDH��$dH3%(D��uH��([]A\A]A^A_�A�+�������Ðf.����� ��wH��@�������vs�����������E��@�����~���wH��@��������� �E�Ð����}���������@��ta�������E��D��t9vN��t/��t'���������fD��tvA��t�� u�fD�����������@t���������������������f.���f.���f.���f.���H���H�@pH��tH�����1�H���f.�1��f.�SH��0H��H��@H��uiH��`
H��t}��2u,H�%�&�H��8H����2thƃ11�[�DH�	�&H��8�H��@H��uH��`
���2u�H�=�1����H��8�ƃ11�[�D�[�f�USH��H���B�1�H������H�������\���tH�����X���tH���u��`���tH���b��d���tH���OH���g�H�-(�&H���UH��Hǃ�UH��(Hǃ�UH�� Hǃ(�UH���Hǃ �UH��@Hǃ��UH���Hǃ@�UH��HHǃ��UH��HǃH�UH�� Hǃ�UH��0Hǃ �UH��(Hǃ0�UH��`Hǃ(�UH��8Hǃ`�UH��@Hǃ8�UH��HHǃ@�UH��PHǃH�UH��XHǃP�UH���HǃX�UH���Hǃ��UH���Hǃ��UH���Hǃ��UH���Hǃ��UH��PHǃ��UH��HǃP�UH��Hǃ�UH��HHǃ�UH���1�HǃH�[31�H����M3H��8�UH���Hǃ8�<�H��H�0�H��`�UH���Hǃ`�UH�EH��Hǃ�H��[]���UH��SH��H��H�H��@H����x`���u�H����t< ~+H���fD�� ~H�����u�H��1�[]��H��1�H�5��_���H���[]�H�5�H��1������f.�US1�H��H������to���t	���u]H��H����1��PG��t!H��x
t��p
������	���H�����G��t
H��x
~��H����[]�SH���7���H��t
H�D��8.t[�fD�[Ðf.�AT�f�UH��SH��H��H�� dH�%(H��$1�H�|$)$I��)�$�H�H��$��H�H��t�L���ӻ��Ƅ$�H��(H��tH��$�譻��Ƅ$�E1�E1�1�L��H���H���_��t'H��$dH3%(u5H��[]A\��H���E1�E1�1�H��$H���q_����f.�H��H��t1��DUH��SH��H��H���H�@pH��t��Шu)H��1�[]���������X1ɉ��|���t�H�S`H��1�H�5�
�#���H��H��1��H���[]�f.���UH��SH��H��H�6H�7�E���1҄�t	H�]�H����[]�f.���AUI��ATL���USH���H��H�-��&f.�H�;H���UH�C�L9�u�A���tI����UAƅ�A���IDž�tI����UAƅ�IDž�H��I��P[]A\A]��D��USH��H��H�-T�&H����UH���Hǃ��UH���Hǃ��UH���Hǃ��UH���Hǃ��UH���Hǃ��UH���Hǃ��UH���Hǃ��UH���Hǃ�����Hǃ�H��[]�fD��H���#USH��H���ETH���H��tH�����H���H��t���Hǃ�1�H���-��2ǃ@��H�-�&H���UH���Hǃ�UH��Hǃ��W�H���UH���Hǃ�UH��Hǃ��u�H����U���Hǃ�tH����Uƃ�Hǃ�H������H����UH���Hǃ��UH���Hǃ��U�H��Hǃ��g/��H���_�H����UH���Hǃ��UH���Hǃ��I�H���!UH���t/��H���ŊH����H�ߋB���B��H����H���t���H��UH��1�[]�DH�-q�&H��8�U�Q���f.�1��f.���U�H�����SH��H��PH��H��H���&H�o�HLJ����H�HLJ����HLJP���H��`���H���&HLJX���H�H�����HLJ`���H��h���H���&HLJh���H�H������LJ H��@���H���&LJ�H�����H���&f��H���ƇLJ�HLJ�<HLJ�HLJX���LJ�HLJ����HLJ����HLJ����Ƈ��~��o��
�o��
f���
�o��
ƃ�
�o��
�8�o��
�o��
�H�o��
�o��
�X�o��o��o�(H���Hǃ��Hǃ��H���Hǃ���ƃ��h�x�������������#���t5H���
H�58�+���tH��[]�H���
H�5�
���u�ƃ�H���f��PHǃHǃƃ(Hǃ8<Hǃ0<ƃ@ƃvHǃX�ƃ
Hǃ@HǃHǃ��HǃHǃ�`�HǃHƃ�Hǃx
��DH��1�[]�f.���H���&AT�HI��U�S�H���!ǀ@���H���H��H������Ņ���H�-��&�@�UH���H������UH���H����H���$���H��Hǃ�������XH���Hǃ�Hǃ�����D��tjH�����L�%�&H���A�$H���A�$H�����H��A�$��[]A\���f�H���&H����[]A\�DI�$��[]A\�D�[��]A\�f�f.���H����H����H��H��t����ATA��UH��SH��H�vhH��t
�'��H�ChH���'��H����H���H�+H�@`H��t	A��H���H�S`1�H��H�5�變���H��H���.H��1��4�H���<�[1�]A\�D1��f.���1�H��t-H�H��t%H;9u
�&fDH99tH�IH��u�1�����H��H��1�H���/%�H���D��H��PH���AWAVL���AUATL���UH��SH��H���8u��������u'L��H���D���H��L��H��[]A\A]A^A_�+���H��H���L��H�����D$����D�l$A��L��H�������t"E��tH��H��[]A\A]A^A_��H��[]A\A]A^A_Ð�D���A��E��u3L��H��������T���E���K���H�����D��H��H���L��H��A�����D$�X������E���E��u��;���fD�����tcS���taL��`��p��8H��Ƈ���tvm������udH��@A��I�ى�H��HL����ƃ�[�1��D���uO����L������tv����fD��tCH�;1�H�5�貉���ƃ�[�@L����u�����<����H��@I�؉�L���\�ƃ�[�����	���DL�������H���`t8���L�O`H���L���t%H��(H��H�5$1��=���D�����u���tH����DH��h��H�������H���H�@@H��t��f.���X���f���H��tH���H�@HH��t��D1��f.���H��tH���H�@0H��t���f��1��f.���H��tH���H�@8H��t���f��1��f.���ATUS����t\���ukI��1�H������Ņ�uK��xtw���t	���uuH���H�@(H��tEL��H��Ѕ�t>���D���t�1��[]A\�fDH���H�x0u����DA�$ƃ���f����u��DH�������{����@f.���ATI��UH�-��&SH��&�DH��H�]H��tH�;L������t�H��[]A\�f�f.��������w
H����@��USH��H��H�-$�&H���UH���Hǃ�UHǃ�H��[]Ðf.���AWAVI��AUM��ATI��UH��SH��8H�$H���}�:J�\%���I��H9���M����;H���Ĩ��H��H9��vM���XM��I)�L)�1�H�C�1�H�D$M���@H�<$�5H�N�&H�L$I�zL�T$H�T$ �I���M���TM��L�T$H�L$�EH�D$H����H��&H�L$ H�xL�L$L�T$�L�T$L�L$H��I��H�L$ ��M����H����H���&H�L$(H�{L�L$ L�T$�L�T$L�L$ H��H�D$H�L$(�%M��tFL��L��H��H�L$ L�T$�خ��L�T$H�,$H�D$B�H�F�&H�}�L�L$H�L$ L�MM��t0I�wL�|$L��H�$L��荮��H��&C�<I�>�M�&H�$L�t$M��t%H�qH��L���\���H�ݺ&A�I�}�M�u1�H��8[]A\A]A^A_�DM����;H���ڦ��H��H9�scH���H�D$I��E1�I)�H)�M��H��H�<$tM��M������M��u8M��t�H��t�M��E1�E1����DH�7M��u�E1�H�D$1�1��M��f.�H�D$E1�H������E1��7����H�D$�m���f�H��&L�������f.�H�T$ M����H�D$E1��1����E1�1�M��1�H�D$�/����I��I)�H�������@���H�D$E1�1����f�H�Q�&L�$L��L�$L����i���DH���m���E1��p���H�D$1�M��1����M���g���H����I9���!�I9�vH��tDI��I)�t(I��M)�I�D$�H�D$I9��H���L��H)�H���W���I��M)�I�D$�H�D$��M��I)�u�I��M)�I�D$�H�D$H��u�1������AWAVI��AUI��H��ATI��H�5b�U��SH��8dH�%(H�D$(1�H�D$H�D$覡��H��tY�L��H�=#�H�X詥������H��&H��@��1�L��H�5��L���I�����%�L��H�޸&H��@u��tÉ��D$���t
�������D$�@H����I��H��t'H��E1�H�L$H��H)�H�T$�������I�_�;[I���q�:L���|���H�����L�pH�t$ �
H�D$ L���q���I��H�D$ H��t���t</u
I�����tL��H�5B�L��1��~��D�3H�T$E��uJH�-˶&H��UH�|$H�D$�U1�H�L$(dH3%(�~H��8[]A\A]A^A_���L$I��$M��$P��ID��h(H�-d�&I��H�EH����I�~0��I�F01�1�H�t$L���ݦ��H�|$I�F0�UI�~0H�D$�iI�~8�UH�t$I�F8H��tH��H�t$���H�t$H=���H�ǵ&H�=��I�F8H�|$�UI�~8H�D$�&AƄ$�H�EM��x#I��$�M�~ x�T$���9M��$�I�>��H�]�&I�H��I�I�FH����H�T$�|����D�3H�T$A��/�E�/H��H�T$�S���H�T$H��t�D�3M���M���#�����A���8LE������SL�sM����t1f�������uA�<:t<.��I��A���u�H�5��L��1�L���4|���6����M��$�����D$�����fD�L��H�=X��ܡ��������D$���f�<%��H�5M�L��������@A�I�_@��u�Zf.�H���;@��tD����u��;����u��<_@��<~��@�u̍HӀ�v�<]uL�{�L���H����I����������fD�L��H�=�������tE��D$���fDI��$��������@1�1�L���̣��I�F8�Q����L��H�=*�蟠����ti�D$��X���f�H��&H��H�|$H�D$������H�5��L��1��Yz�����H�|$�U�����L��H�=��������t�D$������L��H�=������uֺL��H�=|��ܟ�����o���L��H�5��L���{����n���質��L���g����f.���AUI���ATUSH��H��L�'L���,��H���������I��$�
A�E��ƃ�tAH���&H�� �I��$�
H�=��1�Hǃ �l���H�� H����IDŽ$ IDŽ$(�o�����X�H��8H��@t`�L���{���L���n��ƃ���XH��A�E��H���,�����H��8H��@H����[]A\A]�@ƃ�H�shH�����tʼn���DA�E1�H��[��]A\A]�@��f���UH���SH��H��H��t��Ɔ�����Xƃpƃ ��ǃp
�Y���H��H�E@H���H�UH�o�0H���H���ƃPH��`Hǃƃ��@��=H��1��+��H��1�����H��1�[]��H�������I���Ƈ�=�����p
�U���ǃp
�F���@��AWI��AVI��AUATUSH�����H��HH��H�t$(H�T$ dH�%(H��$81�H�;�&��H�/�&I���Idž�I���D��Idž�Idž�H��)����1����H�I��I�����\I���H�D$0��\A�M���H�D$8M���H���&�p��I��H����H���&�H�H�hH�Y�&H��H����I����L��I���H�I���H�I���H�I���H���&I���I��XI��`I�_`I���A����T����I��HI��P���I���I���I��A���I��I��P
M�7A��xALJ8H��t(�8t#AƇ����wAƇ�1��DAƇ�1�AƇ�A���I��X
H��t�8tAƇ�AƇ�A��JI�� �A���I��I���A���A��dA���A���A��eA���A���
A��
A���
A��A���
A��	A��JA��ZA��HA��XA��IA��YI�� ILJ�I��������I���ILJ��%I���I���H�L$PH�T$X��tI����H�5���I����!I���H�5����I���ALJpH��tH�ث&�I��8H����A��$L��A��DA�� fA��@I���I�GPI���I�GX�2�I���H���"I�����I���1�����uQA���I���tH�M�&H��I���I���1�H�=������H����I���AƆ�I���u9A���Ƀ��(A��Rt��I���1�H���������1�I����H���c�����uoI���H����H��t*���I���tA����
I�����
H��H�5��L��1���s����#fD��
�������vH��L��L����H��$8dH3%(����H��H[]A\A]A^A_��H��������^I���H��tH�é&�I��(H���i
I���H��t(H���&�I��`H���D
A���A��hI�A���H�D$��	H�D$L��P
M��tH�O�&L��I��H����H�D$H��X
H�D$H��tH��H��&�H�D$H����H�D$HH�D$H��0H���8I���H�D$`�}�zH�D$L	���H�ը&H�|$H�M��tI��`��
H���&L��H�|$��H�D$�8�,I���E1����M����'H�l$H�|$L��A��8H�����H���H�M�&����zH�<�&I��PI��H���I������u,����/A����!H�
z{&I���AƇ�H����
AƇ�A���f��A���uAƇ�AƇ�1���H���&1��I������tA���tAƇ�I���H��tA�����1�1�A��\�
I��t=H�<�&I���H��&I���I��H����
AƇ��I��t=H���&I���H�զ&I���I��H���t
AƇ��I��t0H���&I�� �H���&I���I�� H���-
A��\AƇ�����I��H��t�8tI��H��t	�8��I���M��H
H��$�I��I��L��$�Ƅ$�Ƅ$��x�����	AƇ�AƇ���$���$��I���I�����1ɾ蹖������������\���H�m�������f���Y�D����Y�J���DH��H�=qF詭���1H���Y���H��H�D$`�8[��H�|$`�>���H�D$@E1�H���;���L�d$hI��DB�t-H�=u��>���H���MI��M9�w��n
L�d$h���@I���H�5��L��1��pl�����@��t"I��I���1ɾ評������I���H�-�rH��� tA���H���HD�H���HD�I���3
I����M��X
M���L�t$�A���H�UrH�
��I���H�5��HD�H�==eHD�1��֗��H��H����H�����H��H��H��I���H��A��H���&�E��t
L�;:tGDH���&AƇ�1���M�mAƇ�M����!����!I�]�;:�>���H���;:H�{ta�:H��脏��H��H��t�H��$�H�ߺ
HDŽ$��{���H;�$��m���Ic��H9��]���H�}f�H���G����?�>���H�Ϣ&�I��H�����8[���:H����H��tHDŽ$��x���
M�����H�~�&L���H��H���|H�v�&L���}�7	H�`�&H��AƇ�1�f������L�t$A�����1�AƇ�H�5&�L���i��I�?I���I�������Å��p���A�����A�����A�����
A�����A���tA���A9��uAƇ�H���I���tA���tAƇ�I���ALJ�H�PH��tL���҅��7
I���I���yH�PxI���H��l��H�
�m��I���I���A��@I��pI��xA��������
L���?�I���H��$�L���P(�Ņ��|AƇ�I���L���Y�����L���9���Ņ��"I���1҉�L����P����J�|-Ll$@L��L�L$I)�Ll$`L���N����L�L$L9L$@tA�}�.��L�d$hf.�H�!�&L��H��&H�|$�H��&H�|$H�H���&1�fA���H������H�|$L�������Å��R���H�D$E1�H���&H�|$�H���&L����Y�������W�����DI���I����@H��I�����	�������H�B�&I����I��H����AƇ�I����@�H��������������I����@�H��薕�������H�Ϟ&I����I�� H���n1�I����H���X�����tI���H�=������91�I����H���#������+�I�����H���������K	I���H�=�臦����I���1ɾH���ɔ��I���H����	�}[�H���%H���.���AƇ�I��H����H�ǹH�5�H�D$������PH�D$�
M�,H��$�H��L����H��$�H�À>]��
H��$�L��H��見���]H��Ƅ$�葉��H����
�H��譆��A�Ņ��T
H��1�H��H�\$H���H��H�t�H��L�H���L��H��H������E����]H���*���H��t�H�Ӝ&H��I���H��tzI���A��������A��������L��L����h�H�y�&H��I��H���/���I��tH�=�j�I��f����fDH�)�&��@�I��H�����1�I����1�I����H��&I���H��&I��8�H��&I����H�қ&L���E1�������H���&H�|$�M�������H�|$A��xL��L����L���H�~�&����1��������H��I���H�������I�������)�DA�<$�r�I�������^�H�|$�l���H�T$�:�t�H���&H�|$��K���@��;���fD���������f�H�=,��d���H� �H�D$HH����H�L$HI�?1�H�5~��9b��H�D$H��0H���|�I���H�l$HH�D$`�r�fDH�I�&I����I��H�����AƇ��,���AƇ��T�H�	�&�I��H����������f.�H�=e�蔜��H����H�D$H��0H�D$HH�����H�l$HH�D$H��fDM9����J�|-��D$�!�t$L���H��I9�tG�tH�=��覅��H��t�|$.uI��I��M)�L9L$@����L�kM9��(��M�L����I���H�|$H��1�I��H�5��AƇ��`������I���H��$�I��L�(I�m@��t2�@��I����=w�9���H��,�I��A�l$�I�m@��u�A�xyA�$_proH��fE�D$A�D$�-���I��H���I�?L��H��H�5Q�1��
`��H�[�&H�|$H�H�D$�}�fDA��������I��E1�H��tH��&A��ILJI��1�H��tH���&��ILJAƇ�D����fD��H��$�H�?�1�A����H���0���1�H�ھI���蚈�����+��-���DJ�|-��D$E1ɀ|$.L����I��I��������AƇ�AƇ�H������I��@�R�I���I��HILJ�I��@��I���ILJ�I��HH��&H����AƇ������������ݐI��I���1ɾ覇����������f��]H��I��谂��H�����L��H��H)�H�T$`H�D$@�%�fDH�|$H�5�1���_��H�D$�m���f�H�|$H�5����z_���P���D�xL�pL��@��t$�����u�<:t<.��H���;@��u�H�|$H�5�1��i]���:H�����H���9HDŽ$��x��������M�����H�}�&L��1��
�f�H��H�==�衝����H�=�H������I��H�������H�=���Η��I��H����H��&H�|$H�����I����
1��L���H���$|��A������M��H�X�
H��$�H������H��$�H��t�:u?H=��w7��������H��H���X�H���0���I��H���+�������H�|$H��H�5��1�������[������L�t$A�D����DI�?I��(I�� ������L����H�-Hb����<%���H�5,�H��������4�{H�k@��u�Xf.�H���}@��tA����u��}����u��E<_��<~���uˍPӀ�v�<]u
H�]�E���H�������������I�?I��I���������`����I�?I��hI��`�������I����I��x
I���I���
I���
I���
I��I��PI���
I���
I���
I��XI���
I���
I��hI���
I���
I��pI���
I���
I���
I��xI���
I���
I���
I���I���
I���
I���
I���I���
I���
I���
I���I���I���I���
I���I��I���I��`I���I���I��
H��H�D$@I�� I��
I���I��0
I��(I��8
I���I�� 
I��0I��(
I����?����7���I��HI��8H��H�D$p���D$h�������{���I��I���I��L��L��H�P@H�HH���H=���H��$�L��$�H�-���H�D$L��M��A��HDŽ$�L��I���H��$��H���Q��H���H�T$H��H���J���u�L��I��D��M��I��I���L�`@L�hHA��c�hA���ZI����D$h�����A��QtAƇ�A��PtAƇ��|$h��H�5��L��1��Y��W��L��膽����I���I���^����N�AƇ��A�H���&L�t$L������v���8�{��H��H�5��L��H��1��kW��H�5��L��1��ZW����H�|$H�5��1��BW�����H��H�t$�|��H�t$L��H�P����A����l�H�5��L��1��W��H�D$��L��L���������L��L���g����D$HA��A��p(tI�����������D$HA���DŽ$�t%A���(tI������������$�D����	I���L����H��H���������	I���H����H��hH�T$��L��H��LE�A����RI��1�H��H�5��L����U��E��t�}��
�}�i
�}�/
L�mM���NH�D$�\$D��H�D$H�D$x�D$`��A��$�tA��$���A��$�uKI��$�I��$�H���H�:H���pH�H���L���¾����Jf.�I��`I��$`H����H���蚉�����A��$hA8�h��I���I��$����3���t&���買��;����A��$���A��$�fA9����A�����A��$�A8���|A��$�A8��ujA����2	I��$I�$����{
H��u?I��8H����H�������H�������I#�$@I#�@H9���M���ZM�eL��M�mL���$�����ugI��$I�$�������H��u�A��$���A��$X�A��$������T���I�T$`H�5P�L��1��^S���y����L��L���	���d���H���[����Z���H���
���H�H������L��H��覼�������)���I�T$`H�5��L��1���R���������T$h�D$`DˆD$`�b���H����������A��$8A9�8����I��$0I9�0�����I��$ I�� 誓�����������H�|$�\$��L���u��|$`����A��S����H�5��L��1��;R��I�������3�������
���PA��1�H��jD��L��E1���ZL��YL�����DI��I��tH�D$ ���H�D$(�8�w�H�t$ L��������c�I������L�d$M�4$L����L��L��������tI��$I�$�H���n
H���&I��P�H���&I���H�|$@��H�|$p��I�I�$A���A��$���tnH�k�&I��$�H�Z�&IDŽ$I��$�I��IDŽ$I��$I��I��$ILJILJA���A��$�����H��&I��$��H�Ԉ&I��$@IDŽ$��H���&I��$�IDŽ$@�H���&IDŽ$�I��$H�I���IDŽ$HI��$�I��@I��$@I���I��$�I��HI��$HILJ�ILJ@ILJ�ILJHH�	�&I��$��H���&I��$�IDŽ$��A����Ao��IDŽ$��Ao��I��$�A�$��Ao��A�$��Ao�A��$�A���A�$�A��$�H�j�&A�$�L��IDŽ$�I���I��$�ILJ���H�*�&I��AƄ$��H��&I��ILJ�H���&I�� ILJ�H�ۆ&I���ILJ �H���&I��@ILJ��H���&I���ILJ@�H���&I��HILJ��H�o�&I��8ILJH�H�|$P1�ILJ8��H�|$X1���H�1�&I���H�!�&I��`ILJ�H��&I���ILJ`�H��&L���I��$ �M��$(H���I�T$`L��M��A��$�H�
l�H�5f�HD�1��CM��L��L�����L��� ���A�ą�t��Y�����.�I��1��L��I��0I���I��8��A���I����H�D$(�I������A�����A�����A����tE���������H�D$L���p���L��L���3�������D���A�����H������I���L���s�H�T$0H��tH��t
H;P�SL���2�H�|$8tL���R�H9D$8��I���L�������.�A��x(tA����~A���(�����A����y���H�5��L��1��K��AƆ�Idž��P���I������������H�5��L��E1��hK�����I�����r����~���H�5��L��E1��8K���q���uA��S�H�5T�L��1�E1��K���4���A��$xA9�x����I��$pI9�p����I��$`I��`�������A��$�A8������A��x�d���I��������H�|$pI��$H躇�������A��$��'����~���L����H���$1�H��L�������4���H�D$�
�I���A����{���I�� �0����\���I��`�����=���I��`H����H�#�&���I��H��$�H���RƄ$�A��hH��H��$��c�H��$�I�EH�?��H�GI�h���I��$`taM��$h��L���o���H�5��L���KI��AƆ�Idžx�[���L�t$�i��H�5��L��1��I����M��$����L��H�5�1��H��L�������H�D$HH�����L��H���,�L��H�����H��t@1�H��L���o������H�|$@I��$��؅�����A��$��E���H�T$0H�5��L��1��fH���m�H�|$A��xL��L���*��L���H���&���������fA��@t,H�������H�������I#�$@I#�@H9���I���H��$������$���u8I��$I���d|�������I��$I���H|�������A����4��$��&A�����|$H��I��$I���{�����o�I��$I����{�����S��$���I��$�H���4�I��$�H���#�I����{������I���H���{�������|$H��A��$`��M�4$L���\$���@���H�����I�I�$H���H9������a�A��$`���|$H��H��tt��tpH�D$H��t	H9���A��$�t
A��$hH9�sNL��L������urH�|$tPH;l$x�0�H�l$xL�d$�!�A��$@�%����/����\$�G�H��H�5��L��1���E�����H�5�L��1��\$�E����H�5:�L��1��E����A��$@t�����H��H�5��L��1��wE����A��$@�0����~�I��$�H�0H��$�H�8����u5I��$�����,���I���;���9�A��$��*�A�����A���tA��$�A9�����I��$�I����i������A��$�A9�����I�������"���H�|$@I��$��Ɓ�����A��$�������D$`��I��$I�������N����e�I��$8H���T���x�����/����B�H�s|&H�|$��g��H�����H�����I�T$`L��1�H�5����C��L����H9D$0�i�L���
�H9D$8�V�L��H�5��1��C��L���v��e���$�A��^H��{&�1�HDŽ$����A�1�����A�����A���I���tI���A�����Ic��I���H�c{&H�}�I���H���MA���M��H��L��H��$�蘞����������H��$���H��$��2���A���I��PtI��H��z&H�}�I���H����A���M��H��L��H��$������������tzH��$�u�H�UH�5�L��1�A���C���h���L��H��H�52�1���C��A�H��$��{���H�UL��H�5��1�A��C��H��$��X���A�H��$��E���H�D$(H��$���0���A����Ic���x������H��H��H��H��H�
8���H���P�1�H���f�SE1�1�H�� dH�%(H�D$1�H�L$L�D$H�D$�H�|$������H�D$H�|H�yy&�H��H��t^H�|$�7@����I�!1�f��F�<]w�Fމ�<:wI��s
�QHc��\�JH��Hc�@�4�7@��u�Hc�H��H�y&H�|$�H��H�\$dH3%(uH�� [�f.�1���@H����^q��@f.���AW�AVAUATUH��SH��(H���XL����H�5t��D$H��L��H�D$�d������:L���d��I��H���sH�@�:H��H�D$�md��I��H����L�`�:E1�L���Jd��H��t�L�x�:L���1d��H��t�A�}u1�H�5�H���?��H���H�D$A�~H��1LD�M����A�?H��!LD�H�t$H������I��H�����|$I��M��L��H�оH��1��I��A��H�dw&L��E���VH��H�����1�1�jL�D$(A�����H���}XZH��(D��[]A\A]A^A_�fDA�}uV1�H�5�H���>��H��L�%�0H�D$L�=� �<���f�1�H�5ҽH���o>��H���H�D$L�%�0L�=� �����H�5��L������(����H�5|�L���p�������H�5��L���T�����:L���b��I��H���iL�`�:L���bb��I��H���A�L�p�:L���Bb��H��t�A�}uH�5��H��1��=��L�%˼A�uL�5�/L��H������I��H�����|$I��L��H��H�2�1��;G���0���fD�H�5̼L���|~���(����H�5��L���`~������L��/E1��a��H�������PH�H��tH�Ȁ�:u� H�����u�|$H�ҼH��1��F��A�ą������DH�5�H��1��W>�����f�A����A�}�����H�5λH��1��i<��L�%������L�=�������G�w	������	�<�th��f����t�f����t1�f��t�D
W

W
W
W
W
W
W
W
W
W
W
W
Wu�1�������f.���f.���f�?
t1���[����f.���AWAVA��AUA��ATE1�UH��S��H��L�$H�|$D�L$dH�%(H�D$x1��
v����xcL�|$M��u�Of.�M�?M��t8I�GH��t��9�thE��u�I�H��E1��{M�?��A��M��u�fDL�|$L���ss��H�T$xdH3%(D���H�Ĉ[]A\A]A^A_�f.�I�H���T{���l���H�D$$�D$,��
��M�G1�fA�8
t}A9�uhM�`A�HE��tD9�uVH�l$$��upH�T$0L��߹@��i��H�<$I��Hct$H��H��31�A��a��L�|$L���r���)���@A�����DL�����A9��w�����H� ��H��1��`���u���M�OH�l$$M�a�c����j����f������SH��HI��H��H��H��xRH��tHH9�}3H���uIH���L���H�ߺ����1�[�DHLJ�D1�H��u�[��H���H���H��L�����H��Hi��H9�H���H��1�H�5)��:���[�D���=�s&tH��s&�U��H�libcurl/H�=�s&S��H�rs&H��H�Ys&�.0�Rs&7.64f�Os&�Js&�g�H��t�9s& H��H)�H���Z��H��H�׸H��H��1��%_��1�H�H)�H��F^��H��H��H���H��1��^��H��Hc�H)�H������r&H��H��r&[]�f����=�r&tH��o&�H���PH�=(r&賂H�r&H��o&H�q&H��@��o&t_
 �to&�Z��H�
"�H���PH�mo&H�=nq&1��G^��H�`q&�	r&H�zo&H�o&H���fD%����f���H���j���H���`��D��H���Si��H��t�8tH�:o&H��H�H����fD1�H���f�����-@��Qw#H�ܷ@��Hc�H�>��fD��f�1��f.���AWAVAUATUSH�����H��n&H��L�(��H���[��H�hI��H��A��I��H����I�D$�M����H�DI��E1�H�$L�%��fD��A�<Qw>��Ic�L�>��C�7I��H��H;$u�O�7A�H��L��[]A\A]A^A_�@H��L9�vM�L���L$L���%k�L$H��I��tHK�<7H�M��1��q\��I���Lc�I�l$H��A��I��I�D$�M���5���f�E1��r���M���f�������H��1�� c����AWAVAUI��ATUD��SH��HH�$L�D$dH�%(H�D$81�H�hm&L�0H����H���TZ��H�XI��I��H��A��I��H����M���EH�D$(A�H�D$H�D$5H�D$�4I��v4A�}�Ч����C�D>�%I��I�D$�L��I��I��A�E<%t�<w	@����C�D>�L��I��H��u�K�>�H�D$H��tL�8H�$L�01�H�L$8dH3%(��H��H[]A\A]A^A_��H�ZI��H��A��I��H���(�����A�}�����F���A�EH�t$��D$7H�|$I��L�c�f�D$5�cW��H���KS�0���fDH��k&L�����P���E1��/����md��f.���US1�H��(dH�%(H�D$1�H�D$��yH��H�\$dH3%(ucH��([]�DH��E1�H�L$Hc�L�D$������u�H��t/H�|$H�����vH�Jk&H�|$��f��R�EH�\$��c��f�f.�����1�H��1��[��@f.���H��j&� ��H�FH9FsH�@�8@��H�H�F�fD������f���ATU��SH�>H��H��tKH�FH�VH�HH�H9�r%L�$L9�sVH�wj&L��H��tEL�cH�HC@�(@��H�C[]A\ÐH�Yj&� �H�H��tH�C H�C���C�������f.���H�@�8@��H��f.�ATI��U1�SH���f���T�H���lP��;�i���u�1���t�;$t
[]A\�DH��Hc�I�$[]A\���H���H�L$8L�D$@L�L$H��t7)D$P)L$`)T$p)�$�)�$�)�$�)�$�)�$�dH�%(H�D$1�H��$�H���$H�D$H�D$ �D$0H�D$��Z��H�T$dH3%(uH�����a��AWAVAUATUSH��H�$H���E1�E1�H�|$I��H��H�L$PH��dH�%(H��$�1�H�T$HL���H�$H�L$��H�xH�|$H��%�}�PH����u�M����H��$PI��H�5ƳI��H��@t)���/���׃�H{�H�PHc?H��H��h��t)���/���׃�H{�H�PHc?H��H��h�8	w/�Hc�H�>��D���/�1H�KH�QH�SH�H�PH�� I9��]���L�d$HA�<$E1�1�H�G�L�l$H�D$H��$pH�D$H��$�H�D$ @��tN@��%��I�|$H�|$HA�|$%�>I��L��%L�d$H�Ճ��tL�d$H��A�<$@��u�@H��$�dH3%(����H���[]A\A]A^A_�D�S�����у�HK�S��@�
�����ϋ��@��@t	��@�E��/�����у�HK�����@�����DL��Ճ���J���H�D$H��L�`L�d$H�x@��%����@��u������H�{H�WH�S����H�{H�WH�S�����H�t$H����H��$�H��L�p�MD�L��H��D��TH�H��XA��@�+I��I��D����L��I��I�����H��H��`H��H��hLI�hL��H����PwL��PH�5��Hc�H�>��@A��@��A�� ��I��A��J��4h���@H�$L� H��H�$L�d$HA�<$���f.��x%��H�pH�t$H�PH���k����H�KH�QH�S����I�����A����/���L��H��L��`����H��I��H��L��hM�������A����I��A��D�������f.��ρ� �� ������� �����������/�-�у�HK��	H�H�a���H�D$HL�\$ A��H��H�D$�
���L�\$ L���H�
�I��Ic�M��LD�H�D$HM9�ML�E1�E1�E1����r�@��Zw<@��Ic4�L�>��fDH�xH�|$H�0�V�Z����Hc�H�>��I��I����H��$PI���z�I�@��3�IH�5ױ@��Hc<�H�>��f�A�� ujA�� H���^���fDD����A��DD�H�t$�
H��L�T$(L�\$ A�� �G_��L�\$ L�T$(L���I��H�
�H�D$H����f�A��@H����@A��H�����@A�πH������@�x*L�L$(L�\$ ��H�t$�
A�����^��L�\$ L�L$(L�
�I��H�
o�H�D$H����A����H��A���m���DA��H���\���@H�t$L�T$(A��A��@L�\$ �	���L�\$ L�T$(L���I��Ic�H�
��M��LD�H�D$HM9�ML�����A��H����@A��H�����@HDŽ$P%f�HDŽ$X)�$`A�� uA��@�VH��H��hA����L��H��L��`A����Ƅ$Q-L��$PM�aA��t	A�$+I��A��t	A�$ I��A��t	A�$#I��A�$A�H��xVH��E�EL��HO�H��1�L�L$8L�T$0L�\$(D�D$�9O��L�T$0L�L$8H�L�\$(D�D$I�I)�M���dI�D$A�� tI�T$A�$lI��H��A���\A��A��҃� ��EA�$�L�d$I��L�ɺF���B�4hL���5P����$p@��u����I��A�<$��@������L��Ճ��u����@L��H��H��hH�D$H���;D�����D$(I�����	M���H��I��|$(��t*L�L$8L��"D�D$0�Ճ���L���L�L$8D�D$0��A��D�D$0��M���|
H�D$�8@���k
H�D$L�L$L�pI��!��M9���I��A�~�@����L��Ճ��u�����I��H��$�D��L��N��4h�L$�VA����	L�L$A��L���L�L$��������M�a���M���g������I���S���L�� �Ճ��u��G����I��N��4hM����A��M�a�D�D$��M�q�M�� �f.�I����I�����L�� �Ճ��u�����H���0���H�t$H�xA��A��H�|$H���L�\$ L�L$(L�y�I��Ic�H�
تM��LD�H�D$HM9�ML�����@I��Hc�J��4hH��Y���M��L�5׬�(�I��A�>��@����L��Ճ��u��-���DL��$PM�a�����I����������L��H��H��`H��L��h�����A����A��A��҃� ��GA�$���H�6��D$(A�H�D$DM�q�M�� ��f.�I����I�����L�� �Ճ��u��[����t$0L�L$�����L$(���3���L��"�Ճ���(�����������/�D�у�HK�HcH�P�f�L��H����h�Df/۫�D�^ȫH��f/��s�I9�H�P�L��L��LO�H�1�1�L�L$(D�D$L���FJ��L�L$(D�D$H�I�����f�A���D$(�H���H�1��D$HE�E1�1�H�D$I����
H�D$L�\$H��D�	fDI��L��1�H��H��A��QL9�v�H�D$ M��L��H)�I)�H)�@����H����M)�H��M��DH���@0H�0H)�H���H��I�F��|$(LE�D��D�ƃ���D	Љt$0���D$0����A���H�L$8L��+D�D$�Ճ�����`�I����-I���#D��E1���D$(H��(H�D$���fDH���^����4���f.�I�����,D�L$E���j���H�L$8L��-D�D$�Ճ�����D�D$H�L$8���|$(tXH�L$(L��0D�D$�Ճ�����D�D$D�cH�L$(A���[L��X�Ճ���YD�D$H�L$(���|$0�xL�aH�L$H��DH��EI9���L�t$(M��I��D�D$�DI����M9���A�>L��Ճ��u���DA�$f����fDH��������H�KH�QH�S���H�KH�QH�S���A��A�EfDE�}M�MM�UA��@t&I�y�I�}H��H�H�	H�GH�GA��t&I��M�UI��I�I�	I�BI�BH�|$H�pH�7H�wH�t$���A�EA���h���A�EA���T���A�EA���@���A�E�3���A�EA������A�E����A�EA�����A�EA�����A�EA������A�EA��
����A�E���A�EA�����A�E����0I��H�����A����D��I��I����A��B��4TD�D$0�M���H���A��D$(H�D$���A�E�(���M�f�M����E��H�L$8��I����I�����L�� �Ճ��u����T$�����M�t$�M���u�DI����I����_�L�� �Ճ��u��S�D�����A���RD�����L$��A���DH�����6�D$(I��A�1��D$�
�I����LD�M�������H�D$L��M��H��D����M��M���e���H�D$�8@��������O���fDH�|$L�L$8D�D$0�B��L�L$8D�D$0I��I)����D�D$L�t$(A���K�M�f�M���=�DI����I����'�L�� �Ճ��u���M�a�M���
D��I����L�� �Ճ��u����M�f�M����E��H�L$�I����I�����L��0�Ճ��u���M�a�M���V���DI����I����@���L�� �Ճ��u��s�A�������H�L$8L�� D�D$�Ճ���L���H�L$8D�D$�n���f��*�H�L$(L��xD�D$�Ճ������H�L$(D�D$���A��L��Ճ���������@�D$(E1Ҿ����D$(E1�1��
����E��H�L$M���S���E��H�L$8M�����D��@�|$(%�D$u;H�X�E1�1��H�D$���@������f�M)����D���H�ݢ�D$E1�1��H�D$�I���M������M������D������K��@��H��(dH�%(H�D$1�H�<$H��H�t$H�5%�H�D$�����tH�T$H��tH�$H;T$t�H�t$dH34%(uH��(�D�A����UK��D��H��I��H�t$XH�T$`H�L$hL�D$pL�L$x��t@)�$�)�$�)�$�)�$�)�$�)�$�)�$�)�$�dH�%(H�D$H1�L��H�L$0H�|$H��$H�5i�H�D$H�D$8H�D$PH�D$H�D$ �D$(�D$0�D$40H�D$@���H�T$ ���tP�D$(��uHH��u+H��Q&H�=��H�t$HdH34%(uDH���H�D$H�T$�H�D$��1�H��t�H�rQ&H�|$H�D$�H�D$���I��f���H��HH��H��dH�%(H�D$81�H�|$H�5v�H�D$H�D$H�D$ �D$(��H�T$ ���tL�D$(��uDH��u'H��P&H�=�H�t$8dH34%(u@H��H�f�H�D$H�T$�H�D$��1�H��t�H��P&H�|$H�D$�H�D$��"I��f���H���H�|$H�T$@H�L$HL�D$PL�L$X��t:)D$`)L$p)�$�)�$�)�$�)�$�)�$�)�$�dH�%(H�D$(1�H��H�L$H�|$H��$�H�5���D$H�D$H�D$0�D$0H�D$ ���H�T$�H�T$(dH3%(uH�����IH��f���H���H�t$(H�T$0H�L$8L�D$@L�L$H��t7)D$P)L$`)T$p)�$�)�$�)�$�)�$�)�$�dH�%(H�D$1�H��$�H��H��H�D$H�D$ H�5"N&H�D$H��M&�$H�8�D$0��H�T$dH3%(uH�����rG��f���H���H�T$0H�L$8L�D$@L�L$H��t7)D$P)L$`)T$p)�$�)�$�)�$�)�$�)�$�dH�%(H�D$1�H��H��$�H��H�5aM&H�D$H�D$ �$�D$0H�D$�>�H�T$dH3%(uH�����F�����H��H��H��H�|$H�5��H�|$��H�T$�H���Df.���H��L&H��H��H�5�L&H�8����H��H��H�5�L&��f.���USH��H�H��H��t;H��H����8G��H�HDž�H��H�TM&�H�HǀH��1�[]�AWH���f�AVAUATUSH��L�2dH�%(H��$�1�H�|$)$���)�$�M���H�H��$���H��
I��H
L��$�H��M��$�H����H�;1�L��H��H�5x��B������H�5x�H����T��u_H�5k�H���T���H�5]�H���T��tuI��$�L���9��H���dI��$�ADŽ$��0fDI��$�L���;:��AƄ$'ADŽ$hH�[H���7���1��eDH�5��H���T����H�5ӛH���S���ZH�H�5��L��1��0���I��$��LE��IDŽ$�H��$�dH3%(���gH�Ę[]A\A]A^A_�DI��$(�L���k9��AƄ$�ADŽ$��+����1�I��$�L��L��H�5
���@������H�H�5�L��1��1�B���D���D��5���fDH��L��$��H�}�L���%9��I��$�L���e7��H��tmI��$�ADŽ$�����ADŽ$��i����1��
L���F�����J���ADŽ$ADŽ$�-���I��$����C��IDŽ$�����B���f.�AWAVAUATUSH��8H�t$dH�%(H�D$(1�H���dI��H��H��1�L�,2D1ɀ8���H��H�L9�u�H�H9�� H��I&H�}�I��H���1��H��H��I9�t(�H�PA��;�I�u�H��H����I�I9�u��1�L�l$ L�|$DA��X������L��D$ �f�D$$�a&����wI�7L9d$tH��H&�D$L���D$H�|$(dH3<%(uwH��8[]A\A]A^A_�f.�H��A��XM��L��H�D$H)�I�����H\$��u�H9��Q�����L�d$�-���fD1�냸�y�����@��f.�AWH�h�AVAUATI��UM�l$�H��SH��H���H����<H�5B�HE�1����I��v{F�t#�F�|#�A�����A������A��<'v^B�31�H�5C�H���R���<u{I���1H�5)�H��H��1�[]A\A]A^A_�"��f�E1�H�5ۗM��t��<'w���H� &H��H���H����H�5��H��1������<t��S�������[���2��u1�H�5ǗH������f�<#�@<'�`<�0A��L�5��I������@�L��1�H���G��A�D$I��L9�r���DH�5�gH��1�����C���f.��K�SH��1�H�5�f��f��������
�����@1�H�5x�H����
��D��H��&A��'vA���������H�&H��H�5�rH��1��
��A��'��A��������YD��H�5HsH��1��e
��H�5�H��1��T
���>����B�D#�H�SH��1�H�5[��-
��H�5������{����1�H�5ЕH���
��I�������A��L�%�p�(�H�5�H��1�����A�FI��L9��~������t��u�H�5ڕH��1�������L��H��1�����f�1�H�5��H���o��������1�H�5d�H���O�������1�H�5H�H���/�������H�H�w&H�5�eH��H��1�������DD��H�5��H��1������L����H��&H�5�eH��J��1�����R������t�f.�AV�����AUATUSH�/H��H�����f���L���H������ƀ�L���L���f��L���f��f������f���H���f�����`H���uV��X�@�L���V1��H��xq�L��H���Q�����X�@L���)1��H��x$[]A\A]A^�L)�>H��H�������f��*��[H��H�5ɓ�]1�A\A]A^�@����)��H�5��H��1��(���r���A�ȁ�������t9�����H�
�����t%H��1�H�5���
���H�
[�A��'+Ic�H��&H��H��u(H��1�H�5X���	���A���u�H�,�I��H��H�5%�1��	��@H�
���H�
�����`t���t����f.����������w%H�H��&H��H��1�H�5̒�?	���H��1�H�5���'	���AUATA��U��SH����H��L�+dH�%(H�D$1�H�t$�T$��L$�@�D$��8/��H��x3H�;D���H�5U��/���H�D$dH3%(u)H��[]A\A]�@�(��H�5͑L��1��H
����q9���AW�f�AVAUATI��USH��H	I��$H�t$H�|$@dH�%(H��$8	1�)D$0A��$`)�$��H�H��$���H�H���t)H���H����<L��H)�H���
���H���H�PH����<#tA<'�<��H��$8	dH3%(��H��H	[]A\A]A^A_��H��(H��$0H����,��h�A�#h�I��Sj���H��1�H��A���".��H�� I�UH��H�D$�@�8�-��H���A��$`�M���I�MH�U�>L�������3���@H��H��$0H���9,��h�A�h�I��Sj�[���fDH��$0H��1���j�A�'H��A��H����c-��H���Y^H����H��$�A�L�d$(H�D$H�D$0H�D$ �DH�[H����L�#N�t=L���+��A�M�lM)�I���w�H�L$H�T$ 1�L��H�5��L�T$�D4��L�T$��t�H��H���L��1�t$ L�D$0L��1�A�N�t-M���,��H�[A�XM)�ZH���g���f�L�d$(M��I�_M��L��L��1�H���A���R,��H�D$H��H��@�8�+��H��x.A��$`�����H�UL���>L���S����m���fD�$��H�5U�L��1������fD�s$��H�55�L��1��������L�U�A��A��=����5��f���AWAVI��AUATUSH��L�'��X�dH�%(H��$�1�H��<&M��$��\$����H����H�I�H��H���H��L��ǀ�H���ǀǀǀǀ�I��$H�D$0��A�Dž��kA��$H���$�f��$�����$�D$�D$dH��$�H�D$@H�D$H�D$xH�D$8H�D$(f��T$�4$H�|$�/��������E1�E1�fD��$�fD��$�H�D$x�|$�BI��$I��$�L��1۾A��$xHc�H�T$xH��t/�H��t!H���3L��L��1��K�A�Dž��0I��$��iL����e���������)���f�H��A�����E1�1�jH�����D��L���]AXZH��$�dH34%(D���-
H�Ĩ[]A\A]A^A_����$���L�D$(�t$L��L��I��$�����A�ǃ�Q�=���1ۅ��3���H�D$xH���%���HD$@H�t$@L��1��Ac��I�L�T$x�D$����L��H�D$ I���H�D$HI���H�D$PM����L�d$`M��D�|$hM��@A��$�A�ى�A�l�6A��$�H�
�Hc�H�>��D��F��I��PH��I��HH���:G��I9�$��k���H�5�L��1�A�����L���=d�����e���DA�*�U���D���$��
���I��$��$�L���5��H��H�D$xH������������DI��$���V0��f��$���$��$�D$�D$����@�����I��$�H;D$HsH�PI��$�@�(H��A��I9�������D$L�d$`D�|$h�����	H�D$0D�E�������H�D$0D�@E�������I�L�d$1�L�l$ M��H��I���#�A����	��'�f
H����A��H��t�A���u�I�UH��H���Q����	����	��u��AA��X�ٺ�L���9�����ADŽ$�@�����|$���D$�������H�|$ @�ŀ�`t$����H�5ވ�D$X�\$\��D�L$\�D$XI�A�$H��H���Q���`�������fDADŽ$��_����@����>@��
uADŽ$�@�t$���EƉD$�%���DH�|$ @�ŀ�`t$����H�5��D$X�\$\���D�L$\�D$XI�A�$H��H�,��U�������w���G������W����D�L$X�'H�|$ @�ŀ�`t$����H�5���D$X�\$\�C�D�L$\�D$XI�A�$H��H�������e���4�������D�L$XǁA��X����L����D�L$X���@I��$�@����&@�����H�t$HH9�v3H�JI��$���I��$�H9�sH�JI��$�@�*I��$��D$lH�D$PH��D��I��$�H�|$ D�ٺ�I��$�H�5g�D�L$\D�\$X��I�>I��X��D�\$XD�L$\ADŽ$��D$l�DH�|$ @�ŀ�`t$����H�5��D$X�\$\���D�L$\�D$XI�A�$H��H��������������D�����D�L$X�����ǁ��D�݃�@���WH�=��@��Hc�H�>��f.�H�t$xHt$8L��H�D$8H���!^�����@A���DADŽ$������ADŽ$��t$�������)�Hc�L���L�Hcȉ\$����D�L$������L�d$`A��1��/����H�t$HH9�v3H�BI��$���I��$�H9�sH�BI��$�@�*I��$�H�D$PH��I�>I��XI��$�I��$�D�L$X��D�L$XADŽ$��8����H9T$HvH�BI��$�@�*ADŽ$��	���f�����t4���}���ǁǁ�d���@�����"ǁ�C������������)���D�L$Xǁǁ�g��������R�����A��L��ǁA��X��D�L$X�U�D�L$X����������������Aǁ��������(������q���D�L$XǁǁA��X����L�����D�L$X�8�������'���ǁǁ����fDD�L$X�AA��X����L���v�D�L$X����@�����j��������EDž��������
�������D�L$X�EDž�z���fDHcT$�L���\$X)�L�Hc����D�L$X���������ADŽ$�����ADŽ$�����ADŽ$��o����ADŽ$��W����H�D$PADŽ$�I��$��2���f�ADŽ$������A���ǁ������E�y�����L��D�L$X�j�D�L$X�`����E�T�������L��D�L$\�EA��X�D$X���D$XL����� �D�L$\����fDI�UH��H������������������ǁA��XD��L���P����H�|$ D�ٺ�ADŽ$�H�5&�D�L$X��D�L$X��@A)�HcоL��L�Ic������������A��1��5�����6���ǁ�'���������ǁ�����������ǁ����������ǁ��������L��D�L$\�EA��X�D$X�M����D$XD�L$\������)���H�D$0M��L�d$L�l$ �@����&��f.�D��AWAVAUATUSH��H�$H��H�L�"H�|$H�t$@H�T$HH�L$0L�D$8dH�%(H��$�1�H�����;����;�D$.����D$(M���H�5��L���&��H�D$ H�|$ ��H��$��D$E1�A��D$H�l$`�D$�D$/�D$,H�D$@H�T$ H�|$���*��H����H�|$H��H�5	��-��I��H��tǀ8#u@��L��H�=�A��4���H��H�5�1��b-��I��H��t�H��t�;tM��tA�<$�0A��tBA��u��|$te�T$(����H����L��H���(�������D$�fDH�|$L���3��E�A��A�����DE��[���fD�|$���D$���D$.�ƒ�ˆT$-��M���L��L���'������D$����f.�L��H�=r�q3���DE�E�A��A������@�|$,tH��*&H��H��*&L���H��H���c�D$�D$,���fD�D$�D$�{���fDL��H�=G~��2�D$���Y���L��H�=1~��2��tw�D$�D$�7���f.�L��H���2�D$�D$������|$/tH�:*&L��H�*&L���I��H�����D$-�D$�D$/����L��H�=�}�C2��D$��DL$�DE��L$���E����H�D$0�|$,�H�D$8�t&H�D$@H�8H��t	H��)&�H�D$@H�H�D$0��|$/t&H�D$HH�8H��t	H�w)&�H�D$HL� H�D$8�H�|$ ����H��$�dH3%(D���YH�Ĩ[]A\A]A^A_�����H�t$`L�D$XH��$���H�ʹ�,������A��H�=�|�+��I��H��t�H�="�1�L��H�
�|H�i����L�-�(&L��H��A�UH����H��H�54��5"��H��H�D$ A�U����D$.�D$(�v���A������|$/����H�b(&L�����|$,t`H�J(&H��A�����������|$,t�H�,(&H���H�|$X����H�(&H��$�A��I��H���������A������{ ��A������f���USH��H��H�-�'&HLJxHLJ�HLJ�HLJ�HLJ�HLJ`HLJ�Ƈ�HLJHLJPHLJX����Ƈ`HLJhHLJpHLJxHLJ�HLJ�H����UH���Hǃ��Uƃ�H��Hǃ�ƃ�Hǃ�HǃHǃǃ�o9H��1�[]�fD��ATUSH��`H�T$@H�L$HL�D$PL�L$XdH�%(H�D$(1�H��tWH��$�H���D$H�D$H�D$0H�D$ ��%�=0�G~E=P�z=`��=@���0H�|$(dH3<%(�pH��`[]A\�f�=t9= u�H�D$ �D$H�hH��t��� ��.w�H�jyHc�H�>��H�D$ �D$H�@H��t�����0�w���H�
�yHc�H�>��f.�H�D$ �D$H�@H���B�����`��1�3���H�
pzHc�H�>��fDH�D$ �D$H�hH��������������H��zHc�H�>��fDH�D$ �D$H�@H��������0�������H�
{Hc�H�>��fDH�D$ �D$H�hH���������,P�v���1��Cp�E1��j���f�H��0L�g�t$H�E�h,Hǃ8��0���SM���JA��$��t$��1�A��$������Hk�I���H�
%&H��PpH��81�����fDH�� 1�H�]���fD����H�E1������5H�E1����H��H�1����H���H�1��o���H��8H�1��^���H�àH�1��M���H���H�1��<���H��H�1��+���H��H�1�����H���H�1��	���H���H�
>�H��HD�H�1����f��H*�h�1�����f��H*�8�1����f��H*�@�1����f��H*���^dy�1����f��H*���^Dy�1��b���f��H*�x�^$y�1��B���f��H*�`�^y�1��"���f��H*���^�x�1�������x��X tf��H*�0�1�������x��X@t�f��H*�(��f��H*�p�1����f��H*���^`x�1��~���f��H*���^@x�H��8H�1��V���H��@H�1��E���H�������X@tH��(DH�1�����H��XH�1�����H��pH�1����H��hH�1����H���H�1�����H���H�1�����H���H�1����H���H�1����H���H�1����H��xH�1����H��`�Q���H�������X �=���H��0�1�����H�E1��I���H���
H�E1��7���H��pH�E1��%���H��hH�E1�����Hc�HH�E1�����H���H�E1������P���U���=��
�%H�E1����H��H�E1����1��uk�����H�H�E1����H���H�E1��~���Hc��H�E1��l���H��xH�E1��Z���H���H�E1��H���Hc�LH�E1��6���H���H�E1��$���H��XH�E1�����H��XH�E1�����H��PH�E1����H��HH�E1�������`H�E1�����H���H�E1����H�E����1����H�E1����H�E1����H�E1��|������1��r���f.�D��UH��SH��H��L���L���I�AL)�H9�HF�H��uH��H��[]�@I�1H��H��L����H��H��H��[]�@f.�H��&SH��H���H��H���[����f.���ATI��USH��H���
��H��H�H��8H��t2�H�;H��L���&��tH��(�Qƀ�vH�[H��u�1�[]A\�Df.���H���t
1����C�����AWAVI��AUI��ATI��USH��8H�dH�%(H�D$(1�H�D$����������-���%H��
I��H��xL����H���^��L��L��H����1�H��H���=�H���H����L9���D��E��u}D��E��tp��KL�-�ou��
H�6ILD�1Ƀ���H���H���H9P�H9���E��tf�L�����H�DI�.1�H�L$(dH3%(��H��8[]A\A]A^A_��������I��H�-=��������I���������J��� ��tH��
I��{���fDH�5)sH��1����ǃ�����H���H���Hǃ��H����H���H�|$���1�H�߉�����unH���H�|$H��������us1�H�5EsH���m�H�|$����������I�1�H�5psH��������fD1�H�5�rH�����I��*H����D$�;���H�|$����D$�]����1�H�5�rH������:���DL�L$H��M��L��H��p1�L�L$�z��H��L�L$Lc�L)�L�L��L��H��D�d$�>
��I9�L$u]H�����������ǃ����f.�1�H�5WpH�����I��*���fDL��L$�\��H��HcL$A��H�t1��ƒ�A�t@�4D9�r샻��#���E�����H�5!qH���i������H����Ә��ƃ�H�5�q1�ǃ�H��Hǃ�Hǃ��[����fDL��L$���H��HcL$A��H�t1��ƒ�A�t@�4D9�r싃����F���I9��`������W���ƃ�H�5yqH��1������:���ƃ�H�5\qH��1���������������USH��H�H���Ƈ�H��P�������tH��H�H��HE�H��t1�H��[]�f.���p
�Q�����H��tL�H���'�1�H���1��1�H�߉��
���t�1���H�5�pH�����A�@H��h���H�����H����H���h1�H�߉���1���H�5�pH��������.���1���H�5�pH���>��A����@H���8��������1�H�5�mH�����A���DH��&H9�xuH���1�1�������������1�H�5>pH�������A���f�f.����H��t"H��h
H��tS��`
H��t1H9�}[�f���H�5�PH��1����ƃ`1�[�@H9��H�5�P��f.���AWL���AVI��AUI��ATUSH��h��(H�T$H�L$ dH�%(H�D$X1����LJ(������ƒ���uA����*�������uA��I�H��h�v�����ZA��������$���uA�����H�D$H�|$NL��1�H�|$H�|$OM��A�d�H�D$ M��I���D$NH�D$H�|$0�H�D$P�\$,H��I��I���H����t
A��0t(I���H���tA��PuI+�H9�HN�H��H���[I��H�D$P�$I���|H�D$PH����1�I����I���I��pI���H�@hH��t#H�L$H��L��L���Ѕ����|$N�zA��P�&I��p�y���H�|$P���A��X��I���H��u���Q	H��A��`I�����A��T���aI��hI����L���N��A��T�8A����I���ZfD��x���$�hI���"I��H�l$PH����
I���H����
E���I��E����A���I����I������t��A��H�l$PI��L��H���C���A������L�D$PM���*��M��E����	A��KuA��
��	I���H����1��!��H��H��I9��~	I���I��H�sH����
u��
I����D
H��A��
u�I��`H���t�H��I��`�f����I�GPI�WXA�����	L���]<�����5I�wPI�WXL���e���A����u~A�������A��X��I���H�����I��H9���I��(H�H9���I�����H)�H�5]nL��H��1��X��A�f�H�\$XdH3%(D���/H��h[]A\A]A^A_�f.�H�L$0H��L��L���D$O�(�������I���H�@hH��tI�����|$O��I��ptA��P�����I���H�GhH��tH�|$tA����A�����t
��A������
���0�oA���,$A����.���L��\$,M��M��I�ŋ��H�L$ ��Adž(����IH�D$�8�+A���t	����������I�WX�$I�GP�����I���H��t
I��H�I��H������I��L��H��(:��������A�*�U���DI���H�����,$����I���A��I��L���W����Q��
����I�������I��������L���
6��E���E���g�������I���I����O���D1�L���F!������I��������L��\$,M��M��I��A���E���r��������������f�L��M��M��\$,I�ŋ����A����fDI��pH�L$P�L������A����A��TI���TH�t$PI��H�H���t9H9�4H)�H�t$tA�����H��H)���H�L$PH��A����I��L���6��A������H�|$PA��T��A���������u@I��I��hI���H���t	H9���L���i�����A��T����I���AdžT���f.��������1ɾ���������r���DH�|$P�2���H�L$H��L��L���Ѕ����|$N��������@A��������I�hI������I��pH�T$PH��L���L����	����G���I�OHA����H���2���I�?H��1�H�5,gH�L$8���I��H���趄H�L$8�������I�?H��H�5Oc1��u��H�L$8AƇ�I)� ����@��	��P���fDI���H�GhH���E���A����d����A��0������^���A���DI�����I���H�������7���I��pH�L$PL����AdžT��������A�������H�D$PH���Y����I�������L���
2������1�I��@L��D�$��PD�$H����H�D$A���3����f�A��������H�5�fL��1����A�������@I��������I���t'A����bAƆ�H�5>aL��1����I��@H����A�����A��p
��A�����M��I;���1�H�5=dL���M���L����jH�D$A�����E1�����A��tA�~8��L��D�$�/4��D�$����������fDI������?���H�T$PI��p�����}L��腮���E��`
E��tdI��8uZI���L�����uGL��M��M��\$,I��H�D$H�5�cL���1�ADžH0�S���L���i�����I������@I9�tI���I��I��I��I��������I��I��I��H��L��A�����A�����>���A��`H�L$P��I��H�A��I����I;�`�jI��H9���H)�I�I��I��L���1������I�GPI�WX����D1���I�PI�wXI���I����%��I9�X���A���1�L��ADž���H�5�cL��1��������DA���� �r�����L��A����/�A����R���L����A�����?����	���f�H�5�]L��1��?��A�7���@I��H����|���4I����t$PH�5�a1�A��L��H�T$ M��M������H�D$ AƇ�I)� YI��I��^���DA���S����A���DI���L�����H�L$P���f.�H���������;�A����ADž�����I��XL��I���1�I���������H�59cL��1����A���I��L�$H�<H�~&�L�$H��I����<�H�5�aL�����A��^�fDL���\$,M��M��I������L���(�A�����-�I����,�I���H����A���I��IDž����A����L����A�����L����A���������f.�H��L��H�������d����H�T$I���1�L��M��M��H�5
`���I��I�����f�L��\$,M���,$M��I�ŋ�����f�L��H�|$H�T$PM��H��H��M��I��H�pI��H�l$P�\$,H��pI)�H�4:H9�L��H�L$NL��HC�L��H�T$PH���A�������|$NA����<�����A����-���L��H�|$PM���\$,M��I���
���I��H���� |I���H�T$P���[1�H�5;]L������H�D$PAƆ�I)� ��f��L���cdH�D$A����I���I��I�PI�wXI���I���H������m��I��H��L��H��H�5z_1����A����L��L����A�����.�����Aƅ�H�5�^L��1����H�L$P�s���L���Z�A�����_�I����C�����tc���GGH�5�YL��H��1����A�8�(����H��H�5_L��H��1��\��A���H�5"\L��1�����q�H�5YL��1��*��A����H�D$A����������5���H�5V\L��1�����A�!��A����L���f.���H���H�@XH��t��f.�1���~H�����Ѓ���t61���*��t����9�t%��t	H����	��������뼅�u������H��@H��xH���H����Df.���USH��H��H���H���3����=H��p
H���H��H�����Ņ������ƃƃ�H�����H���Hǃ�H��pH���ǃH���H���%ƃ����p
Hǃ�t8H��H��H��`H���u+H��t&���H��`�f.�H��H��`H��tH���d��H����H���z��������H����[]��H���tP�����H�:�%�H���ƃ�Hǃ�H�������1�1�H��p
����������H�5�VH��1���P���{���ƃ�H�����H����%��H���(��H��pH!�xH���H!�����0���������"���H�����5���E�����H����M����f.���1��f���ATUSH��H��H�t$���CH���H���H���t'H9�"H�|$�1�A��#T�0fDH����WƃH�����H�|$�1���SA��H���H�T$1�1������HH���H�T$1�1��3�Ņ��YE��tƃ����tH�e�%H����H�T$ƃ�1�H��H�5<[H���������H=.��=/�t=-�)H�߾
�L$��H���$��H����[]A\�f�H�|$��1���RA�ă�����E1�H���H�T$1��������H���%H�|$�H�D$H���rH���1�E��t�H���H�5>ZH��1��/�����^���f����>��H����[��]A\�@���t"H�0�%H����ƃ�Hǃ�H���%H����H���H����ƃ��������p
���������������H�5^SH��1��`��ǃp
������p
��������}�����XH��&H��ǃp
H�XMH�5SHD�1�����D���D��p
�����-������ ����c���@����=��������f������H���H�T$1�1���Ņ�u�H�D$�_������ATUSH��H�H���YtH������tGH�� H�u7���I��H��t��X�����H��u:fD��	u1�H��[]A\�@H��H�5~X1����ƃ	H�}H�5�X1�����H�EH���H��%�I�$H�����H���`[H���ƅ����t�H��H�x0�p���H��������b���H��%I�<$�D$�I�$�D$�@���DH��������������������fD��ATA��UH��SH�����H�H�t$0uE��0t<�����A9�t
Icċ��X�������A9�t
Ic����X���&fDA�����Icċ��X������H���L���H����uƃPH��u��Xu=A���t���A���t*�� tH������uhǃ����H��[]A\�fDD��A����g���Ic����X�X���@H��H��D�L$�"����D�L$�i����m����H����u�ǃ��!��H��XH��H���1�H���H��[]A\�*xf.����W��G�C��Df.�������u6�ED�B�D�P�A���J�D�H�C�A��AB�8�u>H���H�����t��uȍJ�1���w�� �p��H�@��B�8������D�A��w܃� ��f���H��tH��u1�H	����f��[����f.����S���������H���|H�L�\��"�H���L��H)�H����tk���ttH9�tOD�A�D�P�A���Q�D�H�C�A��AB�8�t��A�A��B��[�p��P�@��B�8������f��[�f�H��t�1����H��t�D�A��D��H��t.H��f�H9�t"�H��D�@��H�A��B�H���G��~�u������7�����������USH�����%�C��%����@��tFH���%H���%H���%H���%H���%H���%H���%H�n�%H�W�%H�X�%H������t<�w��u3���1��7��u#��t
H�s�%�謅��H����[]��H����[]�f�1�H����[]�DS�H��1�H��H��dH�%(H��$�1��H��
�;�fofoK1�foS fo[0H��
)$foc@fokPfos`fo{p)L$fo��H���)T$ )\$0)d$@)l$P)t$`)|$p)�$�H��$�H�$��H��$�dH3%(u	H�Ġ[����fDH��tSUH��SH��H����ytH����?�‰E1����t2H��[]�1�H�5jR�J���H���[]�fD�+�f�H�5^RH���!�����f.��������f���H��tgH��tbH��A��M����A�uPM��tK���%��t�����%1��DH�5Y�%1�H�H�%L�1�%H�
2�%L�
�%�V���fD��f.����>�%��t���1�%t�fDH���	����
H���$�@��H��dH�%(H�D$1���%��u��4��u(H���-����uH�$H�T$dH3%(uH���1�����Df.���AVAUATUSH��dH�%(H��$�1�H���1H���H��H��t�H����yH���H�������A�]��H��H�H��1����H��H�����A�Ņ��r��t��$����LH���L�l$L�t$L�d$E1�1�1�M���H���D$�D$�"l��t^��A��+DE�H��H������$���H��$�dH3%(D���1H��[]A\A]A^�fD�|$t9L��H���>���u��D$���X���L��H����H���D���D�`�u����H��L����H�|$H��t�H���~H�D$�������DH�5YOH��1�A����<���@H�t$1ҿ
����"���f�H�|$�V�������H��A���A�������A����D���gH��H��t�H�������DA�+�������SH��dH�%(H��$�1�H��t'��tH����$���t7H���/%����$�t5H��$�dH3%(u3H�İ[�f�H���x����fDH��1ҿ
������f.���H��XH�T$0dH�%(H�D$1�H�D$`�$H�D$H�D$ H�D$1����H�L$dH3%(uH��X������AU�HATUH���SH�����%H��H���pH��H��H�����%H���H��������%H���H����A�*H���Hǃ�H���L��L��P�H�L��H��I����H�����Hǃ�Hǃ�H��)����L��A�����H��f.�I��I�����J�t%J�<#�!���t�H����H���Hǃ���%H���Hǃ����%H���Hǃ����%H���Hǃ��y�%H��Hǃ��N!��H��1�[�%H��H��[]A\A]�DH��H��t5H���t+��H���H����H���H���)���H��H��PL����H��P
tH��P
H��������XHǃ�Hǃ���X��P��PH��H��t-��
H��H��H���xN��H��H�������H��H��t�`H��H��H���n���H���H��t�*�%H���H���E���ƃ�H���H��t��%H���H������ƃ�H��H��tH����������H���H���H���@�������H������ǃ@����N������U1�SH��H���\.��H���t��H�����Hǃ�Hǃ�H��)����H����H�H���#��H��(��Hǃ Hǃ�H��)����H����H�H���<����Xf�H��Hǃ�����p������H��[]��f�f.���AWAVAUATUH��S������� ��H��h	�dH�%(H�D$X1�������	É��������0����L�g�x�H�T$1�H�LH���o�8H��HHDŽ8H��D�H�t�H9�u�Dž0M�,$I9���I�,$H�L�rE1�L�
I��H�$E��t$fDL����%L��L;4$t.I��L�
E��u�H�J�rL��L��L�L$����L�L$A���M��tM�,$E��uf���0��0u0H��E1��MeH�L$XdH3%(D��u2H��h[]A\A]A^A_��1�H���i��E1��7��������AUI��ATI��UH��SH��H��(dH�%(H�D$1����¸]��uH�T$H�t$H������t H�L$dH3%(u@H��([]A\A]�D�t$H�|$L��L��H�EL�D$�����u�H�T$H�U��+��f.���AUI��ATI��UH��SH��H��(dH�%(H�D$1�H�D$�8��¸]��uH�T$H�t$H�����tH�L$dH3%(u^H��([]A\A]�@�t$H�|$L��L��H�EL�D$�W���H�T$H���tH��u��tH�U�D�Q뚐�7��T�@��H��t7��@���u+H���H��tH�H��H���m��fD1��D�+�f.�AVAUATUSH��dH�%(H�D$1�H��t3I��A��H��H��I��M��H��H��D��L���\�����uH�$H�H)�u�1��
���Qt�H�T$dH3%(u
H��[]A\A]A^��y��f���AWHc�AVAUI��ATI��USH��H��hD���XH��xdH�%(H�D$X1�A�H���H��L�p0�y���pH�����A��H�D$H�H)�H��IN�M���)H�D$@H�D$H�D$<H�D$ H�D$PH�D$(�fDI)�H������pH�D$@H�D$P�ƒ���H���H���L��L�D$�P8H�|$@A��tL��~HH�T$ �D��H��D��ȉD$<�L���D�����H�T$@D��H��H���1���L�5��%H�|$@A�Ll$Hl$M���OH�l$L9��A���L��L�d$E1��4�����L��H�=<D��������9�L��H�=#D��������D��lD��H���H���L��L�D$�P8H�|$@�a������Y�������L�D$(H�t$@H�L$HH�;H���*������!���H�|$P�����A����H��CD��H���%���H�L$PD��H��H�T$H�����D��H��H�b���H�L$HH�>CH�;H�5JC1����L�5=�%H�|$HA�����H�T$XdH3%(H�D$uzH��h[]A\A]A^A_�@�A�����H��BD��H���n���H�L$PD��H��H�T$H�Y����D��H��H���B���H�L$HH��B�D����,��f�f.�AUATUSH��dH�%(H�D$1�H��t-A��H��H��I��L��H��H��D���T�����uH�$H�H)�u�1����Qt�H�L$dH3%(uH��[]A\A]�����f.�UH��SH��(H��$�H��$�L��$�L��$���t@)�$�)�$�)�$�)�$�)�$�)�$�)�$)�$dH�%(H�D$h1�H�\$0H��H�L$H��$@�2H��H�D$H�D$ H�D$p�D$�D$0H�D$(���H��H�������t'�����H�T$hdH3%(u.H��([]��H�T$H�|$H������uËD$�����Df.���AWHc�AVAUATI��UH��SH��(��hD���XdH�%(H�D$1�A�������pI���x�����t6LJ�1�f�H�L$dH3%(��H��([]A\A]A^A_�DH���H���H)�H9�HG�H��L��H��I�I�����I��H)��H�D$H�D$�f��t$����I���Ήt$Hc����H����I���HcT$H��D����������I���M���T$A��pI���I����P@ILJ�H�I���H��txH9�I���L��HF�H��H�����I�I�I��H)�tBH�t$�D��������0���H��������@H��L��D���������DL�����H��tALJ�H���h����c����AUATUSH��(dH�%(H�D$1�H����D$H�D$�QI��H��H�t$��I�}H�T$�X���.H�|$H��� H����������I��H�t$L���H�����A�Q@�Ņ���Lc�H�H�D$L�`���1���~0H�\$�{-uHJ�D#��8
taH��L������H���%H���D$H�L$dH3%(��H��([]A\A]�@H��H�T$H�5���H�\$J�D#��8
u��H�\$��
�MH�T$�H�;Hc��U���H�D$L��K����H�A�%H�|$�������e���������AWL�=�%AVI��AUI��ATL�%=UL��S1�H��L�����L��L��H�������u��H����t?L�e��f�Hc�H��A���t!A��tH��1�[]A\A]A^A_�f�H�������[]A\A]A^A_�f�f.���ATH�c�%UH�-��%SH��L�'H�uH����H����H�UH���H��t
H��҅���H�U1�H�5H<L��輤��H�U1�H��H�5��������������cv4=��=��������C��c�r[]A\�DH���H��U�ƒ����������u�H�����H�����H�����tH���H���H�H��pH��xH��h;�pt?����P1�H�5�
H���!�����x-���c����p����1�[]A\�f�H�UL��1�H�5�;苣��[�C]A\Ð[�]A\�fDH�UL��1�H�5X;�[���[�C]A\ÐH�U1�H�5;L���;���������H�UH�5�:L���ݤ������ǃl1�����1�H�5�;L������@�s���D�:�%1�H�5e:H���������	���-�H�;��c���
�%H���H�58:H��x�X��H��t.H��H���%H�5:1�������%H;�xsH��x�E����b���H�f;��W���H�;1�H�5-;���1����1�H�5�:�ӣ��1��^���f�f.���USH��H��H���H���H��tH�@ H��t	��H���H�-�%�UH���Hǃ�H��t.�UHǃ�Hǃ�Hǃ�ǃ�ǃhǃpHǃ�H��[]�f���H��t/H��t*H��H��H��1������t���E�H���D��f���H�E�%���H���fD��H��t7USH��H��H�-/�%H�h�UH�ChH�EH��H��[]��f��f.�DAVAUI��ATUSH�/H��H�FhL��0L��I�$H�J(H�z8H�H�1�H�48H��HD�H�zHH�sPH��H�48H�zPHD�H��H�s@H�48HD�H�sXH�r@H�R0H�H�H��H�s8HD�H�CHM�����H����I�EH��H�H��A�օ�t-I�}1��چH�����I�$H�@1�[]A\A]A^��{M�mt>1�L��褆H��H���H��H���:�DL�5)����f���@H�{XH��t�H�5�8�+���1�L��H��t��L��m������H�u�%�X�H���fD��UH��SH��H�H��t	H�{����H�S�%H��H�EH��[]�����G����AWH��AVAUATI��USH��8dH�%(H�D$(1�H�H��0L�(A�U����A�EH��H�ͅ�u	H���7M����M�uE1�B�#M����I�NhI�FxH�pI�vx�I�vpH�F�I9Fxr2H���%H�ƠI�~h�T$�H���TI�Fp��T$I�FhA�E��tM����I��M�uM��tL�����I�EH�\$(dH3%(L���J
H��8[]A\A]A^A_ÐA�}	��A�EH�=�6Hc�H�>��A�E��A�E��	����
���� ��I�Fh�@
I�M �I�VhH��2@��rt1�@��-�����r@��w�o�ǁ�@��-E��r@��x�J@��s�Y@��S���ǁ�@��-E��r@��r��ǁ�@��-E��r@��w���ǁ�@��-E��r@��x��@��s��@��S�
�ǁ�@��-E��r@��r���ǁ�@��-E��r@��w�i�ǁ�@��-E��R��x�E��t����T����-��I�U����J`�BI�MHA�EI�E�I��M9�����M�uB�#M���x����T$����T$H��I��I�E�	H��%�T$����T$I�FhM�uI�NhH����	I�Fp�I�E A�E����f.�A�E���k���+�������I���A�E���<�������+�����
�J�DA�E�����������������
�YA�EIFhIE L��H���@�I�E A�EI�E(�����������A�E���DA�E���4�������A�E�HA�M��
���
�~���I�Vh�H�5�3�I�FhH����€�����H�P�H���:H�T$�H�T$��u���fDA�E����������A�E��A�E�� �����IFhIE �@�I�E I�EI�E0I�E A�E����fDA�}�����A�EH�
*3Hc�H�>���A�E����������A�E��A�E�� ����O���g�����f�A�E�������K���A�E��A�E�� �7���IFhIE �@�I�E I�EI�E8I�E A�E����fDA�}�����A�EH�
�2Hc�H�>��A�E���L������A�E��A�E�� ���0��	������fD��-��F��H�
=2��Hc�H�>�� �w���I�FxA�EH��I�E A�E�V���fD���0<
������A�E���fDA�E��A�E������H�=?1荼��H�������g�A�EA�M��A�E������������ ����H�=�0�@���H��������f�A�E���$����������A�E��A�E�� �����IFhIE ��@�I�E H�5�0IFhH����€����~A�FI�EI�F(�H`@A�EI�E�'������	��� uzI�E����DA�E��
�J��
���I�VhI�Fx�D�@I�E L��H��I�E(�����������I�E�����H�=�/�!���H�������A�EW����� ������0��	������ِ��t��A�EA�E�U���H���:H�T$�$	H�T$��u�:u�A�EI�Fx�!���A�E��A�E��
�X��
��������I�U I�U@IVh�D�I�EA�E����A�E�� �����������#���A�E���A�E�� ���������������A�E���A�E�� �����T$�i�T$��.�[������S������fD�� �?������7����������f.�A�E�� �]���T$���������T$��.���S���A�E��A�E�� ��IFhIE �@�I�E I�E@1�A�~��H��I�E���A�E��A�E��
����
�����IFhIE L��H���@�I�E I�EP��������A�E�X���A�FA�EA�EI�E �3���A�E��>�B��
�������
������v���fDA�E��-u��>���A�E�� �6��
�J�����
�����<���@��
�/���A�E�2�����
������
����I�FxA�EA�EH��I�E ���A�E��A�E�� �R���IFhIE A�E�@�I�E A�EI�E(I�E �F���A�F���A�F����A�F����A�F����A�F���A�F���A�F�������������p���I�}���I�EA�E���A�E���I�VhI�FxA�E�D����A�EI�Fx�}���A�EI�nx�k���IFhIE H�L$ �
�@�H�t$I�} I~h�ӓ���;���H�D$�8u$H��������H�T$ H�H���wI�E�H`@H�P(A�EI�E I�E��A�E���A�E����I�N(H�t$ �
H���P���� ���I�E�@�h���IFhIE �
�@�H�t$ I�} I~h�%��H�T$ �:u#H��������H�H���wI�U�J`�H�B0A�EI�E I�E�;������T$�/���'����T$��.������:�����s�������������y���T����� ���@������
�+�
@��A�E��
�l���d��������a������H���t�@��SH�5��H��H��*�1�[�@f.���H��twUSH��H��H�G@H��tH�8��H�C@H�C8H�{1���+H�-E�%H�{�UH�CH�{�UH�CH�CH�H��[]�f.��f.�D��H�1��f���1�������Ð��1��f���ATHc�M��USH��@dH�%(H�D$81�H�T$1҃�H�t$��H�\$H�7H��1�H��H�l$(UL�L$L�D$ 趽��ZY��u`H�i�%H�|$ �I�$H��tIH�t$(H�T$ H��跺��H�|$ 譮H��H��A��菵��H�\$8dH3%(D��uH��@[]A\�A�������蓿����AWH��AVAUATUSH��L�.H�|$��XH�T$hH�t$I��xdH�%(H��$1�H���H���D$hHDŽ$�H�D$PH�'HE�H�^pH�ưH�$�4��������D$hH�L$DŽ$�DŽ$���H���H��$�H��$�H�C H��$�HDŽ$�H��H��$�H�D$xH�D$0H��$�H�D$H��$�HDŽ$�H�D$X�f.�H�T$PH�4$H�=�1�虹��H��H����H��H��$�H�\$lL��$�萲��H��L��L�|$HH��$�H�>�%H��$�H��F���L�5W�%H��A��A�E����L��H������H�
d�H9$�QH�S�H�$H�
H�H9$�E���H�\$H�5�'H���Q����KH�|$01�H��������uI����83����������@L��$�H��$�1�H��L��L��$�����H��$�H�5*'1�L���*���H�l$L��H��H�E�Ҳ��jH��M��jL�1�%H��L��AWjH��$��:�H�� ��H��$�H�D$8H�D$pH�D$@D����u]H��$�H��������L��H���[���jM��H��jL���%L��AWjH��$�H�T$(��H�� �����t�H�5�&L��1���M���H�t$HH��� ��L��H�����H�
��H9$�S����l�L�D$8H�L$@L��H��$��������H�t$p1�H�=&�#���H����H�|$H��H�D$(�x�H�|$p�D$$A�H�T$(H��A��D$$����H�t$H�|$01���������I������2<�xH��H�5�%HDŽ$�H�|$p�&���H�D$pH��tH�T$H�t$XH�x�y�����M��uTL��H�����jL��M��jL�@�%H��AW�t$(H��$�H�T$(�E�H�� H��$���A������H�t$HH��1����L��H���~���H��$�A�H��$dH3%(����H��[]A\A]A^A_��H�L$PH�$L��1�H�5�$��!����H�=4$�c����B��������딉ǽ諭��H�5=$L��H��1��'�������f�H�|$pA�1�A�����������������H�5�$L��1���������ǽ�H���H�5�#L��H��1�脊���r���H�t$HH��1����L��H���e������苹���f.���AVE1�E1�AUA��ATUSH��H��@dH�%(H�D$81�L�d$ H�t$H�7H�l$Hc�H�T$L��H��H�D$�:�����uNL�l$ H�t$(H��L����L����L��H��A���ˮ��H�L$8dH3%(D��u(H��@[]A\A]A^�A�����A��~��599 �C��軸���f.���H��dH�%(H�D$1�H�?tH��1�H�|$�#���H�D$dH3%(uH����i���f���H�GHH�G4Ðf.���AWI��AVAUI��ATI��USH��H��8H�/dH�%(H�D$(1�H����t
�����I�G L�5�"H�$I�G@H�D$H�D$ H�D$M��t;A�G8��w�Ic�L�>���A�}
��A�G8I��I��M��u�1��f�A�EIc��<
�,<
�$A���9������=�I���A�����Hc�H���%�H����I���Ic���f�A�}
�Y�H�t$(dH34%(�bH��8[]A\A]A^A_�DA�E<
�<
�&���뼐M9g@L��IN@�I��I����uF���u=���L���OH���H���?L��L��L�\$�GxL�\$���LI�G@M�M)�L)�I�G@H���m���A�G8�`���A�}
�����I�@��A�G8ALJ��e���f�A�}�6���ubIcG4���&A�D H�L$�H�t$H�<$�x����A�G8���A�E<
tG<
tCA�G8����fDA�G4����A�MHcЃ�I��I��A�L A�G4���f�<
uI��I��A�G8�w��������I����JA����
Ic��I����HA����
Ic��I���������ALJ�A�G8A�}
�-������DI�GHI�G4����A�G8����I����JA���A�M�����f.�H��H��� ������f�����N���fDA�G8���L��L��L�\$���L�\$���f�H�y�%��ALJ�������Ic��I����L��藈��������r���f.���������I�|$���I�GH������������腳��D����wwH�P��Hc�H�>��@H�U��H����H�C��H�L��H�H��H�S��H��b����1�H9>t�@�F��fDS�H��H��dH�%(H�D$1�H��L�D$�$�D$�����$��t������҉����j��	�H�t$dH34%(uH��[��Z���f.���SH��0H���dH�%(H�D$(1�����H��~;H���H��~BH9�HO�H��u;H�|$���H�t$H�|$H�D$H�T$�H�����H��HN�H��t�H���H���H�>H�v����H)�H��H��t[H�L$(dH3%(uTH��0[�D1�H��~�H��tH���H����@H�|$����H�t$H�|$H�D$H�T$��H�������B���f���H��o�����o��H�����H���H�H ����H(���f�P,H��o��H������o����H���H�H ���H(��f�P,H���H�H�
�����H���H��H���H��H����ATI��UH��S�H��f��t6f��
��f��t^�EI�$赞���a1�[]A\��H�w�.H��誮��H��t��C[]f����I�$�A\�@H�OH���H��1��.辥��[�]I�$A\�@H�w�.H��
�B���H��u��R������AWAVAUATUSH��(dH�%(H��$1����t���H��u	���t:H������H��$dH3%(��H��([]A\A]A^A_�f���L�l$L�t$L�?L��L�����D$���������L��$�1��L��L��L���D$��H����������H���H���L��H���)��������o��H���L�����oM��H�U H����U(����U,f���H�����������贜��H�ߋ0H���w��UH�5�L��H��1���~������胜��H�ߋ(���G���H�56L��H��1��~�����@�S���H�ߋ(������H�5.L��H��1��~���j���@�#���H�ߋ0H�����UH�5$L��H��1��O~���8����u���D��UA��SH�����H��H�+dH�%(H�D$1�H�L$�D$�L�����x(H�5�H��1��'|��H�D$dH3%(u,H��[]��{���H�ߋ0�A�H�5�H��H��1���{�����֬��fD��ATUSH�� H���dH�%(H�D$1�H��tcI��H���H��H��tvH��H��H�
����H��H�,$�D$�T�|$tM��tI�,$H�]��X��Hǃ������H�L$dH3%(u"H�� []A\��H���H���z������	���f���H��dH�%(H�D$1������u=��X���tH�t$��辞��H����H�T$dH3%(uH�����������菫��Df.���U��SH��H��t,H�PH��t9�\u-��it$ƇiH�;���.��蜵��H��1�[]�H�;���v.H�;��)aH�{X��SPH�;1��D$�a�D$H��[]����AUI��ATUH��SH��H��D�NL�'dH�%(H��$�1�H��H��D���HDغD�D�CA��t�V�F�S=����CL�SH�v ����s+����tK�A���t@���L�fA�L��1DH�H�K��H�|�I�|
�H�{L��H��H)�H)�����H�I��$����L���`I��$�H��1�A��$�1�L��E��_�E���taA�����t�;
tv1�H��$�dH3%(uhH�Ĩ[]A\A]��C����
����D��D��蝚���E���u���fD�A��ȋL�A�L��7����C(1���D���@AWAVI��AUATU1�SH��H��HL�'dH�%(H��$81������H�L$TL��$pL���D$X�����t2H��$8dH3%(���W
H��H[]A\A]A^A_����H��$H�T$`I�}H��H�D$�(����D$ ���<H�T$1�H�5L���w����$p����CI��$p�t�L���W^I��$x1ҋt$TA��$p1�L��A���4^A����E�����D$;��$p�����I�}�@;��H�D��$pH�D$h�D$0�D$TL���D�� H�L$�$M����fE���� ˆT$(����$1�H�|$p�H�|$�D$<H���H�M����L��D�\$@L�T$H�؛��D�\$@H=��g1ҹL�T$Hf�H��H��$@)�$0H�5��H��L���������D$ I���D$(L��D�\$@L�T$ �d���L�T$ �<$�D�@�L�����L�T$ D�\$@�����t$0���L��D��H��$0A�L�T$@I��H�D$ D�\$0�9��������D�\$0L�T$@������H�L$ H�|$E��L��H�541�D�\$(�Xu��D�\$(A��
��A���2�D$ �QD��$t�I��$p������D$;����f�A��
�V�D$ A����L�d$(E��M��A��l$<�2�����UH�|$A��1�H�5�A���t��D��f��f�D$r�T$ H�t$�<$�����x�1��H�T$\D��H��$�M���D$\�E��H��L�d$(�H��<$�q�������H�|$A��H�5�1��2t��ƃ��D$T�$�<$��� �������H���H���~H����L���,�|$;�|$Tui���u`����H�L$XA���蹬������H�5�L��1��s����$|�|$TI�u�l������A�>�n�����˒��H�ߋ0I���|A�UL��H�5HH��1��t���t$TH������+���DA��$v�AA��$(uvI��$p���������f��|$T����M�������|$TH���H������H���L���J+�|$T������D$ �D$;�v���f�D�|$TH�D$hA��	H����D$hD��H�$�o�������I��$0�J�H�$A�D�����D$h�:������]I��$8��H�$A�D�����D$h���������D��H�5kL��1���q������@�t$TH���D���������$|I�u蘝�������D$TA����D��H�5�L��1��|q���q�����ې��L�|$H�ߋ(A������z��H�5H��L��1��-�r���t$TH������-����苐��D�(A���o���A��s�e���D��H���9zH�T$H�5�L��H��1���p��E��$��t$TH�߽�7�������f��T$TH�5L��1��p������fDD���
�D$ f��f�T$pf�D$r���D���L�|$H�ߋ(A������y��H�5�
H������f.��t$TH�߽*����0���f.��H�5�L����������I��H���H�D$ A����A��
uHǃ�L�D$h1�L��H��L��D�\$@L�D$0L�T$(����L�T$(L�D$0��D�\$@��H�D$ D�\$(H���H�D$hH����H��$0H�8�L�T$0H��H�L$ �:���H�D$hD�\$(H�5QL�T$0L�D$ H�H�|$D��L��D�H1��&o��H�t$hH�|$�G��D�\$(���H�D$H�t$ �H�P�ũ���������D��D$ f�D$pD��f��f�D$r���D��H�5
L��1��n������|$(�����H�D$L��H�5=ƀ�H��1��-�<p���t$TH������q���H�|$ �%���1�H��t�H�HH�D$H�t$ �
H�L$(H�P������~S�
D��f�L$pH�L$(f��f�D$rH��t3�
1�H��订���D$ ��$�����Hǃ������D$ ���L��H��L�T$0D�\$(�طL�T$0D�\$(�����|$(�����L��H�5DH�|$�����u���DAWHc�AVH��AUATUH��SH��D��`ǁ`�������~L�,�I�uxH����D�vH�^(H��t`H���`��H�D$Lc�I��J�|�u2H�T$H��H����ƒ�tsI�]xA���u+H����[]A\A]A^A_�D9st�H�[(H��u�A���t�D��H��T$�'�T$�H�wxH��t�E1��~H�^(A��F�4��U���H�[(H���a����f���AWAVAUATI��USH��L�/�t$dH�%(H��$�1�Hc������D$LH�D$t1�1�H��$�dH3%(���uH�Ĩ[]A\A]A^A_ÐI���X���H�t$PL��H�T$X�H�D$P�l�H�D$ H���H�E1�L�d$81�H�D$(H�D$`M��M��H�D$H�D$LH�D$C���`D��E������{D����1Ƀ����D$0�~������tA��$��C���`H�t$�U�����H�5DL��1����k���T$L���E����M���t}I��$�tRA�����A�����I��`�t$LL���tI���H��L��I��H�5�
1��el������t$�L��������u�f�1��]���f�H�|$PH�t$X�D$LA�nI��$�I��$��E���I��$�H9�~HM������I��$��A�T$L��uP�I���u����A�n����H�5�	L��1���i���D$Ln�nM��t�DA����T$4�(����T$4K�|�x�H�������H�t$�.�u����t$LL����rH�T$I��$�L��I��H�5W	1��hi��K�D�xD��L��t$H�x(H�D$(HDD$ I��$������t?���#���A�n�����C���`H�t$�2���DI�� �-���@HcT$0A���`�E�����A���tI�����f.�I������@H�5�L��1���Zj���y���M��Ic�H�\$L�d$8I����`I�,���XI�D�xI�Fp�x
ǂ`����HcD$0A���I����`���tL����ǃ`����D�|$L��D���l���Å������H�D$AƄ�A�$E��t]��XL���L�L���d�����I��$�I��$�H�|$PH�t$X���I9��������t$�L���"����}����L���0����y���f���AUI��ATUSH��H��(L�'dH�%(H�D$1��Ĭ��H��L��H�T$�H�$���H����I�}H���ֵ��I�uHǃ����H�~(H�sxHǃ`����tH�H���H��`��H�SxH�r(H�sxH��tH��H���t���u���`�t I��$�H�;�I��$��41�H�L$dH3%(u*H��([]A\A]��1�H�5qL���h������C�������t'1���t8��t���ÐH������u���f��Df.���ATI��UHc�S�����t���[]A\���L���~b���Ä�u�A���X�����1ɉ���x�ƒ���Oډ�[]A\Ð��H�GH�wH�H�G���H�GH�H��u H��H�H�AH�AH�OH�G�H��t+H�VH�qH�QH�VH��t6H�JH��H�NH�G�DH�H��H�AH�QH�JH�H�GÐH�O��f.���H��tgH�GH��t^H�NH97t]L�FM��t|I�HH�NH��t_L�AH��H�H�FH�H�FH�GH�GH��tH��H������H�H��t(H�A�fDL�G�f.�H��H�G�@f.���H��t7UH��SH��H��H�t@H�sH��H������H�{u�H��[]��Df.���H�G����H��tSH�GH��tJL�FH97teL�NM�AM��txM�HH��H�GH�BH��u#H�2H�FH�FH�rH��H�B�H�yH�NH�~H�yH��t#H�wH�q�ՐL�M��t(I�@�fDH�r��f�L�O�f.�H�G�o�����H��H�~SH��H��t�PH�CH�B�%H�C H��[H���f��G ����AWAVI��AUATI��USH��H��H�D$DL�l$I��L+M�}M��t8I�I�oM��tH�pL��A�ԅ�tH��L��L���p���H�k(I��H��u�H�D$H�D$9C �H��[]A\A]A^A_��������H����H����M����AUATUH��S��H��H�S�%H�WH�OL�GH�G(Hc��u H���H�EH��tZ��~/D�c�L�-����1�I���H�EH�� H�<L�����L9�u�H��1�[]A\A]�f.���f.��E H���[]A\A]�f���AWAVI��AUATI��UH��SH��H��H��L�/HcW L��SH��I�M�}M��u�5M�M��t,I�?H��L��H�w H��(�SH��t�H��L��L����H�k(H�4�%H�}0�I��H��t1H�x(H��L��臌��I�o I�uL��M�wL��L��M������H�C(H��L��[]A\A]A^A_���AVAUATI��UH��L��SH��L�/HcW H��SH��I�M�uM��u�If�M�vM��t7I�>L��H��H�w H��(�SH��t�H��L��L��� ���H�k(1�[]A\A]A^�[�]A\A]A^�f���H��tAVI��AUI��L��ATI��USH�HcW L��A�T$H��H�H��u�=DH�[H��t/H�+L��L��H�u H�}(A�T$H��t�[H�E]A\A]A^��[1�]A\A]A^�D1��D��UH��SH���G ��~(1�f.�H��H��H��H��H}���9] �H�u�%H�}�H�EH�E(�E H��[]�f���H��t1�1�����fD����H��t��f��Df.���H�I�иH9�s@H��H��H�W�H��H�H1�H9�u�1�I��H���@��H9�t1��@H��H��H��H���ރ������H����Ð��H�>�FH�F�f���H�GL�H��tH�pH�wH��tH����OE�A A9�~HHc�H��IH�H��t��H�� H�2H��u��A9�u��H�����H�w�O�1�Ð��H��%� ���9����Ð��HcH��1�H��H���f.���Ðf.�H��H��t%H�;r(u�"f.�H�9r(tH�@H��u��fDH��1�H�������AUATI��USH��H���[���H�=��H�5��I��H�H���?�H�H;h |D;h(|I�$H��[]A\A]�H�x H�p(H��L��蕢���H��HN�I�$H��[]A\A]�f.�SH��dH�%(H�D$1�H�����H���H��thH��H����1���H�4$H��xXH���H���H9H ���o@ H���H�������H�L$dH3%(uzH��[�fDH�$����H���t6Hǃ�H���H��H�����ǃ�����������u�1��f����9H(�a���1��v����U���DS�H��1�H��H��dH�%(H��$�1��H��
���fofoK1�foS fo[0H��
)$foc@fokPfos`fo{p)L$fo��H���)T$ )\$0)d$@)l$P)t$`)|$p)�$�H��$�H�$�g���H��$�dH3%(u	H�Ġ[��v���fDAWAVAUL��ATI��UH��SH��(L��H�T$H�$M��u�L��1�L��I���H���H��tM�>L��H��I�^I�I�w ����H��~�H�$H��tF�AoGH�\$H�����H���H�)$H�<$膌H�H��(1�[]A\A]A^A_�f�H�$Hǀ�ǀ���DL�GM��t'�G`����
wI�8��wH���Hc�H�>��1��D�L���K����L������A��x��A��`��������A��d���t�Hc��������	���A��XI��H�������fD�L�������L�����I���H�@PH���4����L���f.�A����H����L���աD1�1��I����AWI��AVAUATU��SH��H��L�o�L$L�D$L�$dH�%(H��$�1�M���E1�L�d$0f�L��L���e���1ҍJ�������������tA�4�A�����t
H��H��u�M�mM��u�F�d5I����'H�t$(I������H�T$(H��xHcL$��H9�M�t$E�����D$E1�1�E���&M�_E1�M���EH�\$L�d$0L��M���D��uJM�mM��tsL��L�����1ҍJ���������s�D��A�A��H�<�A�4�fD�G�7��tD��A�4��A��H�ˉ1f�y���t�H��H��u�M�mM��u�I��H�\$��tM1�f.���D��I�D��1�f�H�L��΃�f�p��tf�H��tf�HH��A��9�w�1�E�����|$tH���%�D$L���D$H�t$H��t�1�H�<$tH����E����H��$�dH3%(�H�ĸ[]A\A]A^A_�f�A��A�4�����������A��
��D��H�<�H��%�I��H�����D$E���1���E1������H�D$(�������H�$�1��R����T$D��L���%k��~O�������H�sD�D����у�H��A�L���f�N�9�u������D$L�l$P�q������V���1����A��E1��;������������AWI��AVI��AUATUS1�H��H�|$L��dH�%(H��$�1�H�����H�D$PH�D$X�D$`H�D$PH��H�D$0����$A��I���H�D$ H�D$HH�D$8H�D$LH�D$(fD�ٸ���K���	��D���/Lc�E1�D!�D��B�l�PA�ʼnl$L�����H�t$(H�|$ �L�\$�L$��L$L�\$I��D�����DE�F�l�pM���BA������vA;������fDH��A9�����HcȍX9��E���]�<$�YA�G8A�W4A��t��A�W4A���$t��A�G8����E1������A��A	�E��E9_ t$H�|$H�G`H��tH�OhM�G(D�ډ�L����E�o �������A������H�t$0�C�E1�L�<�H�D$LH�$M��M��M���C������t%H�D$0;l$Pu�@H��9(��L9�u�l$L�����H�D$H�4$�L���L����H��H��te�@0C�������G0��t�o8��t�o4���H�t$H�F`H��tH�NhL�G(���L����H�4$�L��l$L��I��E9���'���M��Hc�H�t$0I���H��H���}��I���H�t$pH���}��A���1�H��$�dH34%(�sH�Ę[]A\A]A^A_���tA��F�l�p�D$H����H�ĉ%�@��I��H���1�H�����H�t$8H�|$ L�����H������E��������<$u.A�G0A��tA�G4A��tA�G8I�wI�NHL��L����A�G8A�W4����1�fDA����A�G8A�W4A9�u�$�g���f.���t��A�W4���*�����A�G8����H�t$(H�|$ ��l$H�l$L��I��H���5������H�È%L�����������I�wH1��W��*����-���f.���AWAVAUATUSH��H�W�%�|$��t$���I��H����H��M�w M�o@H���I���H��M���苣����uw�t$L��H��H�
"�H�+��v���uR�t$L������uBH�5+�L�����H�5�L�����ILJhILJ�ILJP�����<�H�����H�����L���(�1�L����1�L�����H�u�%L��E1��H��L��[]A\A]A^A_����a�����f.���1�H��t
Hc�H���������H�G���H�w����AWAVAUATUSH��HH�t$L�D$dH�%(H�D$81��H���H�?���������H�oA�����H����I��L�t$ �"f.�����H�mH����L��H��1��[�A�čKD�����A��s�Ic<��D$���w�貄��Ic<���T$A��A��A��B���?D)�H��H��H�t$H	ƅ�t���ve����t���A9�DL�H��H��u�H�mH���f���H�D$D�81�H�t$8dH34%(uOH��H[]A\A]A^A_�DIc<������������A�<����������?)ѺH��I	T��p�����}����M��tA�H��tH�?�u���u�w����f.���f.���H��tH�?�u���uE1��-�D��f���f.���Ƈ��@���H��t9H�?�u0���u'ATL�g UH��SH��L���I�H��u1�[]A\�D1��DH�s 1�L��H���L����H���k�EH�C��fD��H��H�������f.���AVAUATUSH��dH�%(H�D$1�H��tsL���H��M��td���t$���tYM��$�L�t$�L��L���t�H��t7M�L$`M��tI�L$hL�@(���H��A�ѺL��L��l$��H�D$dH3%(u
H��[]A\A]A^��{��fD��H��XH�T$0H�L$8L�D$@L�L$HdH�%(H�D$1��H����H�?�u}����uoH�D$`�$H�D$H�D$ H�D$��'�8wf���M���������uu�$��/��H�D$H���H���1�H�T$dH3%(�QH��X����$N�w2��'�>��!N����'�������9u�$��:u����.Nuҋ$��/��HD$H�H�Gp1��a������'���'����
u��$��/��HD$H�H��`1��!����H�D$H�@H��X1��	���f�H�D$H�@H��x1����f�H�D$H�@H�G`1�����@H�D$H�@H���1������$H�����/��HD$H�8������H�D$H�@H�Gx1��t���@H�D$H�@H��p1��Y���f�H�D$H�@H�Gh1��<���@H�D$H�@H��P1��!���HD$�����H�D$H���H�x�����fDH�D$H�@H��h1�����f�H�D$H�@H���1����H�D$�@���H�D$�s���H�D$������x��fD���H��tZH�?�u9����u+H���t)H��H�ǰ��1�H���f.���H�����1��fD����AWAVAUATUSH��L���M����H����I��1�A��H��H�5��H���G��芌��I��I��H��H��S㥛� H��H��H��?H��H)�H�����I�Hi��H)�i��B�T%I!�I	ԁ�?B~�����I!�I��I	�D��H���[�D��H��H�@H�|$H��L��HH��0L��PD��X��E1�H��tKL��M��u�=f�I�GM��H��t(I��I�H�UL�$H�M H�xH�p �%���L�$H��~�H�|$H��H��L��L�����H���uX���H�����uGL���H��L��I���L���I�wH���lxI���H��[]A\A]A^A_�fDH���H���L��L��臋��H���H���I���I���H���y���v�����H�5L�H��1��JE���^���D���H����H�?��q�H������@����SH�����@�����.UH��SH��H��1�H���$��H���H��t��U`��t�E`��u��H���t
�����uH���Dž�H���H���H����� ��H�� H�{H���H�E��H�CH�(H�EH�kH���H��1����f�CH����H���H����CH�@PH���H���H�����t��t�S�H��1�[]�f.��������tW袑��H������H���Dž�����H�������@��H�EH�kH�k����H����������f.���ATU�S���uI��H���oj���Ņ�t	��[]A\�f�1�H������{`t�C`L�c�胋�[]A\��ATUSH�o@H��tCL�eH��A�|$`tA�D$`L���z��H�{@H��1����[L��]�1�A\����f�[]A\Ðf.�AWAVAUATUSH��(dH�%(H��$1���pt3H��$dH3%(��H��([]A\A]A^A_�f.�H�oH��A��A��H���K�H��H���з��L�=1z%H���A�H���Hǃ�A�Hǃ�A��*�U�D��H��H��H�иDE�H���H�@H��tD��A��H���A��A��*��H������H�����L��M����H�uhƃpH��tH���I���H�EhH���I���H���A���0Hǃ���tK�DmI��H���8A�D9�0w〻bǃ0����@����`txA��H��H���Q���E��������H�CH�߉D$茻���D$�0���H�C1������H���H�@H������H���4������������{���E��tH�������b�������}�����L��hH�M`L�d$1��L��H����f��H������uNHǃ�D���#���H��蘪��E���4������*DE��$����L��(��H���L��H��1�H�5�J�M?������tL���R���L����F����p��f����H��t	H�?�t	������u�ATUH��SH�_H�H��u)�yf�Hǃ�Hǃ�L��M��tR��pL�#uH�{t�1�H���0������u�H���H���h���Hǃ�ǃ�두H���H����H�������H���-�H�} 1����H�}@1����H������H���1��}�H���1���H�Pv%H��[1�]A\�f�f.��������H���H����H���u�������UH���H��SH��H���H��H����q��t7��H�5��1�H���c=��H��(t$f�H��1�H���O��H��(u�Hǃ�ǃ�H��[]�f��Df.���H�G����Df.�AWAVAUATUSH��XH�t$ H�T$(dH�%(H�D$H1��D$8�D$9�D$:H������@���I�ϸ�HH�D$;H�IH��1�H�$H�D$:L�%��H�D$DH�������ƃ�����A�W`�B���
��B����������Ic�L�>��I�O�D$<H���H�@ H����H�t$<H��H�L$�ЉŅ��w�T$<H�L$���1A�G`���1
�
9���I�OA�����H��H���bfDA�W`�B����j���ƃ����E���H�����I�OH������A�W`���,����H�\$HdH3%(�
H��X[]A\A]A^A_�DL�9��H�t$ L������蟹��H��y�A�G`���#���>M���I��I���I���H�|$ H�t$(I�����诀��M��H��L��H��H�5��1��U<��E1�A�`	�7��L�������A�G`������uXE1�I���H���
��L����A�`t1A�G`�'A�od1����DE1�E1�������t�A���t	���t�I�O���@L���q������A�`tA�G`L���Gq���L���Z���A�G`����
I�OA�����H��H���p�œ�����cI���,��A�G`�������FI���A�G`L���h�K���A�`� �*�9���fDI�wH����H��L��褮��I�G����3
H����%
1҉�L�������D�I�tI�GA��A�G`�S
A����E
���[A�G`�NH�D$@I�o����������L�����L��H���a���H�D$@H���S
H���L��1�L��ƅ�H�5>��18��H�|$@�%
L��H���*�H�|$@��
I�H�t$8���Ņ���I�GA�W`A�����H������I�H���#��I���I�GL��H����2���I�GL��H�������E���A�G`��t&I���A�G`L���h�b���A�`�Z���A�����I���H�������M���I�WhH�s(H�{ ALJ�H��A������A�`����A�G`���@�L��苖��I���H����I���H����H�T$8H�t$7L��艿���Ń�Y����vA�G`���6���H�����I�H�����O�I��V�I�GL��H�����I�GL��H����������I�H�t$8誯���Ņ��(L���(p�����L����A�W`A���f.�I��'���A�ƅ���A�G`�*���w���H�߽*�
�I�H��� ��I��*��I�GL��H����*���I�GL��H�������A�G`���fDI�� �D$;H�D$@H���I��(H����H�T$I�L��H�$�W����A���������|$:���8����\�����TD�T$;A�W`A��E�փ��Y1������I�wL���T�A�ń��	A�`t`A�G`�V�I�wL����I�G���u
H���tH����I�GH���A�W`����
tA�G`
E1�A��������i���I�H���(����_����������A�W`1�����@I�H�t$8�
�I��ŀ��H������������x�����A�G`���b���E1��I�H�T$61��@��D�l$6��E���A�W`�������E1�1��t���I�OH������f�I�H�t$8�2����Ņ��(����|$8A�G`�����I�OA�G`E1�H�����f�I�H�t$9責���Ņ����|$9A�G`�qI�1�A���������ƒ�9������A�W`A��������f�E��yM�wE����I���H�@H��tcH�L$9L��H�L$H��ЉŃ�7�<
�����|$9��A��I�>�A9�AM�Ƈ������ؑ���|$9��I�A�G`�����E1�������A�G`�����I�wL���<�A�ń�t5A�`	�����A�G`	L��E1�A������iA�W`����A�W`E1����@A�G`������L���k������fDA�G`�3���1�I�w��L��������I�GA�G`����H�t$ H�T$(L������Ņ���A�W`E1��D������
������fD�|$8A�W`�f�������I�OA�����H�σ��6���A�G`A������#���1�L���f��A�`�����I�OA�G`A�����H�����L��`����@����A�W`�J����A����A�����������I���I��E1�I��@�t$(�t$(M������I��(YI��^H��H���OH�������H�t$ H�T$(L���Q���A�`tA�G`�	M9��L��L��E1�E1��S�A�W`���f.�A�`tA�G`H�sHI�OH�{@L�����A�G`����I�OH��E1�����L���Xi��1��.�����L������c���fD�L������[���fD1�1�L����A�`�\���A�G`L���yf��A�G`���?���1����A��������fDH��������H���8f��t%A�`���I�OA�G`A�����H�����A�G`�����
���f.�������I���L��E1�A�����A�G`�h�C�A�W`� �f.�����3I�OA�����H�σ��m��2����I�H�t$@����L��H�߉����H�|$@����A�W`������5������v�fDE1�I��I��I��8�t$(�t$(M���T���H��I��XZL	��x���@A�W`E1�����@A��tH������uALJ������A�G`����D�*A�������I�H�t$@�T$�nj���T$������H�|$@���D$:�L����f��I�GL��H����O���I�GH���H��tH�8�1��@�I�����@����H��d%H�|$@A�H�D$�I���ILJ�H�D$@1�1�L��E1�����Ņ��H�D$H�|$@E1��y���@�|$8�vA�G`���������A�G`A������k�����	�:�A�G`	L���cA�G`��������DL��L��E1�E1��O����f.�L����"�@I�O��x�������A�`�����A�G`H��E1���@I��A��������I�wL�����Ņ������|$7�	I�OE1�A�`H���Z�A�G`�M�1�H�5�L��L�D$��*��L�D$�L���u��1�1�L���Y�������7����L���d��I�t1҉�L���+�A�W`A�E1��_�1���I�� H����I��(H����A�`tA�G`H�t$ H�T$(L��衋��A�G`����������E�I�H������u��\t
����L��E1�E1���c�����L���z��"�����	������H���Xa���@I�O�5���I��>a����A�`�^A�G`A�������A��tA��������A�`
���I�OA�G`
E1�H����I��@������\�'���I��T$���T$���I��T$�۹A����T$�����n��H��H�5L�L��H��1��*���5�I���H�|$ H�t$(I����n��H�5N�L��H��1��Y*������H�9�9�M�Ƈ����������T$<A�G`�����������ҍT
��A���M�GtI����9���fDE���E���i���L��H�t$@H�D$@�ie��L����E�EE���a��L��1҉��|�H�|$@H����������E1���7��H�	`%�A�W`��I���H�|$ H�t$(I����m��H�5Z�L��H��1��5)�����I�1�A������������A;G`��A�G`A������
��	�A�G`	L��A�������^A�W`��1�H�5��L����(�����A�W`�F����+�|$:���1����I���I��I��@�t$(�t$(M�������I��(AYI��H��AZ1�H��6H���<����	L��L9�~H��L�����A�G`�������E1�I��I��8I���t$(�t$(M������_AXH��L	��A�������A����������A�G`���|$8��A�G`���������	������/�@A�`t�A�G`A������9�H�^%A�H�D$�N���@��u�I���tEL�5�]%H�|$@A�I���L���ILJ�H�t$@�u_��H�|$@��A�����A�`�����H�t$@D��L���@_���Ņ����A�`A���������A�G`L���\�����H�D$@H�4$L���D$@H��H�D$貭����u)�|$;��M�wH�t$I���L���P���?��7����M�G���I���H��������������1�1�L����A�`�����I�A������[I�OH�τ���A�`���A�G`��I�H�t$@�a��H�5�L����1��$��ILJx
�����H�|$@��������E��E1��*���H���L����]����tSH�|$@E1����������A�`�
�A�G`����L���1����4���A�E1����A�`tA�G`L����Z��H�|$@A��������M�w1�L���dm�������H�t$L��������T����m����
T��f.���AWAVAUATU�SH��H���H�4$dH�%(H��$�1��Gh��H�D$H���	H�;���������L�{I��1�M��tlH�|$0I��I��H�|$�8f.�L��L��L��H������$�����M�?��E�M��t"A��t��$���u�H�|$�����L�l$(L�t$�"@H�H0H���L��L�����H�|$(t&H���L��L��L���mUH���H�D$(H��u��CH�4$���H���W���H��$�dH3<%(��u9H���[]A\A]A^A_�f�H�t$1ҿ
�D$�;T���L$�����]R��f.�AWAVAUATA��UH��S��H���L$(L�D$dH�%(H��$�1��f��H�T$E���I�Ń����L�|$8H�����\$8L�����H���H�H���L�3A��@����&�D$(�ǃ����D$,H�D$@�|$H�D$ �H���H����L�2I�FH��tH������u
�t$(��(A��t��$�����H�T$L��L��H���`���$�A����I�FH��tH������u
ǀ(E����H�[H���>L�3A��@����BI�FH���k����L$���)����T$,���9���H���H�������$����H�t$ 1ҿ
�OR���[���f.�H�|$ ��������L��H���u��A�ą��W���f.�H��$�dH3%(D����H��[]A\A]A^A_�@f�E1�L�|$8��H���L�t$H�D$H�D$@H�D$f�H���L��L��L���[RH���H�D$8H��tzH�X0H�T$L��L��H���3��H�|$8t[H��t���t��$���tlH��L��L��H������$�A��t6E���H��H���v��A�ą��k�������fD�EH�L$����H�t$1ҿ
��P���DH�|$����@H�t$H���L��A�ă������H�]H��u ����H��H�����H�A��H�������E��t��|���@E1����E1�D�#c��I��H�T$���fDA��E����N����U�SH�����uI��1ɉ�1�H�������Ņ�~H����[]��H������H����[]�Df.���U�SH�����uI�ȉщ�1�H������Ņ�~H����[]��H���x���H����[]�Df.���U�SH�����uI��1ɺ�����H���A����Ņ�~H����[]�f�H������H����[]�Df.����H����H�?����H�����@�����H�����AU�ATUSH��D���E����H��H�~H��D�n`H��tZH97A��A��w]A�E��m��wPH�7��{���H������H�{tR1ҋsdA��H�����H���<fD��A��w
�mfDH�����H�sH��t
E��u�H���Z���H�{tH�sH�}@1��d������uHǃ�ǃ�H������H��1�����C`H��H��Hǃ����H�CH��tH�H�CHǃ�H�u H��t%H�H;X u�`�H�H9X tOH�vH��u�H�SH�H��tbH�H�H��tGH�P�mH������1�H��[]A\A]�f.���H�} 1��m����1��DH�U�f.�H�E�f.��Df.���SH��dH�%(H�D$1�����u-�t$���t@H��H�ǸH�t$����H��t"H�X(1�H�L$dH3%(uH��[�fD����J��@��1�H��tH��X�f.���1�H��tH��`�f.���1�H��tH��p�f.���1�H��tH��x�f.���H����@��H����@��H��tH���H��t@����H���H��t�@�����f.���H���H��t�����t�@H���1�H��t�����f.���H��P%���� Df.���H��P%H��H���f.���H�~���Ð��Ðf.���H�~��Ѓ��Df.�AUI��ATI���UH��SH��H�F(H�pH�P%�H��H��tH�(H��L��L�h�U��uH��H��[]A\A]�DH��O%H��1�H��H��[]A\A]�f�f.�����D�OA�����H�N�L�G
A��t&H�����
�L�WL9�~XH��H)�I�A��t H��u
�q�I��H��tfA�8u�H��I��A��u*A��t
H��~FH��H)�1�H�2�f���H��u
�!�I��H��tA�8u�H���f.���f.�H��H��tH��1�H�5��F���=H���@1�H�5���*���=H�����H�~��H����ATL�fUH��SH��H�FXH����H�F`�8���H�=Z�H�[�H���p����u"�/L���UB����uQ�C1�[]A\���L���3B����u/H�H�C1�[]A\�f.���f.�H�sHH�}[]A\���Df.�AUI��ATI��U��SH��H�����uH��M%H�>�I�$���uH����[]A\A]�DL����D����t��uI�t$0I�}�z������H����[]A\A]�D�N�FH��9���HF�Hr)�)�J�B��u��u	H�r�P����1����H�r�2���f���H�V1�H������f.�����f.���H�~tUUH���H���pSH�~H��H��H�FXH���H�F`H�5����@����u*�CH��1�[]�f.���f.�H�sHH�}H��[]�]���f.���H��tH����t1�����v��fDAWAVAUL�nATUSH�^H���F �D$H�FH�D$�F�������H��K%�$I��H���@�I��H����DM�g0�H��A�G8@�>��A��A�G8=@t
A����A�����~cE��t�A��uaL��H���
���A��f.�H�QK%D�T$L���D$D�T$��tA���H��D��[]A\A]A^A_�DE1�A���t�I�wHH�}�
���L��H��H������A���DA�u�H���1B���p��H��H�����>����ulH�D$I�G�D$A�G H�I�G���I�w�@�$H��)�H�A�WL��P�������L��H��H��D$���D�T$���@A�G�4����$A�G����@�L��H��H��[]A\A]A^A_�:����L��H��H����f.���AWI��AVI��AUATUH��SH��H��dH�%(H�D$1��F����L�f���L�n������tGH�SA�ˉK E���@H�L$dH3%(D����H��[]A\A]A^A_�f.�H��	��:u�z����H�sHI�?�4�����L��L��L���D���A������s H�{�s �FH�CH�����{ L��H��H)�H��V<���s E1�H��	�F���H�{�?u���u�H�����������������i���f�H�SL��K �1���A�����f��H��L���P���A�������H��H��L���r�����tn������H�>H%�k ��H�CH��t�S L��H���;���CE1����������fDH�S��K ����A���W����H�$A���CI�A)�L�sD�[ �"����H��G%H�{�H�$�S �CH�I��H)�A)�I�D�[ L�s����@��f�f.����~H�V�N t��5���DH��������Ðf.���Ðf.���H�~���Ð��H��tH�vH��`D1��D��H�=ұAVAUI��ATE1�UH�-q!%SH��!%�
�H�;L���N����u
H�;�3��M�dH��H�]H��u�M����H��F%L��I��H��tgH�=`�I��H�-	!%H�"!%I���DH��H�]H��t3H�;L���N����u�H�3L��H���
=���, f�H�]L�hH��u�A�E�[L��]A\A]A^��H��E%[H�=ް]A\H�A]A^��D��UH��SH������H�øH��t&H�}H��H�5C�1����H��E%H���=H��[]�@��H��tH��`�1��f.���AUATUSH��H�/H���H��t=L�-DE%I��f�H�CH��L��H���H��P H��A�UH���H��u�H��[]A\A]Ðf.���AWAVAUATUH��SH��(H��T$H�D$H�|$�>��;���C�}@��,�5@����I��1��DM���L��A�M�gH)�H����HD�@��t@��,uԋD$����H�����H�5;pH���:M�����JH�5(�L�-�%L�5�%�I�6H��H���
M����t
I��<��I�vH��tH��H����L����tI�F�<��I��M�uM��u�H�\$L�5�%H���H��uH�|$H�5%�M�H��H���H��u_H��(�[]A\A]A^A_�f.��}H�����H���%���@��tRL�����f.�H�D$H���H��tgH�|$L�����H��t�H�L$H���A��f.�H��(1�[]A\A]A^A_��H�D$H�|$ƀ����A��q���H�|$1�H�5*%�e�H��H�D$H���H���n����
������H�uB%S����H��H��t�H�xx��]����uH��[�H�YB%H��1������USH��XH�T$0H�L$8L�D$@L�L$HdH�%(H�D$1��_��u;H�D$p�$H�D$H�D$ H�D$���HH�����H��Hc�H�>��H�|$dH3<%(���hH��X[]�fD�$��/�lHD$H�H�E��fD�$��/��ƒ�HT$�$�
���	E����H���Hc�H�>��f��$��/�HD$H�H�E�X����$��/���ƒ�HT$�$�
������!E���'���~`��uCH��@%H����HDž������$��/��HD$H�H�E��������������D��u�H���H�����������HDž����fDH�T$H�BH�D$����DH�T$H�BH�D$�.���DH�D$���fDH�D$���fDH�D$�O���fD��+���fDH�} �g�������������H��������H��?%���HDž��HDž�H���H���������H���������1�1�1��b���H���H��������s�����7�����AUATUSH��H���H�GH��H��tH�O��1���D�kE����H�k H����H��芆H�{x�1���H����e���H���H����H���t.E1�1�fDL�H��I�Ĉ�KH9��H���w�H�-�>%�UH�CH��t
H�S�1���H��UH��D��[]A\A]�f�H�CA�H��t�H�S�1���H��D��[]A\A]�fDH�-!>%��H��A�[D��]A\A]�f�f.���L���M��t@�����A#t*M�H1�M��tH��I�H�D$A�ыD$H��������f.���H���H��t8�����#t#H�J1�H��tH��H�R�D$�ыD$H��Ð����f���ATI�ԺUSH�H�=!gH���H�@��L��HD��*����t>A�|$I�\$@��u�@H���;@��t	�_w��u�H��H��[]A\���@[�=]A\�@f.���AWI��AVAUATUSH��HH��t$H�T$dH�%(H�D$81�@���nH���H��L���L���H�D$H��L���H�H<%�H�{
M��H�ELD�M��LD�I�<$H�D$�A�x��H��;%L���I��M���/H�D$0H��L��M��PM��L��H�D$0PH�L$ ���L����XH��;%Z���uP�|$H��	H�5eH�T$(HD�H�=ߦ1��|/��H�|$(H�EH��;%�H�}��H�D$�@H�L$8dH3%(����H��H[]A\A]A^A_Ð�?L���s'��H���#���L)�L��H�=��H��1��/��I������H��pH��0L��L��L���H�D$H��0���@�@1��_���D��P����Q3�����SH��H����,�H���[��f.�D��ATI��UH��SH��pdH�%(H�D$h1�H��H���3$��H���['��H����!H��H�߉���*��H��L����"��H�D$hdH3%(u	H��p[]A\��2��f.���ATL�%:%UH���SA�$H��H��t�}A�$H�CH��tH�+H��UH��[]A\�@H��9%H��1������H��H��H�H��P1�H���@��USH��H��H��H�H�s�PH�-g9%H�{�UH��UH��1�[]�f���AWAVAUATUSH��L�/@����M��pH��fH���M��HH���M��LD�H��`H�D$H�)H���z	L�z	HD�H��HD�@��u��I��A�?@��t	�.s��u�L���%��H��uI�~�Cu%H��L��H��M��AVL�D$H��L�����ZY��uTH��[]A\A]A^A_�DM��xH��eH��M�� H��M��LD�H���H�D$�1���DL���D$����D$H��[]A\A]A^A_�f���ATUSH��H�� H�?dH�%(H�D$1�H�L$H�T$H�D$H�D$@��tuH��H����uHH�T$H�5maH�=��1��s+��L�%�7%H��H��A�$H��H�|$A�$H�����H�L$dH3%(uUH�� []A\�@H�� �L���u�H�T$H�5`H�=��1��*��L�%7%H��0H��A�$H��0��/���f.���SH��H�� ��H��H[��f.�D��AVI��AUA��ATI��UH��SH��dH�%(H�D$1�����H��I�$A�>@��u�3I��A�>@��t#��p��u�A�>-uH��tL�u��5@H��D��L���2��H��tH�$H�U�;"�tL;4$t�I�$1�H�L$dH3%(��u
H��[]A\A]A^��{.��f.������]�SH�x���Hc�H�>��H�����H�9���H�����H�����H�J���H����H�����H�Y���H�!���H�Q���H�	���H�����H�����H�r���H�L���H�!���H�q���H�
���H����H�����H�����H�j���H����H�3���H����H����H�q���H�a���H�����H��a��H�u���H�Y���H�٨��H�����H�i���H�)���H�����H�����H�٠��H�A���H�����H����H�����H�����H�A���H�����H�����H����H�����H�Ο��H�����H�����H�)���H����H�:���H����H����H�����H�a���H�!���H�٣��H����H�R���H�����H�a���H����H�۝��H�	���H�����H�����H�����H����H�K���H�����H�y���H����H�ݜ��H�����H�����H�����H�y���H�@���H�'���H�p���H�����������	��H�}�Hc�H�>���H�i��H�Ǜ��H�%���H�*���H�����H����H����H�%���H����H�����H�)�����H����wH�թ��Hc�H�>��DH����H�מ��H�ޞ��H�Ւ��H�����H�Þ����AVA��AUATUH��SH��������H��D��D�(ƅ�I���E����t	���thƅ��
H���'��H��tH��H)�H��~��
H����&��H��tH��H)�H��~�E9,$tE�,$H��[]A\A]A^�f.�D��H��H��1��������z���f���AVAUATUSH�������ugI��H��tL�/I���t��L������L��L��E1�H����G��H��H��tMI���t�L���6��	@E1�1�H���D��ƃ�[]A\A]A^Ð1�A���fDL��A�������C�����-%���t	�����H��1Ҿ�
������u��-%1�H���D��-%1����5z����-%���������H���t
��@�s�����AWAVAUATUSH��H�|$�?dH�%(H�T$x1��D$8�����D$<�����D$@����@���BI�����H�\$�D$�D$$E��D�d$ D�d$D�d$�f�H���;@��t�g��t��;�g��tH�l$Pf�1�H��H��H�57�)D$P)D$`�"�������|$��eE1�A����H�|$���H�����H�T$xdH3%(��H�Ĉ[]A\A]A^A_��;�Xf�����|$@��D$D������
H�t$HH��D�8�H����'���UA9�tD�}���y�����H�H�����H9��`���H���H�t$H��H��H)؃|$��uH����|$$� A����!����A����
�D$$H��Lc�@�;�D$�D$@��t	�������A�����A�����	Ѓ|$@����������\$ ��.�����A�������A�������HcL$8�������Hct$<��;�����LcD$@A��<�w���E��E��y)A������D��D)����ӍR���\$ )�A)�D�t$ 1�A��Mc���A���QD��)lj�A����A��A��������A)�A��D��-�A�H���H�<�H��A��#���Hc�H��H�H��Jc�H�J�D �H�@H���L$H��H��H)�H��H��H��H)�I�����tHc�H�H��������1����f.�I��A�I����������!�%����t������D�I�NLD��I��I)�|$��(���I��H���H�5��HC�L�==%H��%IB�H�D$(E1���H�D$(J�4�H��D�|$�*1������I��I��u��D$����A��������fDE1�H�5%��@H�)%J�4�H��E����0����uZI��I��u܃|$������D�l$@L�=���I��H��I9��W���L��H���0����t�AkG<�D$L��4���@�D$ D!�����A������|$$�����|$ �������c��l�����GL‰�1�A���H��L$ ���D$$����H9\$@��H����@���r�����x�f����{��Gը��a����Ⱥ��QH�������)�k���k�<���@��+E��D$�b���f�A������D�l$ Mc�D�l$�D$8�D$<�D$@�`���L�t$DL�|$<1�H��H�l$8M��L�D$@L��H��H�5r�������te�|$@��=���1�M��L��H��H�5P�H�����������HcD$D�D$@H����f�H��%H�5�E1�H�D$(���DHcD$DH�����Ⱥ���hA�ȉ��A��A���QH��D)�i�'�T$ )lj���A����)�D�j�A��A��A��E)�Ek�dD)�Lc��$������Df.���H��H�|$H�|$�9)��H���H����+�f.����AVAUUSH������������2��I��I�ʼn��;������t��(%��u?��u:�2��L��H��H��L��� 3����)…�~01�1��#���Ń��t���@��@���H����[]A]A^��H��1�[��]A]A^��D�������������AW��AV!�AU!�ATUSH��X�|$�t$�T$dH�4%(H�t$H1�H�D$ H�D$(H�������H�̓����1�H�����D$�D$���t�D$0�D$4��D$�|$�L$�|$���tHcljL�0�D�4��G�D$�t$�T$A��tHc�D�f�T�0�D�4Mc�L�l$0E1��Sf.�AD޹��L��L���%��A�ǃ��ub������t�-'%��������H����H��y���������������������0��H�D$ H�T$(����������E1��|$�t�D$6E1��YA��D������DE��|$�t"HcD$D�����D�6�YDE�D������DE��|$�t$HcD$D�����D�6f�DE�D�����8DE�H�t$HdH34%(D��ujH��X[]A\A]A^A_���0��H�L$(��H��H�T$ H���0��)Å���f.�E1�롽���������A��됉����A����8�����AWAVAUATUSH��(H�D$H�D$H��t&��t"�?�u6H�G�N�H����H���x��uH9�u�H��(��[]A\A]A^A_�\���@�Չt$I��1ۅ���D�l$E1��>ADމ�L��L�����A�ǃ��u/�
	�����t�%%��u'��u"������y�������f�����uE1�H��(D��[]A\A]A^A_Ð�T$I�D$�J�I�t���x��t���t��f���t��f�H��H9�u��fD�s.����H�D$H�T$�-���f��[.��H�L$��H��H�T$H����.��)Å��M����_���A���Y���f.�f���USH��H���H��t7H�-� %H��`�UH��hHǃ`�UH��Hǃh�UH��1�[]�f.���1���t
��X����ATUSH�GH��H�(����~W���F����G�W@H�5���H��1��O��H������C$9C�5�C����1��[]A\Ð����H��`D�bD��D�b��A	��G@A�ԍH��9��GfD9��M1�H�5ĞH���l�1��j�H��hL����H��h�@�G@H��h��f���JH��h�@�BH��h��D��H�����1�[]A\�f�H��1�H���H�5�@��[�G]A\�fD1��GL���f�G@H��h�H��h�@�G@H��h��f���JH��h�@�BH��h��D��H�1��H�����H�{8�Y��[1�]A\�f��GH��hfD�c@L����H��h�@�C@H��h��f���JH��h�@�BH��h��{D��H���H��xmHc�THc�LH�{8H��H9������D����[1�]A\�@H��h�{�L���D��H�@�I��H��1�H���m�������H�{�0��H�5?H��H��1����7�<���f.�H�5I�H��1������f.�USH��H��(H���o����H�C1҅�H�8��1��c��H����H�s(����H���XH���H��S㥛� H��H��H��H�ѺgfffH��������A��A)�H�1H�C0D�K$A�����C$�A�H��H�H��A�������C H�C�H�5
�H�81��;�H�{8�B��1�H��[]�f�H���H��S㥛� H��H��H��H��H��H�1H�C0�����Ⱥgfff������A��A)��șD�K$A����DƉC A���<���A��2��H�Ⱦ2�C$2A�2H�H��A�����2����C A��#���DH���H�C0�fD�ɸ�C$O��C �����H�CH�57�H�81��������Ic�����UH����H�5��SH��H��H�GH�81�����H��������tH��[]�H����H��[]���AUATUSH��H��dH�%(H�D$1�H�GH�(����~a�������O�G�W@H�5��H��1��O��H���[��C$9C�?�C����E1����f.�����H��`�Q���Q�O@��	�f9�tf����>f���5H�{8���f�C@H��h�C�H��h�@�C@H��h��f���JH��h�Bf�{@��Tv9�P�4H�{H��hI��ǃPH�H��H��1��f.�H��tB)�L��Hc��n���A�Ņ���H�{��PH�$��TH�‰�PH�9�|����{H��hL���D��HHcҹ@���H����Hc�PH�H��H���kC���rf�H��h�L����H��h�@�G@H��h��f���JH��h�@�BH��h��D��H�0���E1�H�L$dH3%(D���7H��[]A\A]�D��H��H�5��1����E1�����P�{L����@H��hD��H�PHc����H����H��H��E1��gB���k���f�1���H�5��H������C���C;C$~&�S@H�5˗H��1�A�7�C��'���fD��P�{L����@H��hD��HE1�PHc�����H�����fD���H�{A�7�0�b�H�5�8H��H��1�����������f�G@����f�UH����H�5�SH��H��H�GH�81������H�������tH��[]�H����H��[]�����AVI���pAUATL�%�%UH���SA�$H���H���
H��H�EH���H����H��`A���H��h���H����w����XH�kH����CH�Ep�C�����@D��XǃTf�CH�������u"H�Ep�{H�sH�P�9�������ƅ�H�}��?��A�1�[]A\A]A^�f��P�A�ŸG����w�H��`�A���A�u�Hc�A�$H��`H���!���[�]A\A]A^ÐA�u�Hc�A�$H��hH��������fD���H��0�Y�H�}H�5�H��1�������O���f.���UH�5�SH��H��H�/LJ�H������H��t>��x�2��<At<NtƅKH��1�[]�f.�ƅKH��1�[]�H���H�5���=���H��u�H��1�[]�Df.�����~%��tP~^�I��tI���*�JE������t+~T�G��t ���*�DE��f.��H�f.��F��t��*�GE��D����*�E����E�f���SH����F����u#H��t�{���t[�(����1�[�@�*[ÐAUI��ATI��UH��SHc�H��H�����1�I�LH9�wH�XH��L��H������H��H��H��[]A\A]�AWAVAUATUH��SH��x�dH�%(H�D$h1�H�GL� ��tY������t|��tWH�=�H�5|4L��1��w���Gf�H�L$hdH3%(���H��x[]A\A]A^A_��S�����H�ؔL��1�1�H�5��^���@�������A��$KL�-`�H�_�LE��$H�y���Hc�H�>��A��$Y�t5�������D���@��5���D���f�������������G���G;G$��A��$YH��h�H��h���@H�GH��hI��$`H�H��H��H���tL���C<��H�EH�H���E1�E1�1�H�L$L��H������Å��r���H�L$H��H�L$�p���Hc�TL��I��H�4$�Z���H�4$H�L$I��H�F�L)�I9��:H��H��hM��E1�jH��H�x1����H�|$(����ZYA��$M�l�1A��$Y��I��$`H�����L�t$ H����@1�L���=���H��h��TL��H�
��L�����H��h��TL��I�L�L�������X�@L��I�H��=1����H��hL�TH�
I�L����H��h��TL��I�L�L���d����M �@L��I�H��=1����H��hL�TH�
��L��)���H��h��TL��I�L�L������I�H�EH��h1�L��}H�@pD�HL�@ ����L9�t$���H�}�0�o�H�5�0L��H��1�����H�l%H�|$��X����H�5��L��1�����:���f.��G���������fD�@H�GH��l����0L�t$ f�D$ �G���H�5ԐL��1��G�N��H��%H�|$������f��fD��AWAVAUATUH��SH��H���L���L�/dH�%(H��$�1�L�d$8L���;��I�N0H�D$8H9��YIcV IV8H9�~|I�~8���I�F0H+D$8�E�H���;L������A�ą�uA����E��E1�H��$�dH3%(D����H���[]A\A]A^A_�f.��EH9��������A�~1ɉ�������`��t�L���H�M��1��D$8�L�|$@H�D$A��TM��I��`A�}�PHc������A��LA��H�������"M��`A�$����A�D$	���A�Mf�����Bf����f���~I�EI��H�ADžTH�D$�B�H�L�H�D$�t@1��
L���1	��H���6H=���H����Ic�XI��H9���A��TH�|$��L�9�H�<�H�5N�1��%��L�d$L;d$��L�|$1�L��M)�L������H��L)�H��ID�H�yH�L$I9��!M��M�<1�I)�L��L�L$ L��L�D$(���L�L$ L�D$(H��H�L$L)�H��LE�J�TI9�H�T$��L�����Ld$M�|��H�|$L��1�L��H�57��`��L�����H�5��L��H���6����������L�����H�5��L��H�������������1��
L�����H�|$H�4�H�5D�H��I��1�����H�D$��Y�����M���H�|$L���u5�����A�F����A��EH�58�L��1�A��V�������f���F��t)A�L$A�E@��A�L$����	�f9��7DH���5������A�v�W����H��A�����1�E1�jH�����D��H�����ZY�E���fD�s�H��E1�0�6��H�5�+L��H��1����A�F����DA�D$��M�|$1�Hc�L����H�L$��A�D$	�H����A�E�y��H���8���H�L$L)�H9��'���H�|$1�L��H�50��i��H���4���������L��A�*�6����{����H�|$1�H�ڊH�5�*����H���N4���������@�T$8I���L��I������E��HA��L�����H�|$H�5|�1����A�E�x���H�|$H�5d�1�A�G�g������H�|$H��1�H�ىH�5��A�G�?������H���H�|$H�5P�1�A�G���������H�<���H�|$H�5�A�G�����`������H��Hc�I�T$���A�ą�uBA��L�p�H�D$Hc�H�H��H���?1��H���3����������q�������L�������H��L��1�A�GH�5��Y������@��ATI��UH��S�H���H��tC�E1�H���U�;tP��t[]A\��H��L�������{���t=[]A\���@���u�I��$�H��u�[�G]A\Å�t��f.�[1�]A\�f���UH��SH��H���k����;t��t
H��[]�H����1���¸*��u�� ��H�}H��[H��]���f.�@��H��HdH�%(H�D$81�H���H�D$I��H��H�$M��DH9x Cu9p(<��H�HH����H9y ��9q(��I�AI��H�@H9x ~�H�H��t?H9z u9r(H��I�I��H��@H�JH�H�:H�Bu�H��1�f.�I�QH�PI�H�T$H�H�$H�PH�t$8dH34%(u6H��H�H�H�PH�yH�tH���_����H��1���H��H����J���f.���H����ATI��UH��SH��H��t!���H9h t^~DH�H�CH�H���H�AH�H�k H��L�c(H�[H�[[]A\�f�H�PH�H�SH�@��D9`(u�H�����H�CH�S �S(H�PH�SH�PH�ZH�X�f.�H���f�f.���H����ATI��H�5�UH��H�=܇SH������H9h Ct;H�PH9�tJH�H�o@ H�JH�B H�
H�HH�JH�HH�QH�H��[]A\�D9`(~�H�[]A\�fDH�@H�[]A\�@H�1��@f.���H����H����H�~ �tcATI��H��USH��H�~ H�v(�	����H9�u7H�kH9�tvH�C�oC H�EH�E H�EH�CH�EH�CH�hI�,$1�[��]A\Ð�~(�u�H�FH9�taH�NH�AH�HH�vH�:1��f.������H�UH��tH�} H�u(�j���H�UH��H�P�DH�m�f���f���UH��H��SH��H��H�%�H��H��tH��H��H���n���H��H��H��[]Ð��UH��SH��H��H��%�H��tH��uH��%H�D$H��H�D$H��[]���AWAVI��AUE1�ATA��UH��SH��H��(L�D$L�|$dH�%(H�L$1�I�fDI�>1���H��H��xT�����H��D����"����~fL��H��H��D���-����Qt���u)H�T$H9�tJH��t=H)�H�I��f.��H�L$dH3%(u(H��([]A\A]A^A_�@������֐H�L$L�H����N���@f.���AWHc�I��AVAUI��1�ATA�ԺUSL��H��I�(E���XdH�%(H��$x1�A��8H��D$�G��H�������t.�|$H�;E��L��H�a�H�B@HE�H�5��1����1�D���u1�D��L��H�5�H�����D��A�f���|$fD�\$pf�D$rul�D$xM���6L����I��H=��H�5`�H��1����A�H��$xdH3%(D���TH�Ĉ[]A\A]A^A_�@H�D$(D��L��H��H��H�D$�-!��A����t����	H�D$(H��tPL� M��tHH�L$0�@L��H��H�L$���A�|$H�L$t@H�5Y�H��H��1��L��H�t$(H�����L��H�5]�H��1��+��A��(���I�D$ H�5�H���P�T$t�P�T$u�P�T$v�@H�ʈD$w1��'��H�t$(H���J���D$xM���LL���d�H=������L�d$p��H�PL��I�|$H�D$����L�D$E1�I�H	I��L�D$L��D��H��L�L$�A��A�Å��L9|$(L�L$��M��uE�|$u>L��D$���L�D$L��D��L�xH��L����������L9|$(D�\$��L�D$ �L��D��H��D�\$�������GH�|$ D�\$�6�|$p�+�D$q<[�Fv|<\��<]�|�L$u�T$tj]H�5���D$zH��f����P1�D��$�D��$��p��Y^A��k���H�5قH��1��O��A��L���@<Z��|$H��D�\$H���H��<H�5�HE�1��K���D���rD�\$���@H�D$	A�	L�d$pL���D$t�l�L�HK�9H����H�D$(L��E1�H�D$����f�H�5A�H��1����A����@L�d$pI�t$H��H����������!�%����t������D�H�QHDʉ�@�H��E1�H)�H��	I�����@H�5kaH��1����A�����@L�d$pI�PL����I�|$L�D$����L�D$I�@	H�D$I�����f�H�|$L��L��H�L$L�L$L����H�L$H�D$(L�L$H�D$I�������H�t$H����
���fD�L$u�T$tj[H�5u��D$zH��f����P1�D��$�D��$��<��AYAZ�����L$u�T$tPH�5���D$zH��f����P1�D��$�D��$����XZ���fD�L$u�T$tj\H���D$zH�55�f����P1�D��$�D��$����_AX�6���@H�5q�H��1����������D��AWIc�I��H��AVAUATUSL��H��M�!A���XH�t$E��8H�T$�L$(�D$dH�%(H��$�1�������M��$�H�$��A����H�<$��� ˆT$.�tA���D$.�1�L���@��I��H���������n�����L����+��������������I�������A���Ƅ$�LD�A���^Ƅ$���D$/��M��tƄ�����1��$��On�L$(H�T$1�H�5݁L���U���L�D$P��H����$�L�D$0H�HH��$�H��H�D$ ���A�ƅ����$�H��H;D$P������m�����L�����&����������u���1����mH�D$H��H��H�T$ I���H�D$8�S�������H�|$H���$����$�����A��|$.Ƅ$�fD��$��L�<$H�L$ Ƅ$�H�t$H�yL��M�o�SD��$�M������D$(D��0��B��,�I��B��<�E����H�5��L��1����L9l$P��D��0E���)H�5ʃL��1��p���L�l$HI��
�*��$�����$�<��<����$�����L��H�5�{1��Z�������.l�c@A��D$/�fD��$����f.�H�;L��H�5S1������B����H�5�L��1�A����H��$�dH3%(D���@H��[]A\A]A^A_�DH�$H�;H�5b~1�裾���{���fD�L$(H�T$L��1�H�5~�~����/���f�H�5s[L��1�A������k���@H�;H�5zA�����M���fDH�;H�56~1�A��ٿ���+���@H�5�~L��1�A�蹿������@H�;H�5�y1�A�虿�����@H�;H�5�y1�A�8�y�������@�|$/�U<��<��<��5M��t
A�?�[H�5�L��1�A��'����y���f�H�;H�5NyA������]���fDL�l$X�T$(H�t$H��L���g������$���VH�D$XH���7L�(M���+L�|$`�@L��L������A�E���i��
��Ƅ$�H��$�I�M A�fDI��B�D)B�*I��u�L��H�5�L��1�舼��A�H�t$XL������X���H�5a}L��1�A������k���@<��<�����H�51~L��1�A�����;���@L�D$0H�T$ L���H��������%���H�5:�L��1�A�誽�����DH�;H�5�w1�A�艽������@M����H�|$��L����H�|$I����Ƅ$�I��D��$�M��t#H�D$H�D$ L��L���VH�x�P�L�D$I�EF��,�N�<M��M��tH�L$ H�t$L��H�<��L�D$0H�T$ L����H��覿������L9l$P��L�D$8H�T$ ��H�߹�����H�|$H����$����U�����$���H�5||L��1�A��d�������L�D$8H�T$ ��H�߹
�/������H�5�~L��1�A�� ����r���H�5i}L��1�A������S���H�5�{L��1�A�����7����Ƅ$�A�A�f��$�����A������|$H���cW���j���H�5{L��1�A�脻������L��H�����������A�������$���0��Lc�u
M�}���
����$�����H�T$ L��B��,�BƄ,�B��,�H�5W~D��$�A���H��	�1�����:���H�5|L��1�A��̺������H�5�}L��1�A�谺��������$��������`������)A�������0���A�A�H�D$ L�D$8L����H��H�P
�8����	���L9|$H��������Ƅ$�I�E H�5�{L��A��P��$��P��$��P��$��@L��A�	��$�1��������H�5�yL��1�A�輹������H�5�{L��L��1�裹��H�t$XL�����fDH�T$L��1�A�H�5�{�t���������$����4���H�5�|��$�L����$�P��$�A�f����P��$�P��$�P��$�P��$�P��$�P��$�P��$�P��$�P��$�P��$P��$	P��$P1�D��$D��$詸��H��p���H�5�{��$�L����$�P��$�A�f����P1�D��$�D��$��V���ZY����z�f.���H���$� ��H���$� ��H��tH���$� fD����1�������Ð����X���,�Ѓ�������E��f.�����f.���H�%�$SH�����H�H��H���[��Ã��7H�p���Hc�H�>��@H�d{��H�n{��H�o{��H�|{��H�I��H�Y��H�i{��H��z��H�q{��H�u{��H�}{��H�v{��H�p{��H�t{��H�v{��H�y{��H�}{��H�}{��H��z��H�n{��SH��@��u��`��,[�f�H����T���tك���,[�D��A��t�DSH�D$H�H�H�$H���H�T$H��H��C��H�����H�L$�A[Ð��ATH��H��M��UH��SH�����1�H��H���H��@���;���H���tH��x"H��[]A\��1�A�$QH��[]A\Ã�%�O��%wH�z��A�$H������f���ATH��H��M��UH��SH���P�1�H��H���H��@�����H���t=H��xH��[]A\���C%�O��%wH����H��A�$[]A\�@A�$QH��$�f.���AT1�M��UH��SH������1�H��H���H��@������H���tH��xH��[]A\�@1�A�$QH��[]A\Ã�%�O��%wH�b��A�$H�����뽐��AT1�M��UH��SH�������1�H��H���H��@�����H���t	H��[]A\ÐA�$QH��$��f�AWAVAUATUSH��H�$H��H�ԄH�t$8H��$�I��H�J dH�%(H��$�1�H��D$4�D$H�D$H��H�T$ H�D$��XH�L$(��D$0�����:�-Hc�H�>������I��$�1�ADŽ$PI��$���ADŽ$�I��$��t$0�����������#ADŽ$�I�$I��$��H�D$H��`���H�D$HH��tbL�|$ L�t$(H�l$@L�-
�H��f��ML��L��1�I��H���R��M9�u�H�T$ H�|$H�5}w1�H�l$@�P���H��tH�����H�� ��I�,$H��h�OI��$�H�T$XH�t$`�0��I��H����!L��8�	H�����I��$ I��$�L��M��LD�|$X�
D�A��$��D$H��A�������D�H��H�D$pPL�D$p����D$ ��_AX���M&�T$1�H�
GyH��H�5�v�n����D$XH�D$@��H�T$`�H����L��$�L��$���H��$�����$��$���H�t$@H��L��L��@�L$A��1�H��A�����E���� A����A���� A��$��D$<ADŽ$�<�I��$�H���o'�j��A�Ń���>I��$�����2IDŽ$�H��t,H�
�H�0x���A�Ń��������6L�=��$I��$ A�I�$IDŽ$ HǀADŽ$�:�H�D$��Y� ADŽ$�5I��$�H����&���A�Ń���p���X0ADŽ$�6�G�I��$ H�T$L�����D$����H�D$��Y�H��`��6ADŽ$�1H�D$I��$�E1�E1�H��`H���H�D$ H�D$�T$ H�0�\�I��$�H���(H�D$H��1ɾ����E1�E1�L��H���j���A��$A��$Y^�D$���. ADŽ$�8A��$�I��$�H����%�l��A�Ń��tD���-2IDŽ$�A��$�ADŽ$��D$E���A�����DH�D$8���I��$H���%���A�Ń��t҅��1IDŽ$I��$�H��t!�|��A�Ń��t���� 4IDŽ$�L�=A�$I��$ A�I�$IDŽ$ HǀADŽ$�9�Bf�I��$8I��$0H��71�H)�I�$@�g��I��$@�L��Hc�I�$8I��$8�����D$���8H�D$I��$8I��$@��`�X#H�D$H�H�v�$�IDŽ$@ADŽ$�(I��$pI��$hM��$�A�I��$��D������k�������I��$hH�I��$(�H�D$��M��)I��$p�����H�xPI��$8H���$I��$0�I��$@H���)I��$pI��$8H�����A��$���,I��$�%�H=��k,H�t�$��I��$HH����(H�\$H��1�M��$hH����H����ADŽ$�)�[DI��$HI��$h���H����I��$HH��I��$�A�A�����A�Ń������L�=��$H�I��$HI��$(A�I��$(I�$0IDŽ$HH��I��$@I��$0���H���bI��$8I��$@H��rI��$0I��$hH)�H�1�����ADŽ$�*H�I�$8�X�H�5cqH�������!7ADŽ$�I��$����H���{�I��$I��$������A�Ń��������tA��$��(DADŽ$����H�5�pH���{����[���ADŽ$��I��$�c��H�����I��$I��$����t��A�Ń���x�����t�A��$�u���I��$����H���`�I��$��H���$���IDŽ$���H�5�pH��H�|$1��4���H�����ADŽ$�.I��$����I��$I��$I��$�#�����������8�O%��uH�|$H�5�n1�����ADŽ$�H�D$H�������ADŽ$�A��$��T
H�|$H�5�n1��u���ADŽ$�:ADŽ$�CI��$ H��t���IDŽ$ I��$H���F����A�Ń�����������*I��$�(��IDŽ$IDŽ$IDŽ$I��$�H��t%�B��A�Ń����������:.IDŽ$�H�C�$I��$��I��$�IDŽ$��I��$IDŽ$��I��$IDŽ$�I��$ IDŽ$�I��$hIDŽ$ �I��$pIDŽ$h�I��$@IDŽ$p�I��$HIDŽ$@�A��$�I��$��H��D$D��IDŽ$�)���(1�IDŽ$ ���H�L���>��H�����I��$��R���f.�I��$�3��A�Ń���G�������ADŽ$�IDŽ$�f�L�t$I�� 
��1�H�5�lL���\���I�� 
I��$ADŽ$�H�(AƄ$�}*u
AƄ$H��H��H�=~l�����!� H�����H��$�H���I��$ L��$�I��$L����D$�������)'H�|$H�5�p1��e���H�.����I��$��D$A��$�I��$H���F���A�Ń����������(IDŽ$L�t$L�=��$I�>A�A��$�I�����������.�����A��$�ADŽ$�.��DI��$ H�T$L���+�D$����L�t$I��
�1�H�5kL��転��I��
ADŽ$�I��$�Z����H�5 kH��������t0ADŽ$�H�D$I��$H������H���?�I��$I��$�H����e��A�Ń������������A��$����I��$�����H���I��$��H�D�$���IDŽ$��H�5�jH���H���ADŽ$�@I��$���H���I��$I��$A������H���s�E��E1�H��I��$I��$������A�Ń�����������A��$��I��$����H����H�-|�$I��$��UI��$IDŽ$�U��IDŽ$�-�H�5�iH���^���fDI��$�+��H���I��$�I��$�M��$x�����A�Ń���3���;���A��$�,���I��$��?��H����H�-��$I��$��UI��$IDŽ$�U��IDŽ$�i�H�5�nH�����ADŽ$�fDI��$�[��H����I��$I��$A���;��H���ÿI��$E��I��$�A�H����p��A�Ń���D���L���A��$�=���I��$��P��H���(�H�-��$I��$��UI��$IDŽ$�U��IDŽ$�z�H�5BhH�����L��$�I��$�s��H���I��$I��$�L�������A�Ń�������A��$�W"ADŽ$��}
DH�D$H�(H�����H����ADŽ$�%H��I��$XI��$X�/���I��$XH���C�H�D$H�5�gH�|$H�1��E���ADŽ$�&L�t$H�D$I�>H������H����I��$�I�6H����3��A�Ń�����I��$X�/I��$XE���'ADŽ$�%�Y�H�5,fH��������3I��$ I��$L����
�D$����IDŽ$�f�ADŽ$�A�$xA�$�A�$�f�I��$H�(AƄ$�}*u
AƄ$H���H�5�eH���e�����5I��$�`��H����I��$I��$�1�M��$x�����A�Ń���k����
A��$��
I��$��w��H���O�H�-��$I��$��UI��$IDŽ$�U��IDŽ$��H�5jH�����t$��trH��I��$�L��1�I��$ jD�L$XL�D$p�`��ZY����&E��u9H��hI��$ ��h����tH��hH�5RcH��1��ܛ��@ADŽ$��D$I��$����H��蟻I��$I��$����X��I��$�H���6H�|$H��H�5@f1��q���ADŽ$�AƄ$�L�t$I���@���FI��$�H�5�b����H���)IDŽ$�H�=�&IDŽ$����I��PH��H���!L�53�$A�L�=9�$I��$�H�D$H��XH��t	�?��I��$���L�t$H�8�H��I��0H��HE�I��$�A�I��$�H��tH�5leL��1��j���I��$�H�|$H�5ne1��O���ADŽ$�I��$I��$�M��$�M��$��{���H����H��M��M��I��$I��$������Ń�����L�=9�$I��$�A�I��$�IDŽ$�A�IDŽ$�����
AƄ$�H�|$1�H�5�d菙��A��$�ADŽ$����H�|$1�H�5�a�a���I�<$����D$0ADŽ$����A��$I��$���� ��ADŽ$�I��$��]��I��$�H���dADŽ$���ָL�|$ I��$�A�A����H�54{L�����A�Ń���P����NL�5��$H�L��Ƅ�A�I��$ H����I�$H��ADŽ$��@L�=��$I��$A�I��$IDŽ$A�I��$IDŽ$H�@I��$H�����A��$�����BA��$�ADŽ$������ADŽ$�"H�D$��Y��H�D$H�(H�������|�/��ADŽ$�'�L�t$H�����L���4���A��X�ADŽ$�H��$�dH3%(�D$��%H�Ę[]A\A]A^A_��H�-��$I��$h�UI��$pIDŽ$h�UIDŽ$pADŽ$�+I��$�9��������H�-1�$I��$hIDŽ$�UI��$pIDŽ$h�UH��A�����E1�1�H�����D��L��IDŽ$pj�\��ADŽ$�A[[���ADŽ$�2H��$�1��H���H�H�D$I��$�H�0貺��I��$�H���OH�D$H��E1�1�H��$(A�����1�L��H��j����A��$ADŽ$(A��$XZ�D$���R������ADŽ$�,L�t$H�D$I�>H������H��膵I�6E1�I��I��$��������I��$H���CADŽ$�-L�t$I�>诺��H���7�I��$�I�61�L��$������A�Ń����������$��L��$�M����L����"I�$��1��H�D$H��H���H��H���p�����ADŽ$� H�D$��I�����ADŽ$�!L�t$I�>���H���l�I��$�I�61�L��$����@��A�Ń��������ADŽ$�"E�����A��$����������:���H�����I��$�����ADŽ$�@����I��$�H�5�覵��H����ADŽ$�I��$����H��蜳I��$I��$A����H���|�E1�E��H��I��$I��$����l������������	ADŽ$�H�D$H����H�D$H���ADŽ$�	@��tI��$�H�5�Z�ߴ��H����ADŽ$�����I��$�H�5�Z譴��H�����ADŽ$�I��$����H��裲I��$I��$�H�
|�����U���A�Ń���)�����ADŽ$�DE�����A��$���H�|$H��H�|$ H����������
H�|$H�5gY1��&����I����ADŽ$�#H�D$H�(H�D$E1�H��H��@t�N
H�D$A���L��H�D$H����(���H��谱E1�I��L���H�D$I��$�H�0���I��$H����L�t$I��@��I��$0t4�L���dx��I��@I��$81�A��$01�L���D$4�=x��D�|$4E����H�D$H��@L�t$I��`L��H��~#H)�L��H��`H��H������I��@I��$�/���H�D$H��`H���lH��E1�E1�1�jH����������L�����A��$A��$]A^�D$���cADŽ$�.A��$�����I��$�H���G	�ڳ��A�Ń��������!ADŽ$�8����I��$�H���	�O���A�Ń��������1ADŽ$�7���H�D$H�����H���H��H����H�D$H��@H��tIH��$��H9��2L�t$H)�I���L��I���B�I��@I��$�ι��L�t$I���H���kH��E1�L��A�����j1�1��.��A��$ADŽ$(A��$_AX�D$�������ADŽ$���f�ADŽ$������A��$�ADŽ$��u����E1�H�5�WH��������N�H�5vWH��������I
I��$�1��9���IDŽ$xI��$�H���;@ADŽ$����H�|$H�5C`1�����@ADŽ$�:ADŽ$�<�D$<�~�H�l�$I��$@�IDŽ$@���ADŽ$�8�&�H��@A��LN���I��$�1�1҉�H��$�HDŽ$��Ű��H�|$��1�H��$�H�5�W�H���ADŽ$�:ADŽ$�����I��$�
1�����IDŽ$xI��$�H������I��$�8��������A��$�����L�=d�$I��$A�I��$IDŽ$A�H�5�ZIDŽ$H�|$1�苎��H�����ADŽ$�.I��$��8���H�D$���ADŽ$(ADŽ$�A��$`����I��$H���e����A�Ń������H�5
T���GADŽ$�
����H��$�H�L$H��X����I��$�L��$�1�1�HDŽ$�L������L�t$H�5YW1�H��$�L���׋��I���ADŽ$�������$�H�=9Z1���$���$���$���$���$�L��$�L��$�H��$�H��$�H��$�蟷��H��0H��H����H��觰��L��H��H�����L�=��$H��A�ƉD$A�E���I�ADŽ$�����E��$��0�H��A�����E1�1�jD��H�����L�����AYH�5r�AZL��1��Ɗ��ADŽ$��=��I��$hIDŽ$@A�I��$pIDŽ$hA�IDŽ$pADŽ$�.ADŽ$����H���H���?����H�|$H�5tR1��7���ADŽ$���H�|$�1����ADŽ$(A��$`�B��ADŽ$��r��I��$I��$I��$�-������8����������AƄ$�H�|$H�5�U蚉��ADŽ$���AƄ$�H�|$H�5�U1��m������AƄ$�H�|$H�5�T�N���ADŽ$��f�H�D$hH�5�PH��H�H1��#���H�D$h1�H�L$pH�L$@H�@H�D$xH�D$p�D$X���ƒ���$����H�|$H�5�U薊��H�����ADŽ$�.I��$��,�I��$��v���H���N��P��������
����D$O�OADŽ$�.A��$����I��$�����H����D$O��t��w��H�
�\���D$ADŽ$��D$A��$����H�5�SL�t$1�L����I���ADŽ$����H���H������I��$8I��$@���H�D$H��������H��膧L�t$I��$�1�L��$���I�6�U���A�Ń���	������H�D$I�>Hǀ@�X���f�I��$�E1����E1����E1���E1����A��$�ADŽ$��D$��ADŽ$�#���H�D$H�=vSH�01�����H��H����
H�D$��`��H������L��H��H���K���L�=�$H��A�ƉD$A�E����H�.����E��$�I��$����L�t$I�>貫��H���:�I�6A�1�I��$�E1���荹��I��$H����H�-u�$��UI��$hH������UI��$pH���QADŽ$�(����I��$�HDŽ$���������P��I��$�H��$�1�1�跨��I�<$H��$�H�5?���1��;����E%�OADŽ$�8��%��A��$����I��$�������AƄ$�H�|$H�5�O1�� ���ADŽ$��8��I��$�HDŽ$��V����������I��$�H��$�1�1���I�<$H��$�H�5|���1��x����E%ADŽ$�8��%wH��X�A��$���N������ADŽ$����H�T$ H�|$H��1�H�5�U���������H�5MH�����������I��$�
1��ԧ��IDŽ$xI��$�H�������I��$�8���������A��$�x���L�=1�$I��$A�I��$IDŽ$A�H�5�QIDŽ$�����I��$�HDŽ$��ߦ��������I��$�H��$�1�1��}���H��$�H�|$1�H�5�O����ADŽ$�:ADŽ$����I��$��x����������I��$��ү��H��誢�ʼn��1��H�|$H�5�RH��1�蛄��ADŽ$�.����H�W���O�҉T$E����I��$����A�Ń���0������'A��$PA�����ADŽ$�.���rADŽ$�OH�iIH�|$H��E��D��H�5�K1�������I��$�脥�����������%�OADŽ$�:��%wH�V�A��$��M��ADŽ$�.ADŽ$���H�|$H�5�M1�躁�����H��H��H9��(H�D$H�H��@���H��$I��$h�IDŽ$hADŽ$�.ADŽ$�����H�-��$I��$h�UI��$pIDŽ$h�UIDŽ$pADŽ$�.ADŽ$���I��$hH�=��1��0���H��H��t�I��$(L��H��H�H�|���H��ÉD$H��$����<�I��$(H�\$H�AH���`�#�I��$h�H�������	��|$4�:H�l$E1�L�d$@H��@H���_@�H���;g��H���L��H������x1�H��I���g��M�M���.	M9��%	H��@L9��c	L��L)�L9����I���ADŽ$��j�I��$�膬��H���^�I��$��H���$���IDŽ$����H�5�HH�����L�=ʷ$I��$���H�D$H��XH������?���L�5��$A�I��$�H���k�H��A�I��$�A�I��$�IDŽ$�A�IDŽ$�ADŽ$�:ADŽ$��<���|$�G	H�|$H�5�K1��{���H��$I��$�IDŽ$����H�.�����D$I��$��C��H�5�FH��趿��������H�5�FH��蚿��������H�5�FH���~�����u�H�5�FH���f������s��I��$ I��$L���&��D$���"���|$�XH�|$H�5#K1���������H��Q��R���ADŽ$�*�5�H�D$H����e�ADŽ$�%���I��$�/��I��$�L��$�1�1�HDŽ$�L���h���H�|$D��1�H��$�H�5�M�*}���]��I��$�L��$�1�1�HDŽ$�L������H�|$D��1�H��$�H�5�M��|����I��$�L��$�1�1�HDŽ$�L���ҟ��H�|$D��1�H��$�H�59M�|����H�|$H�5o1��<~������I��$��:���H����L�=��$I��$��A���IDŽ$�{��H�|$H�5�EH��1���}��H�����ADŽ$�.I��$����I��$�赞��H�5�GH��I��$H���s����H�.�����D$I��$��/��L��$�1�1�HDŽ$�L��趞��H�|$D��1�H��$�H�5eL�x{��I��$�����I��$�H��$�1�1�HDŽ$��f���H�|$D��1�H��$�H�5uL�({������I��$�L��$�1�1�HDŽ$�L������H�|$D��1�H��$�H�5�J��z�����I��$�L��$�1�1�HDŽ$�L���Н��H�|$D��1�H��$�H�5�J�z���0������$��I��$I��$��I��$�H��$�1�1�HDŽ$��j���H�|$D��1�H��$�H�5K�,z�����I��$����H���™�Ń��D��H�^N���O�ۉ\$E�A��$�I��$��8��������H�|$H�5KIH��1��y{��H�-
�$I��$h�UI��$pIDŽ$h�UIDŽ$pADŽ$�.�	�H����H��H�=�@1�虥��I��$�H�����H������������L�=��$I��$�A�H��H�=�@1�IDŽ$��D���I��$�H���r�H��覰�����l���I��$�A�IDŽ$�L�5�$H�=T@A�I��$�H���]�H���X���������I��$�A�H�=(@IDŽ$�A�I��$�H����H���������p��I��$�A�H�=�~IDŽ$�A�I��$��B����H��I��H�k@�Lw��H���T���H��L��H���1w���&�H�|$H�5�G1���w������I��$�H��$�1�1�HDŽ$�迚��H�|$D��1�H��$�H�5�H�w���~��I��$�L��$�1�1�HDŽ$�L���t���H�|$D��1�H��$�H�5SH�6w������I��$�8�������L�=j�$I��$A�I��$IDŽ$A�H�5�DIDŽ$��H�|$H�5��1��x���D$�N��H��H�5�F1��gx��ADŽ$�ADŽ$�8����H��L�d$@�Z�I��$��Й��������I��$��*���H�����ʼn����H�|$H�5�EH��1���w��ADŽ$�.��wH�{J���O�ɉL$E��v���D$O�O�d���OA��$�D������H�|$H�5EH��1��w�����D$O�O����H��$�H���HH�D$H��@H�D$H�8��H�|$H�5g1��4w�������H��IADŽ$�.���O�ۉ\$E����I��$�H�5�?H��1��+u���N��H��8H�L$XH�t$h1��v���Ń���H�|$h���t+������H�D$hu	�8-��H�xH�|$h�@��u�1�H�L$`H�t$p�[v�����z��tL9t$`|	I�F�H�D$`����H�T$XL9���H�t$`H9���H�t$X1�I��$赞�����I��$��#���H���A��A��$P��uOA�F����	H�D$��4��t`L�|$I�?�s���H��vMI�/ADŽ$PADŽ$�$�=��ADŽ$�.�OA�����D��H�
(H������ADŽ$�.E���F�A����ADŽ$�OD���ͽ���6�L�=٫$H�D$H��XH���B�?�9�H���$�I��$��#�DH�D$H��XH���k����H���Z���A��
�\���H�D$��4t'H�D$H��H�(1�H���H��H��H��H������ADŽ$�.D��H�1G�����.A�����H��9ADŽ$�O�V�L��I�F�H+T$`H�T$XH�D$`���H)�H�nH������H��H�|$H�5��1��(t���D$$����L��H�|$H�5�;1��t���D$$�����D$!���H�|$H�5��1���s���D$����H�5�:H���G���������I��$ I��$L�����D$���������;���H�|$H�5>?1��os�����蕢��H��$�����A��$�����H�5*:H���Dz����tADŽ$��B��H�|$1�H�5:�s��H�-��$I��$�UI��$IDŽ$�UH�����IDŽ$ADŽ$�.I��$��p���AWAVAUATUSH��(���dH�%(H�D$1�H�H�D$���H��A��L�t$A������"f��|$�����������L��H��I��H��葾����u]��E��u�H���������H��H�l$L��H���6����u,1�1�H�����H��H��y�H�|$1�H�5�9��q���H�t$dH34%(uiH��([]A\A]A^A_ÐH���H�$����H�$D��D����X�E����AD�H���HO������������1�뎸*�肠��f�ATA��USH�H��H����tHH��tH�ħ$H�}�H�EH���V���*��uH�D��ǀ�[��]A\�fD1��9���A���@����u
LJ�4�y���f�����u+��u4H�H�� 
t'���uH�.H����8����LJ�.�!������ATI��USH��H��dH�%(H�D$1�H�t$褼���t$H�߉ŋ����A�$����H�T$dH3%(uH����[]A\��8�������f.���ATI��USH�/H��H���11�H�����H��������H�����H��pH�.���H���H��H�]���H�5f���H�=?����J���H���H���*��H��H��ht8H����ף��H�� H����H��h�H���������ǃ�L��H��[]A\���f�H�����H��pH�[���H����H������H���V������a���H�5W?H��1���l���K����H��$���H�H�����fDH��hH�5:?H��1��l���@���H���輛��[�]A\�f�H�5�>H���1n����Df.���H���tLJ�9��N���fD1��D��H���tLJ�/�����fD1��D��AUI�����ATI��USH��H��H�/�1�L���LJ�LJPH���Z��1�H�����L��H�����L��H���J��H������A�$t%ǃ�0H��L��H��[]A\A]���fDǃ���@��������H��t?ATUH�-��$SH��f�H�{ �UH�{�UL�c(H��UL��M��u�[]A\���AWAVAUATUSH��H�GL�(M�����I��H�$E1�f��1�f�D$�FD��
u�AoE�L$@A�t$f�Hf�0H�$I�D$M��L�,H��H�$M����A�|$
���0HD�H���$��I��H����H�}�$I�<$�I�GH��t~H�_�$H���I�G H��t|H��ID�M��tM�~(A�t$A�GA�oA�w���.���A�u�L$�pA�t$f�Hf�0�1���1�H��H��[]A\A]A^A_�DH���$L���H��1��R�����H�-�$I��UL���UH��1��2������AWH��AVAUATUSH��(H�L$dH�%(H�L$1�H�H�L$�����D$���bH�\$H����E1�1�fD�C���dA���
�H�{���C����L9���L�%/�$�0A�$I��H���;�L��A��CA�G�CA�G�CE�wA�GI�G I�GI�G(A�$I�G H����H�sH�>H�8D��L�D>�L�D8�H�xH��H)�A�H)ƃ��r��1�A����N�N�9�r�H�{ H��tH�`�$�I�GH����H��ID�M��tmM�}(M��fDH�[(H������H�|$H��t��H��tsH�D$H�(H�L$dH3%(�D$uwH��([]A\A]A^A_�@A����DM���H�ܟ$L���H�|$H��t萚��H��1��&����D$������D$����1��H���$I� �L�����'������H��t�2���f�1��f.���H�e�$AVI��AUA��ATI��U���@S�H����H��H� �$L��I��H����������
ui�AoH�C �C ��SH�S0D��kH��H�SL�#H�CH�C0H�C8���L�-Ş$L��H��A�UH��A�U[H��]A\A]A^�H�-��$H��UH��U1�[H��]A\A]A^��A�H�C �S ��m���@1��@H�Y�$H��1�����ATA��H��USH���H��0dH�%(H�D$(1�H�l$H��艠����UH�l$H�޿
H���p�����1��� H�L$(dH3%(u=H��0[]A\��D��H��H��
�U�����D��H��H���=�����6���fD��AVA��AUI��ATI���USH�_�$��0�H��H��t^�n��H��H�E H�����L��f��A���H�PH��lwWH�H�M�J�ME��tH�{H��L������[H��]A\A]A^�H�{L���d���[H��]A\A]A^��L�%ќ$H��A�$H��1�A�$[H��A�E]A\A]A^��H���$H��1��AWAVA��AUA��ATUSH��HH�<$H�l$ L�d$H�L$H�\$dH�%(H��$81��D$�@H��H��襊���L$��u=1�I��M��D��H���E�����u�L�|$ I�GH=���H��H���a����L�t$0A�L��.
�@f��D$�@H��H���-����D$��u;1�I��M��D��H���͋����u�H�D$ L�H=���H��H�����H�T$H�<$1�L��H�5�7��d���H��$8dH3%(ukH��H[]A\A]A^A_�fDH�t$(L�t$0�L�����H��H���~���I�GH=��(���K�>I�������H�t$(K�<>���X����x������AWHc�AVAUATUH��SH���D���XdH�%(H��$�1�H�H�D$pH�D$xH�D$H��pH���$HDŽ$�HDŽ$�HDŽ$�L�8HDŽ$�HDŽ$�HDŽ$�H�D$`H�D$hH���DH�������/H��I��I���1���H���-L�t$pL��A��H�D$xH���.H�T$pH��H��L�l$p�:���H�D$`1�L��H�|$@H��H�D$8H�|$ 艑��A��H�\$DL��H�����A�����YH�D$HL�M�$E1�H���$H�D$0PjL��$�AWjH��$�H�t$@H�|$0�8�H�� A��H�D$XL��$�H�D$(H��$�H�D$H�D$PH�D$�%H��$�H���OL��H���T���L��H���I���A����L�D$H�T$D��H���������EH�|$P�9��$�����@���oD��$�H���$fA��E��L��$�L���H��$�H����L�D$H��D��H��H��$�蕕������L;t$P���t$0L���$E1�H�M�$jAWAUH�t$@H�|$0H��$���H�� L��H��A���N���A���������T$@H�|$H�
�4D���)������;H��$�H����A�f��D��H��fD��$�H�T$�L�D$(f��$��c�����SH�|$X�GL�D$(H��$�D��H��H��$��wc����uH�D$XH9�$��1���H�5�4H�|$1��}`��H�t$8H��萗��L��H���e���L��H���Z���1�H�5!�$H��A������3fDA�H�43H�� 迃��I�|A��I��H�D$xH����L�� L��藃��L��M��H��I�H��^I�EI�uH�D$p1�L�l$p���H�D$`H�|$@L��H�D$8H��H��$H�|$ H��"���A�����f.��T$@H�|$H�
�2D���x����������H�|$H�531�A��W_��H�t$8H���j����=�H�|$H�5�3�/_��H�t$8H���B���1�H�5�$H�����A�H��$�dH3%(D����H���[]A\A]A^A_��H�|$H�5$31���^��H�t$8H���ؕ���Y���H�|$H�5�31��^��H�t$8H��谕��L���&����H�5q2���@L��H���e���L��H���Z���H�t$8H���m���H�D$hH��1�H�D$E1�E1�H��jH�5��$jjH�|$@�=���H�� ����zH�t$hH�|$ 1�L��躗�������H��$�H�xH�|�$�I��H���jH��$�H��$�H���Ƈ��H��$�H�t$H��A�輔��L��H��葂��H�|$L��1�H�5�2�[��H��$L����D$H�H��0f��$����L�t$1�H�5�2L���y[��A�����H�ē$�HDŽ$��H��$�H������H���H�5–$1�L��$�1�M��AVH�|$0L�L$\貉��ZY�����L��H��躁����$�f��f��$�L�L$X�D��H��L��$�M��L�L$L���N_��A�Dž��!H�|$XL�L$�H�D$����M�ȹL��D��H��Ƅ$��_�����H�|$X�H�D$P�L��D��I��H��H�D$�������H�|$P����$�<���<��D��$�H�b�$fA��E��L��$�L���H��$�H���y���L�D$H��D��H��H��$��p������xL;t$P�mH�D$�����H��$�H���H��$�L��H�����$��,�����$�H�..��t<H�2.H�>.HE�H�|$H�5a21��2Y����$���0������1�H�5��$H��蛍�����fD��$���H�5�H�|$1��Z��H�t$8H��賑���4���fD��$�H�5	/�˾f��$����� H�j-H��-HE�����T$@H�|$H�
�-���5���>���1�H�5�$H�����H�t$H���/���L��H�����H�|$H�58/1�A���Y������H�t$8H�����L��H����~��L��H��A��~��1�H�5��$H���|���H�|$H�5p-1��Y������T$@H�|$H�
�,���}���g���H��1�H�59�$�4���H�t$H���w����N���H�|$H�5N/1��?Y��H��$�����H��$�M��D��H��H��$���[������H�D$XH9�$�uyH��$�H����}�������T$@H�|$H�
r,����������L��H��A��}��L��H���}��1�H�5t�$H���l���H�|$H�5`.1��X���y���H�|$H�5�.1��qX��H��$�����1�H�5+�$H���#���H�t$H���f���L��H��A��5}���%���H�|$H�5�.1��X�����H�|$H�5D.1��X�����H�|$H�5�.1���W���X�����$�H�|$��1�H�5_.��W���k���H�5��$E1�E1�L��L��$�H�|$ L����������L��H���|��H��$�H��udH��$�L��H�����$��_|���.�����$�H�|$��1�H�5G�:W������H�|$H�5Y.1��"W������H���H�|$H�5<.1��W��L������T$@H�|$H�
�*�������I���L��H��A���{��L��H����{��1�H�5��$H��聉��H�|$H�5�-1��V�����f���UH��SH���H��H��$�H��t0H�@H�(H��t H����H��H�QH��u�H�AH��H��[]�fD��USH��H��H��H���$�H��trH��H���$��H��t<H�@H�(H��tH���
�H��H�QH��u�H�AH��H��[]�fDH�Q�$H�D$H��H�D$H��[]�1���f�f.���H��t?ATUH�-�$SH��f�L�cH�;�UH�H��UL��M��u�[]A\�@����H��tLU1�SH��H���f.�H�[H��H��t"H�3H���yx��H��u�H��H�D$�W���H�D$H��[]�1�����U1҉�1�S���H���z����u ��H���‰߾[1�]�z�������f.����1�H��t$H�D�H9�w��@:0u�f�8tH��H9�v�1���f.�D��U�SH��H��H���$H�/�P�H��H��tƃ�H��1�[]ÐH���[]�@AUATI��UH��SH���H�T$0H�L$8L�D$@L�L$H��t7)D$P)L$`)T$p)�$�)�$�)�$�)�$�)�$�dH�%(H�D$1�A��$l��MbI�|$`M��$�I��p�H���������H��N��N��N)�H��H��H��i��H��?H��H)�)�H�RA�L$���H��H�H)��ZqA�ؾL��HAH��*1��x��H��L��1�H�=>+�j}��H��H��tbL��H��H���$H��$�D$0H�D$H�D$ H�D$�nUH�߉�H�:�$�H�t$dH34%(��uH���[]A\A]ý��褁��@��UH���SH��H��@��uH��(H��t	���uRH���j\��\H���ܸH�-��$H��x�UH���Hǃx�U1�Hǃ�H��[]�f�1�H�5�������u�ǃ@�f���u���H���jR��@��u��i����f.���H�����Z��UH��SH��H��H������t	��Dt'1�1�H����R��@���EH��[]�@1�H��D�B���u〻Du�����UH��SH��H���t��H�H��vc�sH�P�H�K@�� t@��	u%f�H��H���9H)�H�@�� t�@��	t�I�&f.�H��t
�D�< v�H�MH��[]�I��H�z�s�H���ѐAUATUSH��dH�%(H�D$1�H�(){ %*]H�$H���=�H�����aA��A��H��E1�E1�1�H���<"��E����H�����t<\u�H���H����u�H��L	�u	E���H��L��}s��H�H�s�$H�E����L�eH�}��H�����"H�H�D("L���H��H��H���H������tH�q��\t��"u��\H����I���P����E���@���<(t&�)H�~8�tfDH���������8�u�A�����f�H�}��H��H��u�1��
fD�(H�|$dH3<%(u=H��[]A\A]�f�H�D$dH3%(uH�Q�$H��H�H��[]A\A]����}��f�USH��H��H�H��H�P@H��t<H�HHH�]SH�5`FH��HD�1��t�����u
ǃ@H��[]��H�xH��t?�����H��H��tEH��H�5�%H��1��)���H���$H��D$��D$�H���$H�=�R�H����닐��H��H���1�H�5ԥ�DR@��AUATUSH��H�H��H����H��A���!��y��H�-%�$H�{�UH�{H�C�UH�{H�C�UH�{ H�C�UH�{(H�C �UH�{0H�C(�UH�{8H�C0�UH�{@H�C8�UH�C@H�{H�UH�CHD���H��[]A\A]�f�H�{@�Q���H�{��YtgL���������h��uvDž@
�f�E������1ҾL���HMA�ċ�@��u���fD��f������H�{ u���uD��hE�������L���fDH�QH�55�L��1��PA�ą������Dž@�o���fDH��1�[]A\A]�SH��H�?H��H�P8H��t)1�H�5�#H��������u
ǃ@
[��1�H�5?%�K���[Ðf.�SH��H�?H��H�PH��tYH�H(L�@0H�NPH��HD�M��t&H�5#H��1��]�����u
ǃ@	[�DH�5
#H��1��7�����DH�P H��tOH�H(L�@0H��OH��HD�M��tH�5�"H��1�����f�H�5�"H��1������D1�H�5�"��J���[�AVI��AUATI��UH�,7H��SI�\$�An��I��H9�wIN�$+I9�v1�[]A\A]A^�DL��L��H��������t�A�<$ �t�J�T+H9�u���fDA�|$�u���t�L�cL9�t���{�W���tL��L�cL9�u��DA�<$ �u���H���c���f�f.���AWL��pAVAUATI��UH��SH��H��(L�7L��H�L$�^m��M��L�HI9�L�L$wH��L��L��H�D$�fm����tRH��v,fA�<$* u#��@
w&��@H��$Hc�H�>��M��tI�}@t\1�H��([]A\A]A^A_�H�L$L�L$A�< u�H��H)�H����M�fA�<$OK�6H�D$���@H����H��v�fA�<$+ u���@��������1�H�5n"L���H��H�D$�������O���H�(�H��L���������3���I�U@H��ucH�D$�*H��(�[]A\A]A^A_��H�l H��L�������u����DH�4 ���I�U@H���z���H��L���P�����u�I�}@H�5 �܆����tH� H��L���&������`���I�}@H�5�讆�����H���I�}@H�5�薆�����0���I�}@H�5��~���������I�}@H�5��f���������I�}@H�5��N��������I�}@H�5���6���������I�}@H�5��������������H�R����@H�D$�����A�<$+���������H�D$�+����H��v�A�<$PREAu�fA�|$UTu�A�|$Hu�H�D$���O������H��tH��1�H��H�5���H��1�H�5��o�Df.�H��A�����E1�1�jH�����D���`���H��Ðf.���UH��SH��H�����u�;tH�UH�����uH��[]�f.�H��D$����D$��@f.�S1�H��DH���΅��u��@t
ǃ@��Du[�@H��Z$H��ƃ�H�5�H���1�ǃTǃ\ƃu�W��u�ǃ@[��AV1�AUATUSH��H����H��1�I����H��IH�5mH��H��H��H��HE�M��IE�1����L�5{{$L��A��A�H��A�E��u
ǃ@[D��]A\A]A^�f�USH��H��dH�%(H�D$1���Et.ǃ@1�H�T$dH3%(��H��[]��H��HH��H�����t���wH�L$H��H������u��|$tP��vu'��ht����{���H������z���@H�;1�H�5��'B���C�[���Dǃ@�G�����r��@��*t���t�LJ@1��ATUSH�H��H���H���'g��H��H�߾L�dH�HA�$
�YG��A�$[]A\�Df.���AWI��AVAUATUSH��hD��XdH�%(H�D$X1���@H�D$(�^H��H�����H�D$(L�%�I�&H�D$H�D$$H�$H�L$H�$H��D����G��uG�t$$����/��t6A��@
w!A��@Ic�L�>������ALJ@H�L$XdH3%(���H��h[]A\A]A^A_��L���������A��@��t�H���uL���H����I���H�L$8I��HL��H�D$�
������D$8�����u��]���@���I�?��h��H�5f1��@�A���3����I�?��*�T������h����A�����A��u�����xH�5�1��@�EA������I�?�������CALJT1�H�5L��ALJ\AƇu������ALJ@���@���X�����Y���D��+u�I�?H��`���H��1�E1�jH�����E1�L��������}��ZYALJ@����H�D$0M�'I��$���*t+H�����L��N�C���ALJ@����H���E��t<{u�<{��I��(H�5��H�81��@��ALJ@���I�?��*�l���CH��H�zH����I���H����H�T$�~��H�T$����I�?H�5&�N�?������������������D�����f�I�?��1�H�5)�C�H?������H���I�STARTTLSH�&H�p�@D��������< �6�F1��fD�DH��H�W< w�I��s�L�H���$H��
�:H����H���FL��뙐L�������c���AƇEH�5�1���<���Z���DH���H�T$@1�H�5�H�T$H����j��������H��t$I����H��t$H�|$ILJ��I�������H��t$H�zH�T$�H�T$L��I��xH�z@���7����f�L���(������H��H�~�F�����H�����fDL9u;AƇuL�N�F���fDH�LOGINDISH9u�~ABLE�]@�>AUTH������~=�����L�W�H�T$8L�L$H�~L��L�T$��L�L$I�STARTTLSH�&��tL�T$L;T$8uA	�TA��L���f�H���hF���}�����>SASL�t���f�~-I�h����~R�^���AƇwL�N�F����f��������0���@H�5�1��C�<�������H�L$0H�t$8�
H�}�H<�����8���H�D$8H��H)�H���#����8}�����x
�����x����H�T$0H�5L��1��X:��H�t$0L�����I���H����I���H9l$0HFl$0H���a���H��L���?�����X���I�$H�L$0L��H��H�5VH)���9��I���I���H9��9H� r$�ILJ�ILJ�H�T$0I9�$�"I��$E1�L��1�VA��1�j�_x��_AXALJ@���@H�z8t)�������~D�����AƇvL�N
�F
�B����S����fDH�51����:���\���A��vu%A��htA����/���L���f����a���H�|$H�5S1��C�:������1�H�5L���s��������ALJ@�.����i��H)�H�4/H����o��I)������AQA��E1�1�jH��D��L���?w��AZA[ALJ@����f.���AVAUI��ATUSH���1�L��HH�������H����H��(L��H��0H���H�5�N$H��8Hǃ ��ǃh������H���<1�H�� ƃ`�����H���������H��L�wH��<=u	�,@H���FH�n����<=t��u�L�v<;t��t@H���E��t<;u�H�5��x�����uF1��};@��H���q�����X��t{��������D@���h��t([��]A\A]A^�DH��L��L��L)��W�����*L��H��ǃ@f��p[]A\A]A^������X1҅�u�ǃh����AWI��H�AVAUATI��USH��HH�/dH�%(H�D$81��H���H��H�pI��A�E��!<]w"��Hc�H�>��DI��A�E��!<]v�L9��/L��sA�}�/�?H)�E1�H�KA�H���������A�};��H�D$ L�5�H�D$H�D$0H�D$H�D$(H�D$�A�EI�uI��<=t��t@I��A�E��t<=u���L��H�L$E1�H��H)�A�������I�uI��A�E��!<]�8��Ic�L�>�����Y���h���
H�}@�RH��H�<m$H���I��$�IDŽ$x�H�}IDŽ$�H���1����H��H���mH��H�5�L��1��I�H��D$��D$��uHADŽ$@@L��L������u)A�?t#I�$H���
��tL��D$���D$f�H�L$8dH3%(�H��H[]A\A]A^A_�DI��A�E��!<]����L��L�D$H�L$H��H)�A�������VH�|$ H�5��]t����tH�{�H�|$ H�5���=t����tH�{��H�|$ H�5b�t����tH�{ �H�|$ H�5L�s����tH�{(�>H�|$ H�54��s������H�{0��H�T$0H�D$(H��tH�T��:/u�H�D$(f�H�C0H�D$(H�Dk$H�|$ �H�6k$H�|$(�A�};�4���H�{tH�{��A�U����x���I�$H���H��tiH��E1�1�H��A�H�M@�:������B���H�]@���t�H�����u���tH��j$H��H�EH�H�}H�I�$H�����1�H��H���跔��1�H���m���H��H����H��H��觔��I�$H����XI��t�EH�}A�H����I��$xH��������Rr��1҅�t,H�}�H��tI��$�H��t�,r�������M�,$A��Yu��h���tM��I�~��A��h����I��`H���SI�~1��h�H��H����I��`H��H�5$L��1����H�Ri$H�߉D$��D$�������ADŽ$@�l���@H�T$0H�D$(H��tH�T��:/u�H�D$(�H�CH�D$(���fDH�T$0H�D$(H��tH�T��:/u�H�D$(�H�CH�D$(�c���fDH�T$0H�D$(H��tH�T��:/u�H�D$(�H�C H�D$(�#���fDH�T$0H�D$(H��tH�T��:/u�H�D$(�H�C(H�D$(���fDH�CA�U��;���������DI�U����L��@H�5YH��1��O1�����N���fDH��g$H�|$ �D$��D$�-���DH��g$H�|$ �H�|$(���	���f���Yu���h���y���H�}@t5H�}t.I��$x����fDI�����H�}@�}����L��������e�������I��PA����I��81�H���PU��1�1�1�H���-���Z���H�5}	L���I��H����H���:*���2���H���J*H�*I���I��`I��x���f�����fDH�{ �[���H���H�S8�@��\���<���fDI��I�����D1�H�5�
L���/������1�I���H�5��+���6����s���L��H�}�����H�}����H�} �t���H�}8�i���������t�H�}t
L���u��{���H�} u�H�}8�a���L�����\���I�<$1�H�5<
��.�������^��L��������U�SH��H��H�'e$H�/��H��H��tƃ�H��1�[]ÐH���[]�@��H��H���1�H�5T���2@��UH���SH��H��@��uH��(H��t	���uBH���J8��lH��輔H��d$H����1�Hǃ�H��[]��1�H�ēH�5˅H���82��u�ǃ@
����u���H���J.��@��u��i����f.���H����6��UH��SH��H��H������t	��Dt'1�1�H�����-��@���EH��[]�@1�H��D�"m��u〻Du������f.���ATUSH�H��H��tQ��u;L�%dc$H�}A�$H�EH�}A�$H�E���E[]A\�fD��~���@[1�]A\Ð��UH��SH��H���P��H�H��vc�sH�P�H�K@�� t@��	u%f�H��H���9H)�H�@�� t�@��	t�I�&f.�H��t
�D�< v�H�MH��[]�I��H�z�s�H���ѐ��H���H��tH��1�H��H�5�
�,0@H��1�H�5�0�S1�H��DH���k��u��@t
ǃ@��Du[�@H�B$ƃ�H���H���H�,
1�H�57�ǃdǃlƃ��/��u�ǃ@[�f�f.���H��v&�>-ERRtV��@t]f�>+Otn�>+t.1��fD��@tH��t�1�H��u��f�H��u#�*����-��@�>.u��+����~Ku����AWAVI��AUATUSH��HH�=L$dH�%(H�D$81���&��H����I���H��H��L�|$M�o L�%�'�M��H���0HI���H�߉���&��I���M��H���HI��H�߉��&��H��H��L����&��@�MH��L��1�H��H���N��L9�u�I��1�I���L��H�5k��-��t"H�T$8dH3%(u)H��H[]A\A]A^A_�Adž@������dX��@��AWAVAUI��ATUSH��L��XH���H���1���H��H��(L��H��0H���H�5:?$H��8Hǃ ��ǃ|�����9�H��1��/+H�� ƃp����f�H��������\H��L�wI��<=u	�,@L���FL�~����<=t��u�L�v<;t��t@I��A���t<;u�H�5���g����u^1�A�?;@��L����q�����|t!��h������������D����|����H����[]A\A]A^A_�fDL��L��L��L)�H��H�L$�_�H�L$�����z���H��H�5�L���g�����`���ǃ|1�ǃh�E���ǃ|���w���ǃ@L��H��H��[]A\A]A^A_���1탻|tϋ�h�������D��AUE1�1�A�ATUH��SH��H��H�?�H��H�HH���H�p����tH��[]A\A]ÐL�#I��$�H��t0I��$E1�1�L��A�H�H����u�L�#f.�I�����1�L��M��$��7���1�L�����L��L���r���L��L���'���H���XH��t�H�H�E�9ta��M��H��H�@H��t�8HE�H���H�5.�1��H*������ǃ@	H��H��H��[]A\A]�A����H�PH��tG�:H�+�HD�H���H�5�}1���)�f���9t�H����l���f�H����UH��XH��SH��H��H��dH�%(H�D$1��D$�͍������x#�|�T$��}1���uW��x#�|����������~H��H��)H���H�5��H��HD�1��)��txH�L$dH3%(��H��[]�D1�H�L$H��H���>���uʋT$���`���ǃ@뱐ǃ@1��f����t�H�������Dǃ@�y���f�H�;1�H�5��?"���C�U���� S����AWAVAUATUH��SH��L�'H��HH����I��I��1�1�E1��*f�<
�(HDžHH��u;H��I9�twA�<
��<.u�H���DH��u�HDžHA�H��PH��H)�H)�DH9��'H��H�H��Pu�H��H��HI9�u�fDH���pL9��EH���<H��L��H��[H)�]L�A\A]A^A_��&���H���HDžH�H������H�پH��H)�L��&������H��HH������H��t
H������H�AH��HH����H9������H�����H��tbHDžH���HDžH����A��H��H��H��H����%����u7H��HH��E1��K���HDžH��3���H��t'D1�H��[]A\A]A^A_�������H���H���u%��A��$��HDžHH��[]A\A]A^A_�f���AWAVI��AUATUSH��XD��XdH�%(H�D$H1���@H�D$8��H��H����H�D$4L�|$8H�D$L�%oH�T$L��H��D���
&�Å�uj�T$4��tbA��@	wMA��@Ic�L�>��@��+��I�.H��IdžHIdžP�����DAdž@H�t$HdH34%(���_H��X[]A\A]A^A_����+t�I�>H�5�1��C�% �����+u�I��H��$H�5��H��H��HD�1��e$���
Adž@��D��+�W���I�>H�5�1��C����G���@I�>��+�H���H��H�L$�0C��H��vJH�L$H�p��|�>u:H��v4�y<�E���<<L��}H��H9�u�f�Adžd1�H��H��AƆ�H�5wAdžl�z#���"Adž@�f���+��I�>��h��H�5~�1��@�����R����I�H�L$@I��XL��H�D$謎�����D$@���(��uw����fDI�>��*����+uG��h��tEA���u;A����@��t(H�5P�1��@�-������A��xL�������u,A��@�������H���E(��������{�������l���f�H��H�����L��1�jA�����E1�1���Z��I���XZH���$�����X�dH� T$�Idž�Idž�Adž@��A��xA#�|�����A��������I��H��!H�5�H��H��HD�1��~!���&���Adž@���fDH���X&���t����Adž@�8�^���H���H��H�T$�T@��H�������H�T$�:STLSu
AƆ�����:USER�LH���}����:SASL�q����z �g���A��xH��I���R���H�D$@H�zH�D$(�(�H�&H��sH��I��M�������< v�1�fDH��L�L9�t�< w�H�&H��s�H�T$(H��L�L$ L�D$H�L$观H�L$L�D$��L�L$ tH9L$@u
A	�dfDI)�L���u���DH�5�1���}���������������@L�����C���A�������L������(���A��x�.���I���H��L���)������1���I����v���1�H��H�5�rH���]������Adž@����H)�H��H��H�������H�;Q$L�D$�H�L$�I���H���Z���H�L$L�D$H��H��L���D��H�L$�@I����I���H��H�T$�)=��H�T$H��t;A��x����H�|$H�5��1��C�*�����L�AH�p�H�H��R���H��P$H��Idž�����#I����H�eP$S�H�Ƈ��(�H��H��[����f�f.���H��H���1�H�5�q�@SH�H��H��H�HH�PH��tUH�	H��t=�:H��HD�H���H�5��1����u
ǃ@[�f.�H�����H��t+�:H���HD�H���H�5�p1��h�fDH������H�SH��H���H��H�@H��:<tH�5q�1��!��u
ǃ@	[ÐH�5G�1������UH���SH��H��@��uH��(H��t	���uBH���"��dH���~H��N$H��H�1�HǃHH��[]��1�H�~H�5pH���x��u�ǃ@����u���H�����@��u��i����f.���H����� ��UH��SH��H��H������t	��Dt'1�1�H����'��@���EH��[]�@1�H��D�bW��u〻Du�����UH��SH��H����:��H�H��vc�sH�P�H�K@�� t@��	u%f�H��H���9H)�H�@�� t�@��	t�I�&f.�H��t
�D�< v�H�MH��[]�I��H�z�s�H���ѐUH��SH��H�?dH�%(H��$1�H����~tAH��E1�1�H��HA��V��H��$dH3%(u7H��[]�f�H��H���`HH�}H�ޅ�t�H�5�m��7E�����AWAVAUATUSH��(L�/dH�%(H�D$1�M��M���kH��(H���ZL�5KL$��I�|$A�I�D$����A��y��I�����A��YuA��h����H��K$A�|$ H�uH�UH��`��H�=@����I��M������H��L��H��L�D$�������H�D$L���H9���H��H)�L���H��Dž@���u11ҾL���e�Ë�@��u����H��胬��A�$��H�L$dH3%(uqH��([]A\A]A^A_�f.�1���@H�=W����I������f��D$L��A��D$맸�f���W��L��I�E@I�UHA��1����3C����H���H��tH��1�H��H�5���L@H��1�H�5�{�7�H��A�����E1�1�jH�����D���P��H��Ðf.���UH��SH��H��������u�;tH�UH�����uH��[]�f.�H��D$����D$��@f.�S1�H��DH���.S��u��@t
ǃ@��Du[�@H�+$ƃ�H��HH���H���H�5��1�ǃ\ǃdƃpƃr���u�ǃ@[�D��AVAUATUSH��dH�%(H�D$1�H��w*1�H�t$dH34%(����H��[]A\A]A^�DI���>I��H��I���\���t�A�|$�M���t�A�|$�>���t�A�T$�� ��H�����u3��-u�A��@���Ã�����i���A�E�^���fD1�H���D$H�|$f�D$�HE���t1��ƒ�A��9�r�
1��jD��H���/���D�A�E����@��f�USH��H��dH�%(H�D$1���ru&ǃ@1�H�T$dH3%(ujH��[]�H��PH��H���y��t�1�H�L$H��H���y��u��|$uǃ@�f�H�;1�H�5�������C���?����AWAVAUATUSH��H��XD��XdH�%(H�D$H1�H���@H�D$8H�$�gH��L�����L�t$8L�|$4�L��L��L��D���O�Ņ�����@D�D$4���IA���WH�$D��HE��������H���Hc�H�>��f�A�����ǃ@�8��H�;A��b�D��H�5��1��7�r���WDA��8�����c�H���p���������@���$L�����������DH�;A��8���L��I�RH������c��A��)��A����D��H�5��1��8������A��8���H�;��c��H��H�BH�@H�BH���9���1�H���H�5|fL��������ǃ@
�(���f�H�H�L$@D��H��H��PH�D$�Q~���s�D$@����������@ǃ@H�L$HdH3%(����H��X[]A\A]A^A_ÐA����3H�;��h�{D��H�5��1��@�
���A��8�����cv�H�;D��H�5u�1��	�
���x���fDA��8���L���c��A���{A��hv
����3ǃdH��H1�L��H�5����uhǃ@����A��8�����c��ǃ\H��H1�L��ƃpH�5��ǃdƃr�>����������E����������f.����w���H�5��Hc�H�>��fDH��`�m��H��1�E1�jH�����E1�H�߾�����rI��ZYǃ@�+������c�K������X��1�A������H���nH�RI�RH���]H���e����I���D�D$L�\$H��H�t$�r/��H�t$L�\$H�P�D�D$H��H�N��H���;A���c���A��h��t:���u1��p�y��tH�5�L��1��@�a���F���@H���������H�;D��H�5\�1��7�/������f.�ǃ@�����H�;D��H�5��1���
������f�H�STARTTLSH9V��ƃp�)���D��H�5��1��7�
�����DH���x����S���ǃ@�A����H�|$H�5B�1��C�x
���]���L�������K����H���D�D$L�T$H��H�T$��-��H�T$�H��H�HL�A�
L�L$���L�L$D�D$A�A�������L�T$I�R���f����������@�~SIZE���~AUTH�����y ����H��	ƃrI��tpH�D$@D�l$H�~	H�D$L�d$L�\$ D�D$(�l$,L���< ��H�&H����H��H��H��u�D�l$L�d$L�\$ D�D$(�l$,A����������ƃq�z���D��H�5��L��1��
	���	���1�H���H�5�`L���[
������ǃ@���@E1�DI��N�$/I9�tKB�/< w�H�&H��s�L)�H�T$L���ro��tL9l$@u	�\�L�������1��́~SIZE�2���H�����������{7���f.���AVAUI��ATUSH���1�L��PH�������H�o���H��(L��H��0H�g���H�5�$H��8Hǃ ���YpH���Q
1�H�� ƃh����f�H���������H��L�wH��<=u	�,@H���FH�n����<=t��u�L�v<;t��t@H���E��t<;u�H�5����F���¸��u$1��};@��H��o�����t#[]A\A]A^�f�H��L��L��L)��n��DH���P��u�ǃ@L��H��[]A\A]A^��Df.���AWAVAUATI��UH��SH��H��H���H��t>H��E1�1�H��A�H�H�x����tH��[]A\A]A^A_�DH�]@I�����1�H��L���� g��1�H����e��H��L���[g��H��L���g��H�]��XH��t�H���A�$��Y�@ H�PH�@u��h����H����H���H���j�><��H�=k�1��#0��I��M����L���M������d����A�?��H��;$H�=���I��M��uzH��;$L��������H�����������L��H���u��������A�<$�����H�UH����������H��D$�1�D$�t����E1���h������qtH��`H����H���M����L��L��H�51�1��	E1�H� ;$�D$L��L���L����D$�������Dž@�*���f.�H��:$H�=���I����������L��PH��81�L���)��1�1�1�L���S����H��:$�D$L��L����D$�i���DH�=1�1��J.��I��H���(H���M����M��L��L��1�H�5������f�L��H�=�[1��-��I�������H�5��H���1��H����L���`����M���L���p�L���H��`H�+�H��x�P����H�=[1��-��I���b���f�L��H�5O�1�E1��\�X����L��L��H�5V�1��<�8���1�H���H�5���R����R������D��"���H�'9$L��L���������f.���AWAVAUI��ATUSH��(L�?I���M��H�D$H��tA��
��I��H�<H��8$�I��H�D$H����I�L$M����H��1�L�
��1��-�I�<.H���@�7H��H��I�T$I9���I���4A84u�H��I�T$H���.H���$A�D$ H����H�*��I�<.H�L$H)�H�4H���o+��H�L$1�I�D$L�
N�H)�1�H��I9��t���H9�t"I�<.H)�I�4	H�L$�,+��H�L$H)�Il$H��7$H�L9���M��H�|$M�����I��1�H��([]A\A]A^A_��H)�I�4	H�L$��*��I��1�H�L$L�
��H)�Il$�<
A�D$ ��1�I�T$H��������4I�<.���A�D$ ����DL�t$I�L$H�D$H�D$M���<���H��6$1�H�L9��*���H�|$��H��(1�[]A\A]A^A_�1�H�5��L������������AVAUA��ATUH��SL�gXM�4$I���H��uH�_P�qC��H�MHH��H�U@H����C��I���H)�H��tE��tH��[]A\A]A^�fD�3C��I��$@H��I��$8H���C��H)�H9�HO�H��[]A\A]A^�f���AWAVAUATA����UH��SH��H�_XD��X�5���L�;H���)E��t|H=�I�Ƹ�H��LM�1��HH����H�}0�5H�}t
H�EH9Erd1�H���H��uVH�}0�%�����D��L�����&��A��E��tr�7@1�H����G��tzH�E`H��H��[]A\A]A^A_��E��t�A�H����_���¸*��tH��[]A\A]A^A_���A��L��H�������u�A���tVE��u�H��1�[]A\A]A^A_�H�}0t�����D��1ɉ��x��A����1�H�5/�L����������D1�H�5'�L�������c���D�����D��L�����A���1���D��A������E1����f���H�GXSH��H�GH�H����G H�G�A��H�C@H�SH[Ðf.���AWAVAUATUSH��H�oXdH�%(H�D$1�H���!H��H�=��I���'��I��H����L��H����.��L�5y3$L��I��A�M����L��H�$�_ ��H�CI��H�CXH�H����C H�C�I@��I��L��H��H�SH��XL��H�C@Džp�p���A�Ņ�uiH�}H�$��`��I9�toL�{8I)�L�c(L�{0H�T$dH3%(D����H��[]A\A]A^A_�f.�A����L��A���A�7��L��A�H�C(H�C8H�C0�m?��H�C@H�SH�p���L���3���H�$�F�����*��D��H���H�T$0H�L$8L�D$@L�L$H��t7)D$P)L$`)T$p)�$�)�$�)�$�)�$�)�$�dH�%(H�D$1�H��$�H���$H�D$H�D$ �D$0H�D$���H�L$dH3%(uH�����*���f.���AWI��I��AVAUATU�SH��H��XL�~X�|$M�/dH�%(H�D$H1�M����H�T$@H�H�~H�T$I��M�$>L�L$L�T$(L��H+FL��H�D$ M��1�I��H9�������@ ���H�3H����H�SI�D
I�<H9�vB1�H�5��L�������8H�t$HdH34%(�H��X[]A\A]A^A_�f�L����#��H�CH�;H�D$@H�M0$�H�D$@H�H�CH��L��1�H�5�1����H�{�8I���+���f�L�D$�t$H)�L��E��pL��ALJpD�\$0�2���D�\$0E��p��Q�����H�D$@H��~�E1�I� @�l$8L��I��HCH�\$ L�l$0M���H�MH��I��H��L9���H���}
u�A��hI�T$��u
A��`unH�پL������������H�L$H��I�t$L��A�T$hH�MH�ʄ���I�L$1�H�D$@�H�{I��1�����fD�C �K���H�پL������I�T$�x���1��*���H��H�\$ L���l$8L�l$0I��I��H9���H��H�{H��H9���1����I�t$I��L�l$8L��L�l$0H�L$ I)�L��L��L���Y-��A�D-H�L$ 1�I�D$H�T$(I�L$L�\$8H�H�D$@I�D$I��H��L)�H�T$ L9�t1H�D$ H�CH��H�.$�H�H����H�sH�SH���R!��I��H�CM��1�1�L�kH�D$ ����H�|$ t��H�ȾH�H��H;D$ �����H�T$ H�5��L��1��"���H�D$ (�a����%�������D��1���tH�GXH�0��X��%������USH��H��H�XH�K0dH�%(H�D$1�H�S8I��XH)�HS(�R�Ņ�uH�C0H�$H9�t'H)�H�C0H�t$dH34%(��uBH��[]��H��,$H�{(�H�C(H�C8H�C0�9��H�C@H�SH��%��Df.���H�],$SH��H�?�H�1�[Ð��1�H�0uH�?tH�GH9G��Ð����X���@f.���H��+$SH������H�H��H���[�����H��+$SH��H����1�Hǃ�[�f���USH��H��H�/�;���H��HuHDžHH��PuHDžPǃ�����H��[]���AU�ATUH��SH��H����L��D���莚��A��M��t���I��$�t%I��$�H9�u8H��D��[]A\A]�f.�����u�H��H�5}�H��1��s��ɐH�5)�H��1�A�U������AWAVAUATUSH��xH�/dH�%(H�D$h1�D���L���H��HIdž�I���ƅXA����H�
5�D��H��Hc�H�>��f�H���M�F(1�ƅXA�����H�����j�0��YE1�^�H�L$hdH3%(D���u	H��x[]A\A]A^A_�f.�H���H�D$@H��8H�D$L��@H���H�5��H��M��LD����I��A���SH���JH��H�DH�])$H��X�H��HH�=]�1�HǃX���H�D$I��H��XH�D$(H����H�5�TH���8��H����H�� H���H��($�Hǃ H�D$ H�t$1�L��H���P���A�…������H��H��@H�D$@H��0H�D$8H��($�H���Hǃ@tH�5TH���
��H���Hǃ@H�D$H��1t
A���yH�D$0H�5T�H���Q
��H����H�5A�H���9
��H�D$XH���趧��H�D$`H���hH�T$H�|$`L��1�M���H�5�H�|$P�A���A�…������H�|$t#H�T$H�|$PH�5��1�����A�…������H�T$8H�t$@H���H�|$ L�\$HH��L�L$0L�D$HD�H��H�L$(HD�H��HD�M��RLD�M��VLD�WH�5��M��LD�H��ASH�|$pHD�M��LD�1�L��莫��H��0�D$(H��&$H�� �D�T$Hǃ0E������A�D$�H�T$`��uH��H������A�…������H�T$`1�H��蹰��A�…������A�L$�A�������~E1�ƅ�H�5dSH�|$P膩��A�…��[���H�|$PE1�1�H��H��p�b���A�…��HA�����M��tI�F0E1�H�D$XD�T$H��1�M�F(�t$`H������H���y,��I�v0H��HXZH��D�T$����H���P��H���P��D�T$���*DE�����H�DxH�D$H��8H�D$H������H�T$H�5s�H��1����A�+�n���fDH�>�H�D$����H���ƅXH�D$�H�5��H��1���A�+����@H�kPH�D$�G����H���ƅXH�D$�(����H���H�D$�����H���H�D$����H�d�H�D$����H��8H�D$H���RH��H�D$���f�H�5U�H��1���A�+�T������L�-K�I��H���H�D$f�A���&H�5UPH���G��H���H�5�OH��H���HD�H�D$(� ��H�D$H������H���H�D$H�������H��#$H��(�H���H�=~O1�Hǃ(�y��H�D$H��(H���m���@A��u���DH�5�NH�����H�D$ H���}���H���
H�D$ H���h���H�� H�D$ �W���f�H�5��H��1��o�A�U����@H�D$H�D$(����f�H�5q�H��1��/�A�+����@H�5&OH������H���o���H��8�a���H��"$H��8�H��8H�=��1�Hǃ8�J��H�D$0H��8�)���f�H���H�=�M���H�D$HH��@���@H�5Q�H��1��w�A�+����@��YL��`t:Džp
M��M����E1���u?A���Q���Džp
ƅX�;���I�����Džp
M����E1��H�5�NH�߉L$����L$H��������H�5�NH�����H���ƅ H�|$P�H�5:Nƅ�Z���A�…��/���M������H��L�����H��E1�H���P����L$�
���L$I���;����D$H�5W�H��1��:�D�T$������YL��H�|$PH�5�<IE�1��L$�+����L$��A���������H�5�MH�����H��tA������������H�|$PH�5+��ޤ��A�…�t��R���H�|$PH�5.����A�…������1���L��@H�5(�M�������E��H�D$H�D$(I��H���H�D$����Df.���AWI��AVAUATUSH��8L�2H�|$H���H�T$ H�L$(H���9H���L����H����I���I��H��H�\$ H�D$H�H��p����L�M��I���M���M��I��M���pA�}$���pI��$��L��H�L$H�D$���H�L$H��L��H�D$��1�L��H�D$���H�D$H=��H9���H�D$I)�M�l���uH�D$����M����A�}$��I���QA�EA���A�]f���ۍkHc�L9��*M�'I��$8H���&���I��$(I��$������H�5��L��1���H�|$H�5+�1��|�H�D$(I����H��$��ILJ�ILJ�H��8[]A\A]A^A_�f.�M����I���H�T$ H�t$H�H�D$L)�H�pH��$L�2�1�ILJ�ILJ�H��8[]A\A]A^A_ÐH�D$L��p�����H�5��L��1�������f�H�D$(�A�}$�f���H�&$L���H��H��t?L��L��H���{��H��$I����H�D$ I���M���H�1���H��$I����ILJ��ILJ�H��8[]A\A]A^A_���S�����H����X��1��d�����1���t
���t[�t�H����h��[���@f.������u�@H�����H�����Df.���AT�UH��SH��L�'H�=��dH�%(H�D$1�H�$�u	����ta1�H�}H�5��H���������H�$I��$H���I��$X1�H�L$dH3%(�oH��[]A\�f��H��H�=5������t`�}H�]@��u�yf�H���;@��td�U��u��;@��tSI��$8H��tfH�����H��H��H���P������1��[����1�H��H�5$�L���L��U�<���f�1�H�5��L���/�1��"����H��@��;u"�1��)fDH���}@��t@��;t	�U��t�H)�H�}H�~$�I��$8H��tBH��H��H����
��I��$8�(1����1�H��H��L��H�5�����V�����}������f.�@��USH��H�oH��$H��H���H��1�[]����AUI���ATI��USH��H��$��H��H��H��t<H��t7L�(1�H��H�����L�`H��������uH��H��[]A\A]�f.�L�%a$H��1�A�$H��A�$H��H��[]A\A]Ðf.���H��tSH��H�?�;��H�$H��[H�������U1�SH��H��H�H�8����H�;��H��$�1���H���H��[]������f������f�����%����@��H��H��?�����%����@��H���������f�����%����@�����f������f���H��H��?���H��������%����@�����f������f�����%����@��Hc�����AWAVAUA��ATUH��SH��H���W dH�%(H�D$1��G�H�|H��$�I��H����H�xH�H�x�CH�I�D$H�D9k����I�|$�M��tQN�|-L�t$��EH��I�|$L�����6�D$�S�E�I�|$L�����\�D$�SI9�u��CL9�v9H�-�f�I�|$�H��I���SI�|$�H�5���S�CL9�w�H�L$dH3%(L��uIH��[]A\A]A^A_�fD��D��H��I�|$�S�kIl$H��I�t$�SD�k H�I�|$��������Df.���H��H��H�H��P1�H���@��ATUH��SH��L�'H��tBH�sH��A�T$A�T$ H�{H��A�T$H�sH��A�T$H��$H��[1�]A\�fDA�l$Ho�f.���H�w1��D��H�G1�Ð��1��f���USH��H���H��t4H��H�}H��t1�1��
��H�EH�>$H��Hǃ��H��1�[]�f.���AVI��AUATI��USH��`H���L�/dH�%(H�D$X1�H���H�D$ H�D$0H�D$8H�D$(���t�{ ���{!���{"���sH�;1�H�L$0L�D$ ��������"H�T$jH�;1�jH�t$0E1�L�D$8�	��ZY�����D$����H�l$@H�;�H���m����|$@��H�|$(H��t�s��H�D$(H�;H���D$@�����C"A��$��I��$M��$H�|$H����H�D$@H��H�CH�;1�PL��E1�E1�H�����^_�¸&��u?�C"1��7@�D$H�\$(���$H��tH������H�sI��$pA�1�H�L$XdH3%(�IH��`[]A\A]A^�@1�H�S ���ù{ �e����DH�;H�l$@�PH���;���H�|$@L��H�5g$���I��$p�C!H�CI��$�H�C����H�D$HE1�H�D$@����������H�5��L��H��1������&�&��������H�5��L��H��1�����&���H��H�}�HD�1��n���L��H�5��H��H��1����H�|$(�CH��������D$�k���D$���H�l$@�
����
����AW�AVAUATUH��SH��L�7L���L�D$H�L$pL�D$HI�}dH�%(H��$�1�I��H�D$HH�D$P�0H�D$ H�D$pH�D$x�l�����"H�D$H�t$H�QH���kI�}���I��H����H�D$hM��M��H�$�DL���8��I��H���|L���$����e��I�?��du�H�D$ H�T$PL��@H��$�H��H�D$������U�H�ۿ�H��������lH��$�H��$��H���������G�H�d�H��������&H��$�H�L$L��H�T$PI�?H��I�H�D$XI��H�D$(�9	������H��$�H����L�|$0L�l$8H��$�E1�H��v!H�t��H�=����E1�A��H�|$XH����H���H�D$`1�L�=M1H�D$�H�D$hL�$L��H�L$H�H�D$`��"�����[�H����H��������I��H�L$hH����1�H��b�H���u������H�|$XH��I��H�|�0�L���H���;������H��$�H��$��H����������H����H�����A�ą���H��$�H��I�H�D$XH�H�pE�������>��H��H����HD$XH�p����H�T$`�H���������H�'$H�|$`�H�D$hI�����H�|$X�$�:��H�|$P1�����H�|$H�t��H�D$�$�f.�H�����H��H��$�dH3%(��H�Ĩ[]A\A]A^A_�DHD$XH�HH��|��H��H���(���HD$XH�8�81��@H�D$XA�L$I��H�H;�H�@�<�jH��u�H������fDH�\$��L���@�H��.�H���_����u�H��$�H��$��H���>����u��H���H���!����u�H��$�H��I�H�D$0L�D$(H�L$H�T$PH�t$8H�8�����uH��$�H���~���L�|$0L�l$81�H�`�H��������$���I��H�|$P1��h�I�?� ����H��\�H���w�������H�D$X�H��H�H�PH��S��������H�D$XI��H�H�DI�����f.����1ɾH��H�I_������u���I�����H�D$D� ���H�����H�|$H������f.�H�T$hM��I�?1�HDŽ$�E1�L��jjL��$�����ZY�����D$h�����uA����I��1�I���H�D$�H�D$ H��$���O����a���H��$�H��H��HD�1���H�5��L��H��H��1�H��������H�D$�'뛉�H��������H�5]�L��H��1�����H�D$�'�i���H�D$�8���H�D$ H�5t�L���P1������ �����H������d�H�5պL��H��1����H�D$�8�7�������f.���USH��H�H��H��t!�uH����u%HǀH��H��	$�H��1�[]�DH���1�1�H�8�e���EH��f���AUI��1�ATUSH��H��(H�/L���dH�%(H�D$1�H�D$�j��H���H�5��1�H������H���H�t$�����tm�H�H�J����	v9H�;H�5Z�1��`��H�L$dH3%(���H��([]A\A]�����H�D�H�$�#H���fDH�D$H��I�<$E1�L�@(H�H8�P0H�p H�D$Pjjjj�F���H��0H�|$A���E	��E��uhH�I$���H��t@�T$H��A�����1�E1�1�H�߉H�����H��1�j���XZA�E���������fDD���0�H��H�56��'H��1��G������m��f.���USH��H��dH�%(H�D$1�H�H��H��������te�H�H�¶���	v1H�;H�5Ҷ1�����H�L$dH3%(����H��[]����H�D�H���#H���fDH�$H�x���H�<$�������(�H��$�H��t �h1�H��1�H����Bh���u���D��f����i���f���SH��H��1�H��H�dH�%(H�D$1�L�D$�D$7H����PH��H��xH�L$dH3%(H��uH��[��|$Qu��t������������t1��@H��H�1���H�����f���AUATUSH��H��(H���L�/dH�%(H��$1�H���L�d$�D$�D$ldap�D$������D$s��I�|$H���D���H���1���uH��L�⋻X������unH�}H�T$��[��H��������u9H��$dH3%(u[H��([]A\A]����I�|$�o����H�U 1�H���뷉��9�L��H�5_�L��H��1��R�����v���fD��SH��H��1�H��H�dH�%(H�D$1�L�D$�D$8H����PH��H��xH�L$dH3%(H��uH��[��|$Qu������������ATI��USH�������B�D#��Ņ�u�.H���a�H��t���[]A\�f���AWAVAUATUH��SH��HL�?D��XdH�%(H�D$81�H�D$ I���I����H��t	H����H��$�H��H����H����H����H���H��H�D$0H�D$ H�{$H�D$�H�D$H�|$0L�t$(A������.�H���Xf�H�L$(H�T$ �H�����A�…�uNH�D$(HD$ H)�H�����dD��D��D���������qH�T$ M��H��D��H���K��A�…�t�H�D$H�|$D�T$�D�T$H�5L�L��1�D�T$���D�T$H�L$8dH3%(D���H��H[]A\A]A^A_�DH�D$H�|$�H�i/H��D��1����A�…�u��H�I/�H�����A�…�u��D$H��A�����1�jH�����1�H��M�����XZD�T$�X���H��H�=�-����H��H���9���A��/���f�H�L$ H�sE1�1�L�D$0L���%���H�߉D$H��$H�D$�D�T$E�����H�D$ H�D$� ���A�7�������USH��@��uuH�N$H���0@��H��H��tgH�}H�5��1�����H��Hǃ$@1�ǃ@H��@H��@Hǃ@ƃ(@H��[]ÐH��H�����f���H��H�H��t
��$@�����H��H1�H��t
��$@�����SH�_H��HH��tH�|$�HǃH[�D��AWAVAUI��ATUSH��H��hL��H�t$�L$ dH�%(H�D$X1�M�����D$DA��$@���(HcT$H�t$HH�+M��H�t$H��H�L$8��Xƃ��L$$����D�d$ L��H�5��H��D���g��H���#H����HDž��g��H�D$PH����D��L��H�=�1��e�I��H���IH�߹H��H�5����y��L��A��H�M�#�E���z��xH�9�H�5�HD�H�D$(���L;��t�:L���?�H����H�
6���H�o D�D$ H��H�l*HE�L��HE�H�=��1���H�D$H����H�5�*H���q��E1�H���HH�5E+H��L�T$0L�%���mq��H�5*H��H��H��#IE�I���Mq��L��L�T$0H���LL��L���M��MD�M���NL�d$PAUM��1�RH�L$8H�5��L��H�T$ L�T$@蓂��Y^A��L�T$0H���#L��H��#H�|$�E��tzH�D$PE��H�5��H��1��-��L���}��DL��HH�;H�5-�1�Adž$@�=��H�L$XdH3%(D����
H��h[]A\A]A^A_��H�T$P�H���n���A�Ņ��i���H�5@*L��1����A�Ņ��M���D�D$1�H��L��H��p�>}��H�D$P���
L����|��Adž$@Adž@1��H��� C��H���w�t$H���k^������H�D$DA��@M��@H�D$(H�D$PH�D$����I��@L9��	L�D$�t$$�H������A�Ń�Q�wH���/'������E����H�|$H�bA��@����I��@M��@H���H��I��@H���f���Adž@H��Adž$@�&�����1��L-���c��A��(@H�����H����A��$@��������H������H�����A��$@����A��@�HI��@A��@�8
tH��I��@�����`I��@�l��`u41���UHc�H��@�ƃ��X��A�Ņ���A��@I��@Hc�H�hH� �<
�3<
�+�
I��@�H�=�(�?���t���=��
I��@�H�=�(����t���=���I��@�H�=B%������������8�����c��H�5��H��1�����Adž@M��@M��@A��@�a���f�H����q��A�Ņ����������AƆ(@H���H���`��L-���c�dA��(@H�����H����ƃ�H�5�H��1�����H��HH�;H�5�ǀ$@1�������Adž$@�T���H�5�H��1�A�8���L��H�b���H�L$�L��H��H�D$P�J9��������H�5��H��1����Adž@Adž$@H���#��������f.�A�*���DM��@I��@�����RAdž@H��u�Adž$@H���/#�����v����DH�A�#H��Adž$@���LH��1�HǃH�50�ƅ�謿��ƅ�L��Hƃ��M��t}E1�A��$@�=�������DE��L�d$P���HcɾH��蠾��A��@I��@�q���D1�����A�Dž����L��H�D$DM���F���E1����fDH�t$H�="��/�I��H�������H�4�#H�|$�DH�|$PA��w��L��H�[���@H���
�����H�� ���fDL�d$PAUH�5z�1�RH�L$8L��H�T$ �M{��A��XZ����I��@H��$H�5�$�~�����fAƆ(@�j����I��@=�A���[n��H����A��H��H��H�D$0�Nr��H�L$0A��H�G�#H��E�������E���x������������Adž@H���'A�� @�!Adž@Adž$@����fDH�����H�����ƃ�H�5ިH��1��L���@Adž@H���e ��������������H�5R�H��1�A�8�ɾ��L��H���DI��@I��@�
1�H�x�z�������DH��1�H�5�����H��Adž@�������T���A�8�9���f�L��H��@H�5��1�H���o���I��@ƅ��~
uH��I��@H�L$H���H����4����������A��@I��@H������Adž$@����f.�H�5Y�H��1�A�詽��L��H���DI��@�H�=�����(�����8�����c��H�5��H��1�蒻������D1�H�5/�H���w���A��@I��@�A���@A����DH���#��H��HDž���T��L�|$8H��A��X�@��ALJX��������L�|$8H��A��X�d@��ALJX�����|���@I��@H�H�5#�z���������H��H�5Q�1�譺��AƆ @H���-3�������I��@H�� H�5� �6z�����0���I��@H�T$(1�H���H�5
������}��������L�l�����A����fD��ATU��SH��H���dH�%(H��$�1���x�����u+1�H��$�dH3%(�MH���[]A\�fD���t�H�3H�T$1��VH��L���H�H��H��1��2S�������H����������������H���8�H�L�����U���H���#�D$H����D$Hǃ�-���fDLc�B��'��
���J��'����tƃ����f�B��#���������@��t#H����B��������C���DH�������+����h��USH��H��H�?H��tW�*�H�-��#H�;�UH�{�UH�{ H��t�L��H�{H�1�H��H�CXH)��K`���H�H��[]�@H�-Y�#�Df.���ATH���USH��H�� �OL�gXdH�%(H�D$1�H�l$H�����H�{H�K H��H�S(�-N����t��������E�kH�;���C��t9H�;���H�����H���#L��1�H�t$dH34%(uH�� []A\�f��CH�;������f.�AUATI��UH��SH��H�H��tPH�{��D�k �C H�{�k�E��t&H�;tH���(��H�{�_���H� �#H�}��H�;����H�	�#H�EI�<$�I�$H��[]A\A]���1��f���Ðf.���H���#S�H���H��H�[�������H���#� ��H�e�#S�H���H��H�[�������H���H�ǘ����f���AUATI��USH��H��H����������M��tsL���H��I�U8A�u4謿��I�E8ƃ���H���I�$H���tIH���H����C���H�����H����[]A\A]��1�H���ƃ�u����H��H�;H�,-�H���H�5���Ճ����HD�1�讶���s���f�ƃ�1�M���C����I���f�H�߾�cN��H����[]A\A]�fD��H���H��tH�8t
1����H���H�ǘ�M���f.���AVAUATUSH���L�/H�H���H��H�}I����D�u H�}���E��ui���I���H��I���H������H��HH‹U�����E�H�H�;�H�E1��bl��[��]A\A]A^��H���H��L���L���H�U8�u4蜽��H���H�E8tjL��L��1��M���H���I�$��[]A\A]A^��H9E~"������E����U���D҉U�א�[��]A\A]A^À��H��H�;H�+�H���H�5���Ճ����HD�1�葴��L��L�����[��]A\A]A^É�����@��USH��H�H�������H��H�MH�UH�����1�H��~ H��H��23H�VUUUUUUUH��?H��H��H)�H�ߺ��j��H��1�[]�fDH=��2��HM���f.���AWAVI��AUATA��UH��SH��H��xL�/�dH�%(H�D$h1�L�|$I����L��H�$������L�D$@H��
L��L�D$�z�L�D$���UH����H��t(H���
�EЉT$�Q����T$���DЋ��f�H�|$\D��)D$��T$H��D$1�)D$ )D$0������H�$�x�H�H�J�#H�Q�I��H���H����D���H�@I� ƃ�H��ǃ�Hǃ�H�@�H��H)�H�$1���`I�G���H�H���#M�p�(E�g0foL$A�G AO@foT$ AWPfo\$0A_`�I�GH����1�H����L�%��#A�G4H��A�$I�G(H����H�u�#H����H��A�$H���H����A�G H�4$H�=�����e��I�H����A�1��fDD��H��L����H��H�t$hdH34%(��H��x[]A\A]A^A_�f�H�<$����H���#L��Hǃ��������(H�5�1�L������1���D��H��L�ƿ
�%H���{�������H���H���H�$���H�$�f�A�G �c���(������f.�����fD����fD����fD����fDAWA��AVA��AUATUSH��H��HH�T$L�d$ H�l$dH�%(H�D$81�H�D$�D$H�$�#�L��H�����A����ud�D$��t\L�$1�M��D��D��H�����H�L$ A��H�DH=�w�H�D$�L�D$(H�КH)�H�<1�����H�H��DH�T$8dH3%(H��uH��H[]A\A]A^A_�������H��I��H�� �|$(j��t$8��t$0��j��t$8���@��AQE�j�ǃ���E�1�L��A�����H��HÐ��AUA��ATI��UH��SH��dH�%(H��$1���
uS1�H��H�ھD���f���1�H��L��H�5TDH�����H��$dH3%(u-H��[]A\A]�fDH���1ɾH������H������f.���AWAVAUA��ATUSH��8dH�%(H�D$(1�H�H�D$H�D$ @���UH��pL�HH���H��H���H��`L���H��ID�L��`L�%��H���;A�FID�H��IDԃ����������'H�|$ I��WH�|$ WH���|A��XZE��ufH�|$��H�
�#H�}H�L$�E��H�5�
H�T$ID�H�=s�1�����H�L$H�|$H�E�H�}u`A�f.�H�\$(dH3%(D���H��8[]A\A]A^A_�f.��H�{�#H�}�H�EA�FE1��H��xL��H��0H��H��H��@L��pH��ID�L������@L�L$ L�D$H��H���{|A�Dž��@���H�|$t�H�
��#H�}H�L$�E��H�5�H�T$ID�H�=Q�1����H�L$H�|$H�E�H�}�����A�F�����%��D��SH��H��@范H��`考H��[����AUI��H��`�ATI��UH��@H�=�SH��@��L��HE����1҅�t3A�}I�]@��uC��E��tp������u�E1�H����[]A\A]�DH���;@��t��7��u�;t�I�<$H��H���x�…�u��EH����[]A\A]�DI�<$H�5%�1�����L������I�<$H�59�1������	�n���I�<$H�5�1����L������E�	�C���f.�AVAUATUSH��`dH�%(H��$X1������H9���H��H��H��t	�>��H�=ʕ���I��H��t	�8�;H�=�����I��H��t	�8�H�=�����I��H�����8�����H�T$PH�t$�L�D$���������H�|$��L�d$M����H�5;�H����I��H���
H���#H��I��H���uI)�B� J�\#�H�=���G�����1�H�L$H������������A�ă���������|$H���|$L1��d��A�����I��A������|$L��A������(M����H�֔jH�5\�AUL�
��L���H��PH�
��H���1�S�U��H�� �|$L��A�4$H�����A�$H�5��H��H�}1��S��������f�1�H��$XdH3%(��H��`[]A\A]A^���|$L���D$HL��H���#D�������1��1��f�L���@����A�<$IE��*���f��k��H��0H���.����H�}H�N�I��H�5�1�萧��H�!�#L��1���	�8���fDE1���������H��0H���ή���H�}H�5�H��1��7����D�[��H�T$PH�t$�L�D$���@����p���H�|$�S����_��������fDjH�5��1�H�ڒSL�
��H��L���H�
�����XZ�(���f�A�4$H������A�$H�5��H���#�����|$H���|$L������H��0H���ܭ���H�}H�5�H��1��E�������k���0H��豭��A�$H�5��H�����@f.�H���#AVA��AUI���ATUH��S�H��I�����M����H��H��t%A����@H��H���^��H���thH�H)�u�1�L��A���1ɺH������H���toH��tHH�I�D��8
��H����w_L��H�����I��H��tfH�,�����8�m���H���#L���	[]A\A]A^�������8u��f���I�}1�H�5+����H���#L��[�]A\A]A^��A��uH��t�H��v�A��tnA��u)A�$<Ktw<A�q���A�|$F�e���A�|$ �Y���I�T$H�s�1�H�=̐���L��I���H��#�I����p���1��+���A�<$Y����A�|$Rt�����A�|$K������fD��AUATUSH��H��������t���ǃ����������tME1�1��\�����9�t*����8
t E�l$A����A��tsE��tNA��uZǃ�H�-?�#H����UH���Hǃ��UHǃ�H��[]A\A]�f�����������E���\���@��	E���a��������<���@�E��������������fD��AWAVA��AUATUSH��H��H�/@��thH���L��L��`H�ŐH���H���EHD�A�E��tY���H���(���A�Dž��%H��D��[]A\A]A^A_�L��0H��L��@H��p�f.�H���1�H�=������H����A�UH��H��H�D$����L�L$A��H���#L��E���t���H���#I�<$�E��H�ΦH�5_HD�H���H�=2�1��Z��H��I�$A�E�E���I�<$�����A�����DH�1�#I�<$E1��I�$�E����A�UH�5��H���U���A�Dž������H�-��#I�<$�UE��H��H�5�HD�H���H�=z�1����I�$H����UI�<$�Y���Hǃ��\���f�USH��H���WdH�%(H�D$1��H������$��	ȈD$�G������	ʈT$�W�����	ȈD$�G������	ʈT$�W�����	ȈD$�GH������D$	ʈT$�u��H��H���z��H�D$dH3%(uH��[]��^��@f.���AUI��ATI��UH��SH��dH�%(H��$�1�H��H������H��H��L�����I�|$H�������H��L��H�u�t���I�|$H�����H�uH��L���S���H��$�dH3%(uH�Ę[]A\A]����f.���AVH��I��AUATI��USH��dH�%(H��$�1�����H��
��A�H��I)�H��$�H��L��H��H��]��D��1�A����A������t����H��H��H�������H��L��H�=��p���H�}H������H��I�t$H�=���K���A�D$1�A�D$H��$�dH3%(��H�Ġ[]A\A]A^�E1��-���H�SD��H�H�D�H��H)�A�D����<������1��ƃ�H�29�r��#������D�����D1�f�T����������AVH��I��AUATI��USH��pdH�%(H�D$h1��2���H����L�,H��H��#L��H��H����1��A��DC�CH��H9�u�H��H���߿��L��H��H�����H��L���f���H���#A�D$H��A�D$�1�H�L$hdH3%(u3H��p[]A\A]A^�@H�i�#H�=��E1�H��H��u����������AUA��ATI�ԉ�H��UL��SH��H�=}�#�x���H��t3H��D��L��H�����H��H�����H��1�[]A\A]�f.�H���[]A\A]���AWAVAUATUSH��(H����H����I��I���K�?I��L�L$H��H�$H��H��I��H���#L�D$H�t$�I��H����L��M��t.M��M�fM�l�A�?I��I�����A�D$�A�D$�M9�u�H�D$I�FH��t1���L�DB�BH��H9�u�H�<$詹��H�|$L�D$L�����L����H���#�H��(��[]A\A]A^A_Ð���f���AWI��AVAUI��ATI��1�USH���H��8H�$L�D$dH�%(H�D$(1��;���H�A�GHiۀ���p0H�N�#H���H����H��I��A�GE1�j�I�~A�j�p H��1�jjj訿��H��0I�vH���qI�EI�~,I�F A�WI�w�o��I�GI�VL��L�D$�I�FA�O��(�z�����t6H���#�$L����$H�\$(dH3%(u;H��8[]A\A]A^A_�DH�$foD$AL�1H�L$�)��fD�����@��UH�͹SH��H��8dH�%(H�D$(1�H�L�D$H��H�$H��H�D$������ufoD$EH�H�UH�L$(dH3%(uH��8[]����f�����t��@tÐH����e@H��@��p@��AWE1�AVAUI��ATI��H�5t�U�SH�N�#H��H�T$�H��H�s�A��H��twH�k�L9�w�H��L��蓼����u�H�D$H��tH�(L9�t*E�t-D���
��u�D����	��u�A��-t�A��_t�K�H���#�D�H��[]A\A]A^A_�DH��1�[]A\A]A^A_�Df.���USH��dH�%(H�D$1�H��t{�H��I��H��uJH���H�=�oL��HN�H9������u5�E���1�H�T$dH3%(uIH��[]�D�G�G�H��H��L�������u���H9$u�	E1�����fD������H�7H�G�H�Gf�G�G�f.��������u�G#G�����@��AWA��AVAUI��ATI��UH��SH��HL�6dH�%(H�D$81���xH�D$(H�D$0��M��xH���Hc��M����A�\$A#\$E�|$A�D$A�E�� tmH���8uaA�D$ E����A������D$I�$1�A�L�=��#H�5ŃH��S�Å��nH�T$(�����u71�1�L�=��#H��A���H�|$8dH3<%(��H��H[]A\A]A^A_Ð���7��������A�D$H�T$(A�H�5^��D$I�$H����L�{M����H��H�T$H�t$�&���HD$0H�t$I9�H�T$��L�=��#H�t$H��A�I�$1�H�t$H�D$(��1҃�\���H�HЃ����?���M��xH��`H���M���?���I�$L��3���D��@������L��(M����A�D$E����A�����H�T$(A��D$
H�5!������H��L��H�L$0H�T$(A��)@�D$H�5Ё��H�T$(��������#���fD�À�w����A�D$E����A�����H�T$(A��D$H�5{��=����L�=y�#H��S�Å������H�T$(A�EH��DDt$E�t$����H�T$H�L$L�T$�LYL�T$H�L$��H�T$�����H���)=L�T$H�L$��H�T$�{���A�D$A�D$E���zA����lH�T$(A��D$
H�5Q,�k���DH�T$H�L$L�T$�IL�T$H�L$��H�T$����A�D$H�T$(A�H�5k��D$����DL��(M���y���A�D$�E����A�����H�T$(A��D$
H�5���������H�T$(L�=��#�:���fDH�T$H�L$L�T$�<_H�L$H�T$���C���E��L�T$A�D$@��A�����H�T$(A�	�D$H�5��4���fDH��H��L��A�H�D$8PL�L$8�iY^H�5@���D$
�L���@H��H��1�L��H�D$81�A�PL�L$8�XiH�5�~��XZ�D$
����H��H��L��H�L$(L�D$0A��J;�D$H�5�~������@H�D$0I��L��L��PH��L��@A�	H��H�D$0P�__AXH�5����D$�z���f�I�FL��E1�L��H��H��A�L���H�D$0PH�D$0PH���Pj�MVH�� H�5�)���D$
����A�D$E��u)A���uH�T$(A��D$H�5�}���H��L��H�L$0H�T$(A��:;�D$H�5{}������/���Df.���AWAVAUI��ATI��UH��SH��8L�6dH�%(H�D$(1���xH�$�}H���Hc��H�D$M��xH�D$M����A�\$A�EH�D$ ��tz�C�v
I�$9P�����<L�!}��Ic�L�>��1Ƀ�\���H�	Hȃ����b���H��`H����]���@I�$L�8�o���@I�$�9P�CA�EA�D$E�H�L$(dH3%(����H��8[]A\A]A^A_�fDA�E�CA�D$�A�D$A1D$L��H��A�T$L���2���E�t$L�=��#��@���xH�<$��=�[I�$H��H�5�eA��P H�<$��A�E�t$�N����I�$9P��9P�b���H�=�{H�t�#�H��H�$H���*L�=k�#A�I�$H��H��P H�<$����H�=}���I�$H�t$I����P(H��M��L��H�D$(H��H��A�PH�t$(L�L$�DAYL�=��#��AZ����I�$H�t$I����P(A�|$H����bH�D$ L��A�1�PE1�1�A�H�D$PR1�t$0�RH�� L�=y�#�����f.�I�FE�L$L��L��H��H��A�L���H�D$ PH�D$PH���Pj�JRH�� L�=�#���(����I�$H�t$I���L��@�P(H�t$L��L���VY�Å���A�L�=��#����f.�H�D$ H��I��L��PH��L��L��@A�	H�D$P�Z_L�={�#��AX���f.�H��L��H�L$ H��A���6L�=D�#���U���DH��L��H�L$ H��A��6L�=�#���%���DH��H��L��H��L�D$ A��\5L�=�#�����fDA�E�h���I�$H�t$I����P(H�|$H�T$H�t$��6�Å���L�=��#H�|$A�A����DH��L��H�L$ H��A��{6L�=L�#���]���DA�|$L��(H����H��1�L��1�H�D$(A�PL�L$�JbL�=��#��XZ�
���f.�I�$H�t$I����P(H��H���H�t$L��L�D$ A��RL�=��#�����DL��H�5�w1����H�<$L�=�#�A�EE1����H�<$H����������fDH����L�=<�#��f�H��H��L��A�H�D$(PL�L$�`aYL�=�#��^� ���H�t$L�L$ I��L��H��H���}5���O���fDH��L��L��I��H��L�L$ A��)YL�=��#�����A�E1�A�D$�0�������f.�@��AWAVAUATUSH��(dH�%(H�D$1�H���PH��I��I��A�L�l$�I��L��L��H��IF�����uh�=U�#to�I�#i�mN�A90�8�#���D$I�I��A�G���I9�u�I)�u�1�H�L$dH3%(��H��([]A\A]A^A_���u֋D$�fD1�1�H�=!v�x�����yT�=�#�p������H�5#vH��H�$1�H�T$�����$H�T$���#���#i���}�-!�X�0�����H�5l�#�lj$����$H��t	���
���넉��K�#����q����+����膶��fD��AUATUSH��dH�%(H��$�1��+H���wlI���tdL�j�H��H��L��H��H��������uHH��M��t=H��L�uN�L#��H��H���у���A���A��N��V�I9�u��H��$�dH3%(uH�Ę[]A\A]�輵��f.�f���AVAUATUSH��PdH�%(H�D$H1�H��t�?tH��t�>H�t$u/�1�H�L$HdH3%(��H��P[]A\A]A^�DH�-��#�UH��H��t�H�t$H���UH��H��tsH��苩��H�D��8.u�H���v���H�D��8.u��*H��茨��I��H���@H�T$H��设����~:1�L�%)�#�D$H��A�$�D$�	L�%�#1��D$H��A�$�D$�%���H�T$(H��
�^�������.H���
���I��H����H�x�.��H����M9����H�5nsH����������.H��踧��I��H���B���H��L��������/���L��L��H)�H)�H9�����L��H��H��H)��3��������I�|$L��L��H)�H)��������������H��H���E�����������胳����HdžP�H�GH��tMH;0u�H90tH�@H��u�ÐU1�H��H�SH��H��H���V��H�m�HǃPH��[]�1���S1�H��H�����H�b�#H��[H�����H��t��D�Df.�S�H��1�H��H��dH�%(H��$�1��H��
�k���fofoK1�foS fo[0H��
)$foc@fokPfos`fo{p)L$fo��H���)T$ )\$0)d$@)l$P)t$`)|$p)�$�H��$�H�$���H��$�dH3%(u	H�Ġ[����fD���H��t$L�� H���H�
qH�Ǿ�1�鰧�����tL��`��fD���tL���fDL�������ATA��U�SH���X���H�CPH��t1H�
�!��H��!��D��H��L�T��������uH�CPH�����[]A\��H�{P����H�CP[]A\����H��t� ��f��Df.���H���t��z����Df.���USH��H���tDH�����y��H���H���H�h0t
�H���8z��H��H��[]�fDH���H�h0H��[H��]���USH��H�H���tIH���H�Ǿ�y��H�;H��PH���H�ht
���y��H��H��[]��H��PH�hH��[H��]Ðf.���ATI��UH��SH��H�?dH�%(H��$�1�H���t����x��1�H��tTH��L��H���w���H�ڋ
H����������!�%����t�H������D�H�JHDщ�@�H��H��H)��A��H��$�dH3%(uH�Đ[]A\����f.���AWAVAUATI��UH��SH��H��L�.dH�%(H��$�1�I�����H��L�pH����H�sH��H�ML�����I�D$8H��PH�C1�H�PI�T$8H�E`I�D$0I���t
�L��� x��H��$�dH3<%(����H�Ę[]A\A]A^A_�DH���#�0�H��H����H�@L�pI��H�5p����L���R��L��H�����L���
H����������!�%����t�L�������D�H�JHD�H�ى�@�I���H��L)��J��H�����H���i���������j���f.���AWAVAUATUSH��(H��PdH�%(H�D$1�H��taI��H��A��L�����tH���t���uv��H��H�����H�{tkHDžPM��tI�m0H�EE��u)H�D$dH3%(��H��([]A\A]A^A_�fDI��$�t̾L���`v���fDM��t�I��L��L���E���	H;Xt"L���R��H��u�HDžP�j���DH�P H�p(L�������@����.���@f.���AWAVAUATUSH��(dH�%(H�D$1�H����I��H��H��I��H���t���@u��I��H��L�����L�����I��M��tnI�]L�����H�[I���H��t�H�;H��H�[A�ԃ�u�I����t
�L���5u��H�L$dH3%(��u/H��([]A\A]A^A_�I���t�L���t��D1������Df.���SH�� dH�%(H�D$1�H��H������f.�H�@H�@H��u+H�����H��u�1�H�T$dH3%(uH�� [�fDH���螪��@f.���AWAVAUATUSH��H��H�<$H�t$���L�sM����I��1�I�����H����M�vM��tGM�>I��I��u�I��8I��@L��H���#���L9�~�M�vL��I��M��u��H��t!H�|$H���v���H�$H���H�h0H�MH��H��[]A\A]A^A_�1���f�f.���AWAVAUATUSH��H��XH�|$(dH�%(H�D$H1�H���H�D$ ���H���I��I��t��H����r��H�\$0H�|$ H��H�\$���H���$��H����H�D$H�����H�D$f�H�hL�}M��u�Q�M�M��tGM�7I��I��u�I��8I��@L��L���۽��H9�~�M�H�l$H��L�t$M��u�H�|$���H��u�H�\$H��tH�|$H������H�D$ H�h0H�D$(H�H�D$(H���t
�H���,r��H�L$HdH3%(H�D$uH��X[]A\A]A^A_�H�D$��(������ATUH��SL�'I��$�H��PH��y	�X��Hc�H��u1�H9�[]��A\�L���(���H9�s�H�5gL��1���v��L���
���H��H��t�1�H��L���u����ATUH��SH��dH�%(H��$�1�I���c���H��H��u@�fD�H�����H�}P1�H������$�t;H���#���H��H��tJH�EPH���t��$���u�L���:���1�L��
���H������H��H��u�H�}PH��t1��t��$���t^H������H�}P����$�t'H��$�dH3%(u:H�İ[]A\��H��1ҿ
�A������H����H�}P��U���D��H���#H��H���f.�����f.���AUATE1�USH��H��uH��D��[]A\A]�@H��H���H���[��H���I���[��H���H��t[H�M��L�K@H�
X�A��L���M9���A �t?H��H�S`H��1�QH�5'eH���t��XZD��H��[]A\A]��L�K@I�����E1�H�
��H��~�L9�H�
��H���A��HL�뗐f.���UH��H�O0SH��H���H��H���H������H��P�8tH��1�[]�DH���H9�t�ƃ�H�8�1��v,��H��1�[]�f.���H���H��tH;8u�f�H98tH�@H��u���SH��H��H���H���H�����H���H��tƃ�H�8�1�[��+��@[�fD��H���H��thAUI��H��ATI��USH���Y��H��t:H�H��t2H�+I��$�H�}蔳����t�MA;�$�t"H�[H��u�H��1�[]A\A]�@1��DI��$�L��1�H�5tc�r��H���[]A\A]����AUATI��UH��SH��H�~��H����L��H�5�������H�}H����L�-��#�:�H�x�
1��ݦ��f�CI�t$L��H��H��H�����H�}H��tI�d���H�x A�UH��H��tTH�PH�uH���D����:H���g���H��u��Pf�C��H��1�[]A\A]�1�L���v
���0����L��1��f
��H���[]A\A]�fD��AVH��AUA��ATUSH���H����A �uE1�[]D��A\A]A^�@I��H��I���*X��H�H��u��H�[H��t�H�kH���{���L��H��H���]�����t�L��L��H�5ga1��p��[D��]A\A]A^�f���AUATI��UH��SH��H�~��H����L��H�5n����	��H�}H��tpL�-��#�4�H�uH�xH���ߝ��I�t$L��H��H����
��H�}H��t3辕��H�x A�UH��H��u�L��1����H���[]A\A]�@H��1�[]A\A]�1�L�������P������1�H�����tH���H��tH9:���@f.���1�H��(���tH���H��tH9:���@f.��������u&���uH���H��tH;:uƆ���f.��������u&���uH���H��tH;:uƆ���f.���Ƈ��@��Ƈ��@��AWAVAUATI��USH���V���H�xH�K�#�H��H�����H��#L��H��H���J�8���?H���<���H��t�I��H��L��_L�
�_L�u_L�r_L�5n_L�=l_�%f��L��H���������uy�JH����t#�L��H���������u��JH����u�H��tH)�I�L���w���L��L��H�P�ؙ��H�Y�#H��H��H��[]A\A]A^A_�f.��L��H���������t��L��H����������~�L��H������������L��H���������tt�H�5�OH���������t�H�5�OH��������������
���@�B/H������H�q�#H��H������@�B/H�rI9�v$A�}�/I�M�u�H���9/tH9�u�I��A�E�JH���u���fDH�rI9�v(A�}�/I�M�u�Ef.�H���9/t2H9�u�I��A�E�JH���-���fDH�ɤ#H��1��i���I����I����
H�����/tH��H��I��A�M��
��u�A�E�N�������H��H��H��H�8H�5]1��l��1�H���f.���AWI��AVAUI��ATM��UH��SH��(�vH�D$hL�$H�D$dH�%(H�D$1��|���H���H��I��H���*A�}���,��I��u
�}:sta��H��0L��H��H����&�������H�5jH���&������H�$L��H���&�������H�5]�H���&����uoH�D$L90t�1�L���#��1�H�L$dH3%(����H��([]A\A]A^A_�DH�$H�t$�H��@H��B�D8�D$�&����tv�z�����H���H����H���H9����1�L��H�=skH��舖��H���[���H���H���1�H�rH���H���9���L��H��H���%�����t����H�5�hH���n%�����X���H�$L��H���W%�����A����H�5/\H���;%�����%�������fDH�6H��H�������H���EH����#����f�}tu�����}s�����1�H�<$��L��M�D$1���x�@��	���4�H���tp�L9�u�HH��0�H�5BZH���$�����t���H�$L��H���s$�����]����H�5ZH���W$�����A���H�D$L90�����1�L���R!������DH��#�PHǃ�
�H���H��t3Hǃ�����������;���H��H�5kY1��j������������d���Hǃ�������O�������f�f.���SH��v���H��t%�{uH��H��t��,t
H��@t1�[�f����H��@H��u����[��������AVAUI��ATM��USH���n���I��H����H��H����H9��HF��H��uH���umA�$H��[]A\A]A^�H���H��L������H��H���H)��I��`�t
H)�H���H��u��fDH�����H�z����H�����@f.���AW��M��AVA��AUM��ATUSH��H�L$艋��H����H��H��H����L9�pM��LF�pH�t$H��xL��H�h�@���L)�pL�xH��hI��`I9/t-1��H������M9�wI9/uD1�H��[]A\A]A^A_�M9�v�L�|$H�EM)�L��XM�L��PD��X���H�ED��X���fD�z���럐��SH��H����|���H�
�#H��@�1�Hǃ@[�f.�SH��H��1�H��hH��tH��H��t��(��p��t������t�����p���H��hH���[�@f.�ATUSH��H�� H��pL��dH�%(H�D$1�H������H!�H#��H9�uH���H9�ht&H�l$H���1���1�H��H��A��$(�<�����uH�����H�L$dH3%(u	H�� []A\��r���f�H��t{USH��H��0H�����H��@���H���H�-��#H��t*�H���H�|��UH���H��H���u�H����UHǃ�H��[]Ð�Df.���AWAVAUI��ATI��UH��SH��H�^dH�%(H�D$81���u6�~��1�H�L$8dH3%(����H��H[]A\A]A^A_�D���Q���I��H��t�L��M�����E<������<u�I���H�xp�L���ׇ��H��H����H�d�#����I��H����H��� ��I��0H���`H��1�L�|$ M��H�l$(f��`H���Hǀ8H��hH��ƀ,ǀH����HǀPHǀXH��pHǀxA������M���/�L���SI��H�L$ H��L��I���I���L�@x�Pp1�L���D$�%I��I����H�
h�#1�H�L$f�I���H�D$H�<�H�D$�H�D$H��I;��r�H�D$I�����D$Idž�Idž����R�U(H��H��I�����(H�����L��H��H����P������u(I���H���V����Å�������U(H�5ZTL��1��8a����U(1�L���ބ���lj��u������Y����V�������h�P����L��A��h�<���A��h��A��l9�����I�}1�H�5nS�`��I�EH����1�����@A��,����1�L�����9������ҋ����������z������A��,�����A��H���t܃�d��cvAƆ,AdžH����I��0�H�5l������u�I��0I��8I��pI��xH�XH)�H9�HG�I�hH0H��裋��I�8I)�pI�xI��hI��`M9}���1�L���5������H��#L���H���L��H�5�PL��1��k_���6���H�5WRL��1��U_��H������H��Hǃ�������L��H�5P1���`��H���������H�d�#H�D$�+������f.���SH��dH�%(H�D$1�I��0�D$H��tLL��H��L�D$H��H��1��Ѓ|$Qt'H���t3H��tH�L$dH3%(u8H��[�fDH������H�z�����H�;1�H�5�O�`��H�z�����?���Df.�����u1��DAWAVAUA��ATI��U��SH��H�����I��H��tNL��M��t{AƇ`1҉�L��H��hH��`D����ӄ����u7;�XtALJ(1�H��[]A\A]A^A_�ǃX��@��H�5�PL��1��]��봸z�����f�f.���H���X������"��t3H��H����C������u
��H����H�����@�����H��t1���SH��H�?������t1�[�@H�;���[�������fDAWAVAUI��ATUH��SH��H��H���L�sxL�'H�;I)�HspL���9���I��H����I9�t8H��H�3L���V�����u:H���H���S�����u?H��[]A\A]A^A_�H�CxHǃ��A�E7�������f������t?A�E�����먉�老��L��H�5nOL��H��1��]��A�E8������x����H���z���A�E������Y����AWI��AVI��AUATI��USH��H����X;�(��H��hH)�`Hdžh����AƄ$`A������M���A��$,��I��$@H��t^H�H��tVL�hI�L9�r
�H�UH�I9�v=�
H�Z�L��H��H���`����t�A�H��H�����[]A\A]A^A_��AƄ$a1�H��[]A\A]A^A_�fDH��hLJXH)�`HdžhI���L��L�����������H������A��$(1�H�5INH���	\��A�\H������y������z��A��$(A��H��H��H�5�M1���[��A�\H������@����L����ƃ	H�����A�8����fD��AWH��AVAUI��ATUSH��H�|$(H���H�L$L�D$8dH�4%(H��$�1�H�|$@H�8H���H��H�D$0H�t$��(����
H�D$��a��H�D$��`��H�D$H�|$H�\$0H���H���H���D���H�D$(H��H�8�����]�������H�D$H�\$H�|$@H+��Hǀ�Hǀ�H�D$(H��`�������H�D$H����ZH��H��$�dH34%(�H�Ę[]A\A]A^A_�H��H�L$8H�|$(H������f.��E1�H���XH�L$��H��H9�v(A�|
H�Pu�A�|�
u�H�PI��H��H9�w�@I���I�D$H�$H�<�H�B�#H���H�D$H���LH�T$�
L��蜈��H��H����H�¾ L��L)��}���H��tpI9�tkH�|$H��H�5*IL)�H�7H�GL�oH�W�G H�����/H�pH��H)�t)H�Q�H��9 tBH��
H��H���z t0H9�u�fDH�y�#H�|$�H�D$8�7H������i���H��t�H9�t�H�D$H�=�HH)�H�x(H�@8H�p0H�H@�@HH������H�L$H�mHH�APH�D$(H�A`H��������H��H�AhH�AX�ApH�<$��H�D$X�L�l$ �L�cH�T$�
L��H+D$ L��H)�����I��H������I9�������C<:wH�H������M9�����L�����{:t:L��L�{M9�u����H�D$H�5.�H�pXH�@h�@p�;����M9�����M��H�t$H�D�M)�M��L�4�I����M�&M�^A�GH��< u
f�H���< t�<	t�I���+H�
�GJc�H�>��fD�L��H�=G�|�������������H�,$L��H;,$�����H�L$XH��teH��t_H�T$H��H��L�L�HL�@H�x�p v*H��x�o@��oH�H��(H�H @(H8H�HHH9�u�H��L�L�HL�@H�x@�p H�D$(H�8H�4$H�D$1�H��H��H�4��H�PH��(HP�H�H9�u�H��`��IH�\$dH����H�D$(E1�L�A��p
����w-I��`H�t$L�D$pH�D$pH���H�@�H�D$xH�|$0H�$H��H�T$�Uv��H�|$��H�/�#��������L�t$(��1�H�5�HI�>H���S��L�|$A��(H�\$0H���z�����w���I��`H�|$@�p�������A��(����UH�D$����fD�L��H�=E蔔��������������M�VL��I�^H)�I�FA�F I���������L)�I9F��H��������
L��H�=�D�,�����������
L��H�=���������������L��H�=fD����������k�����L��H�=P[�����<���L�=!DI9��D���@�< �<	t{I9��(���L��H)�H�������H��L���p�����tIH�CI9�t[�S��	t
�� uDH��I9�t?��� t�	t�H�À�,t*f�H��I9�������;,u�H��I9��i������@H�mCI�FM�VI�F�~���@�L��L�\$PH�=
�L�\$H�ʒ��L�\$HL�T$P�����H��BI�F
A�
I�I��H�l$X������(H�|$0�c������H�D$(H�5�EH�81���R�����H���;������1��`�H�5�E��P��H�D$(H�8���H�D$���H�D$(H�<$H�8�v����1���H�D$8�H�����������1�H�52B�P��H�D$8�\H��������H�D$8�H����������V���fD��AWI��AVI��AUL���ATUH��SH��(L�'H��`L��L�D$I��$dH�%(H�D$1��D$������,Hǃ�Hǃ�tH��0H��8H�BH9���I��$htjH��xH��t^H��hL9��^L�����H��xL��L��h��(H)�H��H��p9�X�ZH��P�8H���DH��PH����L9�XLF�XL��L���z��1�L��L��L�PH�5AL)�X�O��H��X�fDH�L$dH3%(L���gH��([]A\A]A^A_�f.���X���rH��HL��hL��pH��@HǃxH���H��PH)�H�I��H���H���{����I���y������M9���L�PH���L�������QH��`L������#H��xH���;��`��H�L$H��L��H���3�I�����DžXH�T$L��H��HǃPHǃX����������D$H�L$I���������f�L�D$��1�H��8I��H�����H���H��HH��@����f���X9�(����HǃxI�׀�`�#���I��$hH)�`IDŽ$h����H)�L��L9�LF�H2L���x��L�8����@��XI��Hǃx9�(������fDHDžHHDžP�D���D�D$��Q����`�p���H�L$��j���f.�H�D$��P���H�D$I������Q�9���f�DžXH�T$L��H���6�������Y���f�H�D$I���������H�D$I������7����D��I������3q��L��H�5�@L��H��1��\M��H�D$�8���1�H�5�=L���;M���D$�����]|��f.���AWAVAUATI��U��S��H��dH�%(H�D$1���u21����H�L$dH3%(����H��[]A\A]A^A_�f����uǺ������X1ɉ��#^����t��u��t�L�����A�ń�tqI��$8H��t�L�t$��1�L��I��$@M���I��H����b���I�<$��H�5�?1��~J��M��$HL��L��IDŽ$PI��$���A��A������f.�諏��I��$I��H��H��I��$�L������I;�$���I��$�1�1��{q��A�ƅ�uTI��$I��$�M��$��p���Å���������Fo��I�<$��H�5�?H��1��oK�����f.����o��I�<$D��H�5+?H��1��AK��M��$�I��$�E����Wz���USH����H��dH�%(H�D$1�H���#�H��@H����H����s������H�<$H�5���p��H�<$H�5��9q��H�<$H�5��o��H�<$H�5���y��H�<$H�5���9~��H�<$H�5����i��H�<$H�5����	��H�4$H���H���f��H�<$����o��1���uH�L$dH3%(u=H��[]�fDH�;H�5�:�J�����f�H�;1�H�54>�I�����#y����H���X������"��t3H��H����z�����u
��H����H�����@�������LJ�Ð��LJ�Ð��H��1�f��`H���Hǀ8H��hH��ƀ,ǀH����HǀPHǀXH��pHǀx�f���LJh
LJ�����UH��SH��1�H�����H��H��H�=9H�HH��1�[]��m���f.����'g�����H��t7H�H��t1��@���u#H��1�H9��vH���H���D1��f.���AWAVAUATUSH��H����H�H������@�����H��H���}�>tx�H�=�P��€���t`H�}�:�j��H��uMH��H���^k��L���I��M��t/L���1�M�$�L��H��L���tk����uC�<,:t!H��L9�u�1�H��H��[]A\A]A^A_�@K�\,����AVA��AUATUH��SL�/I��H��0tmH��0���H��@���H���H��tIH���L�%�}#H��t'H�|�A�$H���H���H��H���u�A�$Hǃ�H���H��tI��hH��u��(E��u/��v[]A\A]A^�DH)�`��(IDžhE��tщ�1��mh����ta��(;�Xu�H�5�6L��1��D����(DžX��H���1��bk����u.ǃ([]A\A]A^�H����\k���f.���(H�5c7L��1��D������H���t
1��������ATH��p�UH���SH��H��0L�&H�|$H��dH�%(H�D$(1�H�ddž�H��pH�@H��xI��$�H�xpHdž���������P�c��H����H��(H�;H��H��H�L$L�D$ ����H�|$�Å�uVH�L$H��5H�5c91����H�|$��H�V{#�ADŽ$�H�t$(dH34%(��u>H��0[]A\�D������f�H�;H�5�8��lD��H�|$�����s���f.���SH��H��H���dH�%(H�D$1�H�Ff#�D$H9�t)H�
�f#1�H9�tH�t$dH34%(uXH��[�DH�H��1�H���t�H�����(Hǂ��-y��H�T$H���H�����D$���r��@f.���USH��H��H�H��H��0Dž(�����1H���H�se#H9���H�
f#H9������HD�H���H�����H�;H�5�71��IA��H��PH�;HDž�HDž�H�5�7HDž�HǃHHǃPǃXHǃ`ƃ�ǃ0�1���@��H�H����O�1�H��[]�fDH��1�[]��H���8������6���H��0�D$����D$�f.����H��0H���������@��AWI��AVAUATI��USH��H��L�/M���V����Ņ���H��pH���H��8H���H��0H���H��pH��H���H�����MH�dH��pǃ�H��pH�@H��xH����H�xpHǃ���1������Adž(�����0t��A�ƅ���H����@1�1��w��A�ƅ���I����HH�;1�L��H�5I7�?��M����L��HH���L��H��@�k����I���Dj������M9���L�PH���L�����A�ą���H��`H��������E�H����[]A\A]A^A_�@H��(1�H���Adž(�h�����(A��(H���L���Be�������A��(H�5L5L��1��">������DH��@L��L����i������HǃHHǃP����DL���L��1�H�5�5��?���(���D�ǽ�,c��D��H�5j3L��H��1��U?������ǽ�c��D��H�5�4L��H��1��-?��������ǽ��b��D��H�5�4L��H��1��>�������ljD$��b���L$H�54L��H��1���>���n���D����sb��D��H�5q5L��H��1��>���B������ATA��UH��SH��H����H��t#���H����H���H�XH���~E��tyH��fDH�~H�6H��hH��u�H���H��uDH���f�H�HDž�H���H��H��h1�D��p[]A\�H��H�7H��u��H��u뿐H��H�qƆpH�1H��u�H��D��f���SH���H��H��t H�H;qu�B�H�H9Xt'H��H��H��u�Hǃhƃp[��H�H��H��s#���H���H������USH��H����H�hH��H���q���H��hH��u-H���H��u�H��hH��t%H��H��[]�?����1�H���.�����@H��[]Ð�����
��Ð��U��SH��H��H�H��H�s#�H�HǀH����[]����USH��H��H�-�r#H����UH���Hǃ��UH��Hǃ��U1�HǃH��[]�@��1���t
��X������H�������Ðf.�H�Sf�� f��H��H���V�AF�F �F�SMB�F
�@f�V���f�Nf�V f�F�o����f�C��f�S[��AVAUI��ATUSH��H��H��dH�%(H�D$1�H����H��I��H���;H�� M��1�H��H����H)�H���6��A�ą�u~H�$H��tuH� H�� H��vaH�}��D��I��L;� wGI��$�=�E$H�H�X'I9��)H�|%�_��H�I9��A�f.�H�|$dH3<%(D���H��[]A\A]A^�@H��I��H)�H��H�M��H��1�H��H���5��A�ą�u�H�$H9���H�H����A�Q�z���f.�H�H9�H���HF�H�4$H��L���S��A�ą�t	��Q�4���H�,$E1�H���$���H)�1�H��Hǃ�<���@I�m����HǃH��H���P����%����[h��H����f���AV�AUATUH���SH��dH�%(H�D$1�H�lo#�H�}H��H����H���H��E1�1�A�H�����A�ą���H�/o#H�<$H��</��<\����L�5o#H�<$H���A�L���M��tr�/L���-[��H��thH�P�H�S�@��tD</u�\H�����u�H�L$dH3%(D��uZH��[]A\A]A^�fDH���r����A��¾\L���Z��H�������L��A�A�HDž����f��f�f.�������C��H�3n#ATUSH��LJ����H��H��t_1�H���U��L���/L���!Z��H��H��tQH��m#H�UL��H����H���H��tH+��(1�[]A\�@[�]A\�fD���\L���Y��H��H�im#H�H��u�L���H�����H���H��t�[1�]A\�fDAUI��ATA��UH��SH��H��H�?dH�%(H�D$1���O����t&H�L$dH3%(��H��[]A\A]��H�H��A��H��H�������H�H��L��H��$H���H��$�2`��H�1�I��H��H��H����1����u�H�$H9�tH��H��Hǃ�_����e���AWAVAUATUH��SH��(L���dH�%(H��$1�L���:Y��L���H��L���(Y��H�T
�?H����I��1�������L��I�]
M�eL���H�1��\\f�$��f�L$f��GH���_��L����X��L��H��\H��H���`��L���X���?L��H��H�Lf�qH���u�A�????L)�f�L$	H���#���H��$dH34%(uH��([]A\A]A^A_���c��f�AVAUATI��USH��@L�/dH�%(H��$81�I��H�{�X��H�P�?H����H��1�������H���H�1�f�$f��GL�sL����W��A��Y�D$ H��f�D$uj�D$��D$$H�CH�}3�L��f�D$1�P^��H�K4H��L�羢����H��$8dH34%(u+H��@[]A\A]A^�f��D$��D$$��b��f���AVAUATI��USH��H��PdH�%(H�D$H1�H�H�D$H��D�mE��u�i�������H�H���H�t$H��������t��QukL�l$M���]�}�s�EH��)Hc�H�>���A�E	���d�EN=�*Hǃ �NA�$D�H�߉D$����D$H�L$HdH3%(��H��P[]A\A]A^�f.�Hǃ �E�A�$��u�H�H���1��@E�e	E���cH�� c�UH�;A�E*��Yf�EHLJ��xI�u\H���H�����EHǃ �fDE�U	E���sH�� )�eI�})�|H�;��H��H��H�H���Y���H�;L��H���I9���Hǃ �$�E�]	E���[H�� 1�MI�}/�A��H�D$H�x1��fE������E��J�T(H;� �lH�;1�H�5�'��0���8�EH�;Hǃ �@Hǃ H�T$ 1��H�߾qf�D$ �D$"�����@����Hǃ 1����fDA�EH��f�EHǃ �������f��EH�;Hǃ H��H�T$ 1�H���D$"f�r��B�D$ �A�	f�D$!�=��������E8H�;Hǃ �f��ENHǃ ��f�1�����f��E	�	Hǃ A�$����Hǃ L��L����H���������H�L)�f����H���A�@�/H�����HO�F F0H�M �F@f�~$H��FA�FD�n+I�� f�F)�EfD�F;f�FAD�n=f�n9�
�H�1�L�D$ �DH��H����)��������H�D$ H��DtHǃDH��H����5���H��`H���薏��H�;Hǃ H���L������0���H���I�)H���*!Nb�IuHH��Bz�Ք��H��H��H�2H��?H��H)�H��XHǃ H��H�T$ H��f�A����H���D$"H�B�BfD�L$ �N�.�D$'H�� f�L$%��D$5�D$+��������<���H�T$L��H��H�T�Z1���������H�;H��L��L�H�����fE��y"Hǃ H��8���H�;H��躌��Hǃ H�;����Hǃ �����"\��f�AUATUSH��H��H���dH�%(H��$�1��aP��H���H���RP��H�TO�?H���mH��$ H��H�;L���H������L��H��H��$`�G���H��$@H��H�;H��荎��L��H��H��$�����H��1���H��L���fo�$`��H��
���L�eMfo�$�f�$���L��f�T$	���D$H��$pL$H�D$-H��$���GL��T$5�D$��D$�D$H�D$E�
V��L���2O��L���M�dL��L���W��L���O��H��sH��I�Lfo�"H�nux-gnuH�A�Acurl�AH)�f�L$H���~�H��$�dH34%(uH�Ĩ[]A\A]��8Z�����UH��SH��H��8dH�%(H�D$(1����H�D$ u?H���������H��!�rH��������ǃ�H�t$ H���2���t	��Q�}H�D$ H�������������tsHǃ 1�H�L$(dH3%(�	H��8[]�1�H�T$�D$�'j��t��Qu�1��|$�G������H�߉D$�����D$뛐�P	�����@ ǃ�f����E�d�����H	��uIH�� Pv?H�PIH��H����@4�������������ǃ�����@1�������H���C��������f��H���#����C����TX��@���G�����	��f.�����f���������G	��f.����>�f���H�>��S�H������1�1��H�����t<"t<\u�H��H�����u�H�|H�_#�H��t\���tj1��fD�H��H������t4H�zH�4L�8��"t��\u��\�L��H��H����L���u�A�[���f�I��A������H�Gx����H���H���H)�H9�HG�H��tJ������x=E1��@���B���x H���I��H�VH���L9�u��@L���H������f�f.���I��H���H9���)L���1�L�e!�H���	�
H��M�AH��fA�9Hǁ�H����L���H���L)�H����B��	�H��H��F��	�����D	�M�YL�����F��	�D	�A��A��Mc�G�
E�A��A��A��?G�
E�HA����?A��A�<:A��?G�
A�xE�HH���M�HL�GH���L���H9����I��H�����M��H���!����I��1��H��v��t�==fA�PH���H���H)�H����H��u���1�������1������	�H�=����Hc��47A�0�����?�47A�pH���H��H���H;��t����<�A�PH���H��H����fDM���8����1��l���f���H�GxH��~8H���������H��H�_Cy
�5��H��H��H��H�Q�H��H��H��H�Q�f.�H�OHWH9�w3��u]H�r�����H9�r�tH�
�1��<1t#�f.�H�BH9�s؉�������D�<�������Df.���1�H�x��H���@f.�����t'��uHwx�H��xH9wx|	H���1��@H�������H�}Z#SH��H� �H�C [ÐU�SH��H�����HLJ�HLJ�HLJ���E�9��v-H�G0H��tL1�1�H�@�Ѓ��t=|K��F��u(f.����1�Hǃ�Hǃ�H��[]�H���[]�@H���[]�f�f.���H��tmH�GH��tdH�@8H�@(H�@0H�@@H�@ H�@HH�@xHǀ�Hǀ�Hǀ��@H�G�f���UH��SH��H���H���H)�H9�HG�H��uH�H���H��H��[]�f�H���H���QL��H��������AWAVAUATUSH��(dH�%(H�D$1�H���H;���
I��L�����I���L$H��E1�H��L�=E���D��D�L$������D$L�ȃ�D�$A��A�D�d$<�b<�A�<t�D$=E��A�A��
�pI���L�H��L��A���L9�rcH�t$D��E��t1��ƒ��A�9�r�M�M�L)�M��B�|
uIǂ�I���L�I���I;������f�H�\$dH3%(L����H��([]A\A]A^A_�f.��t$�L���������t����J���f��D$=
E1�A��2���f.��t$1�L���������y����������D$
A�A���f.��t$�L���O�������6���A��������A��
�����fDA����E1������O����UH��SH��H���H�YxH)�H9�HG�H��uH�H��H���H��[]�DHq H���I��H����Ґf.���SH��H�HH��t
�jL��H�CHH��U#H�{ �H�C [Ðf.���ATUS��utH��uo�G(1�t0H�_I��H��t2f.�H���8���H�[��E�H��u��t��[]A\��A�D$(1�I�D$0��I�D$8[]A\�@�[��]A\�@AWAVI��AUATI��UH��SL��H��L�?M9�s6L)�J�49L9�L��LF�L��M���H��LuH��L��[]A\A]A^A_�@L��L�L$E1���A��L��H)�H9�v�L�L$L)�H�L��f.���ATI��UH��SH��H��H�IHH��tH��L��H��[]A\�Q���H�{ H�5-H�T$�N��H�T$H��H��H�CHu�H��H�����[]A\�f�UH��SH��H��H�?�,]��1҅�tH�E�<:uH�T�: uf�H���: t�H��H��[]�f.�AWAVAUATUSH��(H�t$H���CH��I��H�-�E1䃻�L����@���HcD�H�>��M���I������M��MD�H��(L��[]A\A]A^A_��H�����H�D$M��E1�E1�H�D$H���L���L9���E���D�L$H�ٺL��H���H�|$�PD�L$H=��H=�PH���NHD$I�I)�M��u��9@ǃ����Hǃ�L���Hǃ�Hǃ�Hǃ�Hǃ�����M����������f�L�|$H���L��L�
� A�H�
AL�����H���ǃ�Hǃ�Hǃ��C����M����H�5L�����H����I�Fǃ�Hǃ�H�����DM��ucǃ�H�CXHǃ�H�������fD���H�SPHǃ���H���������������M�>L���M>��L��L�|$L��I��H���L�
%~L������H���0I�I)�I�L�|$M���5����s���@ǃ�Hǃ�Hǃ�����H�C(H���KH�K@L��H�|$��I��I���I�������M)�M�L|$M���������DA��D�L$H��L��H���H�|$�PD�L$H=� H=��H���E����H���L���H���I����_���H�C(H���1�H�K@�J���L)��H=w.H=s,A�H�����H��E1��a����H���u�M��LD�I�����I����M�����ǃ�E1��{Hǃ�Hǃ������H�{HH��������E��H�CH���@H���t�I�HD$I)��4���f.�I)�uKHǃ�L�������@I�FHǃ�H�������DA��n���DH���L��L�\$H�4�M��L�\$�E1�����f���AWAVAUATUSH��(H��t8H�A8I��I��H��H�D$E1�H�-��{(L�s0���C(HcD�H�>��E1�H��(L��[]A\A]A^A_�@M���oL��L��L������H=�-H=�iH��� I�F�C(�{(H�C8H�C0L�s0v��M���b����|���f.�H�K M��H��zL�
NLE�H��H�L$L�L$�:��L�L$L��L��H�L$H�|$I������H�����C(L�s0H�C8����H�|$A�L��L��L�
\H�
�
����H��uG�C(L�s0H�C8����H�C�C(H�C8H�C0����@H���tBf�I)�I�I�M���a����{���f��C(H�C0H�C8�7���@M��LD��F���@ATUH��SH��H���n9��H��t1I��fDH��L��H������H�[H��uH��u�[]A\��[1�]A\Ð��UH��SH��H��H�H��u8H��u3H��tH���vD����u1�H��[]�f�H���[]�@H��u�H�} H�5��T$�WE���T$H��H��H�EHu�����USH��H��H�G8H��tH�@��H�C(H�{PH�C0H�C8H�[@H�C H�CHH�CxHǃ�Hǃ�Hǃ��C��D�������H�-K#H�{`�UH�{pH�C`�UH�{hH�Cp�UH�{H��H�H��1�Hǃ�H)�������H�H�ǃ�Hǃ�Hǃ�H��[]�f�H�{X�WD���p���f���H����ATUSH�GH��tdH�@8H�@(H�@0H�@@H�@ H�@HH�@xHǀ�Hǀ�Hǀ��@H�GH�_H��L�%�I#H��t'�H�CH��H�E�8���H��A�$H�]H��u�H�} A�$[I�$H��]A\���Df.���H��teH�GH��t\H�@8H�@(H�@0H�@@H�@ H�@HH�@xHǀ�Hǀ�Hǀ��@�8��f.���ATI���@UH�-I#S�UH��H��tuL� �)H�@H�@H�@�UH�C H��trfo

�L��H�--------H�HH�C H�p�Ċ����u �C(H�C0H�C8H��[]A\ÐH�-�H#H�{ �UH��1�UH��[]A\�f�H�aH#H��1�H��[]A\�f.���HLJ�H��1�H�H��H��H)�������H�H�2ǂ�Hǂ�Hǂ��@f.���H����H��G#SH�����H��H��tiH�xH��H�3Hǀ�H��1�H)�������H�H�2ǂ�H�CH�ZHǂ�Hǂ�H��tH�PH�SH��[�f�1�[H���f�H�S��f.�1�H���f.���H��tWUH��SH��H��H�G#H�p�H�CpH��tH��F#H��H�CpH��t1�H��[]����f��+�f.���H��tWUH��SH��H��H��F#H�h�H�ChH��tH�rF#H��H�ChH��t1�H��[]����f��+�f.���H���ATI��UH��SH�G8H��H��tH�@��H�C(1�H�C0H�C8H�[@H�C H�CHH�CxHǃ�Hǃ�Hǃ��CM��tSH���tVH��E#H�}�H�C H��txH�kxH��uG�(H��H�C(H����CH�C0H���H�C81�[]A\�@L���`2��H���H��L��H���8��H�C �@�+�f.���f���AVAUATUSH��dH�%(H��$�1�H����H�G8H��H��H��tH�@��H�C(E1�H�C0H�C8H�[@H�C H�CHH�CxHǃ�Hǃ�Hǃ��CH����H��H����:������L�-=D#H��A�UH�C H����H�Cx����A�H�l�H���CH�C(H���H�C8A�UH��H��toH��M�m�D��H��A��L�5�C#H��I��A�M��tHH��L���e+��L��DE�A�H��$�dH3%(D����H�Ġ[]A\A]A^��A���H�Cx����A��J���D�H����B��������L�-DC#H��A�UH�C H�������D$H�Cx����%�=������H�D$0H�CxH���H�C0���A�+�<����;����H��tWUH��SH��H��H��B#H�`�H�C`H��tH��B#H��H�C`H��t1�H��[]����f��+�f.���AUATUSH��H��t}HLJ�H��tUH��I��H��*#A�+H�5{�H���J����tI��$�E1�H��H�3H��u�H��D��[]A\A]��H��E1�[D��]A\A]��H��A�+[D��]A\A]�f�f.���H��tgATA��UH��S���H���tH�XH9�t�r;���������H�kXH��tE��t���1�[]A\��[1�]A\�f��+�f.���H����AWI��AVM��AUM��ATI��UH��SH��H��H�G8H��tH�@��H�C(1�H�C0H�C8H�[@H�C H�CHH�CxHǃ�Hǃ�Hǃ��CH��tH�k(L�{0L�s8L�k@L�cx�CH��[]A\A]A^A_���+�f.���H���c��IATA��UH��SH�G8H��H��tH�@��H�C(H�C0H�C8H�[@H�C H�CHH�CxHǃ�Hǃ�Hǃ��CH����H�;H��tH�EH��t	H9���H�}��H�SH��u�"�H�@H��tH��H�BH��u�H9�tVH���H�]E��H���H�C(H���H�C0H�����HD�H�k@H�Cx����H�C8�C[1�]A\�f�H��tH�51����[�+]A\�H9w@�����1���+�f.�����r���f���AUATUH��SH��H���~���FH�0Hc�H�>��fDH�v �o5������fDH�{XH��t)貲��I��H���^�H��H����,������H����H���H�s`H��H�����?����ukH�spH���3����uH�shH���%����tH��uFH��[]A\A]��H�N0H�V(L�K@H�vxL�C8�@�����O���H��t*H���H���H��D$� �D$H��[]A\A]ÐH���[]A\A]�H�?�4��I��H����H��H���1��H�S@L�b��u&M��t!L����'��H��tsL��H���x���M�d$��tڅ��m���H�{XH����������DH�VxH�v �*���7���fDH���_���H���H�����+���������fDH���'���H���H����+H��D$��D$���L��D$�l6���D$�����H��H�������H�������H���Ѓ�A�@��AUATUH��SH���t9H�_xH���H��t	H��PH��H��x	���trH��H��[]A\A]�@L�g@M����I�|$ �	)��L�hL��M�d$M��t&L�����H����H��x�M�d$H�L�M��u�H�]x�t���f�L�ePE1�M��t@I�<$�(��M�d$M�lM��u�H�mXL�H��tDE1�L�-�h�	H�mH��t,�L��H����H��u�H�}�Y(��H�mM�dH��u�L�H��H��H��[]A\A]�fDH���&����H���H�Gx1�H��������������ATI��H��USH���H�T$0H�L$8L�D$@L�L$H��t7)D$P)L$`)T$p)�$�)�$�)�$�)�$�)�$�dH�%(H�D$1�H��$�H���$H�D$H�D$ ��D$0H�D$�5��H��H��tI�<$H������H��t(I�$1�H�T$dH3%(��uH���[]A\�@H�	:#H�����2��D��H����AVI��AUATL�%��UH�-�!#S1���&��I�Ÿ�!f�����
tHL�eH��L���&��I9�r�L��L��H)�L���A����t�H��H�c!#H�D[]A\A]A^�D[1�]A\A]A^�D1��f.���AWA��AVI��AUI��ATUSH��H��(H�P��2�����H�CPuHǃ�Hǃ�H�k`H�{XH�����{��H�5��[�I��H����E1�E1�H�{PM����H�
��1�M��H�5�H�������uKH�{XH�5��
�H����C���uHǃ�H�SPH�����u	M���1�H��([]A\A]A^A_�H�5[e��I��H���y�CM���A���+��u^H�-�H�{XL�c@E1�M��tM�l$ H�5��c�H����H���4���H�{PM������L�-�L������DH�{h����{H��t�H����H�5��H����?����tE���YH�{h�NH�{XH�5g����H�{PI��H��u�E1��M���OH�51�L���@9�����hH�{pH���hL�ShM����L�����H���%L�*I��H��E1�H�5��M��L��L�\$H��H�{PL�T$RL��P1�VH�5����L�5�6#�D$(H�� L�T$L��A�L�\$L��A��D$��������.���H���H��� H�H�����1�H�{PH�5���R�����������DH��H�5�VH�-�V�j>��I�\$���HD�H�������1�D��H��H������������H�[H��u����H�{h����H��H����C���2������f�H�{pH���k�^��I��H����L�[hM����L��L�D$�8��L�D$H����H�w�I��M��H�58�I��H�
;��{�����CH������E��������������H������fDH�{XH�5�1���H���h���E1�1����E1����H�{htiL�5����DE1�H��4#L��1����i���H�{ ���H��H������H�kh�CH����H�-,U����H�{pu�H�������
H�5��H���L=�����k�������L�ShM���-����\���fDH�]E1�H��H��I��I��H���6���f�I��H�:L�
�H��H��H�
������H�{X����������L������H�{XH�5���C�I��H�������E1�����H�{XH�������ATI��UH��SH�ĀdH�%(H�D$x1�H��H����%��H���k ��H������H��H�߉��&��H��L���[4��H�D$xdH3%(u	H��[]A\��+��f.�AUI��ATUH��SH��(dH�%(H�D$1�H�D$H�D$H����H��L�d$�H��LD�����M��tL��H�T$E1�H��H���u��A�ą�u@H�|$��E1�H��2#I�}�H�D$I�EH��tH�q2#H�}�H�D$H�EH�t$dH34%(D��uyH��([]A\A]�@L��E1�1�H��H���Eu��A�ą�u�E1��f�H���y�����D�;:�i���H��1#H�=-A��H�D$H���E����C����i*��f���H��1#ATE1�UH��SH��H�?�H�H��tH��1#H��H��tH�D��[]A\�A�����AUATUH��SH����"'�z&���������2��	����}D�W	���4����'��C�C��'�WC����'��'�?�� '��+��!'�?���/������HJ�H�H��0#H��
�HDž
H����aH�{0#H��H����dH��
1۸��NH����[]A\A]�@���'��D�V��}'�r<�����'�` �2���'� �����'���F���'��)����'�x ���'�D���/������HJ�H�1�H����D���D��'����/������HJ�H�1�H�������D��'�, �^ ��'�����/��H�JH�AH�BH�H�1/#H��`
�HDž`
H���lH��.#H��H���{H��`
1����f����'uP���/�\����HJ�H�1�H��@�P�������'�t<���'��+���'�\/@�0����fD���'��"�&���'��,�����'uċ��/�'����HJ�H�H�4.#H��0�HDž0H���oH�.#H��H���~H��01����@���'��%�����'��#����'�h(���'�<!���'�������/�R[����HJ�H�H��-#H��H
�HDžH
H����H�T-#H��H����H��H
1��������'�4"�+���'��������/������HJ�H�H�
-#H��h�HDžhH���EH��,#H��H���JH��h1��a���f����'��7���'�pJ���'�������/��Y����HJ�H�H��,#H��
�HDž
H����H�P,#H��H����H��
1�����@���'��J�����'�����'�����'�z������/�^W����HJ�H�H��+#H��`�HDž`H���%H��+#H��H���*H��`1��A���f���V'��>�~��/'��2����)'��I�r
��''�<�HD��&'�������/�$H�JH�AH�BH�H�3+#H����HDž�H���6H��*#H��H����H���1������%(�#�.���N�*-�d��0O�x4�2���u��@�`���u�48�
���u�"0��>v������/������HJ�H�1�H��h
�������'��6��.���'��������/�Y����HJ�H�H�*#H���HDžH���MH��)#H��H���\H��1��i���f.����)������+���^D���������/�OV����HJ�H�9��a1�����f�����D8�����z@������2��=�����������/�o����HJ�H�9��S1����fD��'��/��'�hE���D������/��V����HJ�H�H���H�����1��7���������8����A���������/�/V����HJ�H�9��1����@��	��2�v���*E���:����������/��U����HJ�H�H���H������0fD1��p��������D+�&�����9������@?�:�����/��B���/������HJ�H�H����H���1�������J��2����k��,�b�����B������D+������2D�8����P@����\������/�F����HJ�H�1�H����\���D�����[�6���������/������HJ�H�1ۈ��H������������������T+��C�����������/�[H�JH�AH�BH�H������1ۉ���������|7�������?����>@����J������/�uR����HJ�H�9H����F�j
��1ۉ���<���D����4�����:<�������0����|8����������/��R����HJ�H�1�H��H���f������'��'����z������/��H�JH�AH�BH�9��f1��x�f�����.�B����*������/�y����HJ�H�H����EH�� 1��!�f������1�^�����.��:����������/�����HJ�H�9���1���������D2��*����z������/�H�JH�AH�BH�9��w1��x�f���[���Q��Q�@+����N��2��P�x+��K�������/�~P����HJ�H�9��b1������.�(�)�� ��S�����q<�+��
��,����8�������/�'N����HJ�H�H=���kH���1���D��U�?1��Z�(��T�E���/�N����HJ�H�H����H���;�H���HD�1�H��x
�!�f���q�� ����o�8����n�����/�F����HJ�H�H���TH����SH�����Dž41���f�����4$�A����j���/������HJ�H�1ۈ�
��
�d�D��w��.��y�9��r����/�FO����HJ�H�H���|BH��(1���D��c�6����`�(&��b��A��\�����/�oL����HJ�H�H�����SH���1���D����;��+���p���/�����HJ�H�9��
1��o��i�w@��/��e�0���/��
����HJ�H�H������1��'����*�����"����!��)�����/��
����HJ�H�9��`1�������:�7@����@�86����<��%��/��=�r���/�M
����HJ�H�9��J1��q�f���,��7�(���/�
����HJ�H���XH����O�M��1ۉ�X�!�f���E�G;��G��0��D�����/�[J����HJ�H�H�����H���1����@��3��8����0�)�"(��2�����/�)����HJ�H�9��L1������I'��=����5'��5��7'��%��4'�"���/�M����HJ�H�H��#H����HDž�H�������H�^#H��H����
H���1����f.����u�t>��)��;O������/�S����HJ�H�1�H�������,'��6��-'�`.��*'�L����/��H����HJ�H�H��#H�� 
�HDž 
H����H��#H��H���
H�� 
1���@���u������/��
����HJ�H�H�����H9�}H���H9��PH��1���fD��i'�4�^��c'�"����]'����b'���\'�@����/��J����HJ�H�H��#H���
�HDž�
H�����H�|#H��H���H���
1������5�'����/��	����HJ�H�9��R1����f���g'���.��f'�z����/��	����HJ�H�H��#H����HDž�H���%H��#H��H���4H���1��A�f���t'�T����o'���q'���m'������/�qI����HJ�H�1�H��(
�����6������/�����HJ�H�H����Y��
Džp
1�ƅX��fD��w'��&��x'��.��v'�D����/��G����HJ�H�H����L�;��LH��#H����H��#H��HDž��H����	H���1�����~N�D9���+N�2�\��*(����,(�+��'(������/�!G����HJ�H�H�#H����HDž�H���YKH��#H��H����MH���1۸����L�D��(��&�&��(��.�|��(�x3����(��#��8��(���H�m#H��@�����/��I����HJ�H�H�(#H���
�HDž�
H���cH��#H��H���hH���
1�����XN�4��oN�(1��,N�4����/�mG����HJ�H�H��@H����IDžH1��!�f����N�/�����N����N�!���N������/�dE����HJ�H�1�H��8�����O'��+��Q'�(��N'�t����/��F����HJ�H�H��#H����HDž�H���H��#H��H���.H���1��;�@���N�l7���N�0)���N������/�(D����HJ�H�1�H�����D���N��3�����N�J'���N�'���N���H�+#H��@�F���/��G����HJ�H�1�H���
�v����(����2���/��H�JH�AH�BH�H��#H��8
�HDž8
H����H�q#H��H����H��8
1���D���N�����N�P"���N������/��A����HJ�H�1�H�����D��(��-�.��(�j��(����(�J����/�A����HJ�H�H��#H��X
�HDžX
H�����H��#H��H���H��X
1���f����'�T	�N���'�2�����'�0�2���'������/������HJ�H�H�#H����HDž�H���QH��#H��H���VH���1��m�fD��!(�|��$(���(�����/�zA����HJ�H�1H��P1��
���Å���Džp
ƅX��D���'���6���'������/������HJ�H�1�H��@�����'��	�����'�Z���'�v���'�R��Ƈ���/��>����HJ�H�H��#H����HDž�H����H��#H��H����H���1�����(�����(�8(��(������/�kH�JH�AH�BH�1�H��X
���@1���H�JH�AH�B���H�JH�AH�B��H�JH�AH�B�D�H�JH�AH�B���H�JH�AH�B���H�JH�AH�B��H�JH�AH�B��H�JH�AH�B��H�JH�AH�B�=�H�JH�AH�B�!���H�JH�AH�B�#���H�JH�AH�B�a���H�JH�AH�B����H�JH�AH�B����H�JH�AH�B��H�JH�AH�B���H�JH�AH�B�z�H�JH�AH�B�1�H�JH�AH�B�%�����HJ����H�JH�AH�B��H�JH�AH�B�D�H�JH�AH�B��H�JH�AH�B��H�JH�AH�B��H�JH�AH�B������HJ���H�JH�AH�B�c�H�JH�AH�B���H�JH�AH�B������HJ��������HJ���H�JH�AH�B�h�����HJ��������HJ�������HJ�����@��M���C�@1��8�f��+�%��������������/��<����HJ�H�1�H�������Džp
1���������/�|>����HJ�H�1�H������f����/�n>����HJ�H�1�H����h��f����/��=����HJ�H�H��#H���HDžH�����H�t#H��H����H��1�������/��=����HJ�H�1�H��P
H������f��H��(H�� ��/w8����HJ�H��H�9H��[]A\A]�����H��H����/v�H�JH�AH�B��D���/�=����HJ�H�H��#H�� �HDž H����H��#H��H������H�� 1�������/��9����HJ�H�H����@H��H����>H���,>H�5#H����H���HDž�H��HD�H�#�H��H����=H��H���IBH���1�H��Džp
�a��f����/��.����HJ�L�!H��
#1�H����HDž�M��tH�v
#L��H����AH���H����
1�H���Qo���H��H��D�����f.����/�h.����HJ�H�H�
#H���
�HDž�
H����H��#H��H���l���H���
1��o�����/��8����HJ�H�H��#H���
�HDž�
H�����H��#H��H������H���
1�������/��6����HJ�H�H�X#H����HDž�H�������H�$#H��H�������H���1����H�)
#H��@�D������/��<����HJ�H�H��#H���
�HDž�
H������H��#H��H���$���H���
1��;��@���/�|:����HJ�H�H��#H��p�HDžpH�����H�L#H��H������H��p1���������/��7����HJ�H�9��K1��������/�5����HJ�H�1�H��@�x�����/��6����HJ�H�H��
#H���
�HDž�
H�����H��
#H��H������H���
1����f����/��3����HJ�H�9��U1���������/�}6����HJ�H�H�(
#H����HDž�H���c���H��	#H��H���h���H���1�������/��3����HJ�H�H�����H�5��H��������.;��H��1����H����i���H���������D���/��7����HJ�H�H=�� �����Hi��1�H�������fD���/�5����HJ�H�	H����4HDž�1����@���/�!7����HJ�H�H���1�H��H��#�HDž�Džp
�K��@���/�l2����HJ�H�1�H��h
� ������/��4����HJ�H�H�h#H���HDžH�������H�4#H��H�������H��1�������/��2����HJ�H�H�#H��P�HDžPH���C���H��#H��H���H���H��P1��_��H�T$��!���X7H�T$���/�R7����HJ�H�H��#H���
�HDž�
H������H�]#H��H�����H���
1�����f����/��0����HJ�H���H�tu��H��������uHDž�Dž�H���H��H9���|9H�� H9���*9�P�H����P���H���H���������H�����H����P���P�tDž�H�PxH���H���t!H����g��H���H���H��H���H��tH���H�� H����H��1��q�����@���/�5����HJ�H�1�H���p������/��1����HJ�H�H�������;����H��#H���H��#H��HDž�H�����H��H��H��H��[]A\A]�)f����/��/����HJ�H�1�H�������f����/�1����HJ�H�1H��H��[]A\A]����D����n.L�%�#���/�K.����HJ�L�)H��h
1�A�$HDžh
M��tH��#L��I��H����8H��h
L���������/�~3����HJ�H�H�`#H��
�HDž
H�����H�,#H��H�����H��
1��������/�3����HJ�H�1H��H��[]A\A]����D���/��-����HJ�H�H��#H��0
�HDž0
H����H��#H��H����H��0
1����H��#H��@�����/�,4����HJ�H�H�T#H���
�HDž�
H�����H� #H��H�����H���
1����@���/��-����HJ�H�1H��H��[]A\A]���D���/��.����HJ�H�H��#H��H�HDžHH�����H��#H��H����H��H1��������/��+����HJ�H�1�H�������f����/��.����HJ�H�1�H������f����/�),����HJ�H�H��#H����HDž�H���3�H��#H��H���8�H���1��O�����/�1.����HJ�H�H����"H�� 1��������/�M+����HJ�H�H�`#H��(�HDž(H�����H�,#H��H�����H��(1������Ƈ���/��+����HJ�H�H��#H����HDž�H���,�H��#H��H���1�H���1��H��f����/��!����HJ�H�H����!H���1�������/��*����HJ�H�H�X#H��x�HDžxH���[��H�$#H��H�����H��x1�������/�*����HJ�H�H���"H����HDž�H���3�H��"H��H���B�H���1��O��H�T$��H�T$���C/���/��/����HJ�H�H���"H���
�HDž�
H������H�M�"H��H�����H���
1�����f����/�l(����HJ�H�H��"H��8�HDž8H���S�H��"H��H���X�H��81��o�����/��(����HJ�H�H������`
1��?�����/��'����HJ�H�H�������p1����H���"H��@������/�|.����HJ�H�H�D�"H��x
�HDžx
H����H��"H��H�����H��x
1����@���/�f(����HJ�H�9���1��o�����/�q(����HJ�H�H����H��X1��?�����/�t(����HJ�H�1�H�����f����/��"����HJ�H�1�H�������f����/�����HJ�H�1�H������f����/��$����HJ�H�9��x1��������/������HJ�H�H��"H���
�HDž�
H����H���"H��H����H���
1�������/�{"����HJ�H�1�H��H��
w
H�������1�����@���/�L"����HJ�H�1�H������f����/�Y����HJ�H�H��(H���-DžL1��u��fD���/��*����HJ�H�9H�������u�1�f�� �6������/�#����HJ�H�H�x�"H���
�HDž�
H�����H�D�"H��H�����H���
1��������/�����HJ�H�9��
1��������/�[*����HJ�H�H=���H���1��l��DH��"H���H��HDžH��[]A\A]����/�����HJ�H�	H����HDž�1����@���/��"����HJ�H�H�����H��(1��������/������HJ�H�H����}�H9�}H���H9��
-H��1����f����/�U����HJ�H�H��"H��(
�HDž(
H����H���"H��H����H��(
1�������/� ����HJ�H�H�������01��������/�Y"����HJ�H�1�H��8����f����/�M ����HJ�H�1�H������f����/�d����HJ�H�1�H�� 
�h��f����/������HJ�H�1H������H���r�H���-H��1�������/�:'����HJ�H�H���3+H��H�E�ˆ��
H�������	1���������/�����HJ�H�9�0��Džp
1�1�f��X���fD���/� ����HJ�H�H���6�H���1��W������/������HJ�H�9��P1��'������/������HJ�H�1�H��p���f����/������HJ�H�1�H������f����/������HJ�H�9��R1��������/� ����HJ�H�9���Džp
1�ƅX�W������/�g����HJ�H�H�����H���1�������/�:����HJ�H�H=�� ���Hi��1�H�������fD���/������HJ�H�1�H������f����/������HJ�H�9��M1��������/������HJ�H�1ۈ��
H������
���
�F������/�%����HJ�H�H���"H����HDž�H�����H�T�"H��H�����H���1��������/�K����HJ�H�9��`1��������/������HJ�H�H���^�H��1�������/�1����HJ�H�1�H��x�X��f����/�p����HJ�H�1�H��H�(��f����/�y����HJ�H�9��c1��������/��#����HJ�H�H�����$H��01��������/�@#����HJ�H�1�H���������/�
����HJ�H�1�H����h��f�H���"H��@������/��$����HJ�H�1�H���$��D���/�����HJ�H�H�h�"H���
�HDž�
H�����H�4�"H��H�����H���
1�������/�.����HJ�H�H������h1�������/������HJ�H�9��P1��g������/�X����HJ�H�H���"H���
�HDž�
H�����H�t�"H��H�����H���
1�������/������HJ�H�H�����H�� 1��������/������HJ�H�H��"H��@�HDž@H���S�H���"H��H���X�H��@1��o������/�u����HJ�H�9��x1��G�������/������HJ�H�9��d1���������/������HJ�H�H���eH��01��������/������HJ�H�9��e1��������/�����HJ�H�9H�E�ˆ�HH���@���X1��r������/������HJ�H�H=�� ��Hi��1�H����5���fD���/������HJ�H�H���K#H��H�E�ˆ�IH��������Y1��������/������HJ�H�H=������H���1�鬿��D���/�i����HJ�H�1�H���逿������/�m����HJ�H�1�H��h�X���f����/�v����HJ�H�9��@1��'�������/������HJ�H�1�H������f����/�)����HJ�H�1�H��8�Ⱦ��f����/������HJ�H�1�H���阾��f����/������HJ�H�9H�������u��1ۉ�$�W�������/�z����HJ�H�H������H��H1��������/�X����HJ�H�9���1��������/������HJ�H�H��XH����	ƅP1�鸽��f����/�I����HJ�H�H���H���1��������/������HJ�H�H����H���,���ƅ�1��E���fD���/�$����HJ�H�1�H�������f����/�J����HJ�H�H�X�"H��P
�HDžP
H���[��H�$�"H��H������H��P
1�鯼�����/�P����HJ�H�1�H��H
鈼��f����/������HJ�H�9���1��W����H�T$�H�T$���������/������HJ�H�9H�E�ˆ��
H��������
1����@���/�g����HJ�H�H�@�"H��@
�HDž@
H����H��"H��H���D H��@
1۸��a錻��D���/�����HJ�H�1�H���`������/�
����HJ�H�1H��H��[]A\A]�f��fDH�T$�������H�T$���/������HJ�H�9��	1�������/�M����HJ�H�9��t1��Ǻ������/������HJ�L�!M��tA��$@����P��H��hH��tH���v��1ҁ�(H��L����1��u���^�������/�^����HJ�H�H���"H���
�HDž�
H������H�l�"H��H������H���
1��������/������HJ�H�H�������H��1�龹������/������HJ�H�H����
H��(1�釹������/�w
����HJ�H�9H�E�ˆ��
H�������1��B������/�4����HJ�H�H����
H��81��������/������HJ�H�1�H�����f����/�~����HJ�H�9��S1�鷸������/��
����HJ�H�H���H���G��H��"1�H�H����n�������/��
����HJ�H�H�P�H���������t1��0�������/��
����HJ�H�9��v1���������/������HJ�H�9���1��׷������/�a����HJ�H�9��X1�駷������/�P����HJ�H�H���"H����HDž�H�����H���"H��H���<��H���1��?������/�	����HJ�H�1�H��0����f����/�%����HJ�H�9��Q1��������/������HJ�H�1�H��
鸶��f����/������HJ�H�1�ƅXDžp
H��H�w�������/��	����HJ�H�H�����H��1��?������/�T����HJ�H�9��1ۈ��
��K�������/�)
����HJ�H�H��������\1��ߵ��H�Y�"H��@�t�����/�����HJ�H�9��1�飵��@���/������HJ�H�H���"H��
�HDž
H���#��H���"H��H���2��H��
1��?������/������HJ�H�H������H���1��������/�9
����HJ�H�H�����H��01��޴������/��
����HJ�H�9@�@HM� H���H= HO�1�H��H���"�HDž��y���f.����/�����HJ�H�H��PH�������ƅP1��8���f����/������HJ�H�9���1���������/�j����HJ�H�H���6��l1��ϳ�����/������HJ�H�9��I1�駳������/�r
����HJ�H�H���"H���
�HDž�
H�����H���"H��H���<��H���
1��?������/�>����HJ�H�1�H�������f������L�%d�"���/�C����HJ�L�)H��p
1�A�$HDžp
M��tH��"L��I��H���;H��p
L���隲�����/������HJ�H�9��H1��o������/������HJ�H�9��y1��G�������/�{����HJ�H�9��(1���������/�����HJ�H�H=��XH���1��ܱ��D���/������HJ�H�H� �"H��X�HDžXH���[��H���"H��H���`��H��X1��w�������/������HJ�H�H���"H����HDž�H������H���"H��H�����H���1��������/�	����HJ�H�1�H������f����/�*����HJ�H�1�H���鸰��f����/��	����HJ�H�1�H��`鈰��f����/������HJ�H�9��Q1��W�������/�����HJ�H�H���"H����HDž�H������H�d�"H��H������H���1�������/�9����HJ�H�9��T1��ǯ������/�n����HJ�H�1�H���阯��f����/������HJ�H�9��W1��g�������/������HJ�H�H����
��H��1��.�������/�
����HJ�H�A�H=A�@H��~H=A�LM�1�L9�t(H�4�"I�t$�H����H��t	H���1�L��馮���+霮���+钮���+鈮���+�~���H�JH�AH�B�D��H�JH�AH�B���H�JH�AH�B���H�JH�AH�B��H�JH�AH�B���H�JH�AH�B�?�H�JH�AH�B����H�JH�AH�B��H�JH�AH�B���H�JH�AH�B�{���H�JH�AH�B��H�JH�AH�B���H�JH�AH�B�8�H�JH�AH�B���H�JH�AH�B�f���H�JH�AH�B��H�JH�AH�B�D���H��H����������tH���H��1��f��Ѓ�����H���Ps�H���1��
���H�JH�AH�B���H�JH�AH�B��H�JH�AH�B��H�JH�AH�B��H�JH�AH�B�_���H�JH�AH�B��H�JH�AH�B����H�JH�AH�B��H�JH�AH�B��H�JH�AH�B�*�H�JH�AH�B��H�JH�AH�B�x�H�JH�AH�B�w���H�JH�AH�B�f�H�JH�AH�B��H�JH�AH�B�D�H�JH�AH�B��H�JH�AH�B�B�H�JH�AH�B����H�JH�AH�B��H�JH�AH�B����H�JH�AH�B���H�JH�AH�B��H�JH�AH�B���H�JH�AH�B����H�JH�AH�B���H�JH�AH�B�y�H�JH�AH�B�(�H�JH�AH�B�_���H�JH�AH�B��H�JH�AH�B�e�H�JH�AH�B�$�H�JH�AH�B���H�JH�AH�B�2�H�JH�AH�B���H�JH�AH�B��H�JH�AH�B�?���H�JH�AH�B�>�H�JH�AH�B���H�JH�AH�B��H�JH�AH�B�[��H�JH�AH�B��H�JH�AH�B���H�JH�AH�B�`���H�JH�AH�B�g�H�JH�AH�B���H�JH�AH�B�u�H�JH�AH�B��H�JH�AH�B��H�JH�AH�B�"�H�JH�AH�B���H�JH�AH�B����H�JH�AH�B���H�JH�AH�B���H�JH�AH�B���H�JH�AH�B���H�JH�AH�B�;�H�JH�AH�B��H�JH�AH�B��H�JH�AH�B���H�JH�AH�B���H�JH�AH�B���H�JH�AH�B��H�JH�AH�B�d���H�JH�AH�B�S�H�JH�AH�B��H�JH�AH�B���H�JH�AH�B� �H�JH�AH�B��H�JH�AH�B�>�H�JH�AH�B���H�JH�AH�B�|�H�JH�AH�B�;�H�JH�AH�B���H�JH�AH�B���H�JH�AH�B��H�JH�AH�B���H�JH�AH�B�6�H�JH�AH�B���H�JH�AH�B��H�JH�AH�B�3���H�JH�AH�B���H�JH�AH�B��H�JH�AH�B��H�JH�AH�B���H�JH�AH�B�n�H�JH�AH�B�-�H�JH�AH�B���H�JH�AH�B�;��H�JH�AH�B�r�H�JH�AH�B��H�JH�AH�B�X���H�JH�AH�B��H�JH�AH�B��H�JH�AH�B�E�H�JH�AH�B�d���H�JH�AH�B��H�JH�AH�B�b�H�JH�AH�B���H�JH�AH�B�p�H�JH�AH�B�_��H�JH�AH�B���H�JH�AH�B�=��H�JH�AH�B���H�JH�AH�B���L�%v�"H�T$H���A�$ƅ�H�T$HDž��f��H�JH�AH�B���H�JH�AH�B���H�JH�AH�B���H�JH�AH�B�4��H�JH�AH�B����H�JH�AH�B���H�JH�AH�B����H�JH�AH�B���H�JH�AH�B�O��H�JH�AH�B�>��H�JH�AH�B�M��H�JH�AH�B���H�JH�AH�B�{��H�JH�AH�B�b��H�JH�AH�B���H�JH�AH�B�(��H�JH�AH�B�.��H�JH�AH�B���H�JH�AH�B�B���H�JH�AH�B韵��H�JH�AH�B�ӱ��H�JH�AH�B����H�JH�AH�B鋳��H�JH�AH�B���H�JH�AH�B���H�JH�AH�B霨��H�JH�AH�B�Y���H�JH�AH�B���H��H����������tH���H��1����Ѓ�����H���Ps�H���1�齣��H�JH�AH�B����H�JH�AH�B����H�JH�AH�B�(��H�JH�AH�B���H�JH�AH�B���H�JH�AH�B���H�JH�AH�B�}��H�JH�AH�B�l��H�JH�AH�B�k��H�JH�AH�B�
��H�JH�AH�B����H�JH�AH�B���H�JH�AH�B酭��H�JH�AH�B�һ��H�JH�AH�B髩��H�JH�AH�B逾��H�JH�AH�B�|���H�JH�AH�B�f���H�JH�AH�B�ٸ��H�JH�AH�B閺��H�JH�AH�B����H�JH�AH�B�n���L�%��"H�T$H���A�$ƅ�H�T$HDž������1ۉ�X����H�JH�AH�B���H�JH�AH�B鴰��H�JH�AH�B騤��H�JH�AH�B�˩��H�JH�AH�B�^���H�JH�AH�B����H�JH�AH�B�8���H�JH�AH�B鉶��H�JH�AH�B�r��H�JH�AH�B����H�JH�AH�B���H�JH�AH�B����H�JH�AH�B�~���H�JH�AH�B���H�JH�AH�B���H�JH�AH�B���H�JH�AH�B�^���H�JH�AH�B鍸��H�JH�AH�B���H�JH�AH�B�W��H�JH�AH�B�~��H�JH�AH�B���H�JH�AH�B�|��H�JH�AH�B����H�JH�AH�B���H�JH�AH�B��H�JH�AH�B�`��H�JH�AH�B���H�JH�AH�B�>�H�JH�AH�B����H�JH�AH�B�l�����H�JH�AH�B���H�<�"H����H��"H��HDž��H��H���'��H�������H�JH�AH�B�c��H�JH�AH�B�R�H�JH�AH�B�~��@H�ň
���/wC����HJ�H�H�����������H������%��H�U1�H�E����H�JH�AH�B�H�JH�AH�B�&����+���H�JH�AH�B�O��H�JH�AH�B����H�JH�AH�B�+���H�JH�AH�B�l��H�JH�AH�B���ƅ�1�邞��H�JH�AH�B�o�H�3�"1�DžLH��(�R���H���"1�DžHH��@�3���1�1���1�1�����1�1����H�5�H����������H��1��^���H���"/���H��襐���ϝ��Dž41�龝��Dž41�魝��H��"H���1�HDž�鋝������I��H���i���L�%��"H���A�$H���"L��HDž��H���$H���1�L��A�$�3���HDž ����H���"H���1�1�HDž�鈿���+���HDž�t��H�5��H�������tt1�H��1��w3�����H�5{�H��1��+�|���馜��H��"�HDž�HDž鿯��H���"�HDž�HDž����H�5�H��������dH���eH���"H��H��H���(H�����H���r���H�޺H�=����H�����3jH��E1�L�Cj1ɺ���^_�H��膎��H��"H��1�颛��H�������6���L��h
��V����j���L��p
���H��@
������H��
����1���H��H���
���H��餽�������H����:��HDž���H�[�"H�߻����H��1���/���Ԛ���1�1�H���$-��H���~���H��8�S���j1�1�E1�jI��H���V��ZY����Df.���H���H�T$0H�L$8L�D$@L�L$H��t7)D$P)L$`)T$p)�$�)�$�)�$�)�$�)�$�dH�%(H�D$1�H��tIH��$�H���$H�D$H�D$ �D$0H�D$�Ә��H�L$dH3%(uH�����+�����f.�f���AWE1�AVAUI��ATI��1�UH��SH��(H�?dH�%(H�D$1�H�L$L�D$H����7\���Å�u{H���������H�D$H�xH���"�H��H����H�D$H�t$H�PH��vf�>/~u�~/��f�H���ؼ��H�Y�"H�|$�I�,$H�L$dH3%(���H��([]A\A]A^A_Ð� tLH�D$H� �"H�hL�2H��vH�D$�x~tpH��A��H��H��t*H�D$H�t$H�P�w����1��q���f�H���"H�|$���b����H��H�������7����L��萵��H�<(I��A��H��H��t�H��L��L�����J�|=B�D=/�H�D$H�����H�P�H�D$H�p豻�������������AWAVAUATUSH��H��;��H��H�|$H�5ӌH��I��踴��H�H�����L��I�����I�|H���"�H�EH���D�+A��"t}A��'twH�5��H�����I��H����L��H�5b�A��G���H�L$L�H��;/H�}�WI)�H��Mc�L���κ��Lm1�C�D5H��[]A\A]A^A_�H��1�E1�E1��,f�D��E���4@�4H��D�b����L9���H�ED��B�43A8�tl@��tE�w@��\u�B�43�~�@��:v/H��H���"�H�EH���[]A\A]A^A_��H�!H��s�E�wM���n���@��A��A���0E����D��H�5@�H�<+�'���H�LH�D$H�H�H��1�[]A\A]A^A_�fDH��H�H��[]A\A]A^A_�fD�{~������{/�����L��H�����L����H�UL�p�/H�U�DH�}L��`����H�����L�,�������T���fDH�E������1���wHc�H�[��8�������1���wHc�H�;��8�������1���wHc�H���8�����1���wHc�H����8��D�����w�� tHc�H�؉�8��_�1��f.���1���wHc�H����8��_���1���wHc�H����8�����1���wHc�H�k��8�����1���wHc�H�K��8�������1���wHc�H�+��8�� �����USH��8H�dH�%(H�D$(1���1��H��8H����H�L$H�t$1��5����Ń���H�|$���t1fD���@�����H�D$u	�8-��H�xH�|$�@��u�1�H�L$H�t$ �܌����t��uB��u>H�D$H��@1��fDHǃ����1�H�T$(dH3%(��H��8[]�H�T$��u��uH��H��H��@���H�D$H9�~fD�!릐H���[����H��������H)�H9�t�H��H��@1�H���j����`�����1@���A��A��A���t5E��uH��A�L��I9�wD���t;�HI��H9�vȸ�f.��x�H9�w�:1��fD��f�1��f.���U��H�5��SH��H�����xH�ߍP�1���x轉����u��x��t4H��1�[]�fD���	���H�5ȇH��H��1�腉����x��u�H�� 菻��H�ߺ1�Hǃ �A��H��1�[]�f�f.�ATI��UH��SH�GH��H�zH����H�UH�4:H9�sH��H�[�"H�u�H����H�EH�UHЃ�r\I�$H�pH��H���I�L�H�L�H)�I)�؃��r��1҉у�I�<H�<9�r�H�UH�EH�H�]�1�[]A\Ð��uS��t�A�$���tЉ�A�L�f�L�H�U��H���"H�}�H�EH���N������A�$���A�L��L�H�U�w���fDH�i�"H�}���k����AWAVAUATUSH��HdH�%(H�D$81��D$4�H��vH���H��tr�?um�ug��Gu\D�WI��A��I��H�l$4D��D�W��fA	�u�ffD�D$4�PL9�wL�T$4fA��tIH��L��H�������t��H�L$8dH3%(��H��H[]A\A]A^A_�D��ѐ�C�S��f	�A���-H�l$4D�l$I���#f.�f�����|$4fA����L��L��H���Y������q����l$4�UH��L9�w�Hc��3�t3��	�A��f��t
��;t$�Y�u�D$4H��L9��P���H��4�D��	�f����E�|$4H��L9��#���Hc��D;D�;��A��D	�D�D;�|;D	���	�A9$vA�$�E
�t$4H��L9�����Hc��D$4�<3�t3��	�D��F�L��M9������f��tUf������f����A�D$������Hc�Hc�H��I���B�o+BA�D$����Ic�$���������rH�RD�T$(A��H��fD�\$,I���A��$�H�L$I�H�L$L��M��L�d$ I��I��D�ːI9����A��ȃ�<�t9������u]D�T$(�|$4L��L��M��D�\$,L�d$ I��D����D�EI9��������E���?D	��̓������@H�D$H������uD��A�0H��I9��:H�|$L����&�����t��
���Df��u:A�D$���^���Hc�Hc�H��I���B�4+�rA�D$�6���@����fDH�|$�H�5gf�L$/����L$/���T������E1�D�SH�l$4D��D�S	��fA	�ua�f��D$4�HH��L9��u�����
�L$4H��L9��b���Hc�������D	����L9��@����T$4fA��t?H��L��H��������t�����
��������	����������C
D�SH�l$4��fA	�uZ�oD�L$4�QH��L9������T$4�Q
H��L9������Hc�������D	����L9�������T$4fA��tH��L��H���/�����t��F����D$4L9�u4fA����-���A��$�����A�|$��������I�������Df.���ATUSH��H�qH��H�H���v1�H��[]A\��I��H�9H���r���H�EH��t�HEH��L��H��跭��H]H��[]A\Ðf.�AWAVM��AUI��H��ATI��UH��SH��XH��$��T$L�L$H�D$dH�%(H�D$H1�H�D$0�ߦ��H��H=�oH�M�|$A�D$I�D$f��.H���ӥ��H��H��t+H)�H��?w3A�I�OH��H��H��H�l���L�<��f�H���h���I��H��?vIDŽ$���f�E�I�OL��I�D$H��H��L�D$(H�D$ 茬��L�D$(�t$1ҹJ�f�H�PH+T$ @�pf�HA���I��$A�t$IDŽ$IDŽ$ ��H�L$8L�D$@L��I�t$���A�Dž�tcH�-��"H��UH�|$0��H�T$HdH3%(D���HH��X[]A\A]A^A_�fD�H�5�}L��1�A�褁���f�H�T$8L��H�=~1��
���H�-�"H�|$8I��UM����L���f.�H�-�"�1�L���*���H�|$0H�D$���A�Dž��4���H�|$0L��'1��l���A�Dž�����H�|$0H�����+N1��I���A�Dž���H�|$0I��$�'1��%���A�Dž�����A���H�|$0uEI�T$�'1����A�Dž������I��$H�|$0�<1��ֳ��A�Dž�����H�|$0H�T$�''1�赳��A�Dž��^���H�|$0��T1�蔳��A�Dž��=���H�|$0���1��s���A�Dž�����H�T$H�|$0��1��R���A�Dž������H�|$0��)1��1���A�Dž�����H�t$0H��H�|$H���L���I�4$�^����������H��U���A����踮�����AUATI��UH��SH��H��L��(��Hǃ�Hǃ L��H��)����1����H�H���1�H�5m{���肢��H�� H����I��$�L���L���u9H��H��H��PH��P�=���ZY��ug��xH��1�[]A\A]�H��L��H��H��P�����^_��u2��xI��$�t�H�� L���L����}���fDH�� H��豮��H��(Hǃ �j���H��PHǃ(�S���1�HǃPH��[]A\A]Ðf.���AWAVAUATUSH��(H�H�t$(H�|$ dH�%(H��$1�H�H��(H������x�D$0��t6�D$0H��$dH3%(�D$0�OH��([]A\A]A^A_ÐH����d���H��(�h�H��PH����E���H��P�I�L�T$@1��JL��H��HL�T$�H�H��@L���D$@�����0�>�H��@��H���"���tJ��0H�
myH�cyL���HE�H�Vy��w
��H�s�"H��H�5fyH��1���z��H��h��XH��pH�L$��H��hA��H��"�E������XH�
�xH��xL���HE�H��xA��wH��"J��1�H�5�xH���[z��������$(H�l$1ۅ�~ H���"H�����H���;�$(|��D$0�6���@H��P����H���1�I��H�5SxH���{��1�A��������D$0��fDH���H��1�E1�H�5Hx�y���T$@1�H��H�5Fx�y��H�D$D�L$DH�hE����H��$�H�\$H�D$�D���7�D$DA��H��A9�}6�E��u��M�U1�H�5�wD�MD�EH�|$�!y����D��$(H�\$E��~BH�D$E1�H����K�dH�5�wH��I��H�T�1���x��D9�$(؋D$DH������H�L$���>H�D$E1�E1�H�\$8�D$L�`��f��f�D$6�<�f��
u�L$6�
�Ao$f�0f�H@�D$I���D$I��;D$D�1۸A�|$�A�LD�H�g�"�þ0����H��H����H�F�"H�|$�H�EH��tnH�'�"L����H�E H���pM��LD�M��tI�n(���E�MD�}f���%���A�$�T$6�f�8�Hf�P�)����H�ѯ"H��L���,����$(H�l$1ۅ�~ H���"H�����H���;�$(|��D$0�O���DL�l$H��u1�1۾�L�}A�vL��M�m
�ݝ���9L��L��H�
R�1�H��u轝��L���5���I)�IŃ�tJH��I��E�OE�H��u�L��L��H�
;}1�H�wu�y���L����I)�I��f�H�T$H�|$H�5�1��hv������H���"H�}�H���"H������f�H�\$8H���t��H���p�����H���L��H�����H���H��t
�H���p����$(L�d$1ۅ�~!H�,�"I��$���I���;�$(|�H��tH�D$ H���H�D$(H�(���@L���P
���8�����$(���s����:����_���f.�DUH��SH��H���"H�?�H�}�H�}�H�}�H�} �H�}(�H�}0�H�}8�H�}@�H�}HH�H��[]��f�f.�UH��SH��H��H������oH��E�oKM�oS U �o[0]0�oc@e@H�CPH�EPH��"H�H��[]��AUH�5K�I��ATUSH���W����?H��H�hID�H������/H��I�����H��H��tM��t,L9�L��HF�H��[]A\A]�DL��萙��I�\M��u�L���~���M�d���S������t1�[É������u���>�[������USH��8dH�%(H�D$(1��D$ H�H�$H�	

H�D$H�H�D$H�H�D$1�H��t"H���ۘ��H��H��H���m���H9������@H�T$(dH3%(uH��8[]��5���DSH������H�{H�1�H��H�CPH)��KX���H�[���AVAUI��ATUH��S@��u�T���H��A�}@��twA�1�E1��3f.�@��?ED����H�S��HE�I��A�}H��@��t(L9�w�@�� u�H�CH��E��HE�I��A�}@��u�H��[]A\A]A^�1�H��[]A\A]A^�f���AVAUATI��UH��SH���uH�����I���;@��tZA�E1��6f�@�� tR@��?ED������uY�H���E�H���;@��tI9�v�H��@�}H���;@��u�[�E]A\A]A^�DE��t3�%2�E0H��f�E���H��H�q1��H���s���뒐�E+H���fD��H���������AWAVE1�AUI��ATI��UH��SH���I@C�|4/M�~t|�:�B���tV�:H��t���H���B�D5M9�s7C�<M����t+<:t���H������u�C�<v��+uM�~�fD1�H��[]A\A]A^A_���H��t�B�D5H��[]A\A]A^A_�1��@f.�AWAVAUATUSH��h�T$dH�%(H�D$X1�H����I��I��躕��H�XH���"H�<�H��I�D$HH���H�L�|$P�L���L����������E�D$���D$L�-X��LD�A�M��<?wH���H���WH���DI��A�<?w�H��s�M��M)��*L��L��H��L�D$�_���L�D$B��D$t	M���NL���ʔ��L��H��H��H�D$�'���H�L$L�=��"L���D
A�H��I�$H������H��I���@���A�Ņ����?H��蘓��H����H��H��H�D$HD��#�r���H�D$H��tH�H�H�L$�}t�D$�wH��A�I�D$0H���sH���UH���������@H��H�D$0H�D$8H�D$@��H���&H�hM��tA���H�T$@�HE�I��H��H�L$8H�T$0H��H)�M��H�L$(H��H�T$ �~�H�|$0����H��t�D$ �CI�|$H�D$8H��tI�D$H�D$@H��tI�D$H�L$(H�T$ 1�H��H�5�m���������:H���-���H��H��t�C�����H���ޒ���}[H����H�5-�H���b���H9���H��A�I�D$ H���H�|$tH�|$A�I�D$8H����H�|$tH�D$�8tH��A�I�D$@H����H�R�"I�|$H�I�D$H�v�D$0<]��<%u_Hc|$8H�L$(1�H�5slH�T$ H��H�������u7�|$0]u0�D$8�D�H�H�\H���
�����������<:���DA�H�L$XdH3%(D����H��h[]A\A]A^A_�@M��A�UI����������!�%����t��H�5�L�������D�I�ULD��I��M)�蝬�����5O�t.�EM���k���A�>/�a����PI����A�>/���Ѓ�u��>�����������H�t$@H�{�
�C���I��H�@�H=����H�D$@�8���H�\$IL��H��R��H��1��.���M�t$PH��A�I�D$(H�������DA����D�������L����H��t2L��M���������	����z���f�H�D$H�����A��D$u��T���fDI�vH������L�=��"H�=CA�I�$H���f����E</t)��߃�A<w�E<:��<|��I�<$1��5����E</����߃�A<w��E<:t<|u��E</��<\����������u�����H��H�=�i����L�-���������H��H�=�i�ݏ��L�-�����l����H��H�=fi躏��L�-�����I����H��H�=Ii藏��L�-p����&����H��H�=,i�t���L�-���������H��H�=i�Q���L�-@���H���LD������H���(���H�������H��H��H�D$ 违��H�T$ ��tWI�T$0�i���A�H�W�"�H�|$8�H�|$@��x���H�}H�5�hH�����H9��t����P����E���H��"H�����A��A��)����EH�]</tC�ƒ�߃�A��w�U��:t~��|ty�
H��H�=�g�P��������EH�]</uo�CH�����Hc\$8H����H�-��"1��UH�|$8�UH�|$@�UH�D$8H��H�D$(H�D$0H�D$ �-����U��/@�ƀ�\��@��t���i���H���G����
H��H�=Gg豍�����a����<���蟘��Df.���AWAVAUATUH��SH��H�̟"�H���qH�5&�H��I���7����]L�`H��MD�/��?L���ҋ��H��t��]�/L��?���З��H��t��]L��/藋��I��H��tI����.�H���A�D��H�����L��H���,���H�|I��H��"�H��H��t1H��L��L���u����J�|5</tM��tTA�<$uMD��H���"�H�Ӟ"L��H��H��[]A\A]A^A_�@���I��H���P����X���f.�<?t��/J�|5�f��}/��/L��詊���?L��H��虊��H����H����H9����H��A����D�EH��</t}<.���{/��1����{.u�{/u��H���E�;.t�M��u���@������������/L������H��u�A�$A��u����H���}.uN�E�p���DH���A����8���f.�A�$H�]E1��-����1�����H���
���H�������H�%�"��XH���fD��H��tSH���^�H��"H��[H���fD����U�H���XSH��H�œ"�H��H���
H�}H��tH���"�H�H����H�}H��tH���"�H�CH����H�}H��tH�o�"�H�CH����H�}H��tH�P�"�H�CH����H�} H��tH�1�"�H�C H��t~H�}(H��tH��"�H�C(H��tcH�}0H��tH���"�H�C0H��tHH�}8H��tH��"�H�C8H��t-H�}@H��tH�ś"�H�C@H��tH�EPH�CPH��H��[]�H��1��&���H��H��[]�f�f.���AWAVAUATUSH��HdH�%(H�D$81�H���uH��H���y�ȉ�H���A��A����	����H�5cI��Hc�H�>��DH�8D��@H���H���"�H�EH������u���+u� H�����u�1�E��tFH�uH�L$ L�D$(1�A�1��!-��H���"H�}�D$��D$����H�T$ H�UH�\$8dH3%(�H��H[]A\A]A^A_�DH�@1۸�@���H�7L�wL�o(H����H�=��L$�|����L$����I�L$@H��aH���UI�t$0H�=�a1����H����H�E���\���@H�?1�E1�
���fDH�1۸����H�1۸���H�1۸
���H� 1۸�p���H�_(H����H�?�L$H��t�����L$H��tI�t$PH9px�H�;�"H�H���H�EH��t21����H��"H�0H�H������H�EH���-���f���n���fD��^���fD��N���fDH�E��6���fDH� ���������tkH�?H��tc����H��tYH�HxH�\$1H�LG1��H�����H�^�"H�����H�=�P��H��I�D$0H���D���H��+������������I�|$ �p���M�<$M���IL���L$�d��M��L$I����M��t(I�D$PI9@xu���LE�A����LD�I�|$@H���H�9_H�D$I�D$8H�����8��H�5_H�t$I�t$0H���"�>/H�
PH��eHE�H�T$L�riM����I�T$M�\$ M�D$H����M����L�
�^H�
:iM���@L�%�_H��WH�=�^�t$P1��t$0VL���t$HAUARASATAV�Պ��H��`���@H�eH�D$�=���L�=���
��������%���H�=�dH�|$���L�%
_L�
^M����H�
�hM����H��d�V���L�-�dM������H�
�dH�5�NH�L$���L�5dL�%�^M��H�
AhM������M��L�������tMM���A���I�HxL�l$1�1�H��DL��L�D$�t���L�D$����L�dL�%A^L�����M��������H�
�cH�����M��t!L��cL������L�5�cM��L���n���L�5�cM��M�����
����	������AWAVAUATUSH��(dH�%(H�D$1�H���EH��I��H��t*A�����	��H�(]��Hc�H�>�����	��H�
,]��Hc�H�>��@A���L$
D���D$���D$H�G8H�$�����L�����H�|@H���"�H��H���-�|$
A�?�/@��t&�+D@�� D�I��H��@�x�A�?@��u��H�J�"H��I��H���~�8�D$
�D$@���)D�d$I��M���WfDA�M��/����=����+���|$
���+�I��A�I��A�}@�����$����t�A�M���=DD���H�G@�D$H�$�D$�D$
����@1��L��������1�H�T$D��H���������wH�|$L���Z�L�%K�"H�|$H��A�$H����蹀��I��H����D��H��H���/��D$���oH��A�$H��L�����D$DH�\$dH3%(�`H��([]A\A]A^A_�DA����H�$E1��D$H���"L���H��H���)�I���f.�I�������A�|$<%u��C������A�|$��H�G�D$H�$�D$�D$
�t���@H�G�D$H�$�D$�D$
�T���@H�G �D$H�$�D$�D$
�4���@�
1�L���A���H�P�I�ŸH�������H�C(�D$H�$����fDH�G0�D$H�$�D$�D$
����@H�G�D$H�$�D$�D$
���@�|$�����L��H�zX1�I���I������A�}@���r����|$A��2L�%+�"�|$�L�{8E1�M���L���~��I��H����A�D�H��E1�A�LjD$��}��A��&A��M�I�|H�Ր"�I��H���GH�s8H��軅���|$&tC�7&H��K�</装��H��A�$H�$H�;A�$L�;1�����E������E1�������|$�L�%N�"L�4$I�>A�$I�.M��t9L�kP1��@����H�oH��H��tH��"�H�E1���������fDE1��.����A�|$������b���A�|$�"�������%x��A�L$I��H���A�T$�A�T$�H���A�D$�A�$���DH��A�$��w�����D$@�������L�%H�"����L�{8L�%5�"M�����������H�$H�;A�$H�+1������E�L�%��"L��A�$����D�k|��H��H���f���D��H��L������D$���H��H���Z��D$����H�oH����H�oH��s���H�o8H�8�c��������f�H��H�?�E���DH�o@H�@�3���H�o(H�(�#���H�o0H�0����H�o H� ����L���k��H���L���������H�$H�;A�$H�+1���A�|$�@���������h���H�č"H�������H����H���y���D$���L����H��A�$L���x���D$��������	�}���D��H��tH��u"H��t=H��1�H��H�=�U�)���f�H��1�H��H��H�=�U�	���f�H��tH��1�H�=fU���f.�1��f.����H��tJ�?tEUH�58USH��H���8���H��H����H9��� �tH���y��H�D�H9���H��[]�����AWAVAUM��ATI��UH��SH��8I�H�H�|$H��H�T$�Uy��H��H��������?H9���H�|$L�<�1y��I�OH�D$(H�H�D$H��H��"H�L$ �I��H��twH��H��H���i��A�H��H��I�|�T��H�|$ C�D>H�T$(H�t$L��7��H�|$M��L��H�T$L������L����H���"�H��8��[]A\A]A^A_û��f���AUI��H��ATI��UH��SH��H���^x��H��u1H�:�"H�=[B�H�EH��t@I�$H��1�[]A\A]�H��M��H��H��L��[H��]A\A]�j���f.�I�$H���[]A\A]�����W������ATI��UH��SH���w��H�EI�$H��t�;=u[1�]A\�f�L��H��H��[]A\�^���@f.���AWI��AVM��AUM��ATI��H��UH��SH��H��8dH�%(H�D$(1��4w��H���;H��H�D$�w��H�T$H�$H���q��H�=Fu"H�މ��<r��H�$H��H���$H����H�t$H���s���D$�L$L���T$H�=%RP�D$&P�D$-P�D$4P�D$;P�D$BP�D$IP�D$PP�D$WP�D$^P�D$eP�D$lPD�L$s1�D�D$r�G}��H��`H��H����L��M��L��1�H��褜��H�߉�H�0�"�H�t$(dH34%(��ucH��8[]A\A]A^A_�DH���p��H��H�߉��r������fDH���xp��H�=!t"H�މ��q��H��H��������L���f.�f���AUL�n@ATL�%�OUH��SH��H����MH��L��1�H��H����v��I9�u�H��[]A\A]�f���AUL�n ATL�%^OUH��SH��H����MH��L��1�H��H���v��I9�u�H��[]A\A]�f�AWI��AVE��AUE��ATI��UH��SH���^q��H��tiL��H����t��H��D8�t2��t.H�uJ�T ��@��tH��H9�tH���N�H���D8�u��EH���[]A\A]A^A_�f�H��1�[]A\A]A^A_�Df.�AWI��AVAUATI��UH��SL��H��H��$�H�L$A�I8L�$H�D$H��$�L��$�L��$�H�D$ dH�%(H��$�1�H�D$0H�D$8��uA�A8H�{���{<H�SH����L��H�=uO1��z��I��H���JL�d$@H��L��A��H���"L���H��$�L��H�D$H��A�ՋC�ƒ���A���8H�$H�t$H�=O1��!z��H��H����H�{(H��tH�5�NH�D$�[���H�L$���~L��$PH��H�L$L��A��H�L$H��"H��L��L��A��L�K(M����H���K8H�1�AWL�CH�=mNH�t$�y��I��XZM���HL��L��A��H���"L�t$`L���L��L��A�Հ{<tH��$�E���;H���f�H���H����t<"t<\u�H���H����u�H�#�"�I��H�����U��u&�8�H���U���UH�Ȅ��H�H��"t��\u�H�P�\H��H����f.�L�$H�M��L��H�=�N1��x��H��H���"L��H��t9H�S H���$H�=FM1�H���Sx��H��I��H�^�"�M�����H��$�dH34%(�H�Ĩ[]A\A]A^A_�f.�H�KH�H�=�L1�H�t$��w��I��H��t�H��L��A��H��"L���H�t$L��A�����f�H��D�H�C(H�SH����H��L��H�=FMAVP�C8L�KH�PL�D$ 1��lw��H�{(H�� H�5�8H��赋���������C8����@I��H�S0H���0H�="L1�L���w��L��H��H�*�"�H�������{<�
H�D$H��H�(�
p��H�t$ H�1����fDH�=�K1���v��I��H�������H�D$@L��H��H�D$A��H���"L��L��$�H�D$L��H��A�Հ{<H�S��L������L��$PH�L$H�5�PL��A��L��L��A��H�L$L��1�H�=KH��H�L$(�/v��H�L$(H�D$H�6�"H��H�D$H������H�������{<L�������H�=�J1�H����u��H��H��H��"�H�������H������f�L��$P�!L��L�T$L���������h���L�T$L���
H����������!�%����t�L�D$8L������D�H�JHD�H�L$0��@�L��H��L)��Ɣ��������H�D$0H�C���H�H�t$L��1�H�=�I�u��I����������y��H���R�������<=t0��t,L�����<=tL9�tH��H���F����u��1��?=uh�G<"��H�wE1҄�tFH��L���E1��H��<"ti~7<,tS<\uWH�WE��tf�E1�H�����tH��I9�u���H�1�f�<
t<
u H����H�1���E��t�H�W�f�E��u�E��u�H�W��\A��DH�w�GA��E���f.�����fD��AWAVI��AUATUSH��H��H��$�H�|$H��H�T$L�D$L�L$ H�D$(dH�%(H��$�1�Ƅ$�H�00000001H�D$zH�AUTHENTIH��$�DŽ$�CATEƄ$��D$uauth�D$yH�D$`H�D$h�.l��H��t�;=u4�=H��$�dH3%(�	H�ĸ[]A\A]A^A_�fDH�l$hH�t$`H��H��軏����u�H�|$`H��t�H��$`A�"�@H��H�5�GH�D$0������^H�|$`A�"H��$ ��H��H�5�GH�D$8�b������JH�|$`A�,H��$��@H��H�5VG�3�������H�|$`A�"L��$��@L��H�52G����H�|$`��H��}"���H�޹	H�=G��À��ۅ������H��}"L��H�D$h�I��H����H��H�5�FH����~��I��H����L�-�2� @��H��H�5�F1��~��I��H��tTL��L��詅����u�H�5
FL��薅���������f�H�1}"H�|$`��=�	����H�}"L�������H��$0H�|$�!H��H�D$@���������H�=�g"��B��H��H����L�|$L���i��H���Gd��L��H�߉��B��H�ߺH�5�N��B��H�|$8�H����������!�%����t��L�|$8�����D�H�WHD����H��L)���c��L��H��L��$����B���H�56NH���wB��L���i��H���c��H��L�����ZB��H��L��L�|$H�jB��H�=g"��A��H��H�����L��H���"B��H�ߺH�5�M�B��H�|$0�H����������!�%����t��L�t$0�����D�H�WHD����H��L)��c��L��H�߉��A��H�ߺH�5cM�A��H�|$@�H����������!�%����t��L�t$@L��$�H�-6B�����D�H�WHD����H��L)��b��L��H�߉��EA��L�t$HH��L��L���RA��H��$�H�D$PI��f�A�L��H��1�I��I���2i��M9�u�H�t$8H�|$1��,�H�D$H���^H�=�e"�r@��H��H���6L��$�L�-xAL���_g��H����a��L��H��L��$����@���H�5=LH���~@��L�|$L���!g��H���a��L��H����\@��L�t$HH��L��L���i@��H��$�H�D$XI��f��ML��L��1�I��H���Bh��M9�u�H�=�d"�?��H��H���eH�t$P� H����?��H��H�5�K��?��H�|$0�H����������!�%����t��L�t$0�����D�H�WHD����H��L)���`��L��H��L�t$z���w?���H�5"KH���c?��L��L�t$P�f��H���`��L��H����A?��H��H�5�J�-?��H�|$@�H����������!�%����t��L�t$@L�l$uL��$�����M�g D�H�WHD����H��L)��`��L��H��M������>���H�5qJH���>��L���Ze��H����_��H��L����>��H��H�5=J�>��H�t$XH�� �o>��H�t$HH��H�-!?�{>���L��H��1�I��H���kf��M9�u�H��H�=B1�AUAWL�t$0AVL�L$pL�D$`H�L$PH�T$XH�t$0�k��H�� L��H��H��w"�H��thL�D$(H�L$ 1�H��H�|$�ߊ��H�߉D$H�iw"��D$�G���fDH�5�@L������ڃ���E����f�H�1w"H�|$�f������fDƄ$ ���H�w"L�������o��f.���E�QE��xSH��A��~9�A���5v"H��P�t$(�t$(�S�H�� H���f.��5zu"H�3��А��f.���USH��H��H�-dv"H�?�UH�{H��UH�{H�C�UH�{ H�C�UH�{(H�C �UH�C(H�{0�UH�C0�C8�C�C�C<H��[]����AWAVAUI��ATUSH��XH�|$(H��L�t$(L��$@H�\$@dH�%(H��$H1�H�H�D$ ����H�D$8�D$H�|$(�D$H�D$D�����L��L��H���W�ń��zH�5�>H���}�����H�5y>H���w}������H�5h>H���`}������H�5W>H���I}������H�5G>H���2}�����
H�54>H���}�����fH��t"I�}0�H��t"L��I�E0H���[H�5>L����|������H�5�+L����|������H�5�=L���|������H�5�=L���|�����H�5�=L���|�����A�E�&H�!t"I�}�H�t"L��I�EH����H�|$(���u(�y���f�H�D$(H�xH�|$(�@���V������>�����u�H�|$(�?,�<���H��H�|$(����3�����������uH�|$(����f�H�D$(H�xH�|$(���DH�is"I�}�H�Ls"L��I�EH���H�����w�H�52<L���q{��������A�EA�E8�
����H�s"I�} �H��r"L��I�E H�������H��r"L��H�D$8�H�D$H���k���H�T$H�5�;H����s��I��H��u)�Y�@�l$H�T$H�5�;1��s��I��H��t2H�5�'L���z����u�H�5
;L���z�����D$EňD$�H�-7r"H�|$�U�|$���|$����I�}(�UH�=�:H��q"�I�E(H��������A�E����H�|$ u3I�}���=H��$HdH3%(��H��X[]A\A]A^A_�A�}�=u���A�E���A�E�v���I�}(�UH�=�&�Z���H�5�:H���y�����L���H�5H:L���y�����5���A�E<�+���A�E����H�5�:L���Yy����t
A�E����=�-����i��f�����fD��AWAVAUI��ATE��USH��xH��$�H��$�dH�%(H�D$h1�L��$�L��$�H�D$ H�D$(H�{H�D$0H�D$8H�D$@H�D$HH�D$PH�D$X�}H��t-�E��t%<=�H�D$(H����H�D$HH�D$ H�D$@A��H�KH�t$jPL��p"H��E1�L��H�l$`UH�D$XP�҉��H�� H�|$H��H��o"��ف�����H�t$XH��t
H�T$PH��u\E��u'H�T$hdH3%(����H��x[]A\A]A^A_�f�H�ao"�L$H�=�=��L$H��I�u���f�L��M��L��袂��H�|$H��D$�]���L$�H�T$ H�t$(H��������������`����H�|$Xt
H�|$H���K]���L$��H�5:L���&����8�%���@1�L��H���K�H���R���H��H�D$8H�D$�[��H�KH�t$0H�D$0H�Sm"H�|$H��^f��L�D$���u2H�cn"L�������H�5Y9L��1���5���=���D�L$��H�5�8L���{���L�D$H�n"L����i����f���f.���AWAVAUATI��USH��H�L$L�D$dH�%(H��$�1���D$TH�D$XH�D$`H�D$pH�D$xHDŽ$�HDŽ$�H�D$h��t<=uCH�5�8L��1��=�4��H��$�dH3%(���+H�ĸ[]A\A]A^A_�f�H��H��H�t$`H�T$X�}���Å�u�H�|$`t�H�T$hH�\$LH��1�jH�uE1�E1�jH��j�eX��H�� �����L��$�H�t$h1�H��L����o�������H�D$`H�uE1�H��L��$�L�L$TH�D$xH�D$XL��H�D$pH�D$pH��H�D$ �i�������H��$��WH��$�L��D�0H�D$PH��H�D$�Z��H�(l"H�|$`�A��A����H��$��T$,H�D$0H��H�D$8H��H��k"��T$,H��I�����H��$�H�xH��$��:_��H�D$0H�|$L��A�D�Z��H�D$8H��1�L��$�1�E1�H��H�D$xH�uAWL�D$0��a��ZY�����L�D$H�L$L��H��$�H��$��~��H�|$L�����Y��H�5k"L��������L$L��H�5�6L���f���H�k"H�|$`����H�5�6L��1��2��H�|$PL��=�=Y��H��j"H�|$`��m���f.��L$L��H�5i5뎐�L$L��H�5u5L������f��L$L��H�5k5L���Ƅ��H�gj"L�������DH�5A6L��1��=��1��H�|$L���X�������H�|$L���~X������b��@��SH��H��dH�%(H�D$1�H�?tH�|$1�H���f��H�H�{tH�sH�|$�Cj��H�CH�D$dH3%(uH��[��0b������fD��AWAVAUATI��USH��8dH�%(H�D$(1��H�D$H�D$ ��t<=u>H�5g5L��1��=��0��H�L$(dH3%(����H��8[]A\A]A^A_�H��H��H�t$H�T$ ��y���Å�u�H�|$H��t�H�|$ �EvLH�NTLMSSPH9u=�G9�6u2H���	��L�l$�EI�UH�U��u:H��h"L���Y����H��h"�=�H�5�4L��1��0���4���@L�|$ E1�I��/w
D�u�@I�}(���I�},�‰T$����T$f��tL��I9�vLD��B�40I9�r?��/v:H�h"D��H�L$L���H�EH��tVH�L$L��H��I�t
�S[��L�l$�H�5U4L��1��=�f/��H��g"H�|$�H�54L��1��G/���j�������&`��fD��AUATUH��SL��H��I�ydH�%(H��$1�H�Sg"L��$@L��$H�H�CE1�E1��CH�a51�H��H��H�4�H��PP1�jjjjjjjjjjjjjjjjjjh�jj�_U��� M��L��H��H��H���"z��H��$dH3%(uH��[]A\A]��,_��f�f.���AWf�AVAUATI��UH���\SH��H�<$H��$�H�T$L�D$(L�L$0dH�%(H��$�1��A�~�D$\H�D$`�D$ 1��H�)�$��H���9R��H���pH��L�pH)�H�L$L��H��$���R���H��I��I��H�D$�ia�����A�UI����������!�%����t������D�I�ULD��@�I��I)�A�D$�����tRH�<$H�t$h��ߥ�������H��$�dH3%(�8H��[]A\A]A^A_��H��$�H�t$H�<$H��H�L$8袐����u�H�L$8H��$�M�D$H��L��H�D$@H��L�D$H����H�t$H�<$H��$�H��H�D$8趎�����^���L�D$HH�|$8H��$�L���ԍ�����H��$�H�<$�H��H�D$@���������L��$�H�t$H�<$L��L�D$H��������L�D$HH�L$H��L��H��$�H�t$8I��L���$����������H�t$@H�|$8I�T$H��$�耓���������H�t$@H�|$8H�L$`L��L�D$\������t���H�D$`H�D$@�DH�<$H�5�01�E1��;+������fD�/H���O��H���z���H�D$I��H�-�1�q���f�H�D$hI�T$f���$�H��$�H��$�H��$�H��$�H��H�T$pH�T$@H�D$8��|�������H��$�H�t$H�<$H��H�L$H胎���������H�L$HH��$�H�t$@H��H�D$H�����H�D$H�D$@�D$ ���D$HtK�?H�d$M�H�D$D�T$\H��M��A��H�t$H�L$I��E�zXA�D$L�L��L�1��A���L$(D��A��E���͉L$ ��AQA����A��E��AQE1�QPD��E����jjjjjjjjjjP��@����APE1�ASWASWjjPV��$�Q��$�PQP��jjPA��PH��$����@�ƾRPRH�	/P1�jjjjX��$`QARQ1�ARjjjj@jjjjjH��$��O��H�İH�H=��3�T$\L�<I����H�|$8H�t$@H��T��H�-a"H�|$`�H�D$L�HD$L�H=���H�D$8H�t$J�<8I�J�8L|$N�8�D$H����H��t1���T�DG�GH��H9�u�H�t$1�H��tfDA��DA�AH��H9�u�L��M�pH��H�tf��H��A�I��A�F�H9�u�L�D$0H�L$(K�T=H�t$8H�<$�s��I�|$�$H�D`"��$I�D$A�D$���fo�$�H��$���H���H�����fDH�T$H��L�D$ H�L$�YS��H�L$H�T$L��H���DS��A��D��L�D$ sVA�������<����A����-����D�fA�D�����DH�<$1�H�5}-��(����$���@H��$�I�xH��I�D��H�T�I�T�I)�L)�C�LH����H�����H�<$1�H�5�,�~(��������A��D�A�D�����W��f�f.���H��^"SH��H��H�C�C[�f.���H��ATM����H��PUH��A��SD	�H��tT��tTL��H�=�,1��gR��H��H��tQH���wK��L�D$ L��H��H��H���q��H�߉�H�M^"���[]A\�@��u$H�=�,1��R��H��H��u��[��]A\�f�L��H�=2,1���Q��H���f.�����fD��AUI��I��ATI��UL��SH��H��H�VH�v dH�%(H�D$1��q���Ņ�uXI�<$t)I�}t"H�L$dH3%(��uXH��[]A\A]�DH�sH�|$�	��K��H�C H�C�H�sH�|$�K��H�C H�C���U����SH��H��dH�%(H�D$1�H�tH�w1�H�|$�-Y��H�CH�{ tH�sH�|$�@K��H�C H�CH�{tH�sH�|$�;]��H�C�CH�D$dH3%(uH��[��!U�����AVAUI��ATUL��SH��`dH�%(H�D$X1�H��$�H�D$H�D$H�D$ H�{H�D$(H�D$0H�D$8H�D$@H�D$Ht�C����H�{��H��t�E����H�t$H�KjH�SjL��\"E1�L��L�t$PAVH�D$HP�u��H�� H�|$8��H��["A���kH�D$8A������H�|$H��H�|$@��H�{tH�{ tH�sH�|$�I��foD$@CH�T$XdH3%(D����H��`[]A\A]A^�f.�<=udH�D$H���H�D$8H�D$H�D$0����f.�H�|$Ht
H�|$L���;I���L$��H�5&L���u��A��m���H�T$H�t$H���k��A�ą�t��L���f.�H�|$L��A���H���*����L��1�H������I��H��t�H��H�D$(�NG��H�KH�t$ H�D$ H�Y"H�|$H��R�����uMH�Z"L������@H��A�C�������DH�5�(L��1�A�=�!�����@�L$��H�5f$L���t��H��Y"L��A���^����7R�������H�/��Hc�H�>��@H�O(��H��(��H�>(��H�B(��H�G(��H�R(��H�T(��H�Z(��H�a(��H��'������fD��H�W��+@H�BHD�f���AUI��ATI��UH��SH��dH�%(H�D$1��D$�LJ��H����H��1�H��H���'[��L��L��H���W��H�T$H��H����@��H���AP��H�L$dH3%(u
H��1�[]A\A]��P��Df.���AUI��ATI��UH��SH��dH�%(H�D$1��D$�I��H���B��1�H��H���Z��L��L��H���	W��H�T$H��H���9@��H���O��H�L$dH3%(u
H��1�[]A\A]��P��Df.���ATUS�C��H��tLH��E1��fDH��I���T��H��H��t#H����B��L��H���C��H��H��u�L����P��H��[]A\�1���@f.���ATI��USH��H��H��dH�%(H��$1��J��H����H���H��H��t�@��H����WC��Hǃ�H���$E����t0H���1�H��$dH3%(urH��[]A\��H��H���C����P���H��H���P��1�H��L��H�5-H������B�f�1�L��H�5�%H���l���5�{����N��f.����'O�����H���H��t0SH��H����?��H����hB��1�Hǃ�[�EC��D1��9C��f���AWAVI��AUM��ATI��U��SH��H��dH�%(H��$1��<��Hcź���L��H�@H�����I�,�HF�H���H�x��L��Hc�H��~/H��$dH3%(H����H��[]A\A]A^A_�H�����H�z�.X���Ń�'��}2��t��IO��I��H��x5H��u01�����t���f�A�EQH������m����;��D�8M��u5������I�<$H��D��1�H�5e+H�����A�E8�0�����L��H��L��H���N��H���f���AWAVAUA��ATUSH��XdH�%(H��$H1�H��$�H����H�(H����H��`�}A�����q��I��M�ǁ�����H�
Y#��tH�
Z#|H�
I#������A���@��E�����@ ���A���x~>A����L�
[$A����@��C��H�=�(@��Hc�H�>��L�
�#H�=�#A��tDL�
�"A���[A�F��L�L$H�L$‰׉T$�R���T$H�L$L�L$H��H�\$@E��R�WH��	H��L��LD�H��#1��A��ZY=�wHc�H��1�H���m��D1�A��L��L��@��H����M��H��$HdH3%(�jH��X[]A\A]A^A_�@��t���uW�1�H�
�!1�L�
F ��H�=�"A���7���A����������}@��wH��(@��Hc�H�>��f�L�D$ ��H��"1�L�Ǿ L�D$�.@��L�D$L��������L�
^!�f���L�
��r���f�L�
z"�4���@���(���H�=/!����H�=6!����H�='"�r���1�H�=!�d����H�=�!�S����H�=H!�B����H�='!�1����H�=�!� ����H�=h!�����H�=�!����CH�=� ����H�=� �����H�=� �����H�=� ����H�=� ����H�=� ����
H�=� ����H�=� �v����H�=� �e����H�=� �T����H�=� �C���1�H�=� �5���DH�
��c���@L�
� ����gH�����UH��H��SH��H���8������v �{;��H���cK��H��H��H��[]��DH���(K��H��t�H���F���t�H���[]Ðf.���ATUH��H��SH���8������v"�
;��H����M��H��H��[]A\��f�H���J��I��H��t�H���HF���t�L��H��H����M��[�]A\�f�f.���O"��x�DH��E1�1�1�1�1��A����O"H��Ð��O"��x�DH��E1�1�1�1�1��lA���vO"H��Ð��AVAUI��ATI��USH�� dH�%(H�D$1��u����������x>�Ņ�x8��L���jP��H��H��t&��L��L�0�UP����x��A���
��u,1�H�L$dH3%(��H�� []A\A]A^�f�H��XH��H�D$H)�H��H����W1�H�t$��H���-X��u%1�L9l$t6H�5�$L���1��H�t$H����Z1҉�L��H���E[�¸��uJH�߉D$�W�D$�K���D1Ƀ�\���H�	Hʃ�������A��K����f�1�H�5ZL���o��1���E��fDAVA��H�SAUI��ATM��USH�� H��@dH�%(H�D$81�H�l$H���?;��M��tL��H���_=��1�H�L$�H����4��H�L$H��D��I��L���`1�1ҾH����4��H�D$8dH3%(u
H��@[]A\A]A^���D��f���UH��SHc�H�[H��H��ǠH�xH��t�6F���¸��u!H�[H����H�x1�H��t
�F������H��[]���AWAVAUATI��UHc�SH��(L�/dH�%(H��$1�H�DmH��A��pH���H�x��1�H��t{H�DmM�<ĺ����A���X�'���T&���Å�~�8H�5�L��1����H�DmA��`M�4�I���H�x�E�p9��H�DmI��ĠH�@H��$dH3%(����H��([]A\A]A^A_��+2��L�t$�I���L��H�x�~B��I�����H�z�N���ǃ���~��ujH�5L��1�1��7���;���f�1ۅ��/����|$�D��I���1��M���|$�����H��I�<$��H�5�!1�1�������1ۃ�������;1��H�5�!L������1��s�����fDH�5gL��1�����e���f��F��������tu��tHI���H�x�����K@��H���H�x�����L��L����C��L���2���H�5)!L��1����I���H�x�:����H�5i!��H�5(!����A�����UH��1�SH��H��dH�%(H�D$1�f�t$�C��H=�_�w\�D$A�E1ɹH�D$H��H��H��P1�QH�
��g7��ZYH�|$dH3<%(H���H��[]��H��I��I��H��I��I����E��A����t9H���Ѓ�~=�r��O��N�D$z����k�)։��b�T$�]���fD�D$�M���fD��`�D$�;�����@��Df.���AVI��AUM��ATI��U��SH��H��dH�%(H��$1��7/��Hcź���L��H�����H�@HF�I��H���H�x��5����~5A�EH�H��$dH3%(�fH��[]A\A]A^�@H�����H�z��J���Ń�����������A��������������������������H��xH������I�<$H��1�H�5��_���cD��u3�-��I�<$H�53�1��:��A�E7H���������fD��-����H����I�<$H�5^�	H��1����A�E7H���������fDA�EQH��������@H��H�ǺH���@��I�<$H��1�H�5������>��f���H���CH���5����=��1��3���8���x3��H�=II"H��t�W<��H�4I"H������U1�SH��H���H��t4H�����H���87��H�����~%�H1��H�5yH��H��1��4
��H����[]��#1��H�5tH�߽6H��1��������SH�H��H�xH��t(��;��H�H�x�:��H�H�x�s3��H�H�@H�8H��t�.��H�H�[�Df.���UHc�H��SH�vH��H���H���{���H��H���[]�h������S��1�H����XdH�%(H�D$1�H�t$�0��H��t�H��t�����H���t H�T$dH3%(��uEH��[���[+�����st$��t��d��
wǻ�H����������<��@AWAVAUATUSH��8H�|$dH�%(H��$(1�H�D$ H�D$DL�|$1���P���I��H��I������H�uH��L��D�fH�t$�P��D��I���P��Hc�I��P��L��H���P��H�t$�*I���VM1�H����M�o��A1�H�����H!�I	�M�g�H���j�����(H�|$�@�1���oD�����?���H�|$��D$ �32���|$ tH�|$��-���8D����uH�|$1�H�5��q
���D����t'1�H��$(dH3%(uH��8[]A\A]A^A_ø#���%;��D�=�E"t1��@SH����C����uSH���
H���H��HD��d-���C����u2H���
H��t�j=�����t	�C����uH��[�����YE"1�[�D��UH��SH��H��H��t3�f�����uH���Z)��H�߉�� =��1҃�t�H����[]��C����u���f.���AUATUSH����t1�H����[]A\A]��I��H��H��A���w.��H����(����A9�~ʍPH��L��Hc���4���DH��t�?u��SH�5
H���pI����t�[�DH�5�H���QI���¸��u�H�5�H���7I���¸*��u�H��H�5��I��[�����+�AWAVAUI��ATUSHc�H��L�7�t$HdH�%(H��$�1����X��x�D$4��I���M���M���
H�D$(I��H�$I��H�D$I��H�D$I��H�D$A���D$3I���
H�D$ L������Ņ�uTI�$I��w0D��A�I��M��A�����A����A����H�5�L��1��#�$	��H��$�dH3%(����H�Ĩ[]A\A]A^A_�f�1҃�\���H�HЃ������H��`M���L��HH�D$(I���H�$I���H�D$H��hH�D$H��`H�D$��X�D$3I���H�D$ ���f.���;���D$OH�[I�L�H���H�L$8H�:H��tH�D$@��'��H�L$8H�D$@H���H��H�T$8�!-��H�T$8H�H�[M�D�I���H�8H����	1ɺ�!L�D$8��/��I��`tA��`L�D$8��A��x��t~A���
������K���C�HD�M����A����A���<���H
H���|H�5�L��1���R���)���D�cA���D$O���f�1�A��\���H�H�A�����_���A������Z���DH
H��H�[1ɾ M�d�I��$�H�8��.��A�����A�����I��x
~yA��xu)1�A��\���H�H�A����t
A���uF�h2H���L��Ƅ$�f��$�H�5�1�A���������A�	1�Ƅ�H�5�H�http/1.1L��H���H��1�L��$��)��H�[D��L��I��ŠH�8�,��H�$HL$A��xtm���I��0H�D$@I��(H�D$PI�� H�D$XH�[H�|$I��ŠL�8I�EH�D$8���H�<$A���p��*�gA��x����M��8M��H�&LD�H�[M�d�I��$�L��H�8�$��L�����+	1�H�5�
L���:��H�D$HD$��H�|$ ����>��I��H�[M�d�I��$�H�8��%��L��H���"$��H����L�|$ �H��L���T5������H�5�
L��1����I��$�H�8�{%���H���<��L��L��1�H�5�
���H�[�t$31�M�d�I��$�H�8�j5��I��$�1ɺ�,H�8�,��I��$�H�5�H�8�W8��I���
H��t"I��$�I��L��H�1��A��9H�[M�|�M���I�|$H��t�(��M���I�<$�
*��I�D$H�[I��ŠH�xH���\
A��x�NA��
���N�I/��H�[H�t$(L��$�M�|�L��I���H�@�7<������A��x��A���
����H�[M�d�A��$����#��H���0��1ҾmI��I��$�L��H�H�!��I��$�L��L��H�x�)��H�[ADŽŘ�n���f�H��I�}H������I���I��H���H���H���H��t!H����H���;���H��H���(����I���H�5r�H�8�
(��L�D$8L��1ҾI���H�8��)�������I��$�L��H�5�5H�8�F9�����H�T$ L��1��RH�5�
����l���1�A��\�@��H�6H�A������I��HI��P���f�H
H��H�����H�5�1���%�����1�A��\���H�H�A���������A��Z���H�D$@H��tH��L���["��H�5���L���<3��A�����A��*��A��+��H�D$p�*2��H���.��I��H���c
H�$��lH���`��H��� 
1�L���=(��L��H�D$�%��H�|$�)� ��H�t$@H�|$H�L$`H�T$hL�D$p�2�����o
H�|$�.��H�t$`L��������
�1��H��$��H��H����0��H�|$8H��1�H�5K����H�|$h���H�|$`�1��H�5[5"H�|$p��6����:�r���fDH�5�L��1�D���|����S����1�A��\���H�H�A��������M��������I��$�H�T$H�t$H�8������^�|$3��H�5�L��1��B���H�|$��H�L$H�GWH��HE�H�D$H�L$H�T$L��1�H�5���������fDA����H�4$L���b�����ZH�|$P����������*����+�H�|$8H�5�1��[������fDI��$��t$4H�x�k%����������N/����#H��$�H��H���/��H��L��1�H�5y���������5����H��$�H��H���.��H��L��1�H�5O�����D1�A��\���H�H�A��������I���H�D$@I���H�D$PI���H�D$X����@1�A��\���H�H�A�����,���A��K�'���H�D$p���A���
�E��xC���$x<H�[L��D��M�|�I���H�x�6��I����$I���XH�x����6��L���=�L$H1�H�t$pL����=��u3H�[H�t$pI��ŠH�x�I(������H�5�L��1����L���h=�r���H�t$(L��
�n5�����7����|$O�,���I���H�L$(1Ҿ7H�x�3��H������H�5�L���W�����f�1ɺ�A�_3��H�[I��ŠH�x���f.�H�5!L���;�������H�5�L��1����������JH�L$XH�$H��HE�H�T$XL�d$X��L��L���'������H�\$PH��H�|$8L��H�5&H��HE�H��1��E������H�|$�/H�\$H��SH��HE�H�D$H�L$H�T$L��1�H�5n�M������H�MSH�D$����fDH�T$H�|$8H�5o1������#���H�D$8H���H����H�$E1�1�H�
DH�D$x�
H�D$p�34�����H�D$8E1�1�H�L$pA�H�5H����)������H�t$xH����L��������AH�|$8H�5�1�����H�|$x�+���j���H�4$�L���$�����W����+��H��$��H��H����*��H�|$8H��1�H�5"�������H�<$���L��� ��I��H���3H����0��H�D$`H��t)H���a0��L��H�$� ��H�<$H���	1��H�<$�`��L������8��L���'��L����������H�|$8H�5;�&�������H�5aL��1���
������H�[QH�D$����H�D$8H�����H�=��u(��I��H�����4��H���|$��L��H���q%�����H���)��L��H������H�5���L���� ��H�5S��L���K/��H�D$8H�L$@L��H�t$XH������L��H�$��0��H�<$�6L�$$L��L���g1�����v���H�|$8H�5�1�����L������n���L���������H�|$puA�M@H�|$p�F.��L��H��I���X�����1�L��L������H����H�|$p�++����u�H�|$h���H�|$`�)��H�|$pH�57-"�.��H�|$P�����������*�l�����+�����H�|$8H�5
1��D�������Z(��H��$��H��H���(��H�|$8H��1�H�5������g���L��H��$��#��7�
(���H��H����'��H��L��1�H�5�������H�$H��tF�H�5P�H���76����tH�|$8H�5)�2�������H�D$8H���H������H�|$8H�5	1��b������H�|$8H�5)�L������H�|$8H�$H�57	1��0���L���������>'��H��$��H��H���&��H�|$8H��1�H�5����K���H�|$x��'���C���H�t$hL���.���������H�$H�|$8H�5v	1���������&��H��$��H��H���}&��H�|$8H��1�H�5��w���H�|$�}#������H�|$8H�5D1��U������H������H��H�$���H�$�H������"��L��������H�$H�|$8H�5+1������_���H�D$XH��tD�H�5��H���q4����tH�|$8H�5c��l�����$���H�D$8H�������H�|$8H�5
1������%��H��$��H��H���l%��H�$H�|$81�H��H�5w�b������������H�|$8H�5�1��<�����!�������X#��H�|$8H�5	1����p�H�|$8H�54	1����X�H�$H�|$8H�5������L����%��H�|$8H�5:1������L���%��H�|$8H�5�1������@f.�AWAVAUATUH��SHc�H��L�7dH�%(H��$�1���x��I���
H�D$�%��H�[L�d�I��$�H�x��%��M��$�A��M�gL����+��H���L��,"M��L�T$��M��$�M��L�\$��D�@E����Ic�L�d$`H�pD�D$,H�Ϲ0H�|$ H��L����(��L�\$D�D$,I�OE;GL�T$�Ao���Ao��)L$@)T$PuMH�T$ H��L��L�T$H�L$�+��H�L$L�T$��D�D$,u I�GLI�WTH3D$@H3T$HH	��
DE�GH�T$ H��L��L�T$D�D$���fo\$@fod$PH�CLIENT_RL�T$D�D$L��$�H�t$@A_LI�yNH�
f�Ag\DŽ$�ANDOH��$��M f��$�I�A@�H��H��A�Ӄ�A���E��F��P�D�X�H9�u�Ƅ$� A�P�I�AOI�|QQDA�$H��I���փ�@���@���41�P�@�p�H9�u�A�����L��L��E�A�@QA��RH�Mc�Ƅ�
BƄ��G ��H�[A����H�\�D��H���H�x�*��A�ă��]����ǃ�f�1�H��$��)�$��H��!��I�������D��%�=���H���H�x�
��H���dfolA�<DŽ$�ledL��$�)�$�foS)�$�L��H�5HL��1����Dǃ�E1�H��$�dH3%(D���H�Ĩ[]A\A]A^A_��1҃�\���H�HЃ����I���I���H�D$�D���fDL��$��L��L��L�L$�[ ��M��L�L$����x��H���Lc��D��A�#�4��H�5L��H��1�� ��(���L�d�I��$�ADŽ$�H�x����H��� ��H���I��I��$�H�xH��t<�$��H�#�=t)�jH����t=H���H�	�HE�1�L��L��H�5N�E1�����������H�[H�T$4H��ŠH�t$8H�x�D���T$4���HH�L$81�H�5ZL���r��D$4���E���-H�http/1.1H�T$8H9�DžX�DH�L$H��A�<H��:!��L��$��H�p�H��L��1�L�L$����L�L$���f.�1҃�\���H�HЃ����/���H��`L����*���@ǃ�E1��c���fDH���=�����=H���H���HE����f�I�G\I�WdH3D$PH3T$XH	���������H�5AL��1��/�E1����H�D$8f�8h2u�DžX������A�#������USH�������|"��1�1��0�N���
��������uH��1�[]�����H�=K&"t!�����x��C��H����[]����H�=��t%��H��H��t�H�5�aH���M��H��H��%"H��t1���H���	����uH��""H���H������H��%"��ATI��UH��SH��dH�%(H�D$1��}%��H������H�øH��tn1�L��H���F��1ҾsH��H��A���a
��H�$��H��H�:�HFH�r���}1Ҩu_�uC�u/�DH�����1�E����H�\$dH3%(u^H��[]A\Ð������f�H���t���fD����t���f���1���H���w����������AWf�I��AVAUATUSH��H��h
H�|$�T$XdH�%(H��$X
1�H�H��$`)�$PH�D$1���x�H��JH�D$H�
H�D$`�$��H���M��H�D$8H�D$���VI�_H�{�!��H�CI�GH�x�FH�D$H��J��xu)1Ƀ�\�H����H�	Hȃ���H�NJHE�L�d$H�5P�1�H��$PH��$�L�����I�GH�x�E��H��H�����H�e�L��H�5���HD�1���I�GL�t$8H�@L��H�H�@ H�0�M��1�H�پL�����H��$�L��H�5��H��1��O�1�1ҾL������I�GL��H�@H�H�@ H�p����1�H�پL�����H��$�L��H�5��H��1���1�1ҾL�����L�����H�D$��xI�GL�`��
H�D$��	�pL�����H��H����������|$X��H�D$�<��x����
H�L$I�W��
����
�|$X�Dك��sH�D$L���
L��$�H�j����M����HDŽ$�H��t]H�E1�H�x0����Å�~HLc�H�J"L��I��H��$�H��t)H�EH��$�H�x0���9��(H�	"L����ZH�|$H�5;1��T�I�GH�h@H���0��I�GH�@A�GH��$X
dH3%(����H��h
[]A\A]A^A_ÐH�D$H�H�D$HH�D$H���H���H�L$H�D$PH�D$���H��$�H�D$(tH�t$H�¿
������QH�T$(H�t$������H�H�у����H�L$@���1�1ҾUL���	��I��H�D$8H����H����������E1�L�d$xM��A��H�l$pD���D$\�D$0�D$ L�|$h����79�����A9�t*��L���
��I�Nj��uӃ������D$ A9�u�H�|$8L�d$xL�|$hH�l$p����|$\�YI�GL�`�,���@H�|$1�H��H�5�����H�D$��x��
H�D$H���
����������H���k��H��H���H�D$��x��H�D$H���
��lH�����H����1�1�1�H�����H��H���LI�GH��H�p�������H�D$��x��H�D$H���
H�|$H�5R�1����H���
��H�����I�GH�x�&��H��H�D$`H�(H����H�D$��x����H�L$�������|$X�<����H�����H�|$H��H�5�H��1���H�D$��x����f�1҃�\���H�HЃ��������H�D$H�H�D$`���f.�H�D$H�I�GH�xH�\$�6��H�D$PH�������H�����H�߉ƉʼnD$\�`-���b����C��E1�H�����I��H��$�H�D$ ���PL�|$hH�|$PD���[��H��I����
��1ҹ�L��H������H�l$ 1�L��H�����H�\$H��$�D��I��H���H���-1�1ҾL������L�����1ҹ�L��H���z��1�H��L�����H��$�H��D��I��H����,1�1ҾL���j��I�H�8�/��H�5p�L��H��1���	��1�H��L���9��H��$�H��D��I��H�p��\,1�1ҾL�����L���3���xH���K
�1��~$H�CH�5��L���(1�H���K	��9+�L�d$ 1ҾL��L�����H�l$H��$�D��I��H���H����+1�1ҾL���}��I�L��H�CH�0���L��1ҾL���Y��H��$�D��H��I��H�k��|+1�1ҾL���+��H�C0L��H�H�0���L��1ҾL�����H��$�D��H��I��H�-��*+1�1�L������L�cHL���]�����}L��1�L�l$@L�|$H�A��9��Wf���L������I���n��H�����H��H���(L��L��$������L��H���Z��1�1�L��H���
������1ҾsH��H��$�L��$P�$���H��$�H�H����L��1�A��I��L��I���H�~H�XH�
���<
uH�HH��H��H�
�AH9�v9D�A�� �H�XH���@H�CD�D�A�� ��H��H9�u�H�H��H9�r�D��L��M��H�|$L��L��D�����*H������L������9������L�l$@L�|$HI�L��I�_H�@ H�0�R��L�d$ 1�L��L������H�l$H��$�D��I��H�T�H���9)1�1ҾL�����I�L��H�@ H�p���L��1ҾL������H��$�H��D��I��H�	���(1�1ҾL�����L���}��H��H��������F��t������H���l���H���L��L�����H�L$ 1�L���4���H��$�D��H�|$I��H���A���Q(1�1ҾL������D9t$\�����L�|$hL���h�����H�L$1҃�\���H�HЃ�������Y�M���H�D$H�H�D$HH�D$H��`H��hH�L$H�D$P���fDH�t$1Ƀ�\���H�	Hʃ����1�����ZI�W���6���H�D$H�z�F1�H��$�H�H�D$���H��$�H����H��$�H��1�H��$��o	��H��H����
H��������a
H���I���I��H���u
I�GH�x�P���I��I�GH�8���1�L��L��H���Q������H��$�L��$�H�D$ H��$�H�D$(H��$�H�D$0L������9�����L�����H����H�L$ H�T$(H��M��H�t$0�
��H��$��,H��$�H�����A���������lIc��)��H�|$D��H�5r�H��1�� ��A���nA���tL�����H���<���I�G�[H�x�
��I�GH�@�m�f�H�t$1Ƀ�\���H�	Hȃ����g�H�D$L���
�b�f�H�D$@����DH�D$��	���H�L$1�H���\���H�D$HH�HЃ������C���1҃�\�H����H�HЃ����\���H�D$H������W����H��H��L�T$0L)�H�*�L�L$(H)�1����L�L$(L�T$0H�H��$�H�����L���P���H��H���������E1�H�-����~H�CH��L��B� 1�I�����D9#�H�L$ 1�L�����H��$�D��H�|$I��H����$1�1ҾL�������u��������D$0��DL�e I�|$ �z
��H�5�=L���1����H�L$ 1�L���s���H��$�H�|$D��I��H����#1�1ҾL���C���M�L$ M��tH�|$L�7�D��L��H�
�����M�L$(M�������H�|$L���D��L��H�
�������f.�L�e M�L$M��tH�|$L��WD��L��H�
���d��M�L$ M��tH�|$L�|�D��L��H�
���<��M�L$(M��tH�|$L���D��L��H�
f����M�L$0M����H�|$L���D��L��H�
:��������L�e M�L$M��tH�|$L�DWD��L��H�
�-���M�L$M��tH�|$L�7�D��L��H�
�-���M�L$ M���j���H�|$L�Y�D��L��H�
t-�`����G���H�5�L���y������@H�|$8�
��fDL��H�Z�A�����H��$��3��I��H��u�*f�A��D��
L�������y�A�����H��$�H9��>H���AH�t$�P�����;H�|$HH�L$PH�5��H��$����H��$�H���������f.�H�|$H�5�1�����L����H�|$81������|$X�m�H�|$H�5�1��<����P�@H�|$H�5l�1��e����I�����I�I�����Lc����@��"DI����I�I���c���D$ Lc�L�����L9���H�t$L���}O�������H�|$HH�T$PL��1�H�5�L�|$hH�l$p���H�|$8������I��G��I�I������H�H9D$@����H�T$@H�t$(L���\����D$0�����H�T$PH�|$HH�5>�����D$\�`��������|$0�
L�t$PH�\$HH�5<�1�L��H���g��L��H��1�H�5H����I�G�<H�x����I�GH�@���HDŽ$�H�|$HH�5X�1�����H��$�H�������fDL�����H��1��&���H�D$I�W��x�y�f�H�|$1�H�5��1����H�D$��x�1�Hc�$�H�����H�|$��H�5��H��1��@���o����|$ �������H�|$H�5p�1��
��H�����D���1҃�\�H����H�HЃ�����H�D$H�����H�\$1Ƀ�\���H�	Hʃ����D���X�D�fD1҃�\�H����H�HЃ����?�H�D$H����:�D��L�����H�����I��H�������H���1
������H��$�L���h��A��H��$�H��� ������H����D9������H�|$HH�5��1�����H��$�H9������H���������@H��1����H�|$H��H�5��H��1�����H�D$��x�K�DHc��
��H�|$��H�5��H��1��`���N���H�|$H�5��1��E���3����|$Xt1H�D$��x�]H�D$H���
H�|$H�57�1����H���p���I�G�SH�x����I�GH�@��DH�|$HH��$�H�5��1����H��$�H�����G����f��|$Xt1H�D$��x�H�D$H���
H�|$H�5��1��h��H������1��I���T���@H��$�H�����L)�L9����H�|$L��L���L����H��"����������|$Xt1H�D$��x��H�D$H���
H�|$H�5G�1�����H���0���H���Z����H�|$H�5�1����L�����H���
����L�����A�ą��`����x�bH�5P��!���H��$�H���l���L��Mc�����H��$�L��H���B���H��$�B�0�����;��H��$P�H��H������H�|$H��1�H�5�������I�GH�x����I�GH�@��1҃�\�H����H�HЃ�������H�D$H����z���H�|$H�5������1҃�\�H����H�HЃ�������H�D$H�������1҃�\�H����H�HЃ����?���H�D$H����:����@���AWHc�AVAUATUSH��(H�D$H�@H�ǃ���H�L$H�D$A��A�����H��L�?�T$D���X����H�D$�Q�H�@H�\�@���1��L���hK��H��������Q���w6����������AD�AE�E��HE�H�����������D��H�������u����Q�E���z������q���H��([]A\A]A^A_�f�1��L����J��H��x4D��H�������ű������f��H��(1�[]A\A]A^A_�@L��1�H�5R����H��(�[]A\A]A^A_���t}����H�D$�H�D$H�@DŽŘH��(1�[]A\A]A^A_�D��H�5\�L���1��8���#����fD�|$�e���H�D$�1����H�D$��xH�@H��Őtg���u��	H���'��������H�\$H�[DŽŔH�D�H�����H��pH����H���H�D$�����1҃�\���H�HЃ����x�����X��{�����Y�o���@f.���H�Ѻ����Df.���H��1�dH�%(H�D$1�H�L$�D$���H�T$dH3%(uH����
���f.���ATM��UH��SI�9H��H��x
��1�A��wE1�H�5������H�)�H�[1��E]ADŽ$XA\����D�PA9�rQ�p��H�H�f�>h2u�H�3�H�5��H�Џ�EI�<$1��m��[1�]ADŽ$XA\�f.�A���`���I�http/1.11�����D�PA9��7���D�P��I�H�M9
u�L��H�5���EI�<$1�����[1�]ADŽ$XA\�f.�@��Ðf.���1��f���������fD����fD��Ðf.���1��f���1��f�����fD����fD��1��f���AWH�
#�!AVI��AUATUH��SH��H�z"H�c"H��"H9�HD�H9�"tyH��"1�H�
�"H��tZL�=0"I��H��L���H��H9�t�(H��L��H��H)�P0H�I"H�H��I9t�)H��I��I�H��u[H��L)��H�3"I9�r.I�V�H�5C"H���+�B�D5�H��H��[]A\A]A^A_�H�SH�5"H������H�q� �Y���f�f.�H��H���
H��w/H���
�H��tH��t	H��H9�|$H����1�H�5�����1�H���1�H�5���j��1���fD��AUI��ATI��UH��SH��H�=�!����H��t8L��H���]�L��H�߉����H��H���%��H��1�[]A\A]��H���[]A\A]�Hc�S1�H�vH��H����t[����u�H�
p�!��At�H����o��f�1�H���H���H�����H��H�@H��!H�P��H���1�[�f.�AUH�=�ATUSH���z��H��H��H��!t_H��tZ1�L�-��!�H��I�D�H��t:H�pH��Lc�������t�K�D�H��H���!�3���H��1�[]A\A]�fDI�EH��H�r�!�
���H��1�[]A\A]���H���!H9N�!t�H�=0�!t�U��SH��H���.�����uH�#�!��H��H�@xH��[]��f�H��[]�f���H���!H9�!t1��f�H�=�!t�U��SH��H��������u"H���!��H��H�@pH��[]��f.�H��1�[]����H��!H9~�!t��fDH�=X�!t�ATI��U��SH���U�����u!H�J�!L���H��[]H�@hA\���[�]A\�fD��H���!H9�!t��fDH�=�!t�U��SH��H�������u"H��!��H��H�@`H��[]��f.�H���[]�@��H�5�!H9��!t��fDH�=x�!t�H���}�����uH�r�!H�@ H������H���fD��1��f���Ðf.���H�H9t1�ÐH�FH9Gu�W�F���%���9�u�UH��SH��H��H�vH������u	1�H��[]�H�u H�{ �~����t�H�u(H�{(�m����t�H�u0H�{0�\����t�H�u8H�{8�K����t�H�u@H�{@�:����t�H�uHH�{H�)�������f���UH��SH��H��H�H�H�GH�F�G�F�G�F�G�F�GH��FH����H���!�H�EH����H�{ H����H��!�H�E H����H�{(H����H���!�H�E(H����H�{0H����H���!�H�E0H��tnH�{8H����H�r�!�H�E8H��tOH�{@H����H�S�!�H�E@H��t0H�{HH����H�4�!�H��H�EH��H��[]�f�H��1�[]��H�{ H�FH������H�{(H�E H���#���H�{0H�E(H���1���H�{8H�E0H���;���H�{@H�E8H���E���H�{HH�E@H���O���H�EHH���[]�@f.���USH��H��H�-d�!H��UH�{ H�C�UH�{(H�C �UH�{0H�C(�UH�{8H�C0�UH�{@H�C8�UH�C@H�{H�UH�CHH��[]�f�f.���H���!H�~�!H9�t	��fDH�=�!t�H������H��!�H���Df.����=�!uH���!��!�` f���f.����=��!t#H��H�h�!�P(���!H���f��Df.���ATUHc�SI��H��H����/�t���z�����u:H�;�����tZH�DmD��H��H��ƀ�ǀ�H��!�P`��tH��[]A\�H�;��D$�����D$H��[]A\�f�H���#[]A\�f���AUI��ATUHc�SI��H��H����/�t��������u7H�;�����teH�DmL��D��H��ƄÐH�H�!�Ph��uA�}uH��[]A\A]��H�;��D$�G���D$H��[]A\A]��H���#[]A\A]���H�?H���H��t�u����鱷�����H�?H���H��t�u������fD��AWAVAUATUSH��8��xL�/��H���H���H�D$���H��D$E���
A��E����I���H�������H�H�D$I�����H�T$(H��E1�H�t$ L��I�� H��L�L�<�I�tTI�7H�������tE���I�w��H��t/H��������t���A�G4tR���t
9��tJDI��M9��w�A�H��8D��[]A\A]A^A_�I��(H�D$�6�������u��D$A9G0u�H���I�wH�8�N�����t�H�|$I�w8������t�H�T$H�H�D$H��H�H�T$ I�G(I�GH�H�T$(H���i���I�G H��]���f.�H������I��M9��������.����Hcɀ��uVH��HH��`H�D$���H��D$1Ƀ�\���H�	Hȃ�������E��KA�����H���H���H�D$���H��D$����USH��H��H�H��tIH���!���H�CH�{8H�C(�D���H�-��!H�;�UH�H�{�UH�CH��[]�f.���H�H���H��t5H�� 1�H���H;wu�%DH��H�H9p�tH��H9�u����;����f.���AWAVAUI��ATUSH��8L�?H�-��!��xH�t$M�� H�EH�T$M�t$(��I���I����D$ H�T$��H��H����A����K1�A���A�����tE���M���M���RA��HI��I���H����I�� H���L���tU��f�I�LjI�t7I�O(L9�}I��M��H��H9�u�L��L�T$(M��D�\$$����L�T$(D�\$$H�D$L�5��!D�\$$I�?I�GH�D$I�G I�I�G(A�I�A�D�\$$�D$ I�I�oE�_4����A���A�G0I���I�w8H�|$H�I�G�&���1Ʉ���H��8��[]A\A]A^A_�I���UH��H�������H�C�!H������M��(���@A����v���@Hcɀ������H��H�D$ H��`H�T$��H��H��������X��������I�� L������H��I�GA�H��A������f.���ATUSH��H�� H��t`H���H��t�uOE1�1�H���t,f�L�H��I�Ĉ�=���H9��H�� w�H��!�Hǃ H�"�!H��[]A\H�����f���1���t�����t��t�D��X���f���X���f���H���!�`xf���UH��S��H��H���!�P@�P��u@Hc�H����H�vH�D�ƀ�ǀ�H�D�H��pH�ǹ��H���1�H����[]�D��H�E�!���Df.���H�%�!���Df.���H��!���Df.���ATE1�USH�� tD��[]A\�H���!H��H����H��H��t$H�� D��H���Hǃ([]A\�A�����H�u�!�`0f���H�e�!�`8f���H�U�!�`Hf���USH���� ��tVH��H��(~,1�fDH�<����H��(H��H��9� �H���!�HDž(Dž H��[]�Df.���U��SH��H���l���H���!Hc���H��t�� H��(H��1�[]�H���[]�@��AWAVAUM��ATUH��H��SHc�H��(H�L$H�T$�C��N�$(I��H�5�!I�t$H��H�t$�H����H�T$H�t$I��H��1�H��H�J��|��H�t$K�|7L���Z��C�D'L��H��(H�<��^��I��1�M��tH��(L�$�H��([]A\A]A^A_�DH���!L���H��(H�<��L���DH��(�[]A\A]A^A_�f�f.���AUI��ATA��UH��H��SH��H���>��H��H��L��[D��H��I��]A\A]�����H�%�!�`Pf���AWAVAUATUSH��8dH�%(H�D$(1�H�D$H���|I��H��� I��H���L�%�I���H��L���������H���!H�����H���!� �H����H��H�$� L��H�n�!L������Ņ���H�T$(dH3%(����H��8[]A\A]A^A_�H��H�5ƪ��H��H��tY1��H���j�����H���!�ZE1�H�$L��L�4$A�H�|$A�H��H�D$���o�����Z�^���fDL�$L��H�L$ L�D$� L��L�T$����L�T$��H�g�!L��H�$�������H�T$ H�5j�L��1����H���@��L�pH�5�!L���H�D$H����L�|$L��H��M��L�5Z�L���u���/�L�����H;D$tn�;L��H���P��I��H����L��L��M�g�5��H��H��u�L�����L�|$ H;D$tY�ZH�$L���H�|$H�D$ ��>���fDL�|$ H��L��L��������w����1�����f�H��L��L���r�����ZE��fDH�����1�1�H��H����������H������H������H��I9������L�%��!H�xA�$I��H�����H�ٺH��H���2���tBH���!�ZH�$�������N���fDH�$H�|$ ���3���I9�u$L��L��L�������u�H�U�!1�H�$�s���A�.H�5��L�����H���x���H��L)�t
�x�
�f���H�jH�5��I�.H��H�$�x��H���B���H��L)�H��H�T$H)�H�yA�$I��H������H�T$H9���H�,$I�1��U��
t
��
tA�H��H��H9�u�A�L��H�T$ H�t$�l���L���H�x�!H�$���uL9l$ t�Z�������H�t$L��L��������ZE��b���L�|$ ���1����H�5�!���Df.���H��!�`Xf���H��!���Df.���H���!�@����Ðf.�����fD��AWAVAUATA��UH��SH��H��t
H���!H�H���!L�5�!L9�t61�D9"t�H��tH�rH����������H��[]A\A]A^A_�f�H�9�!H��t>D; to1�L�=.�!�
@H��D9 t7Lc�H��tH�xH���C���uOI��H��u�H���[]A\A]A^A_�f�L95��!t1�H��[]A\A]A^A_�fDH���!1���DL95��!u�H���!J��H��u�H�=��!t���1��0�����H��H���Couldn't open file %sCan't open %s for writingCan't get the size of %sContent-Length: %ld
Accept-ranges: bytes
Can't get the size of file.Last-Modified: %s, %02d %s %4d %02d:%02d:%02d GMT
%sfailed to resume file:// transfer%c%c==%c%c%c=ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/Shuffling %i addresses%255[^:]:%dAdded %s:%d:%s to DNS cache
Hostname in DNS cache was stale, zapped
Couldn't parse CURLOPT_RESOLVE removal entry '%s'!
Resolve address '%s' found illegal!
Couldn't parse CURLOPT_RESOLVE entry '%s'!
RESOLVE %s:%d is - old addresses discarded!
RESOLVE %s:%d is wildcard, enabling wildcard checks
Hostname %s was found in DNS cache
%2ld:%02ld:%02ld%3ldd %02ldh%7ldd%5ld%4ldk%2ld.%0ldM%4ldM%2ld.%0ldG%4ldG%4ldT%4ldPCallback aborted=��\��l����������������=��L�����** Resuming transfer from byte position %ld
  %% Total    %% Received %% Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed

%3ld %s  %3ld %s  %3ld %s  %s  %s %s %s %s %s@�@application/octet-streammultipart/form-data���������@��������������`��������p�� �� �����`��p�������������localhostTRUEFALSE#HttpOnly_%s%s%s	%s	%s	%s	%ld	%s	%s%4095[^;
=] =%4095[^;
]securehttponlyversionmax-ageexpires	ReplacedAddedSet-Cookie:nonew#
# Fatal libcurl error
oversized cookie dropped, name/val %zu + %zu bytes
skipped cookie with bad tailmatch domain: %s
cookie '%s' dropped, domain '%s' must not set cookies for '%s'
%s cookie %s="%s" for domain %s, path %s, expire %ld
ignoring failed cookie_init for %s
# Netscape HTTP Cookie File
# https://curl.haxx.se/docs/http-cookies.html
# This file was generated by libcurl! Edit at your own risk.

WARNING: failed to save cookies in %s
�*���*��)+���+��,��H,��2��Rejected %zu bytes header (max is %d)!Failed to alloc memory for big header!NTLM send, close instead of sending %ld bytes
%s auth using %s with user '%s'
The requested URL returned error: %dAuthentication problem. Ignoring this.
Ignoring duplicate digest auth header.
Malformatted trailing header ! Skipping trailer.%s: %s, %02d %s %4d %02d:%02d:%02d GMT
Proxy-Connection: Keep-Alive
Connection: %s%sTE
TE: gzip
Chunky upload is not supported by HTTP 1.0Could only read %ld bytes from the inputFile already completely uploadedContent-Range: bytes 0-%ld/%ld
Content-Range: bytes %s%ld/%ld
%s HTTP/%s
%s%s%s%s%s%s%s%s%s%s%sContent-Type: application/x-www-form-urlencoded
Failed sending HTTP POST requestupload completely sent off: %ld out of %ld bytes
Received HTTP/0.9 when not allowed
no chunk, no close, no size. Assume close to signal end
Connection closure while negotiating auth (HTTP 1.0?)
Keep sending data to get tossed away!
HTTP error before end of send, keep sending
HTTP error before end of send, stop sending
Lying server, not serving HTTP/2
The requested URL returned error: %sHTTP 1.0, assume close after body
Overflow Content-Length: value!
HTTP/1.0 proxy connection set to keep alive!
HTTP/1.1 proxy connection set close!
HTTP/1.0 connection set to keep alive!
Unsupported HTTP version in response
Rewind stream after send
Empty reply from serverHTTP/RTSP/Proxy-NegotiateBasicNTLM_WBDigestProxyServerBearerProxy-authorizationAuthorization%sAuthorization: Basic %s
Authorization: Bearer %s
Authorization:Forcing HTTP/1.1 for NTLMPROXY %s %s %s %li %li
Expect100-continueExpect:Expect: 100-continue
Host:Content-Type:Content-Length:Transfer-Encoding:Last-ModifiedIf-Modified-SinceIf-Unmodified-SinceInvalid TIMEVALUEPOSTGETOPTIONS, Transfer-Encoding: chunked
[Accept: */*
; User-Agent%s?%sRefererReferer: %s
CookieAccept-EncodingAccept-Encoding: %s
chunkedHostHost:%s
Host: %s%s%s
Host: %s%s%s:%d
http;type=;type=%cAcceptCould not seek streamRange: bytes=%s
Content-RangeContent-Range: bytes %s/%ld
%s ftp://%s:%s@%sProxy-ConnectionCookie: %s%s=%sFailed sending PUT requestContent-Length: 0

Failed sending POST requestContent-LengthContent-Type%x
Failed sending HTTP requestReceived 101
 HTTP/%1d.%1d%c%3d HTTP/2 %d HTTP %3d RTSP/%1d.%1d%c%3dHTTPMaximum file size exceededInvalid Content-Length: valueServer:keep-aliveProxy-Connection:closeContent-Encoding:Content-Range:Last-Modified:WWW-Authenticate:Proxy-authenticate:Location:HTTPS�s���s��s��s��s���s���r��s��...Send failure: %sRecv failure: %sFailed writing headerWrite callback asked for PAUSE when not supported!Failed writing body (%zu != %zu)* < > { } { } USER %sQUITREST %ldWe got a 421 - timeout!
APPE %sSIZE %sFailed to read datagetsockname() failed: %sbind(port=%hu) failed: %ssocket failure: %s%s |%d|%s|%hu|,%d,%dno memoryPBSZ %dPWDPASS %sACCT %sAccess denied: %03dFailed EPSV attempt, exiting
PASV%c%c%c%u%cWeirdly formatted EPSV reply%u,%u,%u,%u,%u,%u%u.%u.%u.%uBad PASV/EPSV response: %03dCan't resolve new host %s:%huREST %dMDTM %sCWD %sNLSTLISTPRET %sPRET STOR %sPRET RETR %sCouldn't set desired modeTYPE %cChecking for server connect
privateAuthentication successful
AUTH %sACCT rejected by server: %03dPROT %cCCCSYSTEntry path is '%s'
Failed to figure out path
OS/400SITE NAMEFMT 1QUOT command failed with %03dMKD %sFailed to MKD dir: %03d%04d%02d%02d%02d%02d%02dGiven file does not existSkipping time comparison
Couldn't use RESTdisabling EPRT usage
Failed to do PORTConnect data stream actively
 bytesMaxdownload = %ld
Getting file with size: %ld
RETR response: %03dFailed FTP upload: %0dWildcard - Parsing started
Wildcard - START of "%s"
ABORcontrol connection looks deadNo data was received!QUOT string not accepted: %sFTPSFailure sending QUIT command: %sftp server doesn't support SIZE
Offset (%ld) was beyond file size (%ld)File already completely downloaded
Instructs server to resume from offset %ld
Connect data stream passively
File already completely uploaded
failed to resolve the address provided to PORT: %sbind(port=%hu) on non-local address failed: %s
Failure sending EPRT command: %sFailure sending PORT command: %sbind() failed, we ran out of ports!Error accept()ing server connectConnection accepted from server
Doing the SSL/TLS handshake on the data stream
Uploading to a URL without a file name!Request has same path as previous transfer
ACCT requested but none availableFailed EPSV attempt. Disabling EPSV
Illegal port number in EPSV replySkip %u.%u.%u.%u for data connection, re-use %s instead
Can't resolve proxy host %s:%huConnecting to %s (%s) port %d
Couldn't interpret the 227-responseGot a %03d response code instead of the assumed 200
FTP response aborted due to select/poll error: %dAccept timeout occurred while waiting server connectThere is negative response in cache while serv connect
Error while waiting for server connectReady to accept data connection from server
Ctrl conn has data while waiting for data conn
Preparing for accepting server on data port
Got a %03d ftp-server response when 220 was expectedLogging in with password in cleartext!
unsupported parameter to CURLOPT_FTPSSLAUTH: %dFailed to clear the command channel (CCC)Server denied you to change to the given directory%04d%02d%02d %02d:%02d:%02d GMTLast-Modified: %s, %02d %s %4d %02d:%02d:%02d GMT
unsupported MDTM reply format
The requested document is not new enough
The requested document is not old enough
PRET command not accepted: %03dData conn was not available immediately
Wildcard - "%s" skipped by user
ftp_perform ends with SECONDARY: %d
Remembering we are in dir "%s"
Failure sending ABOR command: %spartial download completed, closing connection
server did not report OK, got %dUploaded unaligned file size (%ld out of %ld bytes)Received only partial file: %ld bytes�� �����������?��~�����S����
��&��&��&��&�����A��+���������������������������������������������x������X�8����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�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�X�X�X�X�X�X�X�X�X�X�X��EPSVPASVEPRTPORTSSLTLSAccept-ranges: b%ld-Closing connection %ld
://httpssocks5hsocks5socks4asocks4sockshttp:%25Invalid IPv6 address format
User-Agent: %s
no_proxyNO_PROXYftp@example.comanonymouscan pipelinecan multiplexseriallyall_proxyALL_PROXYmemory shortagehttp_proxyConnecting to hostname: %s
Connecting to port: %d
Pipe is full, skip (%zu)
Penalized, skip
No connections available.
Couldn't resolve host '%s'Couldn't resolve proxy '%s'%s://%s<no protocol>Host name '%s' contains bad letterIDN support not present, can't parse Unicode domains
Connection %ld seems to be dead!
/etc/pki/tls/certs/ca-bundle.crtunknown proxytype option givenConnected to %s (%s) port %ld (#%ld)
Unsupported proxy scheme for '%s'Unsupported proxy '%s', libcurl is built without the HTTPS-proxy support.Please URL encode %% as %%25, see RFC 6874.
No valid port number in proxy string (%s)
Protocol "%s" not supported or disabled in libcurlInvalid network interface: %s; %s
Uses proxy env variable %s == '%s'
Couldn't find host %s in the .netrc file; using defaults
No valid port number in connect to host string (%s)
Found bundle for host %s: %p [%s]
Server doesn't support multi-use yet, wait
Server doesn't support multi-use (yet)
Could pipeline, but not asked to!
Could multiplex, but not asked to!
Connection #%ld is still name resolving, can't reuse
Connection #%ld isn't open enough, can't reuse
MAX_CONCURRENT_STREAMS reached, skip (%zu)
Multiplexed connection found!
Found pending candidate for reuse and CURLOPT_PIPEWAIT is set
Found connection %ld, with requests in the pipe (%zu)
We can reuse, but we want a new connection anyway
Re-using existing connection! (#%ld) with %s %s
No more connections allowed to host: %zu
No connections available in cache
NTLM picked AND auth done set, clear picked!
NTLM-proxy picked AND auth done set, clear picked!
Unix socket path too long: '%s'Cdefault/MATCH:/M:/FIND:lookup word is missing
Failed sending DICT request/DEFINE:/D:/LOOKUP:DICTCLIENT libcurl 7.64.0
MATCH %s %s %s
QUIT
CLIENT libcurl 7.64.0
DEFINE %s %s
QUIT
CLIENT libcurl 7.64.0
%s
QUIT
%%%uOperation too slow. Less than %ld bytes/sec transferred the last %ld seconds zlib/%s libssh2/%s1.8.07.64.0x86_64-redhat-linux-gnudictftpsgopherimapimapsldapldapspop3pop3srtspscpsftpsmbsmbssmtpsmtpstelnettftp8H��8H��@H��8H��8H��8H��8H��8H��8H��8H��8H��8H��8H��@H��@H��@H��@H��@H��@H��@H��8H��8H��8H��8H��8H��8H��8H��8H��8H��8H��8H��8H��8H��8H��8H��8H��8H��8H��8H��8H��8H��8H��8H��8H��8H��8H��@H��@H��@H��@H��8H��@H��8H��8H��8H��8H��8H��8H��8H��8H��8H��8H��8H��8H��8H��8H��8H��8H��8H��8H��8H��8H��8H��8H��8H��8H��8H��8H��@H��@H��@H��8H���G���G���G���G���G���G���G���G���G���G���G���G���G���G���G���G���G���G���G���G���G���G���G���G���G���G���G���G���G���G���G���G���G���G���G���G���G���G���G���G���G���G���G���G���G���G���G���G���G���G���G���G���G���G���G���G���G���G���G���G���G���G���G���G���G���G���G���G���G���G���G���G���G���G���G���G���G���G���G���G���G���G��%%%02X.%ld�L���L���L���M���L���L���L���M���L��N��@O���T��V��xU��O��@O��@O���R���P���P���P���P���P���P���P���P���P���P���P���P���P���P���P���P���P���P���P���P���P���P���P���P���P���P���P���P���P���P���P���P���P���P���P���P���P���P���P���P���P���P���P���P���P���P���P���P���P���P���P���P���P���P���P���P���P���P���P���P���P���P���P���P���P���P���P���P���P���P���P���P���P���P���P���P���P���P���P���P���P���P���P���P���P���P���P���P���P���P���P��,Q���T���T��Q���T���T���T���T���T���T���P���P���T���P��LP���T���O���O���O���O���O���O���O���O���O���O���T���T���T���T���T���T���T���T���T���T���T���T���T���T���T���T���T���T��<P���T���T���O���T���T���T���T���T���T���T���T���T���T���T���T���T���T���T���T���T���T���T���T���T���T���T���T��,P���T���T���T���O���T���T���T���T��P���T���T���T���T���T���T���T���T���O���Y��kZ��$Y��kZ��kZ��kZ��kZ��kZ��kZ��kZ��kZ��kZ��kZ��kZ���X��kZ��kZ��kZ��kZ��8Y��kZ��kZ��kZ��kZ��kZ��kZ��kZ��kZ��kZ��kZ��LY��`Y��mY���Y���Y��kZ��`Y��kZ��kZ��kZ��kZ���Y���Y���Y��kZ��kZ���X��kZ���Y��kZ��kZ���Y��(nil)(nil)0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyz$@USER,%s%127[^= ]%*[ =]%255sTTYPEXDISPLOCNEW_ENV%hu%*[xX]%huBINARYUnknown telnet option %sSENT%s IAC SB (terminated by %u , not IAC SE!) (Empty suboption?)%s (unsupported)%d (unknown)Width: %d ; Height: %d IS SEND INFO/REPLY NAME "%s" =  %.2xSending data failed (%d)WONTDOWILLDONTEXOPL%s %s %s
%s %s %d
%s %d %d
%s IAC %s
%s IAC %d
%c%c%c%c%s%c%c%127[^,],%127s%c%s%c%sIn SUBOPTION processing, RCVDTime-outTELNETEOFSUSPABORTEORNOPDMARKBRKIPAOAYTECELGASBIACECHORCPSUPPRESS GO AHEADSTATUSTIMING MARKRCTENAOLNAOPNAOCRDNAOHTSNAOHTDNAOFFDNAOVTSNAOVTDNAOLFDEXTEND ASCIILOGOUTBYTE MACRODE TERMINALSUPDUPSUPDUP OUTPUTSEND LOCATIONTERM TYPEEND OF RECORDTACACS UIDOUTPUT MARKINGTTYLOC3270 REGIMEX3 PADNAWSTERM SPEEDLFLOWLINEMODEOLD-ENVIRONAUTHENTICATIONENCRYPTNEW-ENVIRONSyntax error in telnet option: %s�u���x���w���v���u��4u��u���s��$w���|���|��p|��X|��@|���|��HOME 	
machineloginpassword.netrc.���<���<���<���<���<���<���<���<������
����������<���<���<���<���<������<���������Ռ��Ì������<���<�������<���<���<���<���<���e���<���S���A���/���w���<�������<���<���<���R���@�����|�������������������������������������������������������������������k�����������Z�����������������������������������I���8���'������������������������������������������������������������������k���Z���ĉ����������������������|���G���������������������������������������������������������������������������������������������������������������������������������������;���*���������������Չ��X���@��������(��������������������k���K���+�������ۆ��Æ����������������������ׇ��������������/�������������������������������������������������������������.Aoperation aborted by callback%zx%sCannot rewind mime/post dataselect/poll returned errorIgnoring the response-body
Failed writing data%s in chunked-encodingRewinding %zu bytes
No URL set!Switch from POST to GET
Disables POST, goes with %s
Moving trailers state machine from initialized to sending.
Unable to allocate trailing headers buffer !operation aborted by trailing headers callbackSuccessfully compiled trailers.
Read callback asked for PAUSE when not supported!read function returned funny valueSignaling end of chunked upload after trailers.
Signaling end of chunked upload via terminating chunk.
seek callback returned error %dthe ioctl callback returned %d
ioctl callback returned error %dnecessary data rewind wasn't possibleRewinding stream by : %zd bytes on url %s (zero-length body)
Excess found in a non pipelined read: excess = %zd url = %s (zero-length body)
The entire document is already downloadedHTTP server doesn't seem to support byte ranges. Cannot resume.Simulate a HTTP 304 response!
Leftovers after chunking: %zu bytes
Rewinding stream by : %zu bytes on url %s (size = %ld, maxdownload = %ld, bytecount = %ld, nread = %zd)
Excess found in a non pipelined read: excess = %zu, size = %ld, maxdownload = %ld, bytecount = %ld
we are done reading and this is set to close, stop send
Failed to alloc scratch buffer!We are completely uploaded and fine
Done waiting for 100-continue
Operation timed out after %ld milliseconds with %ld out of %ld bytes receivedOperation timed out after %ld milliseconds with %ld bytes receivedtransfer closed with %ld bytes remaining to readtransfer closed with outstanding read data remainingMaximum (%ld) redirects followedIssue another request to this URL: '%s'
REFUSED_STREAM, retrying a fresh connect
Connection died, retrying a fresh connect
CONNECT_ONLY is required!Failed to get recent socketeasy handle already used in multi handleMIC ENC PASS ACCT Send: %s%s
clearFailed realloc of size %zuTrying mechanism %s...
PBSZ %uPBSZ=PBSZ=%usafeconfidentialFailed initialization for %s. Skipping it.
Mechanism %s is not supported by the server (server returned ftp code: 504).
Mechanism %s was rejected by the server (server returned ftp code: 534).
server does not support the security extensions
Failed to set the protection's buffer size.Failed to set the protection level.CSEP -> total rwx-tTsS0123456789-APM0123456789:<DIR>������������P���������������������U�������������� ��H��������������1��������������������������������������������������������������������$�������������������������������������������������������������������������������������������
��K�����������������������>�����������X�����������getsockname()AUTH GSSAPITrying against %s
base64-encoding: %s
ADAT %sADAT=base64-decoding: %sError importing service name %s@%sError creating security context
Server didn't accept auth data
@�������h��0����������� �����������Out of memoryMalformed encoding foundWrite errorBad content-encoding foundToo long hexadecimal numberIllegal or missing hexadecimal sequenceTCP_NODELAY set
  Trying %s...
if!host!Couldn't bind to '%s'Local port: %hu
bind failed with errno %d: %sTCP_FASTOPEN_CONNECT set
Connection time-outConnection failed
getpeername() failed with errno %d: %sgetsockname() failed with errno %d: %sssrem inet_ntop() failed with errno %d: %sssloc inet_ntop() failed with errno %d: %sCould not set TCP_NODELAY: %s
sa_addr inet_ntop() failed with errno %d: %sFailed to set SO_KEEPALIVE on fd %d
Failed to set TCP_KEEPIDLE on fd %d
Failed to set TCP_KEEPINTVL on fd %d
Couldn't bind to interface '%s'Local Interface %s is ip %s using address family %i
Name '%s' family %i resolved to '%s' family %i
Bind to local port %hu failed, trying next
Failed to enable TCP Fast Open on fd %d
Immediate connect fail for %s: %s
After %ldms connect time, move on!
connect to %s port %ld failed: %s
Failed to connect to %s port %ld: %sh��x�����������P����������X��X��X���%��p%���(���&���+��x+�� ,��H)���-���,��p,���#���*���*��*���)��`&��p%��`%��Expire in %ld ms for %x (transfer %p)
Internal error removing splay node = %d
Connection #%ld to host %s left intactInternal error clearing splay node = %d
In state %d with no conn, bail out!
Resolving timed out after %ld millisecondsConnection timed out after %ld millisecondsHostname '%s' was found in DNS cache
Re-used connection seems dead, get a new one
Error while processing content unencoding: %sError while processing content unencoding: Unknown failure within decompression software.Unrecognized content encoding type. libcurl understands %s content encodings.1.2.0.41.2.11identityx-gzipdeflateIT��`S���S���S�� T��@S��1T��1T��PU��S��U���T���T��%sAuthorization: Digest %s
%sAuthorization: Negotiate %s
Unknown errorNo errorFailed initializationCouldn't resolve proxy nameCouldn't resolve host nameCouldn't connect to serverWeird server replyFTP: unknown PASS replyFTP: unknown PASV replyFTP: couldn't set file typeTransferred a partial fileQuote command returned errorHTTP response code said errorTimeout was reachedFTP: command PORT failedFTP: command REST failedSSL connect errorCouldn't resume downloadCouldn't read a file:// fileLDAP: cannot bindLDAP: search failedMalformed telnet optionSSL crypto engine not foundInvalid LDAP URLRequested SSL level failedLogin deniedTFTP: File Not FoundTFTP: Access ViolationTFTP: Illegal operationTFTP: Unknown transfer IDRemote file already existsTFTP: No such userConversion failedRemote file not foundError in the SSH layerRTSP session errorUnable to parse FTP file listChunk callback failedUnsupported protocolInvalid multi handleInvalid easy handleInternal errorInvalid socket argumentUnknown optionCURLSHcode unknownShare currently in useInvalid share handleUnknown share optionUnknown error %dURL using bad/illegal format or missing URLA requested feature, protocol or option was not found built-in in this libcurl due to a build-time decision.Access denied to remote resourceFTP: The server failed to connect to data portFTP: Accepting server connect has timed outFTP: The server did not accept the PRET command.FTP: unknown 227 response formatFTP: can't figure out the host in the PASV responseError in the HTTP2 framing layerFTP: couldn't retrieve (RETR failed) the specified fileFailed writing received data to disk/applicationUpload failed (at start/before it took off)Failed to open/read local data from file/applicationRequested range was not delivered by the serverInternal problem setting up the POSTA required function in the library was not foundOperation was aborted by an application callbackA libcurl function was given a bad argumentFailed binding local connection endNumber of redirects hit maximum amountAn unknown option was passed in to libcurlServer returned nothing (no headers, no data)Can not set SSL crypto engine as defaultFailed to initialise SSL crypto engineFailed sending data to the peerFailure when receiving data from the peerProblem with the local SSL certificateCouldn't use specified SSL cipherSSL peer certificate or SSH remote key was not OKProblem with the SSL CA cert (path? access rights?)Unrecognized or bad HTTP Content or Transfer-EncodingFailed to shut down the SSL connectionFailed to load CRL file (path? access rights?, format?)Issuer check against peer certificate failedSend failed since rewinding of the data stream failedDisk full or allocation exceededCaller must register CURLOPT_CONV_ callback optionsSocket not ready for send/recvRTSP CSeq mismatch or invalid CSeqThe max connection limit is reachedSSL public key does not match pinned public keySSL server certificate status verification FAILEDStream error in the HTTP/2 framing layerAPI function called from within callbackPlease call curl_multi_perform() soonThe easy handle is already added to a multi handleFeature not enabled in this library�V���V���V���V���V��tV��dV��TV��DV��4V��$V��V��V���U���U���U���U���U���U���U���V��tU��dU��TU���V��DU��4U��$U��U���V��U���T���V���T���T���T���T���T���T���T���V��tT��dT��TT���V��DT���V��4T��$T��T���V���V��T���S���S���S���S���V���S���S���S���S��tS��dS��TS��DS��4S��$S��S��S���R���R���R���R���R���R���R���R��tR��dR��TR��DR��4R��$R��R��R���Q���Q���Q���Q���Q���Q���Q���U���U���U���U���U���U���U���U���U��V��V��<V���V��DV��TV��dV��tV��MonMondayJan%02d:%02d:%02d%nFebMarAprMayJunJulAugSepOctNovDecTuesdayWednesdayThursdayFridaySaturdaySundayTueWedThuFriSatSun%31[ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz];Zx����0NGMTUTUTCWETBST���WAT<AST�ADT�EST,EDT�CSThCDT,MST�MDThPST�PDT�YSTYDT�HSTXHDTCATXAHSTXNT�IDLW�CET���MET���MEWT���MEST����CEST����MESZ����FWT���FST����EET����WAST\���WADT ���CCT ���JST��EAST����EADTl���GST����NZT0���NZST0���NZDT�IDLE0���A<BxC�D�E,FhG�H�IKXL�M�N���O����PL���Q���R���S����T\���U ���V��W����Xl���Y0���ZReceived last DATA packet block %d again.
Received unexpected DATA packet block %d, expecting block %d
Timeout waiting for block %d ACK.  Retries = %d
set timeouts for state %d; Total %ld, retry %d maxtry %d
Received ACK for block %d, expecting %d
tftp_tx: giving up waiting for block %d acktftp_tx: internal error, event: %itftp_send_first: internal errorMalformed ACK packet, rejectinginvalid blocksize value in OACK packetblksize is larger than max supportedblksize is smaller than min supportedserver requested blksize larger than allocatedinvalid tsize -:%s:- value in OACK packetInternal error: Unexpected packettftp_rx: internal errorConnected for receiveConnected for transmitbind() failed; %s;mode=octetnetasciiTFTP file name too long
%s%c%s%ctsizeblksizeTFTP finishedInternal state machine errorTFTP response timeoutReceived too short packetTFTP error: %s
got option=(%s) value=(%s)
%s (%d)%s (%ld)requestedblksize parsed from OACK%s (%d) %s (%d)
tsize parsed from OACK%s (%ld)
TFTP�j���m���m���j���j���j���j���j��SOCKS4%s request granted.
SOCKS5: no connection hereSOCKS5: connection timeoutSOCKS5 nothing to readSOCKS5 read timeoutSOCKS5 read error occurredSOCKS5 request granted.
SOCKS4%s: connecting to HTTP proxy %s port %d
SOCKS4 communication to %s:%d
SOCKS4 connect to IPv4 %s (locally resolved)
SOCKS4 connection to %s not supported
Failed to resolve "%s" for SOCKS4 connect.Too long SOCKS proxy name, can't use!
Failed to send SOCKS4 connect request.Failed to receive SOCKS4 connect request ack.SOCKS4 reply has wrong version, version should be 4.Can't complete SOCKS4 connection to %d.%d.%d.%d:%d. (%d), request rejected or failed.Can't complete SOCKS4 connection to %d.%d.%d.%d:%d. (%d), request rejected because SOCKS server cannot connect to identd on the client.Can't complete SOCKS4 connection to %d.%d.%d.%d:%d. (%d), request rejected because the client program and identd report different user-ids.Can't complete SOCKS4 connection to %d.%d.%d.%d:%d. (%d), Unknown.SOCKS5: connecting to HTTP proxy %s port %d
SOCKS5: server resolving disabled for hostnames of length > 255 [actual len=%zu]
SOCKS5: error occurred during connectionwarning: unsupported value passed to CURLOPT_SOCKS5_AUTH: %lu
SOCKS5 communication to %s:%d
Unable to send initial SOCKS5 request.Unable to receive initial SOCKS5 response.Received invalid version in initial SOCKS5 response.Unable to negotiate SOCKS5 GSS-API context.Failed to send SOCKS5 sub-negotiation request.Unable to receive SOCKS5 sub-negotiation response.User was rejected by the SOCKS5 server (%d %d).SOCKS5 GSSAPI per-message authentication is not supported.No authentication method was acceptable. (It is quite likely that the SOCKS5 server wanted a username/password, since none was supplied to the server on this connection.)No authentication method was acceptable.Undocumented SOCKS5 mode attempted to be used by server.SOCKS5 connect to IPv4 %s (locally resolved)
SOCKS5 connect to IPv6 %s (locally resolved)
SOCKS5 connection to %s not supported
Failed to resolve "%s" for SOCKS5 connect.SOCKS5 GSS-API protection not yet implemented.Failed to send SOCKS5 connect request.Failed to receive SOCKS5 connect request ack.SOCKS5 reply has wrong version, version should be 5.Can't complete SOCKS5 connection to %d.%d.%d.%d:%d. (%d)Can't complete SOCKS5 connection to %s:%d. (%d)Can't complete SOCKS5 connection to %02x%02x:%02x%02x:%02x%02x:%02x%02x:%02x%02x:%02x%02x:%02x%02x:%02x%02x:%d. (%d)Link points to itselfNo such file or directoryOperation failedBad message from SFTP serverNot connected to SFTP serverInvalid handleUnknown error in libssh2File already existsFile is write protectedNo mediaDisk fullUser quota exceededUnknown principleFile lock conflictDirectory not emptyNot a directoryInvalid filenamePermission deniedssh errorSSH MD5 fingerprint: %s
MD5 checksum match!
SSH host check: %d, key: %s
Warning, writing %s failed!
publickey%s/.ssh/id_rsa%s/.ssh/id_dsahostbasedFailure connecting to agent
No identity would match
keyboard-interactiveAuthentication failureAuthentication complete
SSH CONNECT phase done
Sending quote commands
pwdPWD
chgrp chmod chown ln symlink mkdir rename rmdir rm statvfs Unknown SFTP commandchmodchgrpchownsymlink command failed: %smkdir command failed: %srename command failed: %srmdir command failed: %srm command failed: %sstatvfs command failed: %sBad file size (%ld)Upload failed: %s (%d/%d)Creating directory '%s'
 -> %sShutdown<none>Operation timed outSFTPSCPConnection to SFTP server lostOperation not supported by SFTP serverFailure establishing ssh session: %d, %sWarning adding the known host %s failed!
SSH user accepted with no authentication
SSH authentication methods available: %s
Using SSH public key file '%s'
Using SSH private key file '%s'
Initialized SSH public key authentication
SSH public key authentication failed: %s
Initialized password authentication
Could not create agent object
Failure requesting identities to agent
Agent based authentication successful
Initialized keyboard interactive authentication
Failure initializing sftp session: %s257 "%s" is current directory.
Syntax error in SFTP command. Supply parameter(s)!Syntax error: Bad first parameterSyntax error in chgrp/chmod/chown: Bad second parameterSyntax error in ln/symlink: Bad second parameterSyntax error in rename: Bad second parameterAttempt to get SFTP stats failed: %sSyntax error: chgrp gid not a numberSyntax error: chmod permissions not a numberSyntax error: chown uid not a numberAttempt to set SFTP stats failed: %sstatvfs:
f_bsize: %llu
f_frsize: %llu
f_blocks: %llu
f_bfree: %llu
f_bavail: %llu
f_files: %llu
f_ffree: %llu
f_favail: %llu
f_fsid: %llu
f_flag: %llu
f_namemax: %llu
Creating the dir/file failed: %sCould not open directory for reading: %sCould not open remote file for reading: %s :: %dCould not open remote file for reading: %sFailed to close libssh2 file: %d %s
Failed to stop libssh2 sftp subsystem
SCP requires a known file size for uploadFailed to send libssh2 channel EOF: %d %s
Failed to get channel EOF: %d %s
Channel failed to close: %d %s
Failed to free libssh2 scp subsystem: %d %s
Failed to disconnect libssh2 session: %d %s
Failed to disconnect from libssh2 agent: %d %s
Failed to free libssh2 session: %d %s
Denied establishing ssh session: mismatch md5 fingerprint. Remote %s is not equal to %sDenied establishing ssh session: md5 fingerprint not availableFailure initialising ssh sessionFailed to enable compression for ssh session
Failed to read known hosts from %s
�x���x���w���x���w���w���w���w���w��x���w�� x��0x��@x��Px��`x��px���x���x���x���x��x��ʘ���{���{��
|��$�����������4���'���I���(���������������� ���ʘ�����Γ��������h���k��������������0���x�����؄��H�������9���W������Ԛ��0���b�������P�����(���8����1�������a�������8���������ʘ���~���~������x���&���(~��K���QOOOOOOONOOOOOOOO<<OOCOOO<<O7OOOOON	OOOOOONI	OFFO	GSS-API error: %s failed:
%srcmdnoout GSS-API data GSS-API integrity GSS-API confidentialitygss_import_name()gss_init_sec_contextgss_inquire_contextgss_display_namegss_wrapgss_unwrapFailed to create service name.Failed to initial GSS-API token.Failed to send GSS-API authentication request.Failed to send GSS-API authentication token.Failed to receive GSS-API authentication response.Invalid GSS-API authentication response type (%d %d).Could not allocate memory for GSS-API authentication response token.Failed to receive GSS-API authentication token.Failed to determine user name.SOCKS5 server authencticated user %s with GSS-API.
SOCKS5 server supports GSS-API %s data protection.
Failed to wrap GSS-API encryption value into token.Failed to send GSS-API encryption request.Failed to send GSS-API encryption type.Failed to receive GSS-API encryption response.Invalid GSS-API encryption response type (%d %d).Failed to receive GSS-API encryptrion type.Failed to unwrap GSS-API encryption value into token.Invalid GSS-API encryption response length (%d).SOCKS5 access with%s protection granted.
%c%03dLIST "%s" *SEARCH %sUID FETCH %s BODY[%s]<%s>UID FETCH %s BODY[%s]Cannot FETCH without a UID.PREAUTHCAPABILITYSTORESELECTFETCHEXAMINESEARCHEXPUNGELSUBNOOPAUTHENTICATE %s %sAUTHENTICATE %sLOGIN %s %sLOGINDISABLEDSASL-IRAUTH=STARTTLSSTARTTLS not supported.STARTTLS deniedAuthentication cancelledAccess denied. %cSelect failedFound %ld bytes to download
UIDVALIDITYMAILINDEXSECTIONPARTIALMime-VersionMime-Version: 1.0APPEND %s (\Seen) {%ld}SELECT %sIMAPSIMAPCannot SEARCH without a query string.Unexpected continuation responseNo known authentication mechanisms supported!
PREAUTH connection, already authenticated!
Got unexpected imap-server responseOK [UIDVALIDITY %19[0123456789]]Mailbox UIDVALIDITY has changedWritten %zu bytes, %lu bytes are left for transfer
Failed to parse FETCH response.Cannot APPEND without a mailbox.Cannot APPEND with unknown input file size
Cannot SELECT without a mailbox.0��0��L��0��0��0��0��\����,��0��0��0��T�������t���4����T�������l��<�L�L�<�<�<�<�<�<�<�<�<�<�<�<�<�<�<�<�<�<�<�<�<�<�<�L�L�<�L�L�<�<�<�<�<�<�<�<�<�<�<�<�<�<�<�<�<�<�<�<�<�<�<�<�<�<�<�L�L�L�L�<�L�<�<�<�<�<�<�<�<�<�<�<�<�<�<�<�<�<�<�<�<�<�<�<�<�<�<�L�L�L�<���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������AUTH %s %sCAPA+OKAPOP %s %s+APOPRETR
.
SASL STLSSTLS not supported.Authentication failed: %dpopPOP3SPOP3Got unexpected pop3-server response������������������d��D�����VRFYHELPRCPT TO:%sRCPT TO:<%s>EHLO %sHELO %sRemote access denied: %dAUTH STARTTLS denied, code %dCommand failed: %dMAIL failed: %dRCPT failed: %dDATADATA failed: %d<>MAIL FROM:%sMAIL FROM:%s AUTH=%s SIZE=%sMAIL FROM:%s SIZE=%sMAIL FROM:%s AUTH=%s
..SMTPSSMTPGot unexpected smtp-server response: %d��������`��(��������������X�����X��������`��0����������������(��P��5��server response timeoutselect/poll errorresponse reading failedcached response data too big to handleExcessive server response line length received, %zd bytes. Stripping
The CSeq of this request %ld did not match the response %ldGot an RTP Receive with a CSeq of %ld
Got invalid RTSP request: RTSPREQ_LASTRefusing to issue an RTSP request [%s] without a session ID.Refusing to issue an RTSP SETUP without a Transport: header.CSeq cannot be set as a custom header.Session ID cannot be set as a custom header.Content-Type: text/parameters
Content-Type: application/sdp
Got an error writing an RTP packetUnable to read the CSeq header: [%s]Got RTSP Session ID Line [%s], but wanted ID [%s]ANNOUNCEAccept: application/sdp
GET_PARAMETERSET_PARAMETERDESCRIBESETUPPLAYTEARDOWNPAUSEGot invalid RTSP requestTransportTransport: %s
Range: %s
CSeqSession%s %s RTSP/1.0
CSeq: %ld
Session: %s
%s%s%s%s%s%s%s%sFailed sending RTSP requestCannot pause RTPFailed writing RTP dataCSeq:: %ldSession:Got a blank Session IDRTSP�,���+��,��|,��4,��D'��L,���+���+��d,��d+���&���+��\6DN: ;binaryurl parsing problemLDAP local: %s
LDAP local: %s://%s:%dsuccessout of memorybad parameterunrecognized schemeunbalanced delimiterbad URLbad host or portbad or missing attributesbad or missing scopebad or missing filterbad or missing extensionsLDAPSLDAPLDAP local: bind ldap_result %sLDAP local: bind ldap_parse_result %sLDAP remote: bind failed %s %sLDAP local: search ldap_result %sLDAP local: search ldap_parse_result %sLDAP remote: search failed %s %sThere are more than %d entries
LDAP local: ldap_search_ext %sLDAP local: Cannot connect to %s, %sFailed sending Gopher requestGOPHERallocate connect buffer!
%s%s%s:%dHost: %s
CONNECT response too large!Proxy CONNECT abortedchunk reading DONE
Ignore chunked response-body
CONNECT responded chunked
HTTP/1.%d %dConnect me again please
CONNECT phase completed!
CONNECT %s HTTP/%s
%s%s%s%sEstablish HTTP proxy tunnel to %s:%d
Failed sending CONNECT to proxyProxy CONNECT aborted due to timeoutProxy CONNECT connection closed
Ignore %ld bytes of response-body
Ignoring Content-Length in CONNECT %03d response
Ignoring Transfer-Encoding in CONNECT %03d response
Received HTTP code %d from proxy after CONNECTProxy replied %d to CONNECT request
Could not resolve %s: %sgetaddrinfo() thread failed to start
%.*s. %sAuthorization: NTLM %s
NTLM auth restarted
NTLM handshake rejected
NTLM handshake failure (internal error)
NTLMUSERLOGNAME\//usr/bin/ntlm_authCould not fork. errno %d: %s--username--use-cached-credsntlmssp-client-1--helper-protocol--domaintoo large ntlm_wb response!NTLM %.*sYR
%sAuthorization: %s
TT %s
Could not access ntlm_auth: %s errno %d: %sCould not open socket pair. errno %d: %sCould not redirect child stdin. errno %d: %sCould not redirect child stdout. errno %d: %sCould not execl(). errno %d: %s%c%c%c%c%c%c%c%cKGS!@#$%LOGINEXTERNALXOAUTH2PLAINOAUTHBEARERDIGEST-MD5CRAM-MD5AQ==Unsupported SASL authentication mechanism������|���L���D����|���l�����������L���܄��̇��t����������/dev/urandom0123456789abcdefWARNING: Using weak random seed
xn--%ld%sConnection cache is full, closing the oldest one.
Server %s is blacklisted
Conn: %ld (%p) Receive pipe weight: (%ld/%ld), penalized: %s
Site %s:%d is pipeline blacklisted
/.//./..//..http2 error: %.*s
Internal NULL stream! 5
:statusHTTP/2  
failed to duplicate handle
Internal NULL stream!
Failed sending HTTP2 data:authoritystream %d closed
:method:path:schemetrailersupgradeproxy-connectiontransfer-encoding%zd data bytes written
Failed receiving HTTP2 dataCouldn't initialize nghttp2! nghttp2/%sstopped the pause stream!
h2c
d���d������d���d���d���d�����d���d�������d���d���d���d���d���8���P���Connection state changed (MAX_CONCURRENT_STREAMS == %u)!
failed to add handle to multi
failed to set user_data for stream %d
http/2: failed to clear user_data for stream %d!
h2_process_pending_input: nghttp2_session_mem_recv() returned %zd:%s
HTTP/2 stream %d was not closed cleanly: %s (err %u)HTTP/2 stream %d was closed cleanly, but before getting  all response header fields, treated as errorFailed sending HTTP request: Header overflowhttp2_send: Warning: The cumulative length of all headers exceeds %zu bytes and that could cause the stream to be rejected.
Using Stream ID: %x (easy handle %p)
nghttp2_session_mem_recv() returned %zd:%s
%d bytes stray data read before trying h2 connection
nghttp2_submit_ping() failed: %s(%d)nghttp2_session_send() failed: %s(%d)Couldn't initialize nghttp2 callbacks!nghttp2 unexpectedly failed on pack_settings_payloadConnection: Upgrade, HTTP2-Settings
Upgrade: %s
HTTP2-Settings: %s
Using HTTP2, server supports multi-use
Connection state changed (HTTP/2 confirmed)
nghttp2_session_upgrade() failed: %s(%d)http/2: failed to set user_data for stream %d!
nghttp2_submit_settings() failed: %s(%d)nghttp2_session_set_local_window_size() failed: %s(%d)connection buffer size is too small to store data following HTTP Upgrade response header: buflen=%zu, datalen=%zuCopying HTTP/2 data in stream buffer to connection buffer after upgrade: len=%zu
nghttp2_session_mem_recv() failed: %s(%d)Invalid input packetSMBSSMBp����������0��0�����NT LM 0.12x86_64-redhat-lirb--

--.gifmultipart/mixed; filename="; name="; boundary=8bitattachmentContent-Dispositiontext/plainmultipart/Content-Type: %s%s%sContent-Transfer-EncodingContent-Transfer-Encoding: %simage/gif.jpgimage/jpeg.jpeg.pngimage/png.svgimage/svg+xml.txt.htmtext/html.html.pdfapplication/pdf.xmlapplication/xml7bitbase64quoted-printableP� ���p��`�`�h�O�����������|���~�����X����������0123456789ABCDEFABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/Can't add itself as a subpart!Content-Disposition: %s%s%s%s%s%s%s----------------FLUSHRELOADCURLOPT_SSL_VERIFYHOST no longer supports 1 as value!	
/~/ 	
         (((((                  �AAAAAABBBBBB a DOH request is completed, %u to go
Failed to encode DOH packet [%d]
Content-Type: application/dns-messageDOH request %s
%s?dns=%sAAAAbad error codeCould not DOH-resolve: %sDOH: %s type %s for %s
DOH Host name: %s
TTL: %u seconds
DOH A: %u.%u.%u.%u
DOH AAAA: %s%02x%02xCNAME: %s
Bad labelOut of rangeLabel loopToo smallRDATA lengthMalformatBad RCODEUnexpected TYPEUnexpected CLASSNo contentBad ID%%%02xlocalhost/127.0.0.1/ftp.dict.ldap.imap.smtp.pop3.25%*[^]]%c%n0123456789abcdefABCDEF::.%#?;file://%s%s%s[%*45[0123456789abcdefABCDEF:.]%c%n%s://%s%s%s%s%s%s%s%s%s%s%s%s%s%s%sĝ��4���L���d���t������������������d���,�������\�������ܥ������<������D���T���d���$���4�������������������D���t���%s/%s@%s%s/%s\/@%s %02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02xauth-int%s:%s:%08x:%s:%s:%s%s, opaque="%s"%s, algorithm="%s"%s, userhash=truenonce="realm="algorithm=qop="md5-sess,auth-confnoncestalerealmopaqueqopalgorithmMD5-sessSHA-256SHA-256-SESSSHA-512-256SHA-512-256-SESSuserhashusername="%s", realm="%s", nonce="%s", uri="%s", cnonce="%s", nc=%08x, qop=%s, response="%s"username="%s", realm="%s", nonce="%s", uri="%s", response="%s"username="%s",realm="%s",nonce="%s",cnonce="%s",nc="%s",digest-uri="%s",response=%s,qop=%sgss_import_name() failed: gss_display_name() failed: gss_unwrap() failed: gss_wrap() failed: GSSAPI handshake failure (empty challenge message)
gss_init_sec_context() failed: GSSAPI handshake failure (empty security message)
gss_inquire_context() failed: GSSAPI handshake failure (invalid security data)
GSSAPI handshake failure (invalid security layer)
NTLM handshake failure (empty type-2 message)
NTLM handshake failure (bad type-2 message)
NTLM handshake failure (bad type-2 message). Target Info Offset Len is set incorrect by the peer
NTLMSSP%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%s%sgethostname() failed, continuing without!
NTLMSSP%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%cuser + domain + host name too bigincoming NTLM message too biguser=%sauth=Bearer %suser=%shost=%sauth=Bearer %suser=%shost=%sport=%ldauth=Bearer %sSPNEGO handshake failure (empty challenge message)
SSL_ERROR unknownSSL_ERROR_NONESSL_ERROR_WANT_READSSL_ERROR_WANT_WRITESSL_ERROR_WANT_X509_LOOKUPSSL_ERROR_SYSCALLSSL_ERROR_ZERO_RETURNSSL_ERROR_WANT_CONNECTSSL_ERROR_WANT_ACCEPTSSL_ERROR_SSLSSL Engine '%s' not foundSSLv3TLSv1.1TLSv1.2TLSv1.0SSLv2TLS UnknownTLS alertErrorClient helloNext protocolCertificate StatusFinishedCERT verifyServer finishedRequest CERTClient key exchangeServer key exchangeCertificateNewsession TicketServer helloChange cipher specTLS change cipherClient CERTServer verifyClient finishedClient keyHello requestTLS app dataTLS headerTLS handshake(%x)%s (%s), %s, %s (%d):
failed to store ssl session%s(%s)SSL_ERROR_WANT_READ
SSL_ERROR_WANT_WRITE
SSL shutdown timeoutOpenSSL%s/%lx.%lx.%lx%sSSL_write() error: %sPEMDERENGP12ALPN, offering %s
http/1.1pkcs11:LOAD_CERT_CTRLcurl user interfaceunable to set private keyCipher selection: %s
  CAfile: %s
  CApath: %s
error loading CRL file: %ssuccessfully load CRL file:
  CRLfile: %s
SSL re-using session ID
SSL: SSL_set_fd failed: %spkcs110123456789ABCDEFSSL certificate problem: %sSSL connection using %s / %s
SSLKEYLOGFILE[NONE]SubjectIssuer%lxSerial NumberSignature AlgorithmPublic Key AlgorithmStart dateExpire date   Unable to load public key
RSA Public Keypub_keySignature%02x:Cert%s certificate:
 subject: %s
 start date: %.*s
 expire date: %.*s
vtls/openssl.cSSL: illegal cert name field common name: %s (matched)
 issuer: %s
 SSL certificate verify ok.
No OCSP response receivedInvalid OCSP responseOCSP response has expiredSSL connection timeoutNPN, negotiated HTTP2 (%s)
NPN, negotiated HTTP1.1
NPN, no overlap, use HTTP1.1
openssl����(��8��H��X��h��x�����Y����H�����7��������������������&�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������	��}��l��[��J��9��(��Failed to initialise SSL Engine '%s':
%sOpenSSL SSL_read: %s, errno %dold SSL session ID is stale, removing
OpenSSL SSL_read on shutdown: %s, errno %dselect/poll on SSL socket, errno: %dSSL_get_shutdown() returned SSL_SENT_SHUTDOWN
SSL_get_shutdown() returned SSL_RECEIVED_SHUTDOWN
SSL_get_shutdown() returned SSL_SENT_SHUTDOWN|SSL_RECEIVED__SHUTDOWN
SSL_write() returned SYSCALL, errno = %dError: %s does not support double SSL tunneling.OpenSSL SSL_write: %s, errno %dset default crypto engine '%s'
set default crypto engine '%s' failedlibcurl is now using a weak random seed!
ALL:!EXPORT:!EXPORT40:!EXPORT56:!aNULL:!LOW:!RC4:@STRENGTHOpenSSL was built without SSLv2 supportUnrecognized parameter passed via CURLOPT_SSLVERSIONSSL: couldn't create a context: %sOpenSSL was built without TLS 1.3 supportcould not load PEM client certificate, OpenSSL error %s, (no key found, wrong pass phrase, or wrong file format?)could not load ASN1 client certificate, OpenSSL error %s, (no key found, wrong pass phrase, or wrong file format?)ssl engine does not support loading certificatesssl engine cannot load client cert with id '%s' [%s]ssl engine didn't initialized the certificate properly.unable to set client certificatecrypto engine not set, can't load certificateBIO_new return NULL, OpenSSL error %scould not open PKCS12 file '%s'error reading PKCS12 file '%s'could not parse PKCS12 file, check password, OpenSSL error %scould not load PKCS12 client certificate, OpenSSL error %sunable to use private key from PKCS12 file '%s'private key from PKCS12 file '%s' does not match certificate in same filecannot add certificate to client CA listcannot add certificate to certificate chainnot supported file type '%s' for certificateunable to set private key file: '%s' type %sunable do create OpenSSL user-interface methodfailed to load private key from crypto enginecrypto engine not set, can't load private keyfile type P12 for private key not supportednot supported file type for private keyunable to create an SSL structurePrivate key does not match the certificate public keyfailed setting cipher list: %serror setting certificate verify locations:
  CAfile: %s
  CApath: %serror setting certificate verify locations, continuing anyway:
successfully set certificate verify locations:
error signaled by ssl ctx callbackSSL: couldn't create a context (handle)!WARNING: failed to configure server name indication (SNI) TLS extension
SSL: SSL_set_session failed: %sOpenSSL SSL_connect: %s in connection to %s:%ld ALPN, server accepted to use %.*s
ALPN, server did not agree to a protocol
SSL: couldn't get peer certificate! subjectAltName: host "%s" matched cert's "%s"
 subjectAltName: host "%s" matched cert's IP address!
 subjectAltName does not match %s
SSL: no alternative certificate subject name matches target host name '%s'SSL: unable to obtain common name from peer certificateSSL: certificate subject name '%s' does not match target host name '%s'SSL: couldn't get X509-issuer name!SSL: Unable to open issuer cert (%s)SSL: Unable to read issuer cert (%s)SSL: Certificate issuer check failed (%s) SSL certificate issuer check ok (%s)
SSL certificate verify result: %s (%ld) SSL certificate verify result: %s (%ld), continuing anyway.
Invalid OCSP response status: %s (%d)OCSP response verification failedSSL certificate status: %s (%d)
SSL certificate revocation reason: %s (%d)SSL: public key does not match pinned public key!@@SSL certificate verification faiUnrecognized parameter value passed via CURLOPT_SSLVERSIONCURL_SSLVERSION_MAX incompatible with CURL_SSLVERSION	 public key hash: sha256//%s
CURL_SSL_BACKEND%s:;sha256//-----BEGIN PUBLIC KEY-----
-----END PUBLIC KEY-----multi;p�\��<����������l�� ���, ���x |&��� '��!l'��!�'��,!L*���!�,���!�,��"�,��"-��0"l-��X"�-��t"�-���"/���"�/���"�/��#�/��#L0��,#1��P#�1���#3���#<4��$$�4��d$�4��x$l5���$,:��%L:��%�<��`%�<��t%�<���%\=���%�>���%|@���%�@��&�A��<&lB��`&|B��t&<C���&�C���&�C���&�C���&<D��'L��x'lL���'�L���'�O��H(�\���(�]���(|^��)�^��\)<_���)\_���)�_���)\a��D*�a���*b���*�b���*,c��+�c��8+�d��|+lu��,�y��T,z���,<z���,�z��-\{��D-�}���-�~���-���.����d.����x.����.,����.\����.�����.���/����X/���/�����/̈��0|���\0�����0L����0L����0܌��1L���h1\���|1�����1\���2,���T2L���h2�����2�����2��03���d3̠���3̡��4����,4|����4�����4|���5����5���6���x6����6l���6����6\�$7�p7���7���7�� 8��D8���8�� 9��t9L��9���9��9L�:\�,:��X:��:<��:l� ;���l;����;|����;,���<���L<����<����<����<��H=l��h=�	���=L
���=�
���=\��><���>����>����>L���>����>|��L?����?����?l��@,��d@����@���A� ��TA�!���A"���AL4��TB|;���B�B��C�C��\CD��pC�E���C�E���C�F���C�I���C�J��(D,K��PD\K��pDlL���DM���DLM��E�M��8E�N��`EQ���ElT���E�U��F�V��LF�V��dF\X��G�Y��4GZ��HGLZ��\G|Z��pG�Z���G�Z���G�[���G\���G,\��H|\��0H�`��|H\g���H�h��I�i��DIl����I�����I�����I����<JL���PJl���dJL����J\����J,����J���Kܩ��8K����TK<���tK|����K�����K̫���K����8LL���dLl���xL|����L�����LL����Ll����L����Ml���8M,���M����M���M����M���N���NL��8N���PN���dN���|N,���N|���N,��@O\���O����O|���O���P���DPL���P��<Q��Q��Q�����Ql���(R����DR���pR,����R\���R���R���$S����S����S����S���S���S|��0T���dT�!���T�!���T,"���T\"���T,#��Ul#��U|#��,U�#��DU\$���U<%���U�%���U�%���UL&��V�&��(V�&��DVl)���V*���Vl*���V�-��W�.��0W,0���W�0���W�1���W�1��X�2��PX�5���X\6���X�7��Y�9��TY<;���Y�;���Y?��PZ�?��|Z�?���Z@���Zl@���Z�A��[�A��([,B��P[<B��d[�P���[�P���[�P���[lQ��\|Q��(\�Q��<\�Q��P\lR���\|X�� ]LY��d]�Y���]�Y���]|^���]_���],_��^�_��4^�`��X^�a��l^lb���^�d���^,e��(_�e��\_|f��x_g���_�h���_�s��8`�t���`�y���`�z��a{�� al{��\a�{��pa|���a�|���a,}���a<}���a�}���a<~��b�~��Xb����b�����b���Dc�����c����c<����c\����c�����ĉ��d��(dl���<d|���Pd����dd����xd�����d����d�����d����e����4el����e�����e����eܐ��4f����f,����fL����f\����fl����f��� g\���4g����Hg����\g,����gL����g����g<���h���� h̛��lh���hL����h���� i��li,����i<����i����i,����i�����j�����j|�� k���Tk<���k����k���4ll��Xl���ll����l����l����l����l���lL���l����l���m���$m���8m���Lm��`m����ml���m����m���0n��|n\���n|���n����n���nL��ol��lo����o,���o<���oL���o\��p|��p���hp����p����pl���p���Dq��`q���ql���q���r��r���Tr����r����r\��s���4s���Ls�tsl��s|�t��4t��|t���t���tL��t��t��<u��Tu\�pu|��u\��u���uL�<v����v\����v����w���0w�����w�����wL����w��,xl��`x���x����xl��y���,y���dy�
���y|��$z��tz|���z����z����z<��D{<���{|���{����{��� |L���|�*��T}�*��h}�*��|}�*���}�*���}+���}+���}L+���}�,���}�,��~<-��8~�-��p~\.���~�.���~,/��p���|q��T��q����r����\r�����r����r����t��0��t��D�u��X��u�����u����v��܁�w��(��y��t��y����{��؂�{����|��t��~��ă<���d�������<���Ą�������$�<���T�|���l�̎����\����,����<��� �����L�L���x����Ȇܔ��������̖��T�,���t������ܘ��ԇ,���8�l���L�����h���������������������|���H�̨��̉��������l�\�����|�����L����\����̵�� �ܵ��4�L���l�����,�����̷��̋l��������,�̻����|����ܾ���l������������<������<�<��X������������Ď,����������h���|�<�������ď<���|��(�,��T���������\�P�����|��L�������<������T�<�h��������<�ē\�ؓ�������8���t����������t������L�����\���������,��X�\��t��������������Ė���ؖ��������������(���<�,��P�<��d�L��x�\����l����|�������ȗ���ܗ����,��@�L��X�������������������ȘL���|��X�l�����������D����p�����L�����������L��<���������ț���ܛ���������&��|��(����)����)���|*��L��*��`��*��t��*�����*����+����,+��ԝl,�� ��,��4�\.�����.��؞,2��(�<2��<�L2��P�\2��d�l2��|�\3��ȟ�3���l4��4��6����7����L8�����<��h��>�����?����A��D��B��p�lC����E���F��4�|F�����G��̣�H��4�|I��d��I��x��J��ؤLK���|K����K��,��R��ĥ�Y��t�|[����L\����|^��D��^��X��^����_����,_����`��ا|`����`��$�a��8�La��L��a����<b����c����d��4��e�����f��̩lg���Lh��<��i����\j�����k����k����k����l��x�Lm�����m��̫|n��$��o��p�,p�����p���,q�� �\q��4��q��H��q��\��q��p��q�����t��ԭu����x��8�Ly��X�,z����<{����|{����{��0��|��d�}�������ܯ̂�������L�����l�<�����\���ذ<���<�����������ر����$�ܘ��P�<���p�L�����\�����̙��������,����<����������l���\������������|����<��������P�<�����<���̴�������� �,���4�l���\�̦�������������|���ȵ��������P����������ض,���(�L���l�ܵ����̷��������̹��0�ܹ��D�����X����l����������������|���̸����������|���������ܾ��0�����L�������<���������̹����L��D����`�����������0�l��X����������<��(����`�����������<��м���|��(�<��P����������L���l��4����d�������������L�l����|����������������(�l��x�l��������d�L���������|N����LO���<Q��P��S�����S���T���<T��(�\T��<��T��P��T��d��T��x��T����U����,U�����V����W�����W��,�Y��\��^����<_����Lc��0��d�����k����l���ll��4��l��p�,m�����m�����m�����n��$��o��d�|p����ly���|��h�<|��|�l|�����}��������T�������|�����܌������0�����������������������\������\��������,�\�����|�����������|���,���\�|�����|�����������l���L�\�����̯����ܯ����ܱ��D�ܲ����|��������,�l���l�|�����<�����ܼ����̿��<�����P�����d�����x�\�����������l�� �|��T����h������<�������0���d����������������l�����T�|��|�����<���<��D����\�����l���������\�������@�\��d���������������<�<��������������������H���������������<��T�L��h�\��|�l����|�����������������������������������h�l���������|������@�|��x������\������� �,��@�<��T�L��h������ ����|!����!����!��,�<"��D��"�����#�����#����#���l&��d��&����<'�����)����l*����*��,��*��@�,+��h�L+��|�l+�����+�����+����,����,���,,����,��@��,��t�.����L.���\.�� �<3��l�\3����l3�����3�����3�����3����zRx�$����FJw�?:*3$"D���$\����AE�F�G iDA� ���OE�}
F�T���OE�}
FH�����F�G�E �B(�D0�A8�D`y
8A0A(B BBBHhL����F�B�B �B(�A0�D8�J�
8A0A(B BBBFR�A�P�E�E�H�^�t����H@^
J���[�P��NX�����B�B�E �E(�A0�A8�G`�h`pHhA`

8A0A(B BBBHd���{F�B�B �B(�A0�A8�GpU
8A0A(B BBBD�
8F0A(B BBBG��
����
����
�� $��
��[A�H�K ADA���A�V��H��lB�B�B �E(�I0�A8�D`�
8A0A(B BBBDd@��dd|���/TZ����!����W �
���E�D@�
AA4��
��wF�E�D �D(�D0V(D ABBH�
���F�B�B �B(�A0�A8�DPp
8D0A(B BBBALd@��F�B�D �C(�G@�
(D ABBA`
(D DBBD<����J�D�G n
I�A�KD
AABX���`��#4|��hJ�D�G o
I�A�JDAAB��L@����F�B�B �B(�D0�A8�G�t
8A0A(B BBBJ�$��H�0��fF�B�E �E(�D0�D8�Dp�
8A0A(B BBBF�T��`��0l��YE�A�G m
CABTCAL���"(`����A��
G]
C�
F�x��"(����"E�D�F V
AAI �����H�R
FC
E���4���F�D�D �X
ABG�AB<���lE�bX���l���5���5p�0���F�B�B �B(�A0�A8�G�E
8A0A(B BBBD%�B�B�B�G�G�F�D�_�(�$��`E�A�D p
CABT4�$���L�I�A �D(�G0A(C ABBF����H0����D(H ABBH��$���B�B�E �B(�A0�A8�G`�
8D0A(B BBBEH��'���F�B�B �B(�A0�A8�L��
8A0A(B BBBKH$	04��)F�B�B �A(�A0�G� L�@L�D�
0A(A BBBJ,p	5��qK�A�H �PABI���H�	d5��UF�E�G �D(�G0N
(M ABBKD(C ABB$�	x5��WA�A�G GDA
�5��H(
�5���B�G�E �I(�A0�A8�D@b
8A0A(B BBBG\t
6��[F�B�A �A(�D0k
(C ABBGN
(C ABBBF
(E ADBFH�
7��eB�B�E �D(�A0�X
(A BBBCj(D BBB 47��8A�W
HP4@T7���B�H�A �
ABCR
LBH x�7��gA�O@P
AA(�8���A��I B(N0IA
C@��8���K�A�A �O
ABA�DBF���H ����89���F�B�B �B(�A0�A8�G� L�@I�Ai
8A0A(B BBBCU�AQ�AK�AB�AL�AJ�AK�AA�A]�AJ�AK�AA�AH�\I��%F�B�B �E(�A0�A8�Jp;
8D0A(B BBBE<�@M��hK�E�H �D(�D0@(A ABBA����$
pM��)J�WG�P@
�M���O�E�I �E(�A0�A8�D@k
8A0A(B BBBCE������<�
�M��jK�I�E �H(�D0�u�(G� B�B�B�T�
N���F�E�E �E(�A0�A8�GPXL`LXAPc
8D0A(B BBBG4,HP���F�A�A ��
ABNAAB<d�P���F�L�B �D(�A0��
(A BBBEL��Q��F�B�E �B(�A0�A8�G`�
8I0A(B BBBH�PT���U��pxU��0�U��%$D�U��;E�L M
AAYA4l�U��zM�F�A �B
CBEQFB@�V���I�A�C �F
ABJ]
ABHLABL��V���B�E�E �A(�A0��
(A BBBGT
(F BBBH88<W���B�A�A �O
CBH�
ABI(t�X��1B�D�D �^ADH��X���F�B�E �E(�A0�D8�D@�
8A0A(B BBBE4�Z��wB�D�D �w
ABDg
ABA$`Z��La�j8@�Z���B�B�A �A(�G0�
(D ABBB,|X[���F�D�A �b
ABHH��[��eB�B�E �B(�D0�D8�Dp�
8A0A(B BBBG��_��	8�_���F�O�A �2
ABEO
ABFLH<b��]F�B�B �A(�A0��
(A BBBJl
(A BBBEH�Lc���F�E�F �B(�A0�A8�DP�
8A0A(B BBBJ��f��(��f��9F�H�D �[IBH$�f���F�H�B �B(�A0�A8�G��
8A0A(B BBBHLp�i��^F�B�B �D(�D0�G
(A BBBH�
(F JBBD0��j��F�A�G �G��
 AABAH��k���F�B�F �A(�J��
(A ABBJj�K�`�F�L@m���F�B�D �D(�J0�
(F ABBHD
(C ABBD(��m���A�C�D0I
CAK\�hn���F�B�B �I(�A0�D8�GP�
8A0A(B BBBFZ8A0A(B BBBL�n��6F�B�B �B(�D0�A8�D��
8A0A(B BBBA$l�r���E�F
B�K�}
K��pt��fF�B�B �B(�D0�A8�D�q�K�Q�A�H
8A0A(B BBBK��D�B�A�B�A�H�B�B�A�X�h�A�[�A��
�B�E`@4����F�E�B �I(�D0�A8�G��
8A0A(B BBBHz�K�X�D�`�����B�B�E �E(�D0�D8�D@N
8C0A(B BBBD�
8F0A(B BBBA<��� 8����E�M b
AK$@����GE�V
EW
IFHhܧ���F�J�E �E(�A0�D8�GP�
8A0A(B BBBBH�0����F�E�E �A(�C0�}
(D BBBEE(D BBB0�����F�D�A �J��
 AABD,4 ���	E�A�J�I
AAEHd����F�K�L �D(�D0`
(D ABBBm
(D ABBA �t���VE�G C
AAX������F�K�I �D(�D0`
(D ABBE_
(D ABBHy(A ABB|0���>F�E�B �E(�A0�A8�I`N
8A0A(B BBBK�
8D0A(B BBBM
8F0A(B BBBFP�Ա���F�B�B �B(�D0�D8�G�M
8A0A(B BBBF,����B�A�D ��
LBJ4����OD�J,PԳ��nF�A�H ��
CBH$����3E�H�N UAA�,���(�(����F�H�D ��ABP������B�A�D ��
ABFK
ABBD(N0R(D Z
KBA,<�����B�K�A �_
ABH@lX���+B�B�B �D(�A0�D@~
0A(A BBBKH�D���kB�B�B �A(�D0�Z
(A BBBD�8G@a8M0�h���7A�Z
ENL����^B�K�B �B(�D0�D8�G��
8A0A(B BBBD(l����A�D�D@\
AAI@���{B�B�B �A(�A0�J��
0A(A BBBBD�X���B�A�A �g(N0Q(A T
ABFI(D0`(A $���(E�^H@���B�I�B �B(�A0�A8�GpH
8A0A(B BBBFH����jF�G�A �D(�D0�
(C ABBFT(H ABB����]A�r
Ed8����=A�U
JD
Lt
Dn
JA
GT4���(H���yQ�D�G R
AAHt����A�i
F]|�P���B�B�E �B(�A0�A8�J��
8A0A(B BBBDS�L�Y�B���O�K�A���F�j�A����U\�iK�0���M]�gD�L(��U`t��Uc�gF�\|����A�C�G t
AAG
DALD
CAH\
FAE�
DAEX�(��+A�A�D j
CADD
CAHN
KANX
CADD
AAJ08 ���MB�A�D �D@^
 AABC4l ��dF�A�A �@
ABELABL� P���F�B�B �E(�H0�A8�G�\
8A0A(B BBBKH� ����B�B�B �E(�A0�A8�G`�
8A0A(B BBBAL@!$���B�F�D �D0m
 AABGP
 DABIU FABP�!���9F�E�B �A(�A0�G@�
0A(A BBBF,HMPZHA@<�!����B�A�A �G0l8M@S8A0_
 AABE0$"0�PE�H�N ]
AAFDFA�X"L�%F�B�B �B(�A0�A8�Q�y
8A0A(B BBBF��F�R�A���A�D�L�P�.�E�E�E�Y�`�"��#F�B�B �E(�H0�D8�DP�
8D0A(B BBBG�
8F0A(B BBBMLH#����?F�B�B �B(�A0�A8�D��
8A0A(B BBBIP�#����=F�B�B �B(�A0�A8�G�
8A0A(B BBBA�#���$����$0��3XM$,$X���A�Q
FR
FF(T$���9A�A�G ,AA4�$���A�D�G H
CAHU
FAD$�$l���A�A�F �CA�$���%A�X
GD0%���B�J�D �J��
 AABI04%����Y�D�G _
CAI~FA$h%,��3E�D�G ^CA4�%D���F�E�H �A(�K0z(H ABB$�%����E�A�G �AA0�%t	��3N�A�G �
CAF`��4$&���FE�M�Q :
AAA�CAL\&���TM�I�F ��
ABD_
ABFG
ABFFCB,�&����p�D�D �}CBF����&H��[DV��&���ZV�B�I �B(�H0�D8�GPj
8G�0A�(B� B�B�B�H
8D�0A�(B� B�B�B�LD
8A0A(B BBBB@������HP������,�'P��)N�aA�H�S
E|
D�'P����'���.�'���#(��&( ��&,((<���F�A�A �v
ABG(X(���DF�D�H �nAB�(��$�(��EE�A�G uAAH�(D��hF�B�E �E(�D0�D8�Dp
8A0A(B BBBFH)h��eB�B�E �H(�K0�C8�Dp�
8A0A(B BBBHLX)���gF�J�A �A(�G0
(C ABBEk
(A CBBE(�)���E�H�G �
CAI\�)� ���5F�E�E �B(�A0�A8�N�[
8A0A(B BBBI��L�O�D�4*�U��'K[ L*�U��A�I0�
AKXp*�V��F�G�B �B(�A0�D8�D`LhMpThA`D
8D0A(B BBBG�*xZ����*�Z��L�*[���F�B�E �E(�D0�D8�I��
8A0A(B BBBKD+�\��(X+�\���E�U
FX
HJ$�+0]���Y�W�P �HA�+�]���\�
G�+�^��HN�+�^��7H`
HF,�^��3H,�^��@F�B�B �B(�A0�A8�DP�
8D0A(B BBBEd,�_��Lx,�_���F�B�B �E(�A0�D8�D�
8A0A(B BBBH(�,\a���E�A�F@t
AAF�,�a��-�a��
-�a��.,0-b���F�A�C �Q
ABB`-tb��4t-�b��PB�D�C �n
ABFLAB�-�b���K��
AP�-,c���B�B�B �B(�A0�A8�G� L�,�
8A0A(B BBBF.�x��{H0b
F8.�x��^K�
DX.<z���HP�
Ct.�z���K��
A�.�{���K��
A�.h|���K��
A�.}��1H h�.4}�� �.@}��$/H}��]E�A�D NCAL4/�}��EB�N�B �B(�A0�A8�G��
8A0A(B BBBFH�/�����B�B�B �B(�A0�A8�Dp
8A0A(B BBBKH�/��)B�I�B �B(�D0�I8�N@�
8F0A(B BBBGP0ȅ��MR�G�B �A(�A0��
(A BBBD^
�(M� D�B�B�Ep0Ć����0����i8�0܇���B�B�D �C(�I@a
(A ABBE��0@����B�K�B �B(�D0�A8�G��
8A0A(B BBBI\�K�D�B�e�j
�K�D�B�KL�I�h�A���P�h�D�\l1h����F�B�E �B(�A0�A8�G��M�S�A�a
8A0A(B BBBHT�1�����F�B�B �B(�A0�A8�G� L�!
8A0A(B BBBA($2�:E�A�G (CA0P2���!F�A�A �D��
 AABC0�2���bE�E�G e
DAE\DA�2<���&H�X(�2P���aF�D�A �RAB3����H3����(F�B�E �E(�D0�A8�DpR
8A0A(B BBBI(`3�����E�A�D I
AAK$�3���f[�RC�H�[
E\�3`���cF�I�E �E(�A0�A8�D��
8A0A(B BBBK
�P�p�O�4p���(4���!(<4��EE�A�G 7
CAHh4,��@|4(��_F�A�A �G0A
 CABJ�
 CCBE0�4D��jF�A�A �D0s
 AABE<�4����F�D�D �D0�
 AABG� AAB45���H5���~\5X��% p5t���H�y
_F
J�5 ��8�5L��	�5H��	<�5@���A�A�D �
CADI
CACFCA 6����A�T��
AA<86���vF�D�G a
AADRFAG��H ��x6����6���v�64��<dS�6\��aH L
DD�6���pF�B�B �A(�A0�G�.
0A(A BBBG 7����E�G�Y
AJ@7T��YH`K
A8\7���OF�G�A �I(�D0�
(D ABBF$�7����E�C�G �AAL�7d���F�B�B �B(�A0�D8�R�7
8A0A(B BBBD88����F�E�D �D(�GPJ
(A ABBF8L8���F�E�D �D(�GPS
(A ABBE�8���F@�8����B�B�B �A(�A0�D@m
0A(A BBBAL�84��DF�E�B �E(�D0�A8�G��
8A0A(B BBBE8094��uB�B�A �A(�D@_
(A ABBA(l9x��!A�D�G��
AAIH�9|��
F�E�B �B(�D0�D8�D`m
8A0A(B BBBF8�9@��F�B�A �A(�DP
(A ABBE\ :���F�I�E �E(�H0�D8�F@O
8C0A(B BBBJD8F0A(B BBB\�:��F�H�H ��
ABF�
ABJV
FBBA
FBGV
FBB(�:���E�A�G �AA;8�>R`$;`�(8;l�AJ�A�G ^D�A�<d;��YB�B�E �A(�A0��
(A BBBD�;��$�;��9E�D�D iAA�;��L�;��_F�F�B �B(�D0�A8�Dp�
8A0A(B BBBBD<��X<��"E�\,t<��J�A�G aAAK���<P����<L����<H���<�<D����F�G�A �D`nhKpPhA`\
 AABD� =���F�E�B �B(�A0�A8�G�x�H�O�B�Q�M�H�L�B�V�N�H�L�D�V�^
8A0A(B BBBI@�=T����F�H�E �A(�A0�Gp�
0A(A BBBD�=��GH y
A>���H(>����F�E�B �E(�D0�A8�Gp:
8A0A(B BBBFt>�����>�� �>��vA�Q ]
AA �>p��E�D@�
AF�>\���@�>���F�D�D �v
ABI`
ARE[
FJEH@?���F�B�B �B(�A0�A8�G�W
8A0A(B BBBJ(�?����E�L�N0N
AAA0�?����F�A�A �D@�
 AABH�?���qH T
D0@����E�C�D0|
CADvAA<<@X���F�E�A �D(�J�,
(A ABBDH|@����
B�B�E �B(�A0�C8�J�]
8A0A(B BBBHH�@L��B�E�F �B(�A0�D8�DP{
8C0A(B BBBAHA���F�B�B �B(�D0�A8�G�\
8A0A(B BBBB8`A���-F�E�A �A(�GP�
(A ABBH�A���A8�A���_F�D�D �S
ABDsAB�A�� B���B����((B<��AJ�D�G eAAD��TB`��	hB\���|B��7L�fL�B,���M�B�E �B(�D0�A8�GPo8A0A(B BBBA������T�B|���i�B�A �D(�F0g(C ABBK����P0����K(F ABBD@C���F�B�E �B(�D0�D8�J@�8D0A(B BBBH�C����F�B�B �D(�G0�c
(A BBBAA(F BBBP�C����K�E�H �D(�A0�H
(E BBBHA(C BBBF�����$(D��gE�D�D WAAPDT��dD`��xDl��<�D���/WT�D����D����D(��
�D$���D ��E,��E(��IH0Ed���B�B�D �A(�G0~
(A ABBDg(A ABB |E���A�D �
AG �E� ���A�T��
AAH�EP!���B�B�B �I(�D0�D8�D`�
8C0A(B BBBCF�!��9L$F#��oB�E�B �B(�A0�C8�J�C
8A0A(B BBBJLtF0&���B�E�E �B(�A0�A8�I�)
8A0A(B BBBDH�F�*��-F�B�B �B(�A0�A8�DP
8D0A(B BBBG�+��$G�+��8G�+��
LG�+��	L`G�+���F�B�B �B(�A0�A8�D�>
8A0A(B BBBF�G�,��F�G -��6�GL-��4�GH-��zc�E�D �SABF���H ���$H�-��@8H�-���F�B�B �A(�A0�D@�
0A(A BBBA|H.��*H`�
H�H,1��isRH�H�1��F�B�B �B(�A0�A8�DP�
8A0A(B BBBG@�HX3��c�D�P 
CAK��P ��@��H ��4@I45��YF�A�F �]
ABCeAB4xI\5��UB�A�A �x
DIGAABH�I�5��>B�B�B �B(�A0�A8�G�z
8A0A(B BBBK(�Ix8��4p�A�D ��CB(J�9��	(<J�9���m�O�N jAAJ��hJ,:���|J8:���B�B�B �B(�A0�A8�D��
8A0A(B BBBF�
�D�T�D�t�D�S�A���D�U�H�V�D�M�B�LKtS���F�B�B �B(�A0�F8�J�O
8A0A(B BBBJL`K�T���B�B�B �B(�D0�D8�I�
8A0A(B BBBE0�KTX��QE�F�D d
CAILCA0�K�X��QE�F�D d
CAILCA0L�X��QE�F�D j
CACLCAtLL�X��AM�G�A �A(�D0v����H0����(A ABBK����H0����P����H0����`���� �L�Z��|E�D _
AG�L[���L[��M$[��$M0[��8M<[��LM8[��`M4[��5tM`[��6�M�[���M�[���M�[���M�[���M�[��H�M�[��tB�E�I �D(�D0q
(D ABBFR(D ABB<N�[���PN�\��@D_
EWLpN�\���X�E�D �X
ABDbABK���P ���I�A�B�H�NT]��{B�E�D �C(�G0e
(C ABBFj(C ABBO�]��N O�]��4O�]��8HO�]���L�P�K jCAK��P ��LA�A��O ^��*`�O<^��B�B�B �F(�A0�A8�HP�
8D0A(B BBBF�
8A0A(B BBBEH�O�_���F�E�E �B(�A0�D8�GPm
8A0A(B BBBKHP<b��)\PXb��pPTb���PPb���PLb��H�PXb��M�B�E �D(�H0��
(D BBBHH(H BEB$�Pc��LE�D�D |AA QDc��44QPc��eF�B�A �A(�D0P(A ABBdlQ�c��XF�B�B �B(�A0�D8�D`Q
8F0A(B BBBKt
8C0A(B BBBH�Q�e��HL�h
D(�Q�e���E�A�Dp�
AAGXR�h��DF�B�A �A(�D0�
(D ABBJ`
(D ABBGT(G DBBxR|i��Vm S�R�i��Nl R4�R�i���F�I�A �\
ABIAFB\�RPj���F�E�B �B(�A0�A8�D���L�P�H�p
8A0A(B BBBBDS�k��!E�W0dSl��sF�D�D �D�W
 AABA(�SLl��XF�H�I �i
ABE�S�l��KP$�S�l��7E�A�J bCAlT�l��GF�B�B �B(�A0�A8�DP�XK`QXAPH
8A0A(B BBBFT8A0A(B BBB0tT�m��F�A�A �G@�
 AABE�T\n��!E�WD�Tpn���F�E�E �D(�D0�D@�
0A(A BBBAUo��h Udt���4U u��x@HU�u���F�E�B �A(�D0��
(A BBBK<�Uv���F�B�B �A(�A0��
(A BBBB�U�v��	�U�v��h\f
FV�v��LV�v���F�B�B �B(�A0�A8�G�
8A0A(B BBBAdV�}��%H YL|V�}���F�B�A �A(�D0z
(C ABBHD
(C CBBAL�V~��xF�D�D �D(�A0�A8�D��
8A0A(B BBBIdW8����F�B�B �B(�A0�A8�D`A
8C0A(B BBBIy
8D0A(B BBBB$�W`���VE�A�D GCA�W����\�W����B�A�A �g
ABB�
ABJY
FBG�
CBC�
CBE( Xd����A�A�K �
AAJ0LX8���PA�Q�G d
AAADFA8�XT����B�B�A �A(�G@w
(A ABBF0�X��PA�Q�G d
AAADFAL�X����F�J�B �H(�I0��
(A BBBCB
(F BBBB<@Yd����E�H�G }
CAKK
CAA\CA�Yċ���$�Y`���?E�^
MC
EF4�Yx���MB�E�D �D(�J0j(D ABB\�Y�����B�B�B �B(�A0�D8�D�i
8A0A(B BBBD��O�]�A�\TZА���F�B�B �B(�A0�D8�J��
8A0A(B BBBK\�M�S�A�L�ZP����F�D�D �g
ABHT
ABIW
FBAQCB4[����RE�D�G R
AAD`AD<[ȗ��6HP�
A0X[���O�D�D �L
ABJP���D�[�����O�K�K �G
ABAN
ABGHABE���<�[��_�G�A �RCBB���@ ���p���$\����?E�G�G fDA$<\Ț��@E�D�G0mAAHd\���F�B�E �E(�D0�D8�G`�
8A0A(B BBBE��\�����F�H�B �G(�I0�A8�J�
8A0A(B BBBE(�W�Z�A��W�[�B�S�W�Z�A�W�W�Z�B��D]����6F�K�B �B(�A0�A8�J��
8A0A(B BBBF4�V�I�I�I�I�I�I�I�I�I�I�I�I�]�`�V�Z�A��]0���
�],���
^(��� ^4���4^0���&H^L���\^H���0L�`x^\���X�^����;A�U
JZ�^Ȯ��OQ�}4�^�����F�J�D �p
ABIN
ABA4_T����F�J�D �p
ABI`
ABE48_����F�F�D �p
ABEN
ABA(p_�NF�F�D �k
ABB��_����@B�B�B �B(�A0�A8�G� L�#�#F�#Q�#B�#��#Y�#V�#A�#��#W�#P�#A�#�
8A0A(B BBBA��#f�#S�#A�#U�#a�#b�#A�#�#J�#e�#B�#0�#N�#f�#B�#w�#P�#G�#G�#G�#G�$q�#a�#M�#T�#I�#H�`�^B�B�B �B(�A0�A8�D`�
8A0A(B BBBB,�` �lB�D�A �M
CBGa`�(al�O0<a��hF�D�A �G0J
 CABApa��8�a��F�D�A ��
ABG�
FBC�at�+�a��+8�a��F�I�D �A(�G0n
(G ABBK$b �	,<b�IK�A�H �mABD���Hlb8�B�B�B �B(�A0�A8�DP'
8D0A(B BBBFH�bl���9F�E�B �B(�A0�A8�D`�
8A0A(B BBBEc`���Lcl���M�E�E �D(�H0��
(D BBBAV
(D BBBH0hc<����F�G�A �LPR
 AABHd�c����F�E�E �I(�A0�x
(D BBBDM
(D BBBIX
(I BBBILdP����B�B�E �E(�A0�A8�G�	8
8A0A(B BBBG�Td�����
F�E�B �B(�A0�D8�G�X�B�J�B�[��S�B�B�[�r
8A0A(B BBBH��R�I�B�N��[�P�A�$�d���ZE�D�L BAA4e���E�A�J0W
AAGZ
AAD,Tep��IK�A�H �lABE���,�e���XJ�C�G0~AAA��,�e���EE�G�K P
JCL�e���10�e	��LE�F�G h
CABDFA<0f$	���B�B�D �D(�G�f
(A ABBA(pft
���E�H�G g
AAC�f��(�f��mE�D�G y
AAE(�fX���E�D�G z
AADLg����B�B�A �A(�D@�
(A ABBJa
(A ABBB(XgL
���A�A�G0E
AAH�g�
��H�g�
���F�B�A �A(�D0�
(A ABBC�(C ABB�gp��UA�v
IT h����A�Q
F�8(hl���B�E�B �D(�H0�^
(A BBBF`dh��OF�I�B �B(�D0�D8�G`�
8A0A(B BBBD�
8F0A(B BBBH�h���1�h��%DM S(�h,��RE�D�G0c
AAK$i`���A�r
EP8Di����B�D�B �A(�A0�r(D BBB(�i$���A�A�G0}
AAH(�i���ab�A�A �yAB��i,��E	F�E�B �B(�A0�A8�D��
8A0A(B BBBH��G�X�A�D�H�F�B��K�Q�B�L\j����F�B�E �A(�A0�:
(C BBBFu
(A BBBLL�jh ��x	F�L�B �B(�D0�A8�D�I
8A0A(B BBBF0�j�)��LE�F�G h
CABDFA0k�)��(Dk�)���E�H�G Q
AAIpkd*��(�k`*��mE�D�G y
AAE�k�*��4�k�*��oF�A�A �F
ABGQCB(�k�*���E�D�G z
AAD(lL+��9<lx+���A�r
E[\l�+���Hpl�,��,B�B�E �B(�A0�A8�D��
8A0A(B BBBDd�lh-��+F�B�B �E(�A0�A8�UP?
8C0A(B BBBG�
8A0A(B BBBHL$m0/���F�M�A �D(�G0i
(A ABBB�
(A ABBF(tm�0��`A�K�J0�
AAFx�m�1���F�B�B �B(�A0�D8�D@�
8L0D(E BBBM
8A0A(B BBBH{8A0A(B BBB\n�3��mF�B�E �B(�A0�A8�D��
8A0A(B BBBIt�N�X�A�|n�:��4L�b�n;���n;���A�T
K�n�;��PD�z
B(�n�;���E�H�G Q
AAIo�<��((o|<��mE�D�G y
AAE(To�<���E�D�G z
AAD(�o4=���A�D�G�X
AAJH�o�=���F�B�B �B(�A0�A8�D`y
8A0A(B BBBK�o\?��9p�?��%DM S((p�?��RE�D�G0c
AAKTp�?���A�r
Eb@tpP@��7F�B�B �A(�A0�D@r
0A(A BBBF(�pLA���A�A�G0y
AAD\�p�A��UF�B�B �B(�A0�A8�G��
8A0A(B BBBB��G�X�A�LDq�I��qF�B�E �A(�A0�
(A BBBCu(A BBBH�qK��EF�B�B �B(�D0�D8�DPx
8A0A(B BBBFh�qO��}F�B�B �E(�A0�A8�D`�
8A0A(B BBBH�
8C0A(B BBBAHLrQ���F�B�E �A(�D0�H
(A BBBGn(A BBBx�rlQ���F�B�B �B(�G0�D8�D@�
8D0A(B BBBEb
8A0A(B BBBDc
8C0A(B BBBAs�R��5I�kH0s�R���F�B�B �B(�A0�A8�DP	
8A0A(B BBBK|sHT���K��
AH�s�T��F�H�B �B(�A0�F8�G��
8A0A(B BBBJ�s�X��((�s�X���E�A�G0a
AAH$t`Y��L�R@tdY��TtpY��ht|Y��0L�`�t�Y��'L�Z$�t�Y��PE�A�G @AA8�t�Y���F�G�A �D(�D0F
(D ABBK�u@Z���
F�B�B �B(�A0�A8�D�r�a�F�D�\
8A0A(B BBBK��H�E�S�p���J�a�A�x�u�d��@F�E�B �B(�A0�A8�Dp�
8A0A(B BBBKT
8A0A(B BBBB�8A0A(B BBBvPg��BE�j
AN$v�g��!TI4<v�g��F�F�D �D0~
 AABJ$tvpi��(E�A�D YCAH�vxi���F�J�D �A(�D0C
(D ABBK[(D ABB�v�i��)J�V�$w�i��=E�C�G kAA,w�i��@w�i��Tw�i��hw�i��
|w�i���w�i���w�i���w�i���w�i���w�i���w�i��
x�i��x�i��0x�i��Dx�i��Xx�i��lx�i��H�x�i��qF�B�B �E(�A0�D8�GP
8A0A(B BBBG�x�j��KP0�x�j��cF�A�D �A
CBGy(k��0y$k��Dy k��$Xyk��SE�A�D DCAd�yTk��-F�E�B �D(�A0�D���G�S�A���J�R�A�b
0A(A BBBE\�yn���F�G�B �B(�A0�D8�G�
8A0A(B BBBFY�B�N�A�(Hz�u��gE�A�D t
CAF\tz�u���F�G�A �A(�GP�
(A ABBHiX\`BhBpBxB�IPrXd`FXAP(�zPw���E�A�G0e
AAD {$x��yE�L J
AD${�x��'TO8<{�x��:F�B�A �A(�J��
(A ABBI x{�y��yE�L J
AD,�{�y��>F�D�A �oAB\�{z���F�B�B �B(�A0�D8�D�s
8A0A(B BBBFO�J�Y�A�(,|H|���A�A�D v
AABX|�|�� l|�|���|�|��+E�el�|�|���
F�B�B �E(�A0�A8�G�!�F�_�A��
8A0A(B BBBH��J�V�A�4}h����F�A�C �J�I
 AABG(D}��qA�A�G X
AAE0p}4����F�M�A �G@�
 AABC4�}Ќ���B�B�D �D(�D0y(A ABB�}(����}$���~ ���)L�W ~4���
4~0���)L�WP~D���Hd~P���:F�B�D �A(�G0{
(C ABBI�(C ABB�~D���3t�~p����F�B�B �A(�A0��
(C BBBHQ
(A BBBHv
(C BBBAK
(C BBBA(<�����E�A�D [
CAGLh���6F�B�E �B(�D0�D8�G�e
8A0A(B BBBC�����
�����
��
��
H����B�E�E �B(�A0�A8�G��
8A0A(B BBBA(X�����_HQ F(G0E8F@LHEP\<�������F�E�D �D(�G�a
(A ABBGXĀ0���kF�B�B �E(�A0�A8�Dp�xF�LxAp�
8A0A(B BBBK �D���)E�_L<�X���3F�Q�D �O(�D0L
(C ABBFz
(C ABBFh��H���bB�B�B �A(�A0�G�	��	I�	R�	Q�	I�	a
0A(A BBBH2�	Q�	^�	A�	L��L����I�E�J �A(�D0��
(A BBBIn
(F BBBA8H�ܜ��F�B�A �A(�G0�
(A ABBCL������F�B�E �B(�A0�A8�GP_
8D0A(B BBBD(Ԃ�����A�A�G0�
AAA8�4����F�E�D �D(�G��
(A ABBA@<������F�H�B �D(�A0�G��
0A(A BBBD@������F�H�B �D(�A0�D��
0A(A BBBEHăТ��pF�E�I �D(�D0q
(C ABBKD(F ABBH��F�B�B �B(�A0�A8�D`�
8C0A(B BBBBd\�ȣ��\F�E�B �E(�F0�A8�NpMxL�Q�N�B�B�Ipt
8A0A(B BBBF,Ą����wE�I�GPZ
AAA����,\�,����F�E�B �E(�K0�F8�KP�
8A0A(B BBBFD8C0A(B BBB(h������E�A�D0f
AAF��@���&��\������h���1F�E�B �E(�D0�D8�D�
8A0A(B BBBB�V�K�A�^�Z�T�A�\�a�F�B�F�F�H�B�I��T����F�B�B �E(�D0�D8�Dp,
8A0A(B BBBGx`�QxKpDxQ�A�F�IpIxF�H�B�Ipyx]�FxKpXxS�TxAp�xR�KxJpH�p����F�B�B �B(�A0�A8�D`�
8A0A(B BBBD8P������F�B�A �A(�G��
(A ABBAD��H���-F�B�B �A(�A0�D�J
0A(A BBBFԇ0���(�,���Ya�J�J ^AAA���`���A�Y0�d��� D�p����A�T��
AAh�,���i4|�����xF�D�F �E
ABHTAB��и��Ȉܸ��!0܈����mE�A�D B
DAGOAD0�4���uE�A�D H
DAIOAD0D������F�D�D �G��
 AABAHx�����F�B�B �B(�D0�D8�J��
8A0A(B BBBFHĉ`���2F�B�B �B(�A0�A8�D`�
8A0A(B BBBGH�T���F�B�B �B(�A0�A8�D`�
8A0A(B BBBA \����rE�D0W
AGH��t����F�B�B �B(�A0�A8�GP�
8D0A(B BBBAL̊����F�B�B �B(�A0�A8�G�X
8A0A(B BBBA(�H���}F�A�D �k
AED8H�����KF�A�D �G�
 AABI������������X�������F�B�D �A(�D0I
(D ABBEX8J@P8A0G
(A ABBH0�L���sE�H�N c
CAFfCA<�����zq�~
�IAT\������R�H�D �A(�D0H(C ABBE����H0����](F ABBH��P��
F�B�D �D(�D0�
(C ABBD^(F ABBH����F�E�F �A(�A0�V
(A EBBET(D BBBLL�h���F�B�D �D(�D0�
(F ABBED
(C ABBD�����"����"č ��6؍L��6�x���t��L�p���F�B�B �B(�D0�A8�D@
8D0A(B BBBKd���&KZH|�(���F�E�B �E(�D0�D8�D`

8A0A(B BBBFȎ���XE�x
CWP�����N�B�E �D(�A0�N
(A BBBAH�����H0�����H<�x��F�G�E �E(�A0�A8�DP�
8A0A(B BBBD��<��3E�m��`��bA�`0������B�A�A �G@�
 AABA(� ���F�A�N gAAB��H �����F�B�B �E(�D0�D8�D�}
8A0A(B BBBF l�8���E�D _
AGH������R�B�B �E(�D0�C8�G@a
8A0A(B BBBDܐH��Xa[
DI�����:Q�R
EIH����B�B�B �E(�A0�D8�G@^
8A0A(B BBBA`h�|���B�E�E �B(�D0�A8�G@�
8H0A(B BBBHO
8A0A(B BBBGL̑���j	F�E�B �E(�A0�A8�G�9
8A0A(B BBBAH����F�E�E �I(�A0�D8�D`i
8A0A(B BBBKHh����F�B�B �B(�D0�C8�FPz
8A0A(B BBBC(����-A�A�L0�
AAG���Xa[
DI������(���n<��$P�$�5E�D�I ZCAx�<�	��8�CH��t��F�B�B �B(�A0�A8�D@�
8D0A(B BBBEL���F�E�B �A(�D0��
(A BBBF�
(A BBBD<�H�0P�T�UF�M�H �GP�
 AABF �����E�G M
AF4���|E�A�G0

AAGD
CAHH�d�yF�E�B �B(�D0�A8�GP�
8C0A(B BBBE,,����F�D�D ��
ABD\�h�mE�B
I0|���oE�A�G z
DALTAA����$ĕ��9E�C�G eCA$��\E�A�G LAA�@�(�L�<�X�iD�d@X���.B�B�E �A(�A0�G@�
0A(A BBBE@����dF�G�B �A(�I0�D@�
0A(A BBBGH���_�A�A �w
ABEAFBG���H ���|CB8,�x����B�E�D �D(�G@t
(A ABBHLh����'B�B�B �B(�A0�D8�G�
8A0A(B BBBA@������B�B�B �D(�A0�G��
0A(A BBBJ@������F�B�B �D(�A0�G��
0A(A BBBK<@�$����B�B�A �A(�J�	�
(A ABBA(������E�D�GP�
AAD����������Ԙ�����������������A��
D4�@��	H�<��t\����'p����F����q��l����x��9�����L�R<ܙ����A�F�G �
AADD
FAEDFA�(��w(0����XE�D�D k
DACH\����PF�B�B �B(�A0�A8�D`Y
8A0A(B BBBK(�����UE�D�D k
AAFԚ	��5E�o@�$	���F�A�A �E
ABH`
ABEFCBH4�p	���B�B�E �B(�D0�D8�GPl
8D0A(B BBBE<���	��nF�D�D �G0M
 GABLj HAB$���	��CA�D�G qDAH�
��gB�B�B �B(�A0�A8�D`e
8D0A(B BBBHH4�0��F�B�B �B(�A0�A8�D`D
8D0A(B BBBE4�����OB�A�D �v
ABHACB4�����E�D�G0d
AAJD
FAE(�T��E�A�G �
AAC,�H���O�A�A ���H�B�L����s@`�d���F�I�H ��
ABBZ
ABCRAB����R$��L���U�x
CC
MP�,����fJ�D�G u
AADP��,�$��fJ�D�G u
AADP��8@�d��'O�D�D ��
ABEh���P ���D|�X�� F�B�B �A(�A0�G�e
0A(A BBBH,Ğ0��fJ�D�G u
AADP��X�p���F�B�A �A(�D0Y
(D ABBHD
(D DBBHD(G DBB8P����vK�D�D �B
ABHACBJ���L�����O�E�E �E(�D0�D8�G@�8A0A(B BBBH������8ܟ���vY�D�D �
CBJTFBD�������\,����MF�B�A �D(�G@�
(A ABBHH
(A ABBBD
(F ABBA����������HNL�����oF�B�A �D(�D0q
(D ABBE�
(H ABBG0�����F�G�A �G��
 AABEP<�����O�E�B �H(�H0�]
(A BBBFA(C BBBF�����`�����F�E�E �E(�A0�A8�G`�
8A0A(B BBBDmhJpDxC�[`4�`$��sF�D�D �D�W
 AABA8,��$��GB�E�A �D(�DP�
(A ABBE(h��%��PM�D�D �l
ABD����%���fF�B�A �D(�D@
(C ABBEJ!
(A ABBH�	
(G ABBNM
(D ABBJ�
(D ABBJ�
(D ABBJ2
(A ABBH�
(D ABBKSHLPMHA@HIPLHA@x������K��
DH��@����F�E�B �E(�F0�D8�D`�
8A0A(B BBBB�����F�B�B �B(�A0�A8�DP�
8A0A(B BBBDy
8F0A(B BBBH]
8C0A(B BBBGW
8A0A(B BBBG|��� ��� ����������̤���#�4����@����L����X��� 0�d��� ,D�p���pE�A�DP�
AAAt�����s0������E�J�D r
CAGOCA,������?B�D�D ��
ABBH������B�B�B �B(�A0�A8�D��
8A0A(B BBBF48����eF�A�A �]
ABHqABLp�T���B�B�E �H(�D0�D8�D��
8A0A(B BBBG`�����uF�B�D �D(�D0�8L@M8A0O
(C ABBDD8J@K8A0�(A ABBL$�0����F�B�B �B(�A0�A8�G�o
8A0A(B BBBB$t�����TA�D�D GAA$������]A�D�J JAA8ħ0����B�L�A �A(�D0H
(A ABBF�����)A�N
AS( ������A�A�DP�
AAAL����0A�nHh�����F�B�E �A(�D0��
(A BBBDF(A BBB<�������F�B�B �D(�D0�u
(E BBBFd� ����Z�B�E �E(�D0�D8�D@|
8A0A(B BBBHT8A0A(B BBBA������L\������B�B�B �B(�A0�A8�D�+
8A0A(B BBBEH��H����F�B�B �B(�A0�D8�D@
8D0A(B BBBE�����������)J�S�4(�̲��TE�N�D #
DAANDA�`��-F�B�B �B(�A0�A8�D�
8A0A(B BBBFQ�A�K�A�F�A�G�B�B�B�B�B�I�L������F�B�B �B(�A0�A8�D`~
8A0A(B BBBF4�P���s(H�����YT�H�G oAAD��Ht��F�B�B �E(�D0�D8�Dp�
8C0A(B BBBAX������F�H�D �D(�G0o
(C ABBDD
(M DBBOL(F ABB����	44����RF�D�D �c
CBJJAB|l����F�E�E �E(�G0�D8�Gp�xF�F�F�F�F�F�F�F�F�F�F�WpC
8A0A(B BBBF4�X��NF�F�H �D(�G0h(A ABB4$�p��NF�F�H �D(�G0h(A ABB\\�����B�E�E �E(�D0�D8�D@Z
8F0A(B BBBJD8C0A(B BBBp�����OB�E�B �B(�D0�D8�J�v�J�Y�A�t
8A0A(B BBBKp�L�A�K�T�0����D����
`X�����F�B�E �B(�A0�A8�J��
8A0A(B BBBG�K�B�G�b�,��H��fQWH D(D0ID
KFJ$�����E�A�G yAAL�����F�B�B �E(�A0�A8�G�%
8A0A(B BBBAd����
`x�����F�B�B �E(�D0�A8�D���A�V�F�I�Q
8A0A(B BBBCpܯ���F�B�B �B(�D0�A8�G��
8A0A(B BBBCq�D�L�E�I�8�]�K�A� P����pE�G ]
AAt����
H������F�B�B �B(�D0�A8�Dp]
8A0A(B BBBD�԰���F�B�A �D(�J�U�P�A�D�B�B�B�B�	B�	B�	B�	B�	B�	B�	B�	B�	B�	B�	B�	B�	B�	E�	B�	B�
W�e
(A ABBA(t����F�F�B �B(�D0�I8�G�:
8A0A(B BBBH��I�P�D�A�L�B�B�B�B�B�B�B�B�B�A�K�E�A�B�A�B�B�A�A�H�I�A�A�E�B�A�E�W�A�A�H�D�B�B�B�H�B�A�D�B�B�B�B�B�B�B�B�B�T���d�&L�Y<��x��I�K�H �T
ABE`
CBC����
8����F�H�D �D(�G@G
(A ABBF L�x��E�G �
AAXp����F�B�E �A(�D0�D���F�T�F�I��
0A(A BBBK̳����4�
�0�8�<��F�E�D �D(�D@l
(C ABBA8D����F�E�D �D(�D@l
(C ABBA,���bF�A�A �R
ABA0��D�F�D�A �M�{
 AABI� �	���GQ�e�H�P�^F�B�E �E(�D0�C8�J�o
8A0A(B BBBD\`�d�YF�B�B �E(�A0�A8�G�	Y�	F�	d�	A�	U
8A0A(B BBBE0��d�eE�G�G ^
GAG]FA4���tF�A�G �d
ABKkFB,���/TZD����/TZ@\����zF�B�E �D(�A0�DPx
0A(A BBBJ@��T����B�L�E �D(�A0�Lp|
0A(A BBBA$�����]E�D�K FAAH������F�B�B �B(�D0�D8�G��
8A0A(B BBBA4X�L���E�F�G0H8C@M8A0Z
AAI@��4����F�E�E �D(�C0�J�r
0A(A BBBEԷ�IH@(�(���xE�C�D D
CAD�|���QA�O$4�����8E�G�T IIA \�����E�P Q
AIL��d���{B�B�B �B(�A0�A8�G�S
8A0A(B BBBA ���{Q�W
�HJ(��SE�D�G p
CAD8 �$���[F�B�A �A(�D0J
(C ABBH\�H���}Q�Y
FDL|������B�B�B �E(�A0�A8�J�
8A0A(B BBBJL̹����B�B�B �B(�A0�D8�J��
8A0A(B BBBH4�����E�A�D j
CAHa
CAK0T�0��B�D�D �D0�
 AABBL�����B�N�B �B(�A0�A8�J��
8A0A(B BBBB�غl9���B�E�B �B(�A0�A8�D`�
8A0A(B BBBCw
8C0A(B BBBEU
8F0A(B BBBDn
8C0A(B BBBFl��;�����;��CH u
AD���;��2F�D�D �u
GNHD
CNK`CN��<�����<����<��
 ��<��
4��<��H��<��\��<��p��<��
���<��
���<��H���<��F�I�E �B(�A0�D8�D@�
8D0A(B BBBD���=��jDt
HT
DH��=��pF�E�D �D(�D0x
(C ABBID(F ABBd�>���D�X
DuH���>���B�I�A �A(�D0`
(C ABBGW(C ABB4н�>��Wc�C�G ]
A�A�DDAA4��>��ik�C�G ]
A�A�LDCA4@�4?��jl�D�C �\
�A�F�JAFB4x�l?��lk�C�G ]
A�A�LDFA���?��ZnX
JI�����?��(���?���p�D�G W
AAA@$�p@���E�D�G 
AAJD
CAH�FA$h�B���E�A�G tAA��tB��AnR���B��&���B��1QULԿ�B���F�A�D �J0S
 AABDY
 AABCD FABX$�@C���F�E�A �D(�J@P
(A ABBHY
(A ABBID(F ABB���C��/���C��*H���C��yF�B�B �B(�A0�A8�Dp
8D0A(B BBBD$�F��fE�A�G VAA�HF��UH0��F���F�B�B �E(�A0�A8�Dp�
8C0A(B BBBD(|��H���F�A�A �zAB��LI��>��xI��$�tI��kE�D�F WCA���I����I�� ��I��44��I��hF�D�A �N
ABDy
ABDl�J����J����J��$��J��qE�A�D dAA0��dJ��LE�C�G l
CAADFA\��J��F�B�B �E(�A0�G8�G`�
8A0A(B BBBFl8F0A(B BBB4d�0K��@F�E�D �G(�G0I(G JBB��8K��H��4K���F�B�B �B(�A0�A8�Dp�
8A0A(B BBBD���O����O��$��O��8��O��L��O��
x`��O��/F�B�B �B(�D0�D8�D@K
8A0A(B BBBCN
8F0A(B BBBCO
8A0A(B BBBGGNU�������(�������P�P�[��`@v�[`[@[��9�[��`@v@[P�c$��������@�����������g&���������@����������f;1�7�wD
@�8�];99	9��/999 9&9+91969:9?9C9H9M9S9Z9,B���@@3B7B<BBB�FBJBPBTBWBZB^BaBdBgB�A�A�A�AjB�@nBsBwBdA�B�B�B�B�B�B�B�B�B�B�B�B�B�B�B�BCCC*C4CBCMC\CcCoCvC{C�C�C�@�C�C�C�C�O�O�O�!����p� �P�`�`�(��(��(�[]�����[�[�����x�[��0���xk$k(k,k0k4k8k<k@kDkHkLkkPkXkbkkkrk{kk�k�k�k�k�k�k�sP���������P�������E@%�P@L@IJ�I�L@L L*�P@L IJ�IJ@�KL9+`sl�h{��e��0l�ph�s`h`h�g� ���e��0l�ph�s`h`h�g�E�*+� �����I�@���А�����������EO�@���А���������n@DH9N���P������@����P�p�@�@�p��E���@����P�p�@�@�p�D������@���p�����P�*��!�/�C�X�`�q�������Р��������� �|�֠��������� ���C���Fp�������
/Sv� #@������ ~`}P����~~�}��� ~`}P����~~�}�]��%�*�5�*�;�@�J�O�]���b�g�q�g�w�|�����ȟp� ���p� ���0� ��������З��Ծ/�9�F�Q�,T[�h�r�|�������,����������p�������������� ���P���p������`��� �(��(`�(��(�(��(�(`�(��(�(@�(��(��( �(@�(��(��(@�(��( �(`�(��(\\@��`�Z�ZppR�lP9��`�Z�ZppR�lP�pP�p�P����P���������З����������0�`�����!�!�!�!�!�!""""3"D"N"^"h"�"h�
 ��(��(���o(�4�
)#��(8+0��\@2	���o���o�[���o�o�W���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������������������� �0�@�P�`����8@�8��@�(/S�(�)�0�(�(�(�/�������P������*�H��+	P�(Z�(��������`�(`�(GA$3a1@�@�GA$3a1h�~�GA$3a1 (GA$3a1@���
GA$3p864���GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864���GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864� GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864 �GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864��#GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864�#6GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p8646�YGA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864�YȳGA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864�GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864��-GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p8640�vGA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864�v�{GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864�{}~GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864�~[GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864[[GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864`+�GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p8640�g�GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864p���GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864����GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864��GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864 ���GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864��!�GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p8640���GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864����GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864��&	GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p8640	�GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864�.GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p8640�GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864��'GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864�'�(GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864�(�0GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864�0�0GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864�086GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p8648686GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864@6�RGA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864�R-UGA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p8640U�ZGA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864�Z��GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864����GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864�N�GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864P��GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864��GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864�G�GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864P�ѹGA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864ѹѹGA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864���GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864��N�GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864N�N�GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864P��GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864��GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864 ���GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864����GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864����GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864����GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864����GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864����GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864��g�GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864p���GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864���GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864��LGA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864�L�LGA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864MTGA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864TgcGA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864gcgcGA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864gcgcGA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864pceGA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864 eeeGA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864pe�eGA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864�e8�GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864@�
�GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864�
�GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864�o�GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864p���GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864����GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864����GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864����GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864����GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864��9�GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864@�~�GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864�� �GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864 � �GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864 ��GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864��GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864��GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864��	GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864�	�GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864�sGA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864�GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864� GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864� 1GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864 1t3GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864t3t3GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864�3�5GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864�5�BGA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864�B,IGA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p8640ILGA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864LLGA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864 L_}GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864`}ܐGA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864�H�GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864H�H�GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864H�H�GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864P���GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864�s�GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864��t&GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864�&	+GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864+`,GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864`,�-GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864�-�-GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864�-�BGA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864�B+cGA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p8640c	dGA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864d�eGA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864�e�gGA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864�g�GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864��GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864��GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864��GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864�֑GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864֑֑GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864���GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864����GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864����GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864�b�GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864b�b�GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864p�GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�
GA$3p864GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864@�@�
GA$3h864@�@�GA$3a1GA$3a1GA$3a1~���GA$3a1(-libcurl.so.4.5.0-7.64.0-2.el8.x86_64.debug�`��7zXZ�ִF!t/���,7]?�E�h=��ڊ�2N��1X�g���
\�fz��\ow���8��&����x��*�ϝ�� �����Q��haXV�dD� �9��@-�Gn1ؔx�L/��.�D�I�Z�� ��I�e�n��%���o��|3�3o��HNwr9����U�,TEv�y9s���u���[��Id�Oa �OB*s��U�6�	�Tž�j8�h�^��-)��n�Mg�g���[�>V���bbœ��7�vp�WC~s���T?�R��T��n�!�o;~w
�X
rJ�Q�z��^�z�Yx����*��J�y�n�3��fa�v@���BJ�m�0�+�ی�4��60�Ȁ���
�>�͟�]�֗j�עړ<�s�S}c'j��*VZQ-�a��Z
c^
f>cU�-���܎�ҍmEm{�@��>E.�6�
J�����[
�^l�Ϝ�E���%����*��!�.A@�>O"L�U.�Kz������!8�ٿ�]���e���ӎ���/���i�]u�nFx�vu�5)l��<0
OV��'uS���<^�w��G����}�;AF��a���c���
�����+tMj\,G�O�E+���	ٴ{����aJ�ٶ��p6Ry�'9O�ǕFC�l�R���	n��P���	_�m8[�	I�,M��.��`��������`��o:JK
�y���vI���g��ύ$��~�a�1�̙SoFmAV2��mުxyo�5��^�NX�N#�ܒM�:r�*_�%me،�NJ�]��/PX��k�t���7��[�k�0ImdV�W�o��Ph^�BDɯM�/�l|ɍ�r�T��7{�18Z��~c�Ę�脃���kο�
"���6�I�+>�EV�T�ۨ�N*�/�ـ��C�gV�p�����<4�� �{��$�b)x�>퐔��ߋ�dVMh��	�ב��o���ԫ�*]2گC�тt��h�k�po�ԑZy����RÍ����
Z��ޞ��`���04~RD��آ=�A�I�R����F�g\���ԔSU��~|hDk��������E��u���_ݍt��2��s��\�U�{�!Wŗ�e��;���z{`�-��6	$�*6�Q�0:D�v�k��u��ZN�<�pܻ\O�u2CR�����V6ٔ(���擧�>
喵z�A�_5��5
���јq��ޑ����qOd����1�zj�Qb��3K��Wn�`k���	z��g�[%"|�ۅ�~��.v�hs��0Bf�隁������~V��DT�[��R�"ϕ�Y�762�d]�wZ�d8+Ё+��A���Sgwl�&��*/�x��
���r����N��o���jaK��$=��f�L=�]�bV=�IM.�l�=1�����]{%��h�3�
���G�]՚P��*`�qjV�8X�	v�b��!r�yN8�+�~��+��R1=��Dv6T��%��u��nh���fzD�����xdq�����Lh��G��Q{P2<���
a���6<�8B�+ OAؔ9e������~Lg�|�5�'�'�����ʎέϲ�^��':G
V�>�Ȫ�@�Ȳ�b��
���hR���8DB���t�W������
���]�ۮ��Y�n���?�58OC��b�:�
���q8ʼ�ye�B�@o*rqjʍJ�7�p'��Glo�.�i<���:��4
;
��k�2&��>
̿
�ڹL�86���g>�q�YQBBC�q�	#*L���łƑ���LF��64�����
9双�Ѓ	�_0#�-�@|�_��+=�2v�Lm
?����7�u�u����qM?��+�,�C���5�IS�M�eE_��"��'��Ԗg1�x�8��z��{^
~daX��k��
X���`x�)��<��8�?�U���oc���0C���5�p���K]u"�4�xSӒ
�=���kS��.$䥃�U��rڅW}_ &�N���_!�u�ٜ�2igt�>4�sի�Ə��֪�m�u�E9|-t[g��5!�@+H�fI�8��*�T�f�T��������ɕ��Ɯ}�^�M|�ˍְ	�G�8��t�2�r�a�|��Ǡ6��W��n��i���[��e���6}��{Ō��Z�][�%Z���9�}{d<�]ӎ���pǗ6����90)#�E�c��.�iߘ,/2L�G�����dC�?9W�)�Å�m���u��`X����g������F
�c�����h>�TJ�Cv��Z���y
Fdq2���ł�oy���g�s��rs����Jͻ�8D���Vt!/àD.57w����cE��!��l~wlj_�yIdB�J�8��O襣L�CEm)�`u��l����n��B,Dݩ>�c��b~���mj{8D�ɒ�j8�(�#&s��h}^�����9�2S��uZ�?џ}؟cV�8�ɭ>�Y��>2p���
��r�:���wB4�7�B��D��
r�!9=�U�/+�<dx4.!+�}"7�l02�8�x�\F���B��X���_��E��1�E>��K�A0��Ik�V�[�x�I�.�=l��]�dtD�k��9U_�Ɣbn-<._�u���Zs���O�T����(�`,��1a�S���f���N5�	��+dRZp�l�PuG�g+�{�rK�0u��,�Q��`���TR�eQsm�s�{%`Ӧ3B���c�3�vޝ���RCnE�g��S�0_R�U'�2�Nكo�)��w<��8��vØ{}s�6��"Z��]T�7_�!Y;���/C*�>��0(�ղ��tQ���=��݁�/69�'�6Y��W��t�f��4L7	?�&�00�UdM�i�-�Wn)�����Q���k�38��Ś�3��9x2sqqG��r��S������H%�g�̈́�t<Q]m�S��	�V��d�P��Յ��y:��V�7�p�R�ˋ��I��Ԯ�������;��zr�N'��!��C�W�v�5��z�}/X7�7<\����^�0,vs�x_Uo�8Fq�YChX[\�\օ���v��ۢ?�
@��G��:x��s�ƨ�-x�p���;��S�v���6�W�L��d�Hj�tR�ti��4V3�u^̗
�_nl�R[ü�k��l�"���D��܄^�d2��X!���<J���	�lI�����8���
h�Bώ�q{�ch�`0z={�Rj������G��JM�tZ%������^�{V�pi��ܣ
X���R�ԥH�����0�7�48�<�mA��h��Jt�\Ě�Jr����kq�a�>u9�0�
��	GU��[���זb��+hv���Y���L
�Ο�^~K>�L��W��H�f�0��'���ѽ��W�G�a��(g;��^H$P�����03����d^d\�#|���s�ؙ{aױΚ�tt<���A��٤�P=�֭k�Uw8D�fdr���P����d�x"�FZ٤�E����nZ/u�#昿���o�{��l��<�X�F���-��W�
u=��v����\4�<�7��|�Ȟ�]��1�}j���E2�����M�&��qJ�c�r��|��T�t�`�"0a&h�6�
V�;4�S-����oˊ�W��9���ȫ�a�e|6��Vɓ��8�L�|��.t{�L��.�vFz}m��f%����f k	�ݜ9�D�2԰��Qr�Vp!�3ى��e.�Oη
��X�7��.�6�J�5�ש�L=�~i��Z�Q�2�y�og'?ˎ����_5��5D�6�=1>��p�l
v�
�6�]�ii;t��3	e����jT�rtk�l���GPyыS�ZN�Nk8&mG����2[�_���U�D21m��ck���|�%�(/��_�'ƍn��(�_��5o������:����8���~�`N��C6�Xd%�oX.ϵ�|���	��Ɛ�P�kq�֠ ū�T�m�fp����!l^ZY����hP��&h��������>]H4��n�;9�M�~M5�_�����:��-�����;+Vw\R�\�	�{��0��<"c�̢�v���t�n�b�l�!(�8�\�9N�kȷo��[��pG;V�%��p�57}�#b����2=��ݹ1��$�i(�Fi	 ��t魍6��/R�T>�VHqIfړ�}��7����X$RJjކ�RT�;x��d��2�{UPc]&(�0Ms��0�d�R��X
�G���KAb�*�s�{�8�Nh�ZB���\̆�~��i���}���X�(D��b��Q{v
^w�a1K?-v��K��`yx�#(�"k���	��@��p;I��pX�/��3V�D�t����p�P�!P�L1����]������'4��G���1e�.l�B'ݬ��LJCk4���}%U���&��b��+=�W�,m�Q��p�N���v�I�l��E�
 �V���n�����1��#�55�M��
.j4Z���{f0F�s���;��0�>�I��r
ve��KL���9���L�X��u@�R��Ɇ��>G��1{u�c�	��ǎ�+Y�%�H����..úd��H��r ��#J� �8��Jc_�T�z&�̯�B@o�s�1�M*X?ނ.BZV�p����|���ſ�����xy׆���_bH�X�gP'׭�Z�0f����3�!�]$\b}���,8f�Pe�h�l�Ab���$\��|��Z3�n_Մ�zl��(�WGbT���S �J#�|ma��"�蹉�xGeE��i��S��B���D���hI���b�%�-'���M�Z�r�u᎓�$��Pjy\5(�7	pq�?*�`���cHc��V�{�z�Zt1G���!�N����0�$}Na6gwPs�S$|&�Yټ����Ec���>\�G���E�����*���ԃE��;�2��y\��޶.���?�B�PM~��G,ߤ��Y0���e�c߭���<�"��%���T�W�,�;u��ڦD��Fzꆢ	P�]H�D�V@G~s�D�mD�g;�X3jl�aϔ�M6�@ĩ�ke.�t}I�U�5/�?�q�RӢop<�H�s��آբ�V�F�k�7�fR��Ky�A*[�=:,1a��fF�WԺ�E��J�v8%�T����t�i���/ĺm��m:�Ԁ6`���0�����]�l7�+v�w�T35{T�9����PdmK���ٓ
�m�\�#�".����۽P��t�,+km�!VLg�����Ra��Z��[��&��x\�#sc�6��<�miw����~m�n���}˘�y����i2A��Ec{͜�+o�S��x@C���X����	��z�摘WT=
�i�&��Կv�a �}��e���I�SpRJ�c���N`����HW�hP��U��Zn�t~�fLY_\8��%c�������oc0��{��S���!��	�;וz�[mv&�C�4� �{9������X�B�]#h�:����F7=8�6o�<�&��G���Im�3�2֮��/Z0U��2�7;�6r���Wܽ�ey�s�������	�huz6���{���j��ro��hV��x����7����;�'��apr����%�M%X�B��Dz�|�U����wx�g]�4u����+��."��M+�pQ�v3���P�Dۓ��G,��>I�ȒUx
���M
�ޯ���2�bg��(˒�b�sӅk��8	���24�,;�IH����\�#A���|6L����2Z����
�W,��Iu���DZ�$}�-�c��v'��I!2p�_�c�&�(���V��hv�3}�W��I��ݙ�����t�p�1e:5����kT/٩thc���6��-��R�T�*(���TVHc4W��9�vP�{
�&_��گ����Q�5��a���+����)E��u#&"!�rg�.mHK�>��5&;�S%��O��"�x�͐{�>%��@C&]:G�րe;w��A��阮�����Mǖ��C��~�Q����]�[�[V�b�B?�PN�Ϲ��sLk4�66x
���I���Z��Vr��
�����t`T���#5*�x��Wn(�ef!?r���8��A�Q����m:,�Z"4ՏO?�0"���# 6�NӅ��8�-8���3���!���c]��z�Fg��r���X]�Da�{3I�ڥ�n�ph��fk�����y���h	�L�ʎ�)�����g�P{�)e��X�2B�рy�ێp/ɸ���#����=;z�0n�^���^�%�p�D�.b��p�8�|���`���jc¹�+Fc�.Y46k��T����E��y���0Ce��~�`���)��.����)��•���Ő�tM���<c1O7�8H��H2Q�I��D�ꈐj_�V���T�;x�W��d���@�u�J��5���J�P�W���IF ɐJ�O��n��*��]��;�un>'Xk}�ӣ����*߆���pp^?�P��M��"�GQ�i3�?�x���vu�N=����,����E>B�f*��;Qպ�Q��q��\��(dl ����G��馾����;.~Pa�i8:N�sПB�maQ�]�1�0�*������/�뷺�:FN�_zǃE�G�G�t]X�1ztcEib�g��
��`��z�Xg�kq]���h�m�%��[�\h�*����y��Ķ��ӳg0)��ym
��G5�G+�J�•%	ػY��z�ud�cY�����(��FͲoR��<�rr��0GB��i( ���͆K���Z^6�-����H��H����|����4�*�S�T��yL����pJ��Ԗң���=.jqOn���/�������S�F�0#��D�粂ψU�g��~8���l�r!dz��1�������^��� ������.WdMt�ŭ}����To�ʐ���+l�2��u��D�`��~�y���X1���xE�Q����\���4Jս�J���$T�����csչ�����)��S�}��q�.(��n�����,x��g��{��X
Jo��C���75���V�`نrK���C���Oy�<H=�"���"�'����R�nծ��C�᲍(���f�YA�m�Y�=7lP�v=)��h�z���{�ܓA�PM�_��Me�K����d�b"�7�L��M�S�~�ս����,c���q�4`-/�����X����ci�X�ţ{��p���_��>��F��U�����֏��y
�s�ܰƗ�A��r1^<���]��w���tT�ꁓ�V�9pVO��i⟥�n��z�
�K��S8!����͹����d�����CL�m�'«�"m�X�tq]w�lP�|�F�L3�4��S�%���)=D�ܤ�Y��uNf=���l�T N��#e��ڽ��v5�ċzD�����J��Y����I���Y�[x�Ok���%��Au�}�;K
��>"C�v���R+�s.�@�B0�x��vDC4�PXK_<q�c
g�!]�d_�"�m��n-�<!5P�:欃4���_ ZM���`��#�J��=D3-/=�xX�ē�	�=V5��ŧl�r��[�9u�!+`h����T؋��f�mX��h1�%i�AA�]�R�$]KZ���H�Ŧ�*U3��W�X'�@vO�{��>�~����^�n�K�1�?��圵�k{ ��Ǔ=f/�\
ـ�]ߛûFO�^qm�z�u9�g?��d�H��RiM�d��+'��`%�7�?�r��2��0D#�p��;Eo�~����:��xT�G��o�|���iG@x�kś�k+�����eCc:�5�y�#d/��8x3���F�7.�G�x��T�~螦���NC��#�_��4�l8)wp������h7C��c���:�jE��6h�������+�{��-LF�
�M�E�dԴ�95����M:�aU��ƌc��=vf��ݜL8��EI��&��J�4_Y�_L���ȹ�T"@���K�: eu��
�"[}&�"��l�L�1Yݶ
��X�l�����K�&�������fÑ�1�Y�U� =eT���'�R��sT�A5����|���լ�i ��������H5+�g39�D�/ ��1�w`�Q/B�9�T��4U�,�H����߆��Dl�*T��D�h��"��d���ŏ��62����R�IaR�Flq�%�2�:����7�X�Ɠ���O��b���|�uUP�f,�<Yy�B�^B�Y���
���`Ƕ���M>1�"���(~��xm�8L�(�8L0�Z���*
M���F;�������NVl�|W텊O�H$�Y�	 �c1�@d%����k�i�&�����%x��o|]|�9��҄Z�i��Kr%<C4��"ƾ��_/{��*4��� �OXOs�Q��ߧ���������7S����R�alpJᖖf$R��1���h�k�j/�l�Y��xO��+�Ě7x\k���&�*��&=hSP�Y�l�#�~7�F�_Z�=�˰׻���ok
m�#>	̫�G>>�&^�M��ٙŧZ'?�"��&�+�K6iX��z��)K<b0;�
Fd���ڋ�,Y#�5?0��?9�	�l�|.|����Vj!�E�Ht_)��
n�������&	O�<tl��{	2�rN�(�v�m[.x;��M��#�f����D�9�n�5K�#n�9���2�u�ڄ��*�)��$�y��S���@Y�9��;��Cs<%Yg��2,�
mm@�+)Y��h�tfr�����ħ�8��ر��<�ߞ�U�eb�5�g��`5F�^����b�t��țL����|��H ~�P�4��/��3���ɀ�\�b�>f��]ê�pk�OA	����l=T��{���p���h�I�A��g�U�<���t�{\��m|�2e�N��i�@G�kQG]M6]k��T�G���;�,�4�-��Mp��؀��$)�_��mB�p�\�b���;C��am�M�)rF��%\���K��)�ң:�I%`,f�
���0�*�5L���O�4˵ˏ���@i�f�~�1��8�bZ��3��^�KP�$n)�ۏ�jt�����D�h6[O���
�{�i��#o�g�T,�m�U�qZ���0}���
J�T���
��3�-�CR�(���)3�U���S9�<%0�O>ɛ^��P9�f-�K���Yw��Ls��QW���˭ 	ߤM\0�Z�jޗ]��n�?X�+�)guW,;�vU�8��RI�]��j���n��nœ(3��>���H��&M�L�-����ϊi��#���N-3��j��Kga��-C�¸_T㲽�ʾ��߈���ݓ�A�:}s�c�9�l����I��-�䍴C�	
m����R?]����#���2�����g��4�t�v8�L��w!��.����L�O��c�H�v�n�W,�Rܾw��ַU�bS���9P��x�F�X�`�>V�&�v�����bܺ�Z�鯊����I���В��R�Th���W�*hT,k���&���hn3�7���)sJM��	Y����L��$�u�0�z�}�,��{d{D�+*��D��x0��2��eKԍRD��ѧQ�7ga��W�ܵ!��,�ɨ\c\��nJ��x������~tt��g�$	�q��G�nH!T����s�$o����E��S5��/�H5��_*߰,6d�fj�Eϲ�i����C)�W9��U\�W�g��5�5'������zBp(�!+�?@>S��9�@s{�V�-Q���$�Xg�x
6H�C�oIs�������q�z�&�	1���]�m���#����Ώ,��pԫ�J�0Qs��{`.N�y9$5�� <�DWa������B�V�3E,+�%�����g�]���כO1��	��m���>�$���R�ı�Rt,��,�����;��WK�T�^��L�/2�odC��9.�]�9�Z�e�ͯl�o��/Y�5��PT&~x9Ҹ�����8�V����)�Er7�{N��Wqj�a^�w+}���S�4�X>�r���ߋ�x��ʶG��$�9va-��U!�"۶����������he,�x�:�+WZ][F��Pd�<'��42"��!�@�d�8�X{�O�ajITI����o��qHV�2w�s���|��NdǵVʐ�� IP]J'�f�y=�� ]�s̻n�KW��3�|���#�8
Y�x藇��B�����8�0�ݰ���H��4Iz��	:!\�Y�K�$�Hv�r����=!@^� �n�C����Mi�vØ��6�lP'�4j��m��Yd���;&7��8���r�
�-9\ܓ<K�T�m��-��x;7��9�Y��.B�lDD�G�P~O��k,L~��g�4M*D�,��V��}c�43�I�9��J��2ɸ�t.�ס�3Ꭺ��+�����|,�ȵ�`g���4�5�x]�E���Xc�y�˼@4�I�b!�4�^ӆd�{1"��h���rM��0��b>�,�9dt�O�|�7ϑ�ݙ�/�N H�(SMB;��fd�<uH@�~��G;R����g�6�0M�\�����1b������s��NH�y�5��#@�J�d��AP)~t��,���4��a�@��{�Ք�I=-�v��g΅�nUTܙ��ݸTT���NA�H����V��e��D�\��g����*yZW���d/���L�ajU-P�����Wwz��.�>���E5=�e
K���N��.Y|��a��2�;_��s�A&��p��E2�l�q�B�D95���
"�:®z۝Nc}WǙF�3����-a����7��DCP��^���LvnGm�����
ix�
�M��]-練��$���2��#���4c��t�yCQ����ft���O���T��F�\à!!��{ד!������P3��q��C��<-��X��\��M��g�YZ.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.gnu.build.attributes.gnu_debuglink.gnu_debugdata$���o((�(���/0�4�4)#8���o�W�W�E���o�[�[0T�\�\@2^B0�0�8+hh�h�c�����np�p��w@�@��}  
�@@�� �4�4�t������������ ���(�����(�����(��` � �( �����(�� ��(�� ���(�� ��h��@�
��	0(�	x,��	(usr/bin/curl000075500000702570151162241030007026 0ustar00ELF>�3@@x}@8
@ @@@@@00pp@p@@@���� 0�0�b0�b�8�9 00c0c����@�@  ��@�@DDP�td@�@�B@�B��Q�tdR�td0�0�b0�b�4�4/lib64/ld-linux-x86-64.so.2GNU�GNUGNU9!���23��Px8i��.�:x�A �
x{(�BE���|fUa8��qX�H������n���Q* ���n�3Uc�u����Dt�b���
`����5��/��T$[R*"��]��?��N�����#*&E��?~q�p����v�t���/ ��������K Z �Bi��#c��#c�$c|�#c8�#c�#clibcurl.so.4inflateinflateInit2_inflateEnd_ITM_deregisterTMCloneTable__gmon_start___ITM_registerTMCloneTablecurl_version_infocurl_getdatecurl_mime_freecurl_strequalcurl_versioncurl_msnprintfcurl_easy_cleanupcurl_easy_escapecurl_mime_filedatacurl_mvfprintfcurl_mime_datacurl_easy_strerrorcurl_strnequalcurl_mime_data_cbcurl_mime_initcurl_mime_headerscurl_mprintfcurl_slist_free_allcurl_mfprintfcurl_urlcurl_global_cleanupcurl_mime_typecurl_mime_subpartscurl_mime_filenamecurl_mime_addpartcurl_url_getcurl_url_cleanupcurl_mvaprintfcurl_mime_namecurl_url_setcurl_easy_initcurl_maprintfcurl_easy_resetcurl_easy_setoptcurl_easy_performcurl_freecurl_slist_appendcurl_easy_pausecurl_global_initcurl_getenvcurl_easy_getinfocurl_mime_encoderlibnghttp2.so.14libssh2.so.1libssl.so.10libcrypto.so.10libgssapi_krb5.so.2libkrb5.so.3libk5crypto.so.3libcom_err.so.2libldap-2.4.so.2liblber-2.4.so.2libz.so.1libpthread.so.0lseek__errno_locationlibc.so.6getcfflushstrcpy__printf_chksetlocalefopenftruncatestrrchrpipe__isoc99_sscanfgetpwuidftellsignalstrncpy__stack_chk_failmkdirreallocstdinmemchrstrpbrkstrdupstrtodstrtokstrtolisattyfgetscallocstrlenstrstrstrcspntcsetattrfseekpoll__fprintf_chkstdoutfputcfputsmemcpyfclosestrtoulmalloc__ctype_b_locstderrioctl__memset_chk__fxstatfilenoutimesfwritefreadgettimeofdayrenamegeteuidclock_gettimelocaltimestrchrtcgetattrfcntlfsetxattr__xstatmemmovestrcmp__libc_start_mainferror_edata__bss_start_endGLIBC_2.2.5GLIBC_2.4GLIBC_2.3GLIBC_2.7GLIBC_2.17GLIBC_2.14GLIBC_2.3.4/opt/alt/openssl/lib64:/opt/alt/libssh2/usr/lib64:/opt/alt/curlssl/usr/lib64	� ui	�ii
	ii
)ii
3���=���Hui	ti	S�ci�co�cr�cs�#cx�#c{�#c| c  c( c0 c8 c@ cH cP cX c	` c
h cp cx c
� c� c� c� c� c� c� c� c� c� c� c� c� c� c� c� c!c!c!c !c! !c"(!c#0!c$8!c%@!c&H!c'P!c(X!c)`!c*h!c+p!c,x!c-�!c.�!c/�!c0�!c1�!c2�!c3�!c4�!c5�!c6�!c7�!c8�!c9�!c:�!c;�!c<�!c="c>"c?"c@"cA "cB("cC0"cD8"cE@"cFH"cGP"cHX"cI`"cJh"cKp"cLx"cM�"cN�"cO�"cP�"cQ�"cR�"cS�"cT�"cU�"cV�"cW�"cX�"cY�"cZ�"c[�"c\�"c]#c^#c_#c`#ca #cb(#cc0#cd8#ce@#cfH#cgP#chX#cj`#ckh#clp#cmx#cn�#cp�#cq�#ct�#cu�#cv�#cw��H��H�!�"H��t��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�������hc�������hd�������he�������hf�������hg��q������hh��a������hi��Q������hj��A������hk��1������hl��!������hm��������hn��������ho������hp�������hq��������hr��������%�"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��AU�
I��ATA��USH��dH�%(H�D$x1�H��H�\$pH�D$pH���H�DH�������x$�|$p��v�|$tv�����|$t�~���fD��
�������D$IH���"�D$����H�\$�&���H�D$`H�D$PH���6������Å�tCH�5tiH�=��"1��H�|$P���H�T$xdH3%(���5H�Ĉ[]A\A]��;��Å����l���H�$H����H�|$P��H�D$PD��H��H�$H���H�L����H�<$�����H�$���H�|$ ���|$H�D$ tH�|$H��t���H�D$�|$0tH�|$(H��t�d���H�D$(H�|$@���H�|$`H�D$@������H�5*h���H��H�5lh1���א����H�={�"H�5�g1��踐H�|$P�>���������@��1�I��^H��H���PTI��YAH��YAH��P1@�*�"����f.��H�=��"H���"H9�tH���"H��t	�����H�=��"H�5��"H)�H��H��H��?H�H�tH���"H��t��fD�����=��"uUH���z������"]Ð�Df.����f.���UH��1�SH�����H��H��tH��tH�EH�XH�]H��H��H��[]�fD��V���H��tH�H�XH��H��H��[]�DH��1������f�f.���H��tSH��H�?���H��[���f��f.�D��AWAVA��AUI��ATI��USH��XI���dH�%(H�D$H1��}8L�}��H�](�D$0H����E4�$���A��wiH�v%Jc�H�>����=9�"uG�}tH9�"t8H9��"t/�=�"��L��H�5�$H��1��n������"���"1�H�L$HdH3%(��H��X[]A\A]A^A_��c�5��"H��H�Ӆ��H���"H�H�|$(H�D$(����H�|$0H��H� $D�@�HS�D�1��?���H�](XZH����H�U �H�5UfH�������tR�H�5�$H���������H�]H�](H�������L��M�������H�5�#H��1��f������H���"H�](��H�
*#f��<$�@M��M��H�T$0H�5�#H��D�1�������1�H�D$M����H��L�58�H�D$�1�H��H�5�#H�������<$��H�D$I��H�H�D$I9�w;���B�<_�m1�L��H������<$tJL;|$tkI��M9�vb�<$C�T=u�I�GI9����
���B�<_��L��H��1��H���I�GI9�v�C�|=
u�C�|=
u�L��H+L$H�iH�޿
���Hl$I9�����H����������H�
�!���@H�
�!���@H�
�!���@H�
�!�t���@H�
y!�d���@H�T$0L��H��1�H�5"����"���f�C�|=
t�.����fD�H+l$L��6���fD�B�<_������.����.L��H��1��&�������H�D$I��H�H�D$�,fDC�T=H�5�!H��1����I��L9|$����M9�w�H�ٺ�H�=s!�����f�A���&H�!Jc�H�>��D1�H�$�E�H�$�'�"H��H)�H��"�`���D1�M����M�����"I����H�D$01�E1�H�$�
�I9���A�D-H��<
u����H��K�|5�H��L)�I���������"1���=��"��H�ٺL��L�����1�M��t	C�|%�
���S�"�K�"�V���fDH�53H������E0H��H�E(�������"��"����DH�$H�
�HH��1�H�5��\��6����L��K�l5L)�I�Ƅ�tLH�ٺL��H�����C�|%�
���U���DH��"H�T$0H��J��H�5[1�������H�T$0H�
HH��1�H�57����H���"H�T$0H��J��H�51����+���L��A��]����j�f.���AWAVAUATUH��SH��H��(L�qL�adH�%(H�D$1�H��H�D$��H����	�I�F��H���0H���I��I��tII�NH��t@���H9�t-H��H�|$dH3<%(H����H��([]A\A]A^A_�@I�~��I�D$H�T$�0 H�81���A� t
H����I�G���t�H�D$t�M�t$M����I��x���xI��H��:L���(�H��H����I��L��L��1�M)�H�5RL���?�H�u�I�L$H�{L)���������L��H�=��<����O����D$�D���I�t-A�EM�uH�filenameH�V���t	I9��I9���I9tRA�I9�s�f�<;t�I��A�L9�u�I���f.�L��H��L���M��f����A�~=u�I�v	I��H��H�t$L)�I)�I�~��H�t$H��H�$�YH�<$L���}�H�$B�0I���<'�T�;<"�GL�����H��t��/L����H��t�xL�p���\L���l�H��t�xL�p���
L���|�H��t��
L���g�H��t�L94$tL����H�<$L��H�P�a�I�|$H��t6A�|$�-I�D$H�4$I�<$������A�|$�
A�D$H�$L��I�$A�G ���u/�H�����L�����t�M�t$�[���H�<$�A��I�|$����L���\�������H�$��L�q�����H�T$H�4$�AH�4$H�T$H�filename�������A�FI������S��8��H�$I�$H�5}I��I�D$H���1��G�A�|$u.H�<$H���������9�����I�<$�{�������I�<$�h�I�$�f.�@��AWI��������AVM��AUATUH��SH��H��XH�t$H�$dH�%(H��$H1���L�C0H�$H�t$I��L��I��L)�J�T5H�H9����3H�KH9�}2���*L9�txH�SH�KL��L��L��M����H�K�I�,����M��H9�t?H�SH�KL��L����I9�~H��c~!����M���H�{(��H�kL�cL�k1�H��$HdH3<%(��H��X[]A\A]A^A_�f�H9ЋI�,M�4IL�t�M���aH�SH�KL��L���_H��c~�H�CD�s L�|$@L�!H���L��H�$A�N�1���HcC<E�N��K8���QL��L��-=O=�@-�'�A��D�I�lj����i��)�1�A����H��D@#D����i��A)�1�C��D�I
����H��D@#D����i��A)�1�C����H��D@#����1��i��)�H�s(A����L��H��D@#���S8�B���=�C‰C8�C<H9,$tC@�{ �C<�W�9��
��yH�H�C<��A����L��M��H9��)���I9�L��f�C HL�f��L�D$@�#�H*�D�x�L��L�$�H*ɸ��^�f���A*��Y��D$�D,�A��DO�Mc�L����B�D4@D��1�L�t$H���(L����L�$H�{(L���D$�Y��L���q��j���@�M���&���f.��C@�����S<���H�K��������AVf�AUATI��USH��H��dH�%(H�D$1�GG G0H�G@�~PtH���H�G0H�=.��H��H��t>H��
H�����L�,$I��I9�tH����H�I9�u
I����H������C ��tU=>I��$�H�@�C8��C@H�C(H�D$dH3%(uYH��[]A\A]A^��C ��1�H��T�Q���u�D$�C ��u��C O��D�s �c������f���SH��H���9H���*�H��xH�SƂ�[����H�SH��1��9u���Ƃ�[�f���H���?��H�����H��������USH��H��H�GH�?H���H��tp�?tk�{	uEH�5 B�i�H�����H�C f�S
H�C(H�C�H��[]��H�5�&�$�H��u/H�;�f.�H��1�H�5\��|H��1�[]�fDH�������^�H�H��H�5H��1��|H��1�[]�fD�c��8�,�H�H�5H��H��1��e|1��P���@f.���AWI��I��AVE1�AUI��ATL��I��USH��H��H�iM��A��H�yH����P����t
H�{ �~IH�KL��L��L����I��I9�uHC ��������ueH��L��[]A\A]A^A_����u�1�L��L��L�$�V�L�$H��t�H���H�5O1��x{DžtM���f�H�{�w���ME���ƅ�H�}1��V��c����H�|$H�ψ$����$L�D$�������f.���H�H��H�1�HLJ�H��H��H)�������H�H�����Ƃ�H���Ƃ�Hǂ�2H�BX�B`H�Bh���BpH�BxƂ�Hǂ��Ƃ��@f.���H����AUATUSH��H��fDH�{L�����H�CH�{��H�CH�{ �n�H�C H�{(�]�H�C(H�{0�L�H�C0H�{8�;�H�C8H����'�H���Hǃ���H���Hǃ���H���Hǃ����H���Hǃ����H���Hǃ���H��(Hǃ���H��8Hǃ(��H��@Hǃ8�o�H��HHǃ@�X�H��PHǃH�A�H��XHǃP�*�H��`HǃX��H��hHǃ`��H��pHǃh���H�� Hǃp���H��Hǃ ��H��Hǃ��H��Hǃ��H���Hǃ�r�H���Hǃ��[�H���Hǃ��T�H����8�H���Hǃ��!�H���Hǃ�H��t9f.�H�}L�e���H�}���H�}���H��L�����M��u�Hǃ�H���Hǃ�Hǃ�Hǃ���H���Hǃ���H���Hǃ��k�H��Hǃ��T�H��Hǃ�=�H��Hǃ�&�H�� Hǃ��H��(Hǃ ��H��0Hǃ(���H��8Hǃ0���H��@Hǃ8��H��HHǃ@��H��XHǃH��H��`HǃX�n�H��PHǃ`�W�H��hHǃP�@�H��pHǃh�)�H��xHǃp��H���Hǃx��H���Hǃ����H���Hǃ����H���Hǃ���H���Hǃ���H���Hǃ���H���Hǃ��q�H���Hǃ��Z�H���Hǃ��C�H��HHǃ��,�H��XHǃH��H���HǃX���H�{xHǃ�����H�CxH�������H������H������H��@����H��H���H��PH��t����HǃPHǃXH��`���H��h�w��H��p�k��H����O��H����C��H����7��H����+��H������H��L�����M���k���H��[]A\A]��f.�D��AWAVAUATUSH��H��H�t$�q��H��I�����H���}I�~I�����H��H�����H�5	L��L�%�����I���C�M9��'M��L��H�ycL��H��1��]����H����������I��M��twL��1����H��H��teH�ߋH����������!�%����t������D�H�WHD����H��H)��m���L��M��L��1�H)�H��bH������n���1�H�����L�����H����[]A\A]A^A_�D�������I�������L��
������H�|$H��1��H�5-����fDL��H���������냃�$t[��z��H�|$H��1��H�5-����E���L������C���H�|$H��1��H�5��~������H�|$H��1��H�5C�^����H�|$H��1��H�5�
�>������H�|$H��1��H�5�
������f�H��H�=��"��H�=��"H���"��H�=��"H���"�r�H�=��"H���"�[�H�=d�"H�a�"�D�H�I�"H���@��SH��H�?��H��tH�1�[�@�[����[�@��ATI��H��USH���H�T$0H�L$8L�D$@L�L$H��t7)D$P)L$`)T$p)�$�)�$�)�$�)�$�)�$�dH�%(H�D$1�H��$�H���$H�D$H�D$ ��D$0H�D$���H��H��tI�<$H�����H��t0I�$1�H������H�T$dH3%(��uH���[]A\�@�[������4��@��H��H�=�"H�5��e�H��tH���"1�H���f������H����H�=��"H�=��"S��H�5+��H��t=H���"H�G�"H�5X
�fDH��H�3H���"H��tH������H��u�����[�@H�Y�"H����H�5�H�����H��t�H�5JH��H�3�"���H��t�H�=�"H��"���H�=�"H���"H�5i�X��H���w���H�5�H��H���"�9��H���X���H�55H��H���"���H���9���H���"[1��fDH�H��u�;���H�[H���"H���$���H�3H������H��u��������f.���H��H�=A�"H�5h���H��t0H�5oH��H��"�z��H��tH��"1�H�����+����H����AV�AUI��ATUSH�o@H�=�FH���������H�X�"E1�H����L�-��"H�-�H��L�5�
�fDI�EH��I��H��1�L��H�����H��u�H�q�"H��t.H�(H��t&L�-�
DH�UL��H��1��w��H�mH��u�H�=.�"tFH�5�H��1��S��H��"H�(H��t&L�-b
DH�UL��H��1��'��H�mH��u�H�5BH��1��
��H���"H��tJH�(H��tBL�-�H�5
H��1�����H�mH��tH�U�:u�L��H��1����H�mH��u�H�`�"H��t-H�(H��t%L�-�	@H�UL��H��1����H�mH��u�H�-��"L�-�	H��L�5�	L��H��1�H���Q��M��tL��L�m��E��u[[]A\A]A^����fDH�5�H��A��C��H��H������H��L��H�5J
1���j[]A\A]A^����fDH������[]A\A]A^���f.����UH��H���SH��dH�%(H��$�1�H��������t(H�\$XH��$�dH3%(H��u@H�Ĩ[]��;��H������8��t����H��
�H��H��1��?���������USH��H��8dH�%(H�D$(1�H��yH�D$(dH3%(ueH��8[]��H��H��H��H�\$H�$H�D$H�D$�����t�����8�W��H�پH��I��H�B
1������T��@H�SA��D�A��"tOA��;A��E����A��H��t'A8�u	� f�A8�tH�����A����;A��E��u�H�[H��f.�H�XD�@E1�H��E��t�A��\tA��"t@D�AH��E��t�A��\u�D�AA��\tA��"u�M��D�ALD�H���f�H�M��t[L���H��D�@�I��H9v@E�I�IA��\u�E�YA��\tA��"u�I�IE��H��D�@�I��H9w�f.�H��<;A����@��A��t%8�u
�D8�tH�����@��<;��@��u�H��H�[�f�f.���SH��H�?�`��H��[�W�����UH��SH��H����t+��uH_H��x&H�}t.H�]H��1�[]�f�H_H��y�H���[]�H�uH�=��"1�H��3����t���f.���UH��1�SH��H�qH�QH9�}'H)�H�H��H9�HO�H��tH�H�����H��HCH��[]�fDH�
��"H���|����f.�AU�ATI��H�=�@UH��SH���dH�%(H��$�1�������'� ����H��H����H�=
�"���H�=�"A���Y��H�CE��x	H����H���"H�t$H��H�D$H�C肺��tF�H�;�D$���H������D$�H��$�dH3%(�H���[]A\A]�H�D$H��uH�H�=`�"H�C�w������H��L��������u�H�sI��L�����H�
���H�D���L���l�����t����V����H��L�������X����H�T$ D������������D$8%�=�����H�D$P�H+CHH�H�C�X���������fD���������AWf�AVAUATU��SH�˹H��H��$�H�|$XH��$�H��$�H�H�D$hH��$�L��$�L�L$pH�D$x@�t$SdH�%(H��$�1�H��$�)�$�)�$ I��H�H��$0��H�M��tI�H�D$xH�|$hH�t,H�D$hH��f.�H��$�H�PH��$��:����u�H��$�L��$�@��H��$�H�ƉT$H�D$H�|$�^���I9�H�H��$��y	H��$�D�2�A��;�}
H��$ 1�H�D$ L��$�H�D$8H��$�H�D$`H�D$(H�D$@H�D$Hf�H��$�H�PH��$��x����u�H��$�H�����	H�=#��M������H��$��H�=.�,�����t�H��$��zH�BH��$��Wā��2��H��$�H�PH��$��x�s���uߋT$H�t$H�|$H��$�����H9�H�D$0H��$���H��$�H�|$0H�5nD�2��~��H��H�����D$TE1��D$RH�$f.�H������Ń��tQH�<$�.��
����
t�H�$�|$Ru�I����w�B��<�I��H���9���Ń��u�f�M���7�f�H��$�H�PH��$��x�c���uߋT$H�t$H�|$H��$���H��H��$�H9���H��$�H�|$ H��D�2��$��H���QH�D$ 1�@A��;����H��t�H��$�H�L$@H�|$pH���H�D$pH�L$(H�H�|$h�H�D$hH�L$`H�H�D$xH�L$ H�H��$�H��$�H�A��H��$�dH3%(��H�Ę[]A\A]A^A_���x��O���H��$�����H��H��$�H9�w����f��H�=�o������H��$��	H�=$��N�����&H��$�H��	H��$��H��$�H��H��$��8����u�T$H�t$H�|$H��$��E���H9�H�D$(H��$���H��$�1�D�2��i���f���r����H��$��H�=��������H��$�D�3A��;��E�����������l$SD8t$Su���DD8����A�������H��$�H�PuH�XH��H��$�D�pE����A��;����u����@������tG��
������
�������#�����H�<$������D$RH�$�n���fDM��M��t�C�|=�M�g��A���u�H�|$ L��BƄ<��7��H����H�D$ E1���
�z���D�D$T�D$RH�$�������� ���H���������H��1��������f�H��$��H�=	����������H��$��H�=��������+�T$H�t$H�|$��H��$�D�2H��$���8�K���H�L$XH��H�5|�1�H����^]�)���H��$�H��H��$��H��H��$��8����H��$�u�H�L$8H�T$HH�D$@H��H�5�1�������GH�L$H�H����������!�%����t������D�H�QHD�H�T$8��@�H��H+L$H�2H����������!�%����t������D�H�rHD։�@�H��H+T$8H�\H\$@H��$�D�3E����A��;���������l$SD8�����A������H��$�H�PuH�XH��H��$�D�pE����A��;����u�����H�\$(H9D$(r�=���@H��H��$�H9��$����x�����H��$�u��
�������8�]��H�L$XH�T$0H�5��H���H��1��[�V����H��$�H��H��$��DH��$�H��H��$��8����u�T$H�t$H�|$H��$���H9�H�D$`H��$��h���H�\$`H9D$`r �W���fDH��H��$�H9��<����x�����H��$�u��"���H�D$X�L$TH�5��� H�T$0H���1��ZB��<�I������H�\$0H;D$0w!�����H��H��$�H9�������x��2���H��$�u����I9�r!�}����H��H��$�H;�a����x������H��$�u��G���H�T$(H������H�D$XH�5O�H���1���YH�|$h��H�T$`H����H�D$XH�5C�H���1��Y����H�D$XH�5,�H���1��YH�|$ �������������]����8�&���H�L$XH�5J�H���H��1�H�zH�T$0�P��H���X��H�|$ ���������|���H��$�H�|$pH���H�D$pH�|$hH�D$`H�D$ H���������H�D$XH�5�H���H�x1���������DH�D$XH�5l�H���H�x1����H������M���H�D$`H�|$hH�D$ �����H�D$pH�D$ ������AWI��AVAUI��ATE��UH��SH��H��dH�%(H�D$x1�H�:H�D$XH�D$`H�D$hH�D$p��H���f��H��H���j�=H��譿��H�D$HH���wD�@H�PA��(��D	�H9��#H�T$H�H�l$ ����A��@u	E����I�?���H��H���H�D$H�8<�E���H�D$PE1�H�t$p�H��蚿������H�t$PH�����H���������~H�t$`H���)�������H�t$XH���d�����LH�t$hH���O������E����H�D$ H��tH��H���������H�����1�H�L$xdH3%(��	H�Ĉ[]A\A]A^A_ÐH�T$H���td�H�=�@H��������fI�?E����H;;�%	H�GH�@I��@H�?���H�H����I��&���@H�D$ H�D$pH�L$PE1�1�H�T$HPL��jL�D$h���AYAZ����I�}�.���I��H���<I�?�*���H��H���YL��H���3�������M�'H�t$p�H���������H�t$XH�������������I���1�H�5!��dUH���������f�H�D$pH�L$P1�L��H�T$HPH�D$pPL�L$pL�D$h��A��XZE�������H���p�����O���fDH�D$ �T���f�H�D$XL�|$(E1�L�d$pH�D$H�D$PH�D$H�D$HH�$H�D$`H�D$H�D$hH�l$8I���f.�L�����H��H����H�t$p�H���ʼ������H�t$PH���e�����H�t$`H��tH���[������H�t$XH���������H�t$hH������������aH�T$HH��L��,H�T$HATAWL�L$(L�D$ H�L$H�T$���_AX�Ņ���M���(�����,�H�D$(L�0����f�I���H�T$P�D$41�H�5���S�L$4���(���L�|$(H�l$8M97tL�����H���ƾ������@E�����H��H�L$PH�T$H1�H�D$HH�D$pE1�L��PH�D$pPL�D$h��Y^A�ą��TH�t$p�H���O������0H�t$PH�����A�ƅ������I���H�T$P1�H�5���RA�������H���������f�I�}���I��H�����I���1�H�l$8H�5���qRH�|$p�׽��H��追������DI���1�H�5���;RH�|$p衽��H��艽����h����I���1�H�5��RH���[�����:����H�D$HH�5��D� I���1�H�T$H��Q���f�H�D$ �&���f�I���1�H�5X��QH���������f�I���H�5��H�x1��g�������DI���1�H�5 ��CQH��蛼��� �z����I���1�H�5B��QH���s�����R���f�H���X�����7���I���1�H�5{���PH�|$p�?���H���'��������H���������I���1�H�5���PH�����������I���H�5���mP����I���1�H�5���KPH��裻������f�L�|$(H�l$8M97tL��詸��H���q����
�P����L�|$(I���1�H�5Q�H�l$8��OM97tL���d���H�|$p�:���H���"���������L�|$(I���1�H�58�H�l$8�OM97tL������H�|$p���H���Һ���
����L�|$(I���1�H�5�H�l$8�AOM97tL���ķ��H��茺����k���f�L�|$(I���1�H�5-�H�l$8�OM97tL��脷��H���L�����+���f�I���1�H�5>���NH���#��������f�L�|$(H�l$8I�?L9���������H��H����L��H������������I���1�H�5���aNL�����H��豹�������L�|$(I���1�H�51�H�l$8�!NM97tL��褶��H���l�����K���f�I���1�H�5q���ML���s���H�|$p�I���H���1��������I���1�H�5T��MH�|$p����H�����������I���1�H�5���MH�|$p���H���ϸ������I���1�H�5���PML���ص��H�|$p许��H��薸����u���I���H�5���MH���q����	�P���I���1�H�5]���LL���z���H���B�����!���裷��AVAUI��1�ATI��H��UH��SH�� dH�%(H�D$1�H�L$H�t$�'�����H�|$A�����u0H�D$H�EH�L$dH3%(D����H�� []A\A]A^��K���H��v-H���H�D$L��H�5W�L��1��%LA��D��B��+w�H����Hc�H�>��@H������H�D$H9�tH���`���H�������H�D$H9�TH��
�@���H�����H�D$H9�4H��� ���L��H�5��L��1��KA�����f�A�����0���AWAVAUATI��UH��SH��H���D���H��u/H�}薶��H�EH��H��[]A\A]A^A_�H���H�5��H��I���)�������H�5��H���"���H�MH�$H����I�}舶��I��H�D$H���'�I�߄���L��H�5��躱��L��L��I��H���ɲ��M�M�A�<:t[<\u�A�G<:tvA�\<\tr����A�FI��A�I���@H�EH�$H��訷��H�<$I��茵��L�e���A�u9H�<$A��l���H�D$H�E����fDA�:A�GI��I���1���f�I��G���H�<$A�I���'���H�D$H�EM�������I�<$����M�<$�u���I���~����H�<$���H�E�L���f.���AWAVAUATUH��SH��H�t$8H�T$H�L$(L�D$0dH�%(H��$�1���?-��H�������H��H�=���H���D$'�����GL�%�q"E1�E1�E1�H�_1�L�l$D�t$ I��E��H��M���D$����A���A��I��A����M�oH��H��L�������t�H��L��A������I�D�t$H�L$��u
�D$ �fDD�!I��A��\$'H�l$8L�=Bq"D����������H�\$0�D$ ����D$�D$E1�E��tE�E�����H�H�@A�D�����E��u9A�}t2I�mA���t<�A�<W��H�2���Hc�H�>��H����#H�|$E1����uǀ}-u��}t�H�|$(H��1��L$8H�5��D�D$�lGD�D$�L$8�������|$'�B(�A�<WwKH����Hc�H�>��f.�H�1p"�*1��
H�2H���6@8��������=�u�A�H��$�dH3%(D���r+H�ĸ[]A\A]A^A_ÐE1�����H���D$'���f�D�gA��-��
H���c���D��L�l$D�t$ A�����|$��q���E�e����f.�E1�H���H���F
�B u��f��B ��H�H��u�Hǃ��.
E1�A��e��#�D$'A��o�Z
���E	��E1�A��#A��[�6H��E��Jc�H�>��E1�A��z�����H�
N�Jc�H�>��E1�A��sH��XH��H��A��H��PE��������(H��x�H���?����(E	�E��u I��A�M��tH�|$������?����E1��6���E1�A��a��"ƃ�E	��E1�}@�*%A��p�t
H��@H���d��…��Y&E	��E1��D$'�t$H��xH�߈������^>���(E	��N���E1䀻���4�D$'E	��+���E1�|$'��4E	�����E1��D$'E����H�\$0��E1䈃��Q���E1�A��a����D$ E	�����E1�H���H��t�k���Hǃ�H����H���_���H���H���#E	����E1��E<+�2 <-�HH��H��H���-��…��"%E	��K���E1�H�{0H��t
���H�C0H���H�����H�C0H����
E	�����E1�H�D$pH�D$xA��e��!�}@�-A��r�#H���H�5�H���������%H�p�"H�D$A��b��%H�t$H�|$p�2�H�|$p��H��t�D$8�ͪ���T$8H�D$xH�|$H��tH9=#�"t
�T$踬���T$���$H�|$p��&H�|$xL���M��L�D$8�V#H���H�D$�U�H�L$H�|����L�D$8H��H����y2H�T$L��H��L�D$H�|���L�L$xH�t$pH��H�D$L��H�L$@�&H�|L�L$8�O���L�L$8H�L$@HL$L�D$HA�D	L���=���H�|$p�3���H�D$xH��H��E	��k���E1�H�5��H�����H���t"ƃ��H���H��t���Hǃ�H�����H���H����E	��
���E1�|$'��1E	���E1�H��(H��t萬��Hǃ(H��tH��舮��H��(H���LH��E	��-����E1�|$'�%H�D$(E	��@4���E1�}@��H���H��t����Hǃ�H������H���H����E	��=���E1�A��a�H��pH��t�ϫ��HǃpH��tH���ǭ��H��pH����ǃxE	����E1�H��H��胕�…���!E	�H��������Hǃ����E1�H��`H���f��…��[!E	����E1�H��S㥛� H���H���X��…��-!E	��V���E1��}����t�-H���Y���H�����U��t2H�\$H�����X���u���,<�q H�����u�H�\$H���H��tH��蒪��Hǃ�H��菬��H���H���SE	����E1�H���H��t�S���Hǃ�H����H���G���H���H���E	��o���E1�H���H�����B �ud�����J �}��H�zH��tH�T$���H�T$H�BH��H�T$�֫��H�T$H�BH����E	�����B ���H�H��u�Hǃ�H���&�H��H���H���W�B �f���E1�|$'�R.E	����E1�H���H��t�A���Hǃ�H����H���5���H���H����E	��]���E1�H���H����…��E	�H���0���Hǃ� ���E1�H�{ H��t
迨��H�C H����H��趪��H�C H���}E	����E1�H��H�=���������CQHǃ��CPE	����A����E1�A��B��H�f�Jc�H�>��E1�H��hH��t����HǃhH��tH������H��hH����H��E	�赑�0���E1�A��4A��J�� H��E��Jc�H�>��E1�}@�r�=H������H����H�{(H��t
艧��H�C(H��艩��H�C(H���PE	����E	��D$'�C���E	�Hǃ���E	�Hǃ(�~���E	��D$'����k���E	�A��2�
�<A��3�tA��9�D����D$'����4���E	�H�t$(H����������H�|$(H��H�5U�1��V;����E	��D$'���A��t����������E	��D$'H�L$(�A����E	�Hǃ(���E	��E<-�/<=��ǃ0<+����H�1�胤��H�t$hH��H�D$h���H��8H����`���H���H��H�p����H���rH��8�8���E	��0���E	��|$'H�L$(���q��f��f%f�A�������������A��E	�|$'�"H�D$(�@<���E	��D$'������E	�Hǃ��E	��D$'�����E	�A��a��A��b�N�D$'����x�E	��D$'����e�E	��D$'����R�E	��D$'�C@�B�E	��D$'����/�E	��D$'�����E���)A��1�	�Hǃ���H�����o�T�B H�B������|$'E���E	�B ��L�o�D$'E1��D$������H���H���H�����H�߈L$�Ԋ�L$H��H��H����z���A�������V��E	�B �H���E	��:�H�D$(�L$'�HI�(�H���H��������E	��
�E	���E	���E	����E	����Hǃ����Hǃ����E��H�D$(�@<��H���n���H�D$pH���4���H�NjH����������!ʁ ��t����€�D�H�OHD����H��H)�H�|$x����H�{8H���T���H�C8H���>E	��/�H��HH��������E�����E���	�E���,���E������E�����E�����E������E���d���E���5���E������E�����E������E�����E���x���E���&���E������E������E�����E�����E������E�����1�H�L$x�
H���=�����H�|$(H�5��1��6L��$�H�L$x1�L�Ǿ L�D$H����ʞ��H���辡��L�D$L�����H���H��������U����������HǃE	����H��H��t�l���HǃH����H���`���H��H���$���E	���H���H��t�'���Hǃ�H����H������H���H������E	��C�HǃE	��0�HǃE	���HǃE	��
�HǃE	���E	�����D$'E	� ����D$'E	�CS���H�|$(H��H�L$xH���3��…��xH�D$xE	�H�����H�F�"�@ ��&H���H��t�#���Hǃ�H���8%H������H���H������E	��?�H���H��t�ޟ��Hǃ�H����#H���ҡ��H���H�������E	����H��H�=�
���E	���#H���"H�L$(H�A����D$'E	􈃰��H��H��t�P���HǃH���'#H���D���H��H������E	��l�H��"�@ ��%�D$'E	���H�H��S㥛� H���H�����…���E	���H�{H��t
连��H�CH����!H��趠��H�CH���}���E	����H�{H��t
胞��H�CH����!H���z���H�CH���A���E	����D$'E	���CS���D$'E	􈃈���|$'�#!H�%�"�@!���$H�KH E	��V��D$'E	�CB�F�H�CHE	�H��H��H��|$'HD�H�CH�"��|$'tH�̓"�@ ��|$�D$'E	�CA��H�|$(H���H�L$xH���^��…���H�D$xE	�H���H�����H�D$(H�x H��t�V���H�D$(H�@ H��tH���L���H�L$(H�A H������H�D$(�@4�����\ H�D$(E	��@4�T�H�D$(H�x H��t��H�D$(H�@ H��tH�����H�L$(H�A H�������H�D$(�x4vH�|$(H�5��1��G1H�D$(E	��@4����D$'E	�CR���H���H��t�r���Hǃ�H����H���f���H���H���*���E	����D$'E	􈃉�{�E	�|$'�m�H�CH���`�H�CHE	�H��H��H��|$'HD�H�CH�<��|$'��H��"�@ ��"H�KHE	����|$'��H���"�@!�l"H�KHE	�����D$'E	�����H���H���X��…���H�����`E	����D$'E	�����D$'E	����P��H��H��t����HǃH����H������H��H������E	��:��D$'E	���CR�'��D$'E	����Q��H���H��t谚��Hǃ�H����H��褜��H���H���h���E	����H��HH��t�k���HǃHH��tH���c���H��HH���'���H�KH@E	���H��H��t�%���HǃH���H������H��H������E	��A�H���H�����@ u�AfD�@ �*H�H��u�Hǃ�H���K�H��H���H���
�w���H�� H��t����Hǃ H���  H���s���H�� H���7���E	���H��pH��t�:���HǃpH����H���.���H��pH�����E	��V�H��"�@!@��H��@H��t���Hǃ@H���$H���ؚ��H��@H�����E	���ƃ�E	�����D$'E	�����H��@H��t�}���Hǃ@H���H���q���H��@H���5�E	���H��0H��t�8���Hǃ0H����H���,���H��0H�����E	��T�H��0H��t��Hǃ0H���|H�����H��0H�����E	���H���"E	�@ ����D$'��1���H���H��H��E	�������H�~�"�@!@�1H��`H��t�[���Hǃ`H����H���O���H��`H����H�5h�H���`�������E	��`�H��"�@!@��H��XH��t���HǃXH����H�����H��XH�����E	��
�H��xH��t詖��HǃxH����H��蝘��H��xH���a�E	����H��XH��t�d���HǃXH����H���X���H��XH����E	���H���H��t����Hǃ�H����H������H���H�����E	��;�H�� H��t�ڕ��Hǃ H����H���Η��H�� H�����E	���H���H��t蕕��Hǃ�H����H��艗��H���H���M�E	���ƃaE	���H���H��t�A���Hǃ�H����H���5���H���H�����E	��]�H���H��t���Hǃ�H��tH����H���H�����H��E	��~��H��PH��t賔��HǃPH���$H��觖��H��PH���k�E	����H���H��H��E	������H��`H��t�P���Hǃ`H���PH���D���H��`H����E	��l�H���E	�H��H��H��|$'HD�H����B�H���E	�H��H��H��|$'HD�H�����Hǃ E	���H��H��t褓��HǃH����H��蘕��H��H���\�E	���H��(H��t�_���Hǃ(H���*H���S���H��(H����E	��{�H��HH��t����HǃHH���2H������H��HH�����E	��6�H��hH��t�Ւ��HǃhH���uH���ɔ��H��hH�����E	����H���H��t萒��Hǃ�H���SH��脔��H���H���H�H�5Z�H��蕔�����E	���H�F�"�@!@��H��8H��t�#���Hǃ8H����H������H��8H�����E	��?�H��8H��t�ޑ��Hǃ8H����H���ғ��H��8H�����E	���H���H��t虑��Hǃ�H���	H��荓��H���H���Q�H���1H����������!� ��t����€�D�H�qHDΉ�@�H��H)�H�� � 	E	��n�H���H��t�
���Hǃ�H��tH������H���H�����H��E	��z�%�H�ֆ"�@!@��H��PH��t賐��HǃPH���H��角��H��PH���k�E	�����H���"E	�@ �����D$'��0���H�\�"E	�@ ����ƃ2���ƃ�E	��|��H��0H��t����Hǃ0H���{H������H��0H�����E	��7��H��"�@!@��H��HH��t�ŏ��HǃHH����H��蹑��H��HH���}�H�5��H���ʑ�����GE	�����f.�H���H���H������H�@A����H�zH��tH�T$�2���H�T$H�BH��tH��H�T$�#���H�T$H�BH������B ���x�H��H��H���}������H���H��t�ˎ��Hǃ�H����H��运��H���H�����E	�����H���H�5��H���������H���H�
w�"H�D$H���H�L$8�Q���H�L$8Hǃ�H���H���"uH�L$8��H��tH9
/�"tH�ωD$8����T$8���$E	�H����D��H�T$H�|$(H�5��1��|"�'��H���H��t�ƍ��Hǃ�H����H��躏��H���H���~�E	�����H���H��t聍��Hǃ�H���|H���u���H���H���9�E	����H�D$(�L$'�HH���H�{8H��H���-��5�H�|$(H� ����H�=�����H�|$(H�G H������G4��t��tH�5��1��!H�D$(E	��@4���H���H���z�…����CQ�H��=H������H���SH��H�PH)�8@H�L$@�
�H�5��H��������5H�
f�"H�t$xH�|$pH��H�L$�uH�L$��H��tH9
<�"tH�ωT$�Ί���T$���1H�D$pH�T$xH���HH�;H���t���H�|$pH�D$���H�D$H�D$pH�����H���f���H��H�D$@H�T$XH�H�pH�D$HH��H�t$P����H�t$PH�T$XH��H�D$8��H�L$@H����L�L$H�|$8I��1�H� ��_���H�D$HH��H�D$xH�|$�'���H�D$8H�|$xH�D$p�H��H�U�H�=X�H���H�
'�"H�L$�����D$8���H�|$��H�T$H�t$xH�|$pD�D$@�s����H�|$pD�D$@H�����|$8���E	����H��豌��H�C8H���x�E	�����ƃ����H�D$pH����H����@��A����ǃ0H����H�|$(H�5Q�1�H�\$�����ǃ0H�����H�����E	��Q��Hǃ��A��E	��9��E	��1��A�����H�t$H�|$8H��趇��H�D$HH�D$x�f���H�=|�軋��H�D$pH�����H�D$x1����H�5:�H���N���H�l$H������H��t�H���t���H�D$pH���:�H�‹2H����������!�က��t�������D�H�rHD։�@�H��H)�H�T$x�����L$8H�\$A�ą�����H��裇�����fDH��H�5��D�D$HH�T$@蟈��D�D$HH�T$@H�D$���H�T$H�t$xH�|$p�vq���{��H�5��H��D�D$8�[���D�D$8H��H�D$���H�|$(H��H�5���D�D$8���H�|$(H�5��1�������@H��裄��H�������H�D$@H�����H�|$(H�5��1��A����H�5��D�D$P�:���H��H����D�D$PH��@L�l$HH�D$@E���,H�|$@��u���(H�5s�1���H��H����A��pu�H��H�u��H�|$(H�5n�1�ǃ0����E	����H�=��\���H�D$pH���N����f�E	��x��H�5Q�H�����H����
H��H�t$xH�|$pH�D$��oH�L$�����E	��5��H�|$p�ۆ������H�|$A�覆���t���,����D$'E	􉃠���H���H��t蘆��Hǃ�H��tTH��萈��H���H���T�E	�����D$'E	�
���H��H���Fp�…��[���E	����E	��|��H��pH��t����HǃpH��tH������H��pH�����ǃxE	��1���D$'E	��������D$'E	�����D$'E	�����D$'E	�b����H��Xƃ`H��t�z���HǃXH��tNH���r���H��XH���6�E	����H�|$(H�5.�1�E	�������D$'E	􈃠�l��E	��d��H�|$(H�5��1�E	���I���D$'E	��6��H���H��t�Մ��Hǃ�H��t:H���͆��H���H�����E	����H��H��E	���sH��(����E	�����H��hH���r�…������E	�����CpH�shH��H���oH���@���E	�����C`H�sXH��H���[oH������E	��j���D$'E	�CT�Z��H���H���r�…�����E	��9��H���H��t�؃��Hǃ�H����H���̅��H���H������E	�����H��H���m�…������E	�����H��pH��t�r���HǃpH��tH���j���H��pH���.��ǃxE	����E	����H���H��t����Hǃ�H��tkH������H���H������E	��?��H��pH��t�ނ��HǃpH��tH���ք��H��pH������ǃxE	�����E	�����H�\$H���H���;����u�H�ى�H�\$�9��H���H��T$�\l�T$���J���H������9�����uzHǃ�E	��x��H��H��E	��jp����_���D$'E	���L���D$'E	�	�9��H�D$(�L$'E	�H8�$���D$'E	�����H��$�H����k�������H���H=�������H+��H��H���H���G����l���H��$�H��H�L$H�5����H�L$�������H���H��t�6���Hǃ�H��tDH���.���H���H������E	��V��H�w"�@!���D$'E	���2��E	��*��ƃ�H��H��E	��o����
��H���H���j�…������E	�����H���H���j�…������E	�����H���H���ij�…��~���E	�����D$'E	������D$'E	������D$'E	��n��H��pH��t�
���HǃpH��tH������H��pH������ǃxE	��#��H���E	�����Hǃ�����|$'tH��u"�@ �a�D$'E	􈃐�����D$'E	�x�����D$'E	�p���H��H����o�…��i���E	����H��Xƃ`H��t�*��HǃXH����H������H��XH������E	��F���D$'E	���3��H��S㥛� H��hH���
i�…����E	����H�{xH��t
�~��H�CxH��tH��襀��H�CxH���l��H�{x�_k�…����E	����H���H��t�\~��Hǃ�H��taH���T���H���H�����E	��|��H���H��t�~��Hǃ�H��t(H������H���H������E	��;��E	��3��E	��+��H��pH��t��}��HǃpH��tH������H��pH������ǃxE	������D$'E	�����H��pH���k�…����E	����E	����E	����E	����E	����E	����A�����E	��q��E	��i��E	��a��E	��Y��E	��Q��H�cH�E	��D��E	��<��E	��4��E	��,��E	��$��E	����E	����E	����H�|$(H�5�1��I���E	�����H���H���H�zH��tH�T$�{|��H�T$H�BH��tH��H�T$�l~��H�T$H�BH���.���J E	����H���H���H���t��A�H�cH�E	��e��E	��]��H�cH�E	��P��A�
���E	��=��H�5��H���{��H��H����H�D$(�xubH�D$(H�P�@���H�|$pL�l$H�{���D$8�����H�|$�@z�����H�|$pH�\$A���v{���T$8���o����H�xH�T$�z��H�T$�H�|$(H��H�5շ1������DE	��x��L��A��{��H�|$p�{�����A����H�|$(H�5T�1�A�����A����E	����A��w��H��H��H��`�}�E	�����E	�����E	�����E	�����E	������D$'D���E	􈃓E������ǃ�����|$'tH�Qp"�@ ��D$'E	􈃒�|���D$'E	����
�f���|$'tH�p"�@ ���D$'E	􈃑�;��H���H����c�…����E	����H�D$(H�x@H��t�y��H�D$(H�@@H��t2H���{��H�L$(H�A@H���o��E	�����E	�����E	�����E	����E	����E	����E	����E	����E	����E	����A�����H�|$(H��H�5A�1��
1�H�t$xH�|$p��a�����f���AWAVAUATUSH��8dH�%(H�D$(1�H�GPH�D$���LH�D$'I����I��H�D$�F��A��D$�6fDH�T$L�D$L��L��H�=�����E����D9���!ʄ�tPIc�E�qH��M�<�@��t�A�?-u��H�5z�L���������D9���1�E��1���u�A���@���veE��t`D��D�D$�cM��D�D$�}L���H�5i��I�}�€����xH��H�5��1�D�D$�,
D�D$�H�\$(dH3%(D���bH��8[]A\A]A^A_�f.�1�D9L$OL�D$H�T$L��L��D�L$���D�L$��t3���+����D$'����E�q��D9�������DI�t몐H�D$D9���H���H������H�x�������T$�Lw��H�|$�T$H��H���tgH�LjT$�j���H�|$I�M�T$H���H�L���H�D$I�E`H����j���fDD9����Y���DE1�����I�}������A��e���H��L��1�D�D$H�5N��D�D$����u��f���AU1�I��H�=��ATI��UH��1�SH���s��H�5�k"����øD؉��nu��H��k"1���fo�k"fo
�k"H�Lk"fo�k"H�mk"��k")0k")
9k")Bk"�%'k"��Mk"��u��H�5�j"L���u��L��H����dv��H��~?�D�H�5�j"�
�u��H�k"����u����u"H��H��[]A\A]�@�E�f.����w��H��H��[]A\A]�f.����ATH�=�L�%k�UH�-U�SH�TI"�v��H�
��H�����H�CH�H��H��H��1�L���p��H��u�[]A\�fD��ATUS��t��H�5���H��1���o��1��H��H�5��o��H�Tj"H�x@tcH�5��1��o��H�3j"H�-#�H�X@H�H��t#�H��1�H���]o��H�H��u�H�=���)u��H��i"�@ ��u[]A\�fDH�5|��1�H��F"L�%���o��H��`���
�H��H9�t*�CH��i"�B t�H�L��1�H����n��H9�u�[H�=1�]A\�t��f.���S�@H��dH�%(H�D$1�H��H�$��n��H�=ٿ�Vt��H�<$H��tMH�˥fDH�H�޿1��Nn��H�$H�xH�<$H��u���r��H�D$dH3%(uH��[�f�H�=����s��H�<$���r��f�������H�����Hc�H�>��H�Y���H�q���H�����H�����H�����H�����H�����H�����H�B���H�����H�/���H�2���H�������H��8dH�%(H�D$(1�H�]�H�$H�,�H�D$H�0�H�D$H�f�H�D$H�*�H�D$ ���t/9�t+��H��H���1�H��H�5Q�����	D�21�H�L$(dH3%(uH��8��zp��f.���ATUSH��0dH�%(H�D$(1�H���H�$H�D$H���H�D$H���H�D$H�D$ H��te��H��H��H��L�$�L����r����t7H�D$(dH3%(��H���H��0L��H�5��[1�]A\�#H�5��H���r����uH�D$(dH3%(u:H��0[]A\�@H�D$(dH3%(uH���H��0H�5��1�[]A\��no��f.�@��H��H�=I��o��H��t�8tH����q��H��tH���H�=&���o��H��t�8tH���q��H��u�D��l�����<o��H��t�H�@ H��t��8tH��H���}q��D1��@��H���To��@��������l����AT���H���USH�ĀdH�%(H�D$x1�H��H�D$H�}H�Eh�H�H������pH��H�D$@H�}���H�D$HH�[��D$��H�$��l����tH�D$xdH3%(u|H��[]A\���n��I��H��u(�O@H�
�c"��L��+t$ ��p����t!�H��L�d$�D$ �,l����v�L���=n��H���5m���t����m��f.����AT�US�~k��H�d"H��trH��c"H�h@H��tWH�}L�%��H��tGfDH�P"L���@H��H�3H��tH�}��o����t�H�CH	�c"H��H�}H��u�[1�]A\�[�]A\�fD@��t�f.�AWH��AVAUI��ATUL��SH��H��(H�T$��i��H��H��I��H�D$�m��H��H�D$H����H��A�O�i��M)�I��L�4$H��t{I�uH�|$�l��L9$$���NH+l$I���
�M��tkI��B�<3�=���t�M��tTM�~L��I�MH�ߺL��H��L��o��I�u�
��l��I�u�H�|$H��([]A\A]A^A_�Xl���L�<$�H��([]A\A]A^A_�I�uH����k���f.���H���H�T$0H�L$8L�D$@L�L$H��t7)D$P)L$`)T$p)�$�)�$�)�$�)�$�)�$�dH�%(H�D$1�H��$��$H�D$H�D$ H�D$�G4�D$0��uH�D$dH3%(u(H���ÐH�G�H��I��H���H��������j��f�f.���H���I��H�T$0H�L$8L�D$@L�L$H��t7)D$P)L$`)T$p)�$�)�$�)�$�)�$�)�$�dH�%(H�D$1�H�w�I��H��$�L��H����$H�D$H�D$ H�D$�D$0�3���H�D$dH3%(uH�����j��fD��UH��SH��H���H�T$0H�L$8L�D$@L�L$H��t7)D$P)L$`)T$p)�$�)�$�)�$�)�$�)�$�dH�%(H�D$1�H��tMH��$���H��H�D$H�=�H�D$ �$�D$0H�D$�Jl��H��H��H���<k��1�H�5��H���[i��H�D$dH3%(u
H���[]��i��f.�f�AWf�I��AVAUATI��USH��dH�%(H��$�1�H�Ƅ$�)�$H�D$�G
)�$ �D$F�GHDŽ$0�D$GH�^")�$@H��$PH���)�$`H��$XH���3H�x�31�H��(��2I��$�H��t,A��$���%I��$x�L��������2H�D$0I��$�H��t�H�=��H����€����N2I��$�H�D$(H����E��H�g�H�
�H�D$pHE�E1�H��$�H�D$(HDŽ$�HDŽ$��@ �� �D$��0H�|$p��0H�D$p�D$H�XH�D$HH�H�\$H�D$pH�D$(H�XH�xH�\$ ��0H�D$ H��tH���i��H�D$ H���2A��$�H�D$(H�@H�D$XtOH��tJA�o1Ʌ�tI�OH�t$XH��$�H��$��sA�ƅ���1H��$�H��$��)&H�D$P1��|$E����H�D$`L��M��I���H�D$XHD$PHDŽ$�HDŽ$�HDŽ$�t9H��$�H����.H��$��A�Ń��:/H��$���%�\$����,H�|$ HDŽ$���$H�D$`H����$�D$h1�L��$pH�I["f�D�T$HDŽ$�A)HDŽ$�A)F H��$�L��$�E����&H��$�H���5#H��$��~A�Ņ���'H��$��Q$H�|$ ��'H�|$ ��g��H��H��$�H���#H�L$(�A ��(�H�5���������BH��$�H���'��F�D$E����(H��$�H����&��F����)H�D$8�����D$E�D$@H��$�H��tA�QtILJ�����H��$�H���%F���m%H��$�H���\%��c�����f�����H%A�fE�L$
@H��$�H��vRA�|$uJH��I�|$H�SL��$�L��$�H�5��M��LD�1��
d��D�D$hE���/*�L�l$0M����H��$�H�5/�H���#`���/H��H�xHD��^c��H���]'�?H���x`��H��L��H�=��H���1�����&��a��H��H���'H��$���c��H��$�I�|$��&H��$�1�H��t�H�=���������A���A����O&A���t/H�|$A�L��1�A��H�
��1��kA���� H�|$M��A�'1�H�
��L��1��kA����H�|$M��A��'1�H�
{�L��1��YkA�����|$��u
A��3u0I�G@H�|$1�1�A�+NH�
_�L���kA���/ �D$@H�|$L��1�H��$A�'H�
�L��$��$I��1���jA���I�pE@H�|$1�1�A�,NH�
��L���jA����I��H�l$A��'1�H�
��L��1�H���qjA����I��E@L��1�H��A��NH�
��1��CjA����M���M���t*I�����g*A�bL��1�H��H�
��1��iA���H�|$8�t.L�L$8H�|$L��1�A��uH�
��1���iA����H�|$A�'L��1�L��$�H�
C���iA����E�L$
H�|$L��1�A�+H�
6�1��fiA����A����d*M��HM��t,H�|$A��'L��1�H�
#��� iA���8H�|$A�'L��1�M��pH�
�����hA���2I��pt2Mc�xH�|$L��L�L"�eH����acA����H�|$A�'L��1�M��hH�
����~hA����E���L��1�1�H�|$A�=H�
���MhA����M���M��t,H�|$A�(L��1�H�
n���hA���-A����*A���A�u0A���A�u A���A�uA���A�t+H�|$�oL��L��I"H���dA����H�|$A��'L��1�M���H�
����igA����H�l$A�	L��1�E��pH�
��1�H���5gA���zE���L��1�H��A�-H�
��1��gA���KM���L��1�H��A�(H�
v�1���fA���E1�A�.L��H��H��$�H�
\�A��1�1��fA����E���L��1�H��A�0H�
6�1��rfA����E���L��1�H��A�2H�
�1��CfA����A����;A���uI�����:A�H�|$�3L��L��E"H����`A���M���M��t,H�|$A��'L��1�H�
����eA����E���L��1�1�H�|$A�5H�
v��eA����M��0M��t,H�|$A��'L��1�H�
{���KeA���cH�|$A�'L��1�M��(H�
8���eA���]H�l$A�'L��1�M���H�
+��H����dA���'H��$�L��1�H��I��H��$�1�A�'H�
���dA������L��1�H��A��H�
��1��AY���L,��kdA����A��x����8��u_M���L��H��1�A�'H�
����%dA���=M���L��1�H��A��uH�
��1��cA���M�OHM��t+H�|$�kL��L��E"H�����`A����M��@H�|$�''L��H�N��bA����H�&Q"��E7��H�l$A�4L��1�E���H�
[�1�H���JcA���bE���L��1�H��A�iH�
@�1��cA���3E���L��1�H��A�:H�
+�1���bA���M��HM��tTH�l$��'H�"�L��H���bA����A�A��1�1�H�
	�L��H���bA����M���H�|$1�1�A�DH�
��L���\bA���tM���M����6H��O"A��@"��6A��
E��tI��A��tI��H�|$A��L��1�H�
��1���aA���A�A�6A�Bt/H�|$A�L��1�A��H�
��1��aA����E���L��1�1�H�|$A�H�
>��vaA����H�|$A�!'L��1�M���H�
D���CaA����H�l$M���1�1�A�H�
�L��H���aA���UM��L��1�H��A�H�
��1���`A���'M���L��1�H��A��uH�
��1��`A����M���L��1�H��A��uH�
��1��`A����A�P�4M���L��1�H��A��uH�
��1��M`A���eH�|$A�*'L��1�M���H�
����`A���_H�|$A�(L��1�M���H�
z����_A���,�uM"0��2M��(M��t,H�|$A�Q'L��1�H�
����_A����M��0M��t,H�|$A�(L��1�H�
s���j_A����M��8M���2H�|$A�q'L��1�H�
L���._A����1���jM��@M����1H�|$A�(L��1�H�
����^A���-0���%M��HM���0H�|$A��'L��1�H�
����^A����M��PM���0H�|$A�(L��1�H�
����h^A����M��XM��t,H�|$A��'L��1�H�
����0^A���HH��K"�@ �pI��H��tI����/I��hH��tI��x��/I��H��tI�� ��/I��pH��tI����0H�l$A�)'L��1�M��H�
��H���]A����M��L��H��1�A�(H�
����P]A���hM��L��H��1�A�f'H�
����]A���7M�� L��H��1�A�(H�
�����\A���M��hL��H��1�A�g'H�
����\A����M��pL��H��1�A�(H�
s���\A����M��xL��H��1�A�h'H�
W���[\A���sM���L��H��1�A�(H�
9���*\A���BA����
-E1�A�@L��1�H�
�H��1���[A���
E1�A�QL��1�H�
�H��1���[A����A�����,H�l$E1�A��1�H�
��L��1�H���[A����E1�A��L��1�H�
��H��1��a[A���yA����-A��at/H�|$A�L��1�A��H�
��1��[A���2H�|$M��L��L�<"M�� H����UA����M�� H�|$L��L��;"��H�}��_UA����A��b��*�/H"0tA�����*A����\*A��Q*E���L��1�1�H�|$A�H�
f��@ZA����
H�l$�,'L��M���H�Y�H���rYA���W
M���7'L��H��H�;��IYA���.
M���m'L��H��H�$�� YA���
M�O(M��t,H�|$A�&'L��1�H�
���YA����M�O8M��t,H�|$A�/'L��1�H�
����VYA���nM�O0M��t,H�|$A�b'L��1�H�
����!YA���9E�O@H�|$L��1�A�`H�
��1���XA���8H�l$E��0L��L��9"�!H���H���nSA���M��8L��1�H��A�>vH�
g�1��XA����M���L��H��1�A�4'H�
Q���_XA����I���A��xL������M�L$L��1�A�5'H�
%�H��1��XA���bM���L��H��1�A�N'H�
����WA���1M���L��H��1�A�O'H�
����WA���H��$�L��H���d��A�|$<�'M��M��t,H�|$A��'L��1�H�
����dWA���|M��M��t,H�|$A��'L��1�H�
����,WA���DM��M��t,H�|$A��'L��1�H�
�����VA���M�� M��t,H�|$A��'L��1�H�
z���VA����M��`H�|$�V'L��H�4���UA����	H�l$M�OL��1�A�\'H�
5��H���^VA����	M�OA�]'L��H��H�
��1��0VA���u	���L��1�H��A��H�
��1��AY���L,���UA���8	M���M��t,H�|$A�'(L��1�H�
����UA����
M���M��t,H�|$A�c'L��1�H�
����UA����
M���M��t,H�|$A�(L��1�H�
����KUA���c
M���M��t,H�|$A�$(L��1�H�
m���UA���+
M��M��t,H�|$A�%(L��1�H�
K����TA����	A�R�$A�S��#A�|$4�/#M���M��t,H�|$A�i'L��1�H�
o���TA����	A���H�|$A�nL��M�H�
��1�1�I��A���FTA����M���M���~"I��(H���b"A�H��tE1�H�|$A�qL��1�H�
�1���SA���	A�����!A���A���!A�����!A����I!E���E���!M���M���� M���M��t,H�|$A��'L��1�H�
����WSA����M���M��t,H�|$A��'L��1�H�
����SA���dH�|$A��'L��1�M���H�
�����RA���1H�l$A��L��1�E��	H�
z�1�H���RA����E���L��1�H��A��H�
f�1��RA����Mc��L��1�H��A��H�
Q�1��[RA����M���M���"H�|$A��'L��1�M���H�
����RA���]A��
��A���DA���H�|$A�L��1�A��H�
/�1��QA���M��M���|M��M���>M���M��t,H�|$A��'L��1�H�
0���gQA����M���M��t$H�|$��'H��L���PA���|A�T��A�`�XA�p�A����tH�D$(�@ �D$8����H�l$A�oNL��1���$0I��;@H��$@H�
��H��$(H��1�L��$ L��$L��$�PA����L��$L��1�H��A�-'H�
��1��gPA����M��hM��t!H�|$��'H���L���O���xM��pM��t!H�|$�(H�n�L���jO���KH��="�@!@�>M��8M��t)H�|$1�A��'L��H�
=����O���M��@M��t)H�|$1�A��'L��H�
!���O����M��HM��t)H�|$1�A��'L��H�
���ZO����M��PM��t)H�|$1�A�(L��H�
����%O���fM��XM��t)H�|$1�A�(L��H�
�����N���1M��`M��t)H�|$1�A�
(L��H�
{���N����M��(M���?A��2A��0��H��I��H�|$��L��L�R."H�V��vK����A��1�M���M��t)H�|$1�A��'L��H�
F���#N���dA����fA��P�*A��Q��M��XM��t7A��`�aA�(H�
4�H�|$1�L���M����M�OxM��t)H�|$1�A��'L��H�
.���M�����A�hf��f/��'A����M���I���t"H�|$1�1�A�H�
!�L���)M��unA����wA����8I���H�����I���H��$��PbI�|$@H��$�H��$����i������A��@A��t����1�A�t$��t6��$�H��$��@
I�|$1�D��H�5��C��A��<��
��${������$zuH��$�H��t�C��E����E����E1�A�����$z��H��$p��H�|$H��$��`1�HDŽ$������??��I���H��$pH��$�H�P��m����$x�?�H��$p�3C���,H���6E��H��I��H�D$0�C��L��IDŽ$�M���
1�L��A��$�A�@��I��$x���&�����<���Qf�H���:H�D$(H�x�D��H��$�H��������D$E�D$@A�A��t���-�����${1��l���H��$�H��������@��E���u������m���I�|$�H�5�1�A��A�����$x����f�H��$�HDŽ$ A)A)FA)F ��A��H��$�HDŽ$��A���|$EHDŽ$��o�L$����A��0��H�
L����H��$��pA��H��$�HDŽ$�H��t�MHDŽ$�H��$�H���tA��0�sH�
L���_L��H��$�M��E��I��H�|$ H�t$��@��H�t$H��tH���LHDŽ$�H�\$(H�{��@��H�CH�{�@��H�CH�{�@��H�C�C A��0�v	H�
L���]	�D$FH�|$0A�G
�D$GA�G�\@��L���$!��$KHDŽ$(tH��$PH��t��>����$H��	H��$�dH3%(D���jH�Ę[]A\A]A^A_�f�H��$�H����A��0wH�
L���G���@H��H9��c���1���fD���#���H�D$H�H�D$H���
���H��$���D$FA�D$
�D$GA�D$����H�D$HH�x�bA��H��H��$�H�������H�D$H�x�@A��H��$�H�������H�D$(�@ � H��$�H��t$H��$�H����YH��A����>��E���wH��$�A���u�D$t&I�t$��_��A�Ń������H��$�A�Q��I���H����HDŽ$�H��$pH��$�Ƅ$zH������H�D$8����1��D$E�D$@�6���|$@�@�����f.�H�D$(�@ uMH��$�H�������j���E���/����m���f.��D$@�D$E�Q���fDA��3�D$E���:��H��$�H�������H��$�H��$�� A�Ņ���H��$��?�����A���D$E�������I�|$H�5��A������${�D$@����f�H�|$E1�A�y1�H�
V�L��1��oEA�Ņ���������A��3�p��H������f�H��1"I�D$����A��@���DH�T$0H��H�=��1��:��H�����f.�H��$�H��$�H�|$�VH��$�H������H��$�1�1���9���D$@�ƃ����H��$���S;�����#H�D$8������$%�=�u
H��$ H�D$8�D$E������H�5�H��������X��H��$����DE�������H�D$PH�\$PH9��������fD��${1��D$E�D$@����@I�OH1�1�H���Ps
��t��Ѓ� u�A���tI���H�5��1�����H��$��H�=�mH����€��ʉL$@���)H�D$8�����D$E�D$@����fDH�5ƨ�:��H���CH��$�I���Ƅ${H��$�H��$��.����H��H��$���K9�����CILJ�H��$����I���1�H�5+�1�������${�D$E�D$@�����H�5U�H��$�H�=Q�1��#7�����fDA��t�D$E�D$@��������y����D���86��H�����A����rE�\$1�E��tI�L$H�D$(H��$�H��$�H�p�FA�Ņ���H�t$ H��$�H��t�H�=����€�������H�������D$h����H��$ H��$�I������@I�L$�
�H�=���u;����${�����D$@�f���1����`�������G4���8�5��I���1�H�5��H��1��F���D$EH�D$8�����o��I�|$H��$�1�A�H�5\�������${�D$E�D$@��DH�|$ �D$hHDŽ$��������H�|$Pt}L��E��M��I���
����I�|$H��$�H�5ܥ1��]���|$@�d:���D$@��${1�A��c����I�|$H��$�H�5��1������H�|$X�9��H��$�H������I�|$H�5smA���������I�|$H�5Wm1��������A��L��1�H�|$A�bH�
(����H�D$H�D$H�O��E��tA�H�����H�D$(H�H�D$(H�������x���I��$8H�D$p����H����6��H�\$(H�CH�{�6��H�C�C �H��$�A��L��M��I���6��H��$����H�|$A�L��1�A�,H�
��1���>A�Ņ��m�����H��$@�H6���%���H��8H�D$0H���Z���������1��D��H�5��H����5��I��$�H����A�H��$@fD��$JH��$P�n��I�H�5C�1�A��,��H�D$0�6���H�D$0A��"���I����2��H�|$ �5������I�H�5kkA��������H��$�H�\$8H�D$xH��$�H��$�D�l$lL�l$L���0���Å���H��$�����$yt#A�|$uH��$pH��tH�=X�1��1��H��$��I������C����5�؃���'A���t	�������A���t	���lH��$�� L��1��>0��H�T$xL��1��0 �*0��H��$�H��H������:H��$�H-�H��c�"�H���I���L��$�H�H��H��H��"H��1�H�5�����H���?I���uH�'	H���'	HO�H��$�H����H��$p��H��$�twA�|$uI�|$H�5�1��"3��H��$��53��H��$�H��$��p2��H�މ���3�����oH��$�1���2�����HDŽ$�H��$����H-�H���rA��D�l$lH�\$81���PH��$�H��H��$�H���DQIi���H9���1�|$A��D�l$lH�\$8��E������$�L��$�uD��D�L$8��.��D�L$8I��H�D$HI�|$H�5��D�L$8H��$�H�P1���1���l$D�L$8����D$t.H�D$HI�|$H�5��D�L$8H��$�H�P1��1��D�L$8A�|$<��I���H��tH�|$L��D�L$8�PD�L$8A��ttz����${E����A�� �K���tkH��$�H������0��H�|$���V������,���8��-��I���H�5'�H��1�����X�E���.��${�D��$z�s��G���$�� ���H��$��
D�L$8�81��D�L$8���H�|$1��H��$�D�L$8HDŽ$��,��H��$�D�L$8H�������H�5ҜD�L$8�x-��D�L$8�������H�|$1�� H��$��R,��L��$�D�L$8I����m���I����`���H�D$HI�|$H�5Z�H��$�H�P1���/���l$D�L$8���E����E�����H�T$x�L��1�HDŽ$���+��H��$�H������H�=���,��������H��$�� L��1��+��H��$�H=�t�����H=��������g�����]���H��$������H�T$x1��# L��HDŽ$��#+��H��$�uL���pF�����D؀�$y�>���H��$������*���A�|$H�\$8uI�|$H�5�1��.����${1�A��{�A�|$H�\$8u�I�|$H�5d�1��_.����H�T$x1�� L���y*��H��$�ou��o���Hi�����H�\$8D�l$lA�1��-���H�|$1�1�A�A�H�
ͭL���6��������H�|$1�1�A�A�H�
s�L���|6���]���H�|$1�1�A�A��H�
*�L���K6�������H�|$1�A��L���Y��H�
ة��L,��6������L�H�|$E1�1�1�A��H�
<�L����5�������H�|$E1�1�1�A��H�
��L���5��������H�|$1�1�A�A��H�
��L���5���n���A��'H�
���H�|$1�A��L��H�
���C5�������H�|$1�1�A�A�H�
�L���5������N������A��l�M�OhH�|$L��L��"��H�ݦ�.0A�Ņ������M�OXH�|$L��L��"��H����/A�Ņ��y����H�|$A�L��1�A��H�
P�1��f4A���:���H�|$A��L��1�H�
�1��84A������x�H�l$A��L��1�H�
��1�H���4A���L�M��L��1�H��A��H�
t�1���3A���*���E1�A��L��1�H�
�H�|$��H�l$E1�A��1�H�
�L��1�H���3A�����E1�A��L��1�H�
��H��1��_3A���c���H�|$E1�A��1�H�
g�L��1��.3A���$��n�H�l$A��L��1�H�

�1�H���2A���B�M���L��H��1�A��H�
����2A�������H�|$�L��L��"H���/A���
�����H�|$A��L��1�H�
����k2A��������Mc��H�|$L��L��"��H�k���,A�������t�H�|$A�L��L�/"�wH�%��,A���A����A�H�|$�wL��L��"H���x,A�������A����H�|$A��uL��1�H�
��1��1A���Y����H�l$I�05@1�1�A�~NH�
�L��H���W1A���o�M��A�o'L��1�H�
��H��1��-1A���E�A�A�)1�1�H�
ߠL��H���1A�Ņ��G����H�|$E1�A�j1�H�
p�L��1���0A���
�����H�|$E1�A�U1�H�
*�L��1��0A��������A�|$
����A�|$����I�p@@H�|$1�1�A��NH�
��L���Q0A���i�H�|$I��A�I'1�H�
x�L��1��%0A�������8�H�|$A�L��1�A�EH�
&�1���/A��������H�|$A�L��1�A��H�
��1��/A���������X���H��H���t�H��H�
Z1�H�=~��$%��H����H�|$I��H�D$8L��A��'H�
h��1��R/L�T$8A��L����&��H��A��0tW��&��E�������I�A�L��1�H�|$A��H�
U����A�L��1�H�|$A�@H�
�����}&���Y��H��A��j&�����M��PM���,���S��I��@����I���H�5��1��ͺ�����M��HM����������H�5�b��"�����`��H�=ə�'��I���H��H�|$A�L��1�A��H�
��1��.A�Ņ������1��H�5b�m"�������H�=d��'��I��x����H�5�a�<"��������H�=3��h'��I�� �����H�5�a�"��������H�=��7'��I�������M��8M���a�����I���H��$�H�5@�1�艹���*��M��@M���*���Z��H�l$A��'L��1�M��hH�
���H���-A����M���L��H��1�A��'H�
�����,A�����M���L��H��1�A��'H�
|���,A�����A��x����H�|$A�L��1�A�H�
D�1��e,A�������x�E1�A��uL��1�H�
��H�|$����H�l$A� 'L��1�M���H�
��H���,A���#�M�O A�"'L��H��H�
Δ�1���+A�Ņ����H�k"�K��H�|$A�v'L��1�L�
`H�
S���+A��������H�|$�TL��L�:
"H����&A�Ņ��9����M��PH�|$�(L��H���)A�Ņ��G���Q�fDA����E1��=�E1����A��3�%�������"��DH�|$H��$��-@HDŽ$��=��A�ƅ����H��$��8�}���H�=׏�$��H��H��tAH���E$��I��$(H��tZH���"���G���I��$�H�5ÏA�衶����H�=���@$��H��H��t?H�ǻ��#��I��$8H��u�H��A��!��I�H�5�W1������1�H�=K���#��H��H���T���鸸��f�f.���ATI��U��H�59^SH����������I�|$H�5<��#�����}L���H���0�����t<���������������@1�
@�Ń���[]A\�DH�{@ta�$F���Ņ�tVH�{1�H�5�V�<�����[]A\�DI�|$H�5Pq��"�����j���1�H�������W������H�kP1�H���1f�H��L�f�4H���L��uH��u�H�sPH�sX��t������u7H�sXH��tRH��薶����H�CXH���H�sXH��t0H�>H��uȅ�t�@H�{@������G��H���XG����[]A\Ð��u�1�H�{@u�����fDH�;1��n������f�H��1���H�CPH����W���H�{1�1�������D�s���1��p���@�#���1��`���@�ê��1��P���@H�CX1��9������2���f���ATI��USH���H��t7f�H�{H�+���H�{���H�{����H��H������H��u�IDŽ$�[]A\Ð��H��tGSH��H���H�=�������t�[�@H�޺H�=���\��[�����D��f.���I���H�=���L����€���t�H�=QL����������f.���AVAUI��ATI��USH��H�5��H�������/H�xH��HD��'��H��H��t
�xI��utH���/L�����I��H��tm�\H������H����L�`L��1�L�����I��H��t~H��H��H��tKH�=��1��u��I��L���J��H���b��[L��]A\A]A^�fD�\L�����H��u��@H�=2�1��*��I���DM�f�t����H��E1�������ATUH��SH��H�5ߞH�H�������\H��H�PHE�H������/H��I������M��t7H��t*I9�w%H�x���[H��H�E]�A\���f.�L����H��u�H�=8Y��f.�AWAVAUATUSH��(L�!dH�%(H��$1�M����I��H��L��:A��H�����I��1�M��t-H��$dH3%(��H��([]A\A]A^A_�@A�<$;t̾;L���<��H�|$ �f�H�D$L���H�L��)D$�F��I��H�D$H��t�L�eH����E����L��$M��L��1�H�q��L���\��L�t$�L��L��L�������H����������!�%����t������D�H�SHDډ�@�H�D$H��L)�H��t�;H�}J�t+���H����H��B�(:J�L(��su������tA����t
��A�t�f�t�H�E1����D1����f�L��$M��L��1�L�KH����L���h������H�T$H�yH��H���I�t�H�t�H)�L���H)�����H��|���@�����A����A�t��t��Y����t��@AUATI��USH��H��dH�%(H�D$1��[��H��
H���H������}"I�ŸtH�,$H9�tH���C��H�H9�t#�
H�L$dH3%(uH��[]A\A]�M�,$1��������f.���S�(H�������H��tH���H��tH���H����P [�H��������AWAVAUATI��USH��(H�|$dH�%(H��$1�H���E1�E1�H�l$�-f.����G��t�MA����SM��I��L��H������H�����
H������H��t��
H������H��t�H��H����������!�%����t��L�������D�H�SHDډ��H��H)�M�,I�u���H���H��Iƃ��7���H�MI�~H��I���H�t
�I�t�I)�H��D�L)������H�� ���M��H�D$L� 1�H��$dH3%(ubH��([]A\A]A^A_�fDL��������f��M��A��L5�A�L6����f.����L5�fA�L6�������f���AWI��AVI��AUI��ATUSH��H�����1�E1��H��I�<L��H)����H�H��t1M��tH9�u�H��H��x?H�L��H�u�_��H��t+I���DA�M��H9�t3H�sL���7��I��H��uL�����H���[]A\A]A^A_�H��t#I�1�M�.H��[]A\A]A^A_�@1���@L��E1��=���Аf.���Ðf.���H��t����f��
�f.����
H��t"SH�������uH�;�H�[���Df.���AUATUSH��(dH�%(H�D$1��
H��thH��I��H���
��H�t$H���I���D��A�<$"t]f���D$�H*�f/�wHH�l$H9�tH�������D$H�H9�t8�
H�L$dH3%(u?H��([]A\A]�D���f�f��f/�w�AE1��@���L��f�f.���H���CAWAVAUATI��H��UH��SH�����I��H��tIH�5��H������H��H�����;E1��)>��uK�<-��<=t&<+��L���V���H��[]A\A]A^A_�f�A�H���;��=��t�L�5��!H�5Wr�f.�I��I�6H����H���8����t�I�FI�A����A��tmH	EH��tuH�5Ζ1����H��H���6���f.�L�����1��P����E1��^����A��K���D��f.�H�EH��u�H�EI��$�H��H�5P�1�����m���H��H!EH���]������A��u����UH���SH���y��H��tLH�X@H�;H��u�.fDH��H�;H��tH�������t�H��1�[]��H���
[]�@H���[]�f�f.���ATUSH��dH�%(H�D$1��>-�t\I��H����
��1�H��H���H�����H��������I�$H�H���wBH�,$H9�tIH�������Hø
H9�D�H�L$dH3%(u%H��[]A\�D�}"u�����
���T��@��SH��H�?�P��H��tH�1�[�@�[�f���ATI��H�=��U�SH��������uGH��H�=��������u/H��H�=��������uI��$�H��H�5�������[]A\�Df.���UH��H�=Y�SH��H���T�����tH����[]�f�H��H�=6��1�����u�H���H��H�5o��r���H�����[]�@��UH��H�=��SH��H������1҅�tH��H��[]�@H��H�=ғ������u�H��H�=��������u�H���H��H�5����H��1�H��[]�@f.���ATI��USH���H��@��H��(t
H��HtrH��htH��h@��L��H�=m�~��u	H�{ t1�[]A\�@H�=�����H�C H��u�H���H�5�EH�x1��
������H��(@��H�=^����o����Df.���H����AUL�-J�!ATI��UH��H�5|OSH��1�H��������t"H��H��t=H��H��H��I�t�����u�H��H���!H�DI�$H��1�[]A\A]�@H���[]A\A]ø�f.���AWAVAUATUSH��H�$H��XH�FPH�|$H�t$(dH�%(H��$H1��D$?H�D$ H�����?��H�t$�H�=�|�H�
X"H�L$������H�|$����D$H��$@D1�L�l$�@�A���6E��t�UA�A����H�þ
H���@
��H����L��H�����H����I��H���A�I����������!�%����t��I������D�I�VLD��I��I)�A�$I����������!�%����t��H������D�I�T$LD��I��I)�K�t&���H���WI��I�A������H�UI�~H��H��I�D��H�L�I�L�I)�E�L)�A��D���H�����ڜ��H��H���nH���V	��H�
]]H�L$H=���H������/����H�����H��H�������1�H�D$H9~"tH�����@H��$HdH3%(���bH��X[]A\A]A^A_�D��;�D$I��@��u�i�I��A�<$@���O�i5��u�E�,$M��A��A��/w*�>fDA��-tA�<=t<:tI��A�?@��t`�$5��t�A���tOA�M�wA�@��t:fD�4��uA�>A��-��@��=t
@��:��I��A�>@��u�M��A�?��E1�L�D$ H�L$(L��L��H�T$?�bV������A�?tl�|$?�	u`H�t$�H�=<y�H�
�G�€���HEL$H�L$���D����L$M��H�T$I��H�D$ H�56�H���1��[���E����H���
�����f�H�$�L��r�M��A��E������A�?�'���fDL�D$ H�L$(1�L��H�T$?E1�E1��U������L�t$ I���H���{���H�x�p������~
��I���H����H���#��H�t$(I���H�H�D$ H���H�H�F`L���E���%���@L����	�������UA�D��L�A�L�����f�@��"�xM�nL���*��H�x��	��I��H���LA�VH��A��
��t"��"tA�EI�u��\t#���H��I����u��A����fD<r����t:<nDLjA�UH��I���@<tt,<vAD���@H��������/D1�I���t���fD�	�f�H��1����H�D$H9��!�D���H���L���7����������H�t$�H�=�v�H�
�D�€���HEL$�P�H�L$��������_���f.�D���L�fA�L��M���D�
�	���M��@�������M���DI��A�}@��������a1��t�A�}�����A�}A�EM�u@��u �q���f.�I��A�>@���V����1��u�A�<#v5H�D$ �L$M��H�5�H�T$H���1�����������Q���H�$H��s����@H��WH�D$H�|$H�5�E���H�D$��H�߻����a���H�l$@I�ɾH��L�n9H�_�H��1�����H�l$�G����P���Df.��Df.��Df.��Df.��Df.��Df.��Df.��Df.��Df.��Df.��Df.��Df.��Df.��Df.��Df.��Df.��Df.��Df.��Df.��Df.��Df.�AVAUATI��USH���u���H��H��������?H9��DH�<����I��H���+A�$H�ń�txL�5��LfD��
t{��	����\����"���;����H��DP@t~�]H��I��A�$��t#��
u�I��A�$�EH���\nf�}���u��EL��[]A\A]A^���\r�EH��f�u��D�\t�EH��f�M��DH����L��1�H���g���k���f��\\�EH��f�U��S���f.��\"�EH��f�E��3���f.�E1�[]L��A\A]A^Ð�R�!AVAUI���PAT1�I��UH�=a�!1�S�0�!�H�5Ƈ�(���Å�tH��������[]A\A]A^ÐA�UH�5��H�=�!1���'���Å�u�A�UH�5��H�=�!1���'���Å�u�A�UH�5z�H�=��!1��'���Å�u�M��t�L�5���7DA�UI��1�L��H�=��!���v'���Å��X���M�d$M���J���H�����I�<$H������v���H��H��u���(���@AWAVAUI��H�=P�!ATE1�UH��SH��(dH�%(H�D$1���!�P1����!�H�5ن��&���Å�t-L�����H�L$dH3%(����H��([]A\A]A^A_ËUH�5��H�=�!1��&���Å�u��UH�5��H�=��!1��z&���Å�u��UH�5��H�=s�!1��\&���Å��u����UH�5L�H�=Q�!1��:&���Å��S���I�}�e�U1�H�5b�H�=B�!�
&������M�mM���8L�|$�fD��ucI�E@L��H�x������c�L$�UH�5U�H�=�!�%�����A�T$H�5��H�=��!�%�����"f.�I���tML���.��I���H�����H�8���I��H����UH��1�H�5��H�=V�!�1%������M��tFL������H�����L���=���I��H�����UH��1�H�5ڌH�=�!��$�����vI�}ptGL�����I�}pH��������I��H���o�UH��1�H�5�H�=��!�$�����(I�}`tGL���A��I�}`H��������I��H���!�UH��1�H�5ԄH�=o�!�J$������I�}XH��tIE���L��A�����������L$�UE��H�5�H�=&�!�$������E����M�mM�������UH�5�H�=��!1�����#���Å����A�EM�uh����vL��������U1�H�5O�H�=��!�#����uH�5x�H�=��!�D#�������@������������I�U �:H��tH���8u�M�ExJ�L�$H9���L��H�T$����H�T$I�uxH���<���I��H����L�$M���[�UH��1�H�5�H�=��!��"�����P��������f�E1������L���h���I�} H���������I��H���H�UH��1�H�5�H�=��!�q"��������M����I�U �H�ׄ�u
�P<\t���tEH��</u�H������T$H�5�H�=>�!�"�����!������-���f.�M�uhI���M��tGL��H�$�T���H�$��t3H���]�������UH�5T�H�=��!�!�����H���I���E1�H���'�������U1�L��H�5�H�=��!�}!��������������fDL��H�$����H�$I�uxH���|���I��H��u���e����e���D��AU1�I����ATI��L��UL��SL��H�����H��tMI�}@tF��uBH�H��t$H;ku�Bf.�H9kt2H��H�H��u�H��L��H�5���!�H��[]A\A]�DL��H�5��H��H�=��!1�[]A\A]� ��fD��AVI����AUM��ATI��L��USL��H��`dH�%(H�D$X1������M���I�~@����I��L��H���1��PL������H�H���L�%����1�M��H�5��L��H�=��!��������L��H����������!�%����t��L�68L�������D�H�QHD�H�D���@ƾPH��1�L)��5���H��H�H��tiL��H�CH��H��u�H��I!��^���1�L��L��H�5�H�=T�!�/����t����DH�|$XdH3<%(��u1H��`[]A\A]A^Ð1�L��H�5�L��H�=
�!������t�����������AVI����AUM��ATI��L��USL��H��`dH�%(H�D$X1��:�����M���I�~@����I��L��H�1��PL��� ���H�H���L�%��1�M��H�5�~L��H�=J�!�%������L��1H����������!�%����t��L��6�P�����D�H�QHD�H��~��@�L��H��1�L)����H��H�H��tiL��H�CH��H��u�H��I!��^���1�L�~L��H�5R~H�=��!�����t����DH�\$XdH3%(��u1H��`[]A\A]A^Ð1�L��H�5~L��H�=Z�!�5����t�����X������ATI��L��UH����SL��H��dH�%(H�D$1����H�}@t"H��t��uH�t$H�{�����t'�H�T$dH3%(u,H��[]A\���L$L��H�5"�H�=��!�����������ATI��L��UH����SL��H��dH�%(H�D$1���H�}@tH��t��uH�t$H������t H�T$dH3%(u,H��[]A\���L$L��H�5��H�=�!���������Df.���AWI��AVI��AUATE��UH��SH��xL��$hdH�%(H��$81�H��$��D$(H�D$ H��$@H�D$(A��'�-�D$0L�h(H��!H�5�k�f�H��H�3H����H�������u�H�CH�$H�\$0L��1�H�|H�����D��L��L��1����A��L9,$�1E1�E1�1�I��I�_@H��t]A���E���
����E����H�����L�����H��H����H��H��H�5i�1�H�=��!���A��H���8���D��H��$8dH3%(��H��x[]A\A]A^A_�@A��/u��H�D$(H�P(A��N��H��A��A ��UH��L��zA�A��Ƀ�H��ME�D��L��1�D�L$D�T$�$�z����$D�T$A��D�L$����f�1��9���f�H�$�w���H��L�tzA�ME�E1�H��A��Ƀ�����H�D$(L�l$0H�`z�L���D$0H�X(1�H����D��H��L��1�����A��H���e���E1�E1�1��2����L��H��H�5�1�H�=�!1�����A���k���L��H��H�5�y1�H�=��!1�����A���C���I��E1�1����A��(����������1�1�������AVAUI��ATE1�UH��SH���u��I��H��0M9��vg�}u�H�}H��t�HcE�ƒ�x;Hcډ�H)�H��L�4��f�H�<���H�}H�H��L9�u���H�E�I�����[L��]A\A]A^��@��AWAVAUATUSH��xH�|$0H�t$H�T$(H�L$8dH�%(H��$h1�H�H�����H�xH����H�������H����H���2	H���L�l$I��H���H�$H�D$ �D$�D$A�E���k�t$���O1�M��$�M��I��tK<{tG<[�?�ƒ�߀�]��H�4$I�UH��<\��A�I�NI��H�4$�I��I�΄�u��L��M��H���/A�EI���<[��<{�uH�$H�[I���I��H��L��L�p�D$L��H�CD�xH�C�C�E<\t4��<,��<[�%���-H��I����EH��<\u��UH�uI�~���[H��I�������A�}����߃�[�������H�4$I�U��H�����@1�f�H��L�D$A�|�A����L�D$��u�A��.t�A��%t�A��:��H����@<{�X<}��<]�+���H��~I��$�I��$�M��$�L�4$D�|$�D$�H��I��$�H��c����H��~M��I��$�H�$I��$����A��]t:A�}]�����H��L��L��L�D$�G�I�I�I�TL�D$�����H���.H��u�L��M��H������A�I����I���L�<[I��H�D$H�����M�I�GI��A�I��I�GH���yH�}�(�I�H���dH�t$H��H�����(���L�4[�D$H�$M�}I��MƍpA�FA�}�t$���t1�H�L$VH�T$UL��A�L�D$WH�5*}������H�}I��$�H�$I��$�I��$�M���D$�L���@A�}]��������A�}�v���A�A�FA�}@��0�h�;�L���
�H��H�D$XH��H�D$����}H�����K���H�D$XI9��=����8-�4���L�h�@��t'<	t< u�I��A�E��t< t�<	t���H�L$@��H�L$@��tM�EH�t$�
L��H�L$@�?�D�MI��E��u#L�L$XH�L$@A�<:�*<]��DM)�L,$���@H�({M��I���H�$I���H�|$8��D$L���H���H�D$(H�H��$hdH3%(�D$�1H��x[]A\A]A^A_��H��k�D$I��$�IDŽ$��p���H�|$ �H�{H�����C�pHc�H����H��H����H�C�SI��$�H�L$�T$���Hct$H�L$H��H��H������H���S�E�<}�I��$�I�����@�D$I���M���M���)�T$H�|$8H�5$i1������DM��L���
I���EA�}����u��u���D�D$���I9����s���kL�T$ Hc�1�L��H��H��H��L9������H��yI��$�L�4$I��$�IDŽ$�D�|$�D$��f�H�6y���@H�yI��$�D�|$I��$�H�$�D$I��$�L�4$�����L$M�����H�D$(H�t$ H�0H�D$0L� �����D$W<:�<]����I���L$U�t$VL��L)�H$�@8���D@8������@��D����D)�A��I9��������������lj�A�~D)�A�N�A�N
��A�v	��t H�t$ Hc�1�H��H��H��H��H9��I��$�H�l$ ���@M��H�|$8�����I���H�����������@I��H���x���D���H��H�CH���(���H��hI��$�L�4$I��$�IDŽ$�D�|$�D$�%���DH������D$�?���H��wI��$�H�$I��$�����H�D$ �j���f�I��$�L�4$I��D�|$����H�wI��$�H�$I��$��,���H��H�\$`�PI�@�H�SwH��PL�L$(1��#�XH��Z���f���I��H�t$X�
�H��L����D�E�������L�L$XM9������A�9]�����M�iL��L)�H$H�P�H������j����L$U�t$V@8������H���M���@�ֿD�����f.�@�ֿA�����H��u�b���M�i�L��L)�H$L9�t�����L��H)�H9����H�[I�N1�H��L�H�H M�FH�p(I�FI+FH��H��H��t H�|$ 1�H��H��H��H��H9��h���H��I��$�H�L$ ����M�iH�t$�
L�D$HL������}H�ƅ������L�L$XM�������A�9]H�L$@L�D$H�����M�iL��L)�H$M���"���H������L9�����H�������������f.���AWAVI��AUATUSH��H��H���L���H����H���L�`t_H�R1�H��H�D�H9����0���l���C���H�=�t1����H��[]A\A]A^A_��Ɔ�H��E1�L�
�tH��ta�u������t~��u�H�EH��t1HcUL��L��H��H�c1��<�L�����L�
CtI�I)�I��H��0L9��w�H�����I�H����H��1�[]A\A]A^A_�D�ML�E L��L��L��1������M��t��E
I��A�EI��A�E��@H�xt�x�w�p;ptcH�������H�p(Hp H�p H;pv�H�pH�p �@�p
@p@�p
@:p	~��p@�p
H��H��0�Y���f��@���v���f.���AWAVAUATUSH��XH�|$H�t$(H�$dH�%(H�L$H1�H�H��H�t$�l�L�`L��� �H����H�T$I������[H�L$(E1�1�1�H�L$H�L$0H�L$ �_�H�l$(�H�EH�D$(N�<3M9�rO�$?L��I�t$���H����I��K�|5H��H��M���$�H�T$(���tX<#u��z�
��t�L�|$(H�t$�
M�OL��L�L$�'�H�$L�L$H���H9�wbL�L$(L����c���K�L=H�D$�L�(1�H�L$HdH3%(�pH��X[]A\A]A^A_�L�������f�H��H��t�H�$��9B�'H�$H�P41�fDH��H9��i���H��09r�u�H�@H��H$���t?��tV����H�=:�!H�5Sq1���L������<�����2����@
�D$1�H�l$ �D$0�g���H�\$ L�@ H��p��H1�H������H����������!�%����t������D�H�SHDډ��H�D$ H��H)�H������H�PH����Hc@H�,�H������H������L���v���1������D��H��8�dH�%(H�D$(1�H�t$�I���uUH�D$H�L$H��S㥛� H�$H��H��?H��H��H)�H�T$H�|$(dH3<%(H�$H�T$uH��8�f�H��1��&�����Df.���H)�H)�H��S㥛� H��Hi��H��?H��H��H)�H��f.�D��AWAVAUATUSH��HH�7�!H�|$H�t$dH�%(H�D$81�H�D$ H���@�:H��@���1L�=Mq�d@��\��E����<r��<t��<n��H�޿\����}H�����H��H�����}@����@��%u��E����L�e<%��<{���}H������I��H�����L�5v�!1�A�EH�5�n�D$�f�I��I�v��H����L���T���t�Hc�H�&�!H��H�x ���@Ic�L�>���H��H����H���/���H�D$8dH3%(�FH��H[]A\A]A^A_��H�޿%�����}H��L���������H�|$1�H�T$(�. �9����uEH�D$(H�5�4H��t#H�5�4H��tH��H�5L4H�oHE�H��1�����fD�D$I�mA�E�i���fDH�޿
�+���M���fDH�޿	����5���fDH�޿
�������fDH�޿%L����������H�ٺ�L��H�=
m������H�=��!L��1�I�mH�5�n����D$A�E���H�o�!�*���H�T$0�0H�|$1�����������D$0H�5�lH�߸������H�T$0�0�H�T$0�0�H�T$0�!0�H�T$0�0�H�T$0�0�H�T$0�0H�|$1������������D$0H�5-lH�߸�9���t���H�T$0�0�H�T$0�	0H�|$1��B�����J����D$0H�5�kH�߸�����+���H�T$0�
0�H�T$(� H�|$1����������H�T$(H�5�kH��������H�T$(� ��H�T$(� H�|$1�����������H�T$(H�5bH���j�����H�T$(� ��H�T$ �H�|$1��s�����{���H�|$ H���m���H������`���H�T$ ���H�T$(� �s���H�T$0�0����H�T$(� �U���H�T$ ��H�T$ ��H�T$(�
 �.���H�T$(�/ ����H�D$H�H�����H�5H��1��������H�T$ � H�|$1�����������H�T$ H�5�H���X�����H�T$(�( ���H�T$ �)�H�T$(�* ���H�T$ �1�H�v�!�Q�������f.�f��Df.��Df.��Df.��Df.��Df.��Df.��Df.���AWE1�AVAUI��ATU1�SH��kH��H�t$dH�%(H�D$81�H�D$(H�$H�D$0H�D$I��H���!N�<H����E�gH�$L��1�H�D$(��D���?������L�t$(M����A��tPL�������|$E1�L��H��H���#�����?H�L$8dH3%(�&H��H[]A\A]A^A_�����I��H��t3H�T$(1�1�H���B����u1�1ҾL���-������DL�����H�T$(E1�H��uI�_I��H���
���1��h���H��D�L$H�T$�!��H�T$E1�H�ދ|$H���Z��D�L$E���(���H�|$(�D$�-���D$����@1�1ҾL��������g���H�T$1�1�L���������N���L���F��H�T$0A�H�T$(�A����\��Lc�H�
"�!L��H��H��*���f���AVI��AUA��ATI��UH��SH��dH�%(H�D$1�����H��I�$A�>@��u�3I��A�>@��t#����u�A�>-uH��tL�u��5@H��D��L�����H��tH�$H�U�;"�tL;4$t�I�$1�H�L$dH3%(��u
H��[]A\A]A^��k��f.����U1҉�1�S���H��������u ��H���‰߾[1�]���������f.�������f������f�����%����@��H��H��?�����%����@��H���������f�����%����@�����f������f���H��H��?���H��������%����@�����f������f�����%����@��Hc�����1���wHc�H�{g�8�������1���wHc�H�[g�8�������1���wHc�H�;g�8�����1���wHc�H�g�8��D�����w�� tHc�H��f�8��_�1��f.���1���wHc�H��f�8��_���1���wHc�H��f�8�����1���wHc�H��f�8�����1���wHc�H�kf�8�������1���wHc�H�Kf�8�� �����AWI��AVI��AUA��ATL�%��!UH�-��!SL)�H�����H��t1��L��L��D��A��H��H9�u�H��[]A\A]A^A_Ðf.������H��H���=> Send SSL data=> Send header<= Recv header<= Recv data<= Recv SSL data=> Send data%02d:%02d:%02d.%06ld Failed to create/open output%s%s [%zu bytes data]
%s== Info: %s%s%s, %zu bytes (0x%zx)
%04zx: %02x    *<}���\�����l��|��������8��8�����������������Content-disposition:filename=%.*s:Failed to rename %s -> %s: %s
%*s

%%-%ds %%5.1f%%%%COLUMNS%�^��0�c��%�I�e�y����r � W!�!."�"�"U#�#$W$�$�$4%t%�%�%&I&r&�&�&�&�&�&'
''
''�&�&�&�&�&r&I&&�%�%t%4%�$�$W$$�#U#�"�"."�!W!� r ����y�f�J�&��c�1��^�%��N�z�E�
�W�7�

�		�
��)�K�{�`
�j!��_'���xX='		'=Xx���'^�� j�	`�z�J�(���	�	
�
6�V�~
�D�x�M��Y@Remote filename has no length!
Failed to create the file %s: %s
Binary output can mess up your terminal. Use "--output -" to tell curl to output it to your terminal anyway, or consider "--output <FILE>" to save to a file.
Refusing to overwrite %s: %s
Error creating directory %s.
You don't have permission to create %s.
The directory name %s is too long.
%s resides on a read-only file system.
No space left on the file system that will contain the directory %s.
Cannot create directory %s because you exceeded your quota.
hnd = curl_easy_init();*/ret = curl_easy_perform(hnd);curl_easy_cleanup(hnd);hnd = NULL;  return (int)ret;  %s
   them yourself.#include <curl/curl.h>  CURLcode ret;  CURL *hnd;/* Here is a list of options the curl code used that cannot get generated * All curl_easy_setopt() options are documented at:/********* Sample code generated by the curl command line tool **********Failed to open %s to write libcurl code!
/**** End of sample code ****/   as source easily. You may select to either not use them or implement * https://curl.haxx.se/libcurl/c/curl_easy_setopt.html ************************************************************************/int main(int argc, char *argv[])Failed to get filetime: %s
Failed to set filetime %ld on outfile: %s
type=%127[^/ ]/%127[^;, 
]Cannot read from %s: %s
skip unknown form field: %s
headers=encoder=curl_mime_init failed!
out of memory
curl_mime_addpart failed!
curl_mime_subparts failed!
curl_mime_headers failed!
curl_mime_type failed!
no multipart to terminate!
setting file %s  failed!
curl_mime_filename failed!
curl_mime_encoder failed!
setting file %s failed!
curl_mime_data failed!
curl_mime_name failed!
Illegally formatted content-type field!
Out of memory for field headers!
Header file %s read error: %s
File %s line %d: header too long (truncated)
Out of memory for field header!
Field file name not allowed here: %s
Field encoder not allowed here: %s
garbage at end of field specification: %s
Illegally formatted input field!
invalid number specified for %s
unsupported %s unit. Use G, M, K or B!
The file name argument '%s' looks like a flag.
--trace overrides an earlier trace/verbose option
--trace-ascii overrides an earlier trace/verbose option
--metalink option is ignored because the binary is built without the Metalink support.
--test-event is ignored unless a debug build!
Couldn't read data from file "%s", this makes an empty POST.
--include and --remote-header-name cannot be combined.
error trying read config from the '%s' file
A specified range MUST include at least one dash (-). Appending one for you!
Invalid character is found in given range. A specified range MUST have only digits in 'start'-'stop'. The server's response to this request is uncertain.
-v, --verbose overrides an earlier trace/verbose option
Illegal date format for -z, --time-cond (and not a file name). Disabling time condition. See curl_getdate(3) for valid date syntax.
pkcs11::\<stdin>no-Failed to open %s!
max-filesize - %6s%.*s=%s;auto
unsupported range point
%ld-Failed to read %slist--urloption %s: %s
*@*4dns-ipv4-addr*6dns-ipv6-addr*arandom-file*begd-file*Boauth2-bearer*cconnect-timeout*Cdoh-url*d*Ddns-interface*e*fdisallow-username-in-url*E*Fdns-servers*gtrace*G*htrace-ascii*H*ilimit-rate*j*J*k*l*m*M*n*o*q*rmax-redirs*t*u*v*w*xkrbkrb4*X*y*z*Z*~$aftp-ssl$b$csocks5$d$e$f$gretry$V$hretry-delay$iretry-max-time$k$mftp-account$n$o$p$q$rftp-method$slocal-port$tsocks4$Tsocks4a$uftp-alternative-to-user$vftp-ssl-reqd$w$x$y$jftp-ssl-ccc-mode$zlibcurl$#$0$1$2socks5-hostname$3keepalive-time$4$5noproxy$7$8proxy1.0$9tftp-blksize$Amail-from$Bmail-rcpt$C$Dproto$Eproto-redir$Fresolve$Gdelegation$Hmail-auth$I$J$K$Ltest-event$M$N$Osocks5-gssapi-serviceproxy-service-name$P$Qproto-default$Rexpect100-timeout$S$Uconnect-to$Wabstract-unix-socket$Xtls-max$Ysuppress-connect-headers$Z$~happy-eyeballs-timeout-ms091012131A1Bproxy-tls13-ciphersuser-agentcookiecookie-jarcontinue-atdata-rawdadata-asciidbdata-binarydata-urlencodedump-headerrefererEaEbEcEdEeEfengineEgEhEihostpubmd5EjEkElEmEnEologin-optionsEpEPproxy-pinnedpubkeyEqErEsEtEuproxy-tlsuserEvproxy-tlspasswordEwproxy-tlsauthtypeExproxy-certEyproxy-cert-typeEzproxy-keyE0proxy-key-typeE1proxy-passE2proxy-ciphersE3proxy-crlfileE4E5E6proxy-cacertE7proxy-capathE8E9EAEBfafbformFsform-stringGaHpproxy-headerconfigLtnonetrc-fileOaftp-porttelnet-optionupload-fileproxy-userwrite-outxapreproxyspeed-limitspeed-timetime-cond��������������������d����D��������������������������������������������������������������d����D��E���
���	���	���	���	���	�����	���	���	���	���	��������w���������	��s���	���	���	������	���	���	���	���	���	�������^������
���
��l�������������;����*��Q��p��������^������������	���������	���	���	���	���	���	���	�����5�����3
�����������5�����������
������
��?
��d������������K����������Z�������H	��9��9��9��9��9�����9��9��9��9��9��[��B��S��K��C��9��;��9��9��9��7��9��9��9��9��9��9�����3�����%��n	���	��	
��"
��W
���
��+��#���
���
���
��
��U������m��`��!��9��7����9��9��9��9��9��9��9�������������q
��������
��������������X��	�����������������4���
��4��V��������c��t3���=���=���=���=���=���=���=���=���=���=���=���=��a3��K3��3���2���2���2���=��p2���5���5���=���=���=���=���=���=���=��C5��"5��5���4���4���4���4��F4��34��4���3���3���3���3��;���:��t:��I:���;��Q;���;��6:���9���9���9���9���=���=���=���=���=���=��x9��Y9��9���8���8���8���8���8��r8��R8��&8���=���7��X7��C7��07��7��7���6��=6���5��?��?���>���>��b?���=���=���=��A?��=#��i��i��i��i��i��i��i��i��i��i��i��i��i��i��i��i��i��i��i��i��i��i��i��i��i��i��i��i��i��i��i��i��i��i��i��i��i��i��i��i��i��i��i��i��i��i��i���!���"��j"���"��������s��.�����#��i��i��i��i��i��i��i���#���#��i��i��i��i��i��i��i��i��i��i��i��i��i��[#��i��i��i��i��i��i��i��i��i��i��i��i��i��i��i��i��L$��$���$��!���&��%���%��"��&���$��w%������'��='���'��G!���'��["��a'�����&��� ��? ��! ���!��q�����)��)��)��)��)��)��)��)��)��)��)��)��)��)��)��)��)��)��)��)��)��)��)��)��)��)��)��)��)��)��)��)��)��)��)��)��)��)��)��)��)��)��)��)��)��)��)��@���������)��)��)��)��)��)��)��)��)��)��)��)��)�����S��c���-��4���-���-���-���-���-���-���-���-���-������-��H�������������������-������-���-������-���-���-���-���-���-���-���-���-���-������-��o���-���-���-���-���-���-��3��������A��1��������[����������������������-��l��*��=�����P���������H��8���-���-���-��%��/dev/tty    --anyauth %-19s %s
2019-02-06Release-Date: %s
Protocols: Features: Build-time engines:  <none>AsynchDNSDebugTrackMemoryIDNIPv6LargefileSSPIGSS-APIKerberosSPNEGOlibzbrotliCharConvTLS-SRPHTTP2UnixSocketsHTTPS-proxyMultiSSLPSL-a, --append    --basicUse HTTP Basic Authentication    --cacert <file>    --capath <dir>    --cert-status    --cert-type <type>SSL ciphers to use    --compressedRequest compressed response    --compressed-sshEnable SSH compression-K, --config <file>Read config from a fileConnect to host-C, --continue-at <offset>Resumed transfer offset-b, --cookie <data>Send cookies from string/file-c, --cookie-jar <filename>    --create-dirs    --crlfConvert LF to CRLF in upload    --crlfile <file>-d, --data <data>HTTP POST data    --data-ascii <data>HTTP POST ASCII data    --data-binary <data>HTTP POST binary data    --data-raw <data>HTTP POST data, '@' allowed    --data-urlencode <data>HTTP POST data url encoded    --delegation <LEVEL>GSS-API delegation permission    --digest-q, --disableDisable .curlrc    --disable-eprtInhibit using EPRT or LPRT    --disable-epsvInhibit using EPSVDisallow username in url    --dns-ipv4-addr <address>    --dns-ipv6-addr <address>    --dns-servers <addresses>DNS server addrs to use    --doh-url <URL>Resolve host names over DOH-D, --dump-header <filename>    --egd-file <file>    --engine <name>Crypto engine to use-f, --fail    --fail-early    --false-startEnable TLS False Start-F, --form <name=content>Specify multipart MIME data    --ftp-account <data>Account data stringString to replace USER [name]    --ftp-create-dirs    --ftp-method <method>Control CWD usage    --ftp-pasvUse PASV/EPSV instead of PORT-P, --ftp-port <address>Use PORT instead of PASV    --ftp-pretSend PRET before PASV    --ftp-skip-pasv-ipSkip the IP address for PASV    --ftp-ssl-cccSend CCC after authenticatingSet CCC mode    --ftp-ssl-control-G, --get-g, --globoff    --haproxy-protocol-I, --headShow document info only-H, --header <header/@file>-h, --helpThis help text    --hostpubmd5 <md5>    --http0.9Allow HTTP 0.9 responses-0, --http1.0Use HTTP 1.0    --http1.1Use HTTP 1.1    --http2Use HTTP 2    --http2-prior-knowledge    --ignore-content-length-i, --include-k, --insecure    --interface <name>-4, --ipv4-6, --ipv6-j, --junk-session-cookies    --key <key>Private key file name    --key-type <type>    --krb <level>    --libcurl <file>    --limit-rate <speed>Limit transfer speed to RATE-l, --list-onlyList only mode    --local-port <num/range>-L, --locationFollow redirects    --location-trusted    --login-options <options>Server login options    --mail-auth <address>    --mail-from <address>Mail from this address    --mail-rcpt <address>Mail to this address-M, --manualDisplay the full manual    --max-filesize <bytes>Maximum file size to download    --max-redirs <num>-m, --max-time <seconds>    --metalink    --negotiate-n, --netrc    --netrc-file <filename>Specify FILE for netrc    --netrc-optionalUse either .netrc or URL-:, --next    --no-alpn-N, --no-buffer    --no-keepalive    --no-npnDisable the NPN TLS extension    --no-sessionid    --noproxy <no-proxy-list>    --ntlmUse HTTP NTLM authentication    --ntlm-wb    --oauth2-bearer <token>OAuth 2 Bearer Token-o, --output <file>    --pass <phrase>    --path-as-is    --pinnedpubkey <hashes>    --post301    --post302    --post303Use this proxy first-#, --progress-bar    --proto <protocols>Enable/disable PROTOCOLS    --proto-redir <protocols>Use this proxy    --proxy-anyauth    --proxy-basic    --proxy-cacert <file>    --proxy-capath <dir>    --proxy-cert-type <type>    --proxy-ciphers <list>SSL ciphers to use for proxy    --proxy-crlfile <file>Set a CRL list for proxy    --proxy-digest    --proxy-insecure    --proxy-key <key>Private key for HTTPS proxy    --proxy-key-type <type>    --proxy-negotiate    --proxy-ntlm    --proxy-pass <phrase>SPNEGO proxy service name    --proxy-ssl-allow-beastTLS 1.3 proxy cipher suitesTLS password for HTTPS proxy    --proxy-tlsuser <name>TLS username for HTTPS proxy    --proxy-tlsv1Use TLSv1 for HTTPS proxyProxy user and password    --proxy1.0 <host[:port]>-p, --proxytunnel    --pubkey <key>SSH Public key file name-Q, --quote    --random-file <file>-r, --range <range>    --raw-e, --referer <URL>Referrer URL-J, --remote-header-name-O, --remote-name    --remote-name-all-R, --remote-time-X, --request <command>    --request-target    --retry <num>    --retry-connrefused    --retry-delay <seconds>Wait time between retriesRetry only within this period    --sasl-ir    --service-name <name>SPNEGO service name-S, --show-error-s, --silentSilent mode    --socks4 <host[:port]>    --socks4a <host[:port]>    --socks5 <host[:port]>    --socks5-basic    --socks5-gssapi    --socks5-gssapi-nec-Y, --speed-limit <speed>-y, --speed-time <seconds>    --sslTry SSL/TLS    --ssl-allow-beast    --ssl-no-revoke    --ssl-reqdRequire SSL/TLS-2, --sslv2Use SSLv2-3, --sslv3Use SSLv3    --stderrWhere to redirect stderr    --styled-output    --tcp-fastopenUse TCP Fast Open    --tcp-nodelayUse the TCP_NODELAY option-t, --telnet-option <opt=val>Set telnet option    --tftp-blksize <value>Set TFTP BLKSIZE option    --tftp-no-optionsDo not send any TFTP options-z, --time-cond <time>    --tls-max <VERSION>TLS 1.3 cipher suites to use    --tlsauthtype <type>TLS authentication type    --tlspasswordTLS password    --tlsuser <name>TLS user name-1, --tlsv1Use TLSv1.0 or greater    --tlsv1.0    --tlsv1.1Use TLSv1.1 or greater    --tlsv1.2Use TLSv1.2 or greater    --tlsv1.3Use TLSv1.3 or greater    --tr-encoding    --trace <file>Write a debug trace to FILE    --trace-ascii <file>    --trace-time    --unix-socket <path>-T, --upload-file <file>    --url <url>URL to work with-B, --use-asciiUse ASCII/text transfer-u, --user <user:password>Server user and password-A, --user-agent <name>-v, --verbose-V, --versionShow version number and quit-w, --write-out <format>    --xattrConnect via abstract Unix domain socket    --abstract-unix-socket <path>Usage: curl [options...] <url>curl 7.64.0 (x86_64-redhat-linux-gnu) %s
Pick any authentication methodAppend to target file when uploadingCA certificate to verify peer againstCA directory to verify peer against-E, --cert <certificate[:password]>Client certificate file and passwordVerify the status of the server certificateCertificate file type (DER/PEM/ENG)    --ciphers <list of ciphers>    --connect-timeout <seconds>Maximum time allowed for connection    --connect-to <HOST1:PORT1:HOST2:PORT2>Write cookies to <filename> after operationCreate necessary local directory hierarchyGet a CRL list in PEM format from the given fileUse HTTP Digest Authentication    --disallow-username-in-url    --dns-interface <interface>Interface to use for DNS requestsIPv4 address to use for DNS requestsIPv6 address to use for DNS requestsWrite the received headers to <filename>EGD socket path for random data    --expect100-timeout <seconds>How long to wait for 100-continueFail silently (no output at all) on HTTP errorsFail on first transfer error, do not continue    --form-string <name=string>    --ftp-alternative-to-user <command>Create the remote dirs if not present    --ftp-ssl-ccc-mode <active/passive>Require SSL/TLS for FTP login, clear for transferPut the post data in the URL and use GETDisable URL sequences and ranges using {} and []    --happy-eyeballs-timeout-ms <milliseconds>How long to wait in milliseconds for IPv6 before trying IPv4Send HAProxy PROXY protocol v1 headerPass custom header(s) to serverAcceptable MD5 hash of the host public keyUse HTTP 2 without HTTP/1.1 UpgradeIgnore the size of the remote resourceInclude protocol response headers in the outputAllow insecure server connections when using SSLUse network INTERFACE (or address)Resolve names to IPv4 addressesResolve names to IPv6 addressesIgnore session cookies read from file    --keepalive-time <seconds>Interval time for keepalive probesPrivate key file type (DER/PEM/ENG)Enable Kerberos with security <level>Dump libcurl equivalent code of this command lineForce use of RANGE for local port numbersLike --location, and send auth to other hostsOriginator address of the original emailMaximum number of redirects allowedMaximum time allowed for the transferProcess given URLs as metalink XML fileUse HTTP Negotiate (SPNEGO) authenticationMust read .netrc for user name and passwordMake next URL use its separate set of optionsDisable the ALPN TLS extensionDisable buffering of the output streamDisable TCP keepalive on the connectionDisable SSL session-ID reusingList of hosts which do not use proxyUse HTTP NTLM authentication with winbindWrite to file instead of stdoutPass phrase for the private keyDo not squash .. sequences in URL pathFILE/HASHES Public key to verify peer againstDo not switch to GET after following a 301Do not switch to GET after following a 302Do not switch to GET after following a 303    --preproxy [protocol://]host[:port]Display transfer progress as a bar    --proto-default <protocol>Use PROTOCOL for any URL missing a schemeEnable/disable PROTOCOLS on redirect-x, --proxy [protocol://]host[:port]Pick any proxy authentication methodUse Basic authentication on the proxyCA certificate to verify peer against for proxyCA directory to verify peer against for proxy    --proxy-cert <cert[:passwd]>Set client certificate for proxyClient certificate type for HTTPS proxyUse Digest authentication on the proxy    --proxy-header <header/@file>Pass custom header(s) to proxyDo HTTPS proxy connections without verifying the proxyPrivate key file type for proxyUse HTTP Negotiate (SPNEGO) authentication on the proxyUse NTLM authentication on the proxyPass phrase for the private key for HTTPS proxy    --proxy-pinnedpubkey <hashes>FILE/HASHES public key to verify proxy with    --proxy-service-name <name>Allow security flaw for interop for HTTPS proxy    --proxy-tls13-ciphers <ciphersuite list>    --proxy-tlsauthtype <type>TLS authentication type for HTTPS proxy    --proxy-tlspassword <string>-U, --proxy-user <user:password>Use HTTP/1.0 proxy on given portOperate through an HTTP proxy tunnel (using CONNECT)Send command(s) to server before transferFile for reading random data fromRetrieve only the bytes within RANGEDo HTTP "raw"; no transfer decodingUse the header-provided filenameWrite output to a file named as the remote fileUse the remote file name for all URLsSet the remote file's time on the local outputSpecify request command to useSpecify the target for this request    --resolve <host:port:address[,address]...>Resolve the host+port to this addressRetry request if transient problems occurRetry on connection refused (use with --retry)    --retry-max-time <seconds>Enable initial response in SASL authenticationShow error even when -s is usedSOCKS4 proxy on given host + portSOCKS4a proxy on given host + portSOCKS5 proxy on given host + portEnable username/password auth for SOCKS5 proxiesEnable GSS-API auth for SOCKS5 proxiesCompatibility with NEC SOCKS5 server    --socks5-gssapi-service <name>SOCKS5 proxy service name for GSS-API    --socks5-hostname <host[:port]>SOCKS5 proxy, pass host name to proxyStop transfers slower than thisTrigger 'speed-limit' abort after this timeAllow security flaw to improve interopDisable cert revocation checks (Schannel)Enable styled output for HTTP headers    --suppress-connect-headersSuppress proxy CONNECT response headersTransfer based on a time conditionSet maximum allowed TLS version    --tls13-ciphers <list of TLS 1.3 ciphersuites>Request compressed transfer encodingLike --trace, but without hex outputAdd time stamps to trace/verbose outputConnect through this Unix domain socketTransfer local FILE to destinationSend User-Agent <name> to serverMake the operation more talkativeUse output FORMAT after completionStore metadata in extended file attributesunknown erroris ambiguousrequires parameteris badly used hereout of memorytoo large numberis unknownGET (-G, --get)HEAD (-I, --head)POST (-d, --data)HEADhad unsupported trailing garbageexpected a proper numerical parameterexpected a positive numerical parameterthe installed libcurl version doesn't support thisa specified protocol is unsupported by libcurlthe given option can't be reversed with a --no- prefixmultipart formpost (-F, --form)You can only select one HTTP request method! You asked for both %s and %s.
Unnecessary use of -X or --request, %s is already inferred.
Setting custom HTTP method to HEAD with -X/--request may not work the way you want. Consider using -I/--head instead.
 
��������
��
�� 
�� 
�� 
�� 
��`��p�������������� 
��������CURL_HOME1.2.11��k{�F�%�~�@g�j�ݙɋ.�h�m��l�)�äl�k�у�I�2�,I�����O�� "��ˮ���陲$�uǾ��$����?��F��W�_�I�Ç���3�l��X�N�^�����^���^� _xI��a�G~�^�v轟?�_�O66��=�W'�j���J��*��4yq��1�˻���ɨ��O��ˢ6�7տll�>]��_���k=��ub�j�rf��Z��M�\U�<)+�E��Yu�U�dY��uRYR^%�M����Ţ��l�,��)'�N�^�]��7'��濗�Ϩ�|sv���E?���~F�5?LN����9����!�A�<?;"�?/.ߚ�^\��GG�|e�k�gd����K�ǧ�/���&���ary�%�r>���fu~]����ߕ��$�˛�r�hsK3I^4Y�Nh���Y-���f���zV�S�*����Lr�O>��,���D}�׉�s����i1��|��0s�rA��%��6/�F���E��u����g�/W�,KxEms��I���yff�m֤���h�J��U6L��\��ffͳd��ʻ>�tR,�c�@y�K��i����fL��*��̘�E^�K{^��.ʻ�23;�O�$�y^�M���	�U6Ki3�o�"fv�ɫ[O���Ԍ$��f�P�3�����޼/��>/{s0�Y1͊f���\n�o_�fRi�|�l�I�/��(���ś��ɋϟ�57
$��0#�&��}2_Κ|af��EZ55m�c���~gz�5�6G{�|gl���ڴ6=�p�i;;u�d�2��ܕ��ʲ��=l�4߽��]g���ߖYA-�~���Mj�33��N��0�+>�?�~�
�4�f�ҹ}j���O{����_�ͧ�q���7��-o23[�>���*��ǵ���ƞqcM���۲q�oecgƜ9�l�dZ��'{������MR��_E���PZMn�[3/^<����e綜��y��-���q��Ûf>[�q��o^.��n��O8��j�(mm�Ct��uDZ�����Ie�<��i	,��_�̓e5ͪa���z�L�F��c�i�@ǹ��z����Ț�������'f��%�Ukj��k�.f-h�R�'�̆aa�m�Y�4.�۱{��]���g��0B��oo���o��h��hڞM�C�Ec�'ڎ�G�t<�On�یƻ0��f�\3�1�r96��o˲�Io�|ں�o2h�a\RF�ROq��;#
�Y]&�uI���,�MJ�����9�2�b�T:���E��T%����O6�c�a��6�:e�6�f�%N�o�''����nH�y;1B7]��U�{�k�_�]��Q��
�ȤH��D�R��"\̟���w��y�Y���c9�´��N�[���}��*��W}��\j��Y?��2��L�ݤMb���7Mr��es�pt˛+�*5w�!���0��yA�:5Nk:�������`���(��r�����,R_�پQ�g$��=�='��֤(�:`:�
�LZ��T���צ��d��F��H�bV��M��ü�;:�鯙(�FP{��h�Mn��b�̾��|B��̜�IYU���
�Y��3�F�әӅf��K A������w�d�-�:6&]pӝ*����.̫��w�c���Z��a��|N��k>�ʹ��i�w��2�i7_�kJ�'�����(_���|n��-��"˦��스je:���t��y�B��G���������}��M�g	v�8k��6Wg�ڣEc�����웋��(y{|y|њ颬�X�i^/f�=-��uE'k�ѭ0]B����,�h�$L�&�n��đ���R��z¸黟�4��f�l>��3:m3�2���]�R�I{k�c�
I4S����bF'!�'�-��Y�)7_/�p��-���5֒�X��6����ʂ`�ͽ���GZ^~�&{o�'O?��s�a{��cw��#S��Čn�昘c%�����K6Y׶Ii^6[��r�H�&4ԑtL��*�gѯ�[Ѽa�f�D���y7��.�!����X1�r�̧N���N��5�υ�Jܝa����v"�y���%i��/MCF��)��"�	�͙��CPA��Or�Ʀ#�6��d��m�g����@^5߮�y>K+��,Q�|Z�21��v�$�!��[�))И��:Z3W���[0qt#�Sa�.�Ӫ�XY�g�NH�]/��]韼�j�1=��lf^�����hd�D6��ך��dF�@�ӓ�d�Am�t���gp�X�ʙ�6�]�P��ޙ�f�́{Kž�Ī��9����2�iN�5���p���L��M&���$3�Dzx@���>�'�-������梹���j�{es�.H���G����ғ�7��w��fpt9�==U�_V,�f���=VY���k�%�8��J�6��2_��]s5�����}�3��m��͆�#l�����>r�ّ�M����ʈ�#z�}נ��+I�483c?�8�	?c6�Y���zLj,���>�#�4f��YA�]VԈ������\J����79�D.Jy���T �[˚����<��.�����2��� M��a�my��W�>'o�Q�dnTO3��>�3�<4;��gɎ�.��d�̈́fkѸQ�	�Kk�pe0M?���!����6��n�w2:�My}=c�g���b��hzVf�fF����D:��`��놌����?
�r��,��E��|�q	o�]��$G�V�LT|��jJ+�{ӊ��s��	7�WQ�iG�F�3G��>E��1��F�5�r�YM�X�E�������Dm
�J��W���eG�<F�C��Q4��npU�-��.6�x���9��v�������D��9�OꥹIkVN�	�ʯ�U�W���c�[⦄k�H�lv��4}����]d�64Vdr���'�K&�4����Ӱ�ܥ(����dT5�*��TU	ִo��G]M���kDNW橥�qe]��O �x9��L�'���%�NJ頩�Ū��Ѿ�k1a`��0I:��i��Orn(k��]QN�Qk�	n��:#�9�������+^d�eC�9�&���P=ȿ�rVP̧Y�n�쮺im�A�M��j@c2��8��'��'�i7�ý?_ְ�XI!s�.'%��J�*ݡ|>�*��l��~z&�Zm��x_�:����J�Yd���{�&�d
�4���e+X��>����-�k'���gJ���wO(���V�Z&E�p�؂anG�NsF1#/!L�֎5�pe]����V�g/u�#]�shrڏ|��Ml��b"TY�@W�f�5�
��j�[�|ԥ�;h�b�S�l�����o4�v�o���7�N�J��h8��W��K�����ӓ��M����ߖ���H��ۜ�ٌ(Z�U*r�����0����)�6�e��+�f�Sl��
�U/�|!]J���n�X��͓#ۿ�����81z��P_�N���Ql1�{z��-�U��T���9�}�"#�>
$fԧ��S::�ۅ�{��o��V��VΏ�B�O;y��
������$u6"m���5v���u7Zs�W߲nY�z/����{m+�n�5p]��BV��UY��bl�*�X&5��ͣ���?|�������Ns���sY�*�Cb��-_�F�A�����/�inlnb�i>}2x=*b�h����5B���5{��ec�F������aW�sF���u�ؤ��H''Uc�,�а)��VtO�1�i��a�)�ɓ���N�F!���>d���W�(Д´�#����`NH��ي0��FȻ�(A}�����I?���m�i��џ�����.ͼl�W�ڜ��.�qmע����>�Mm�3�:I/0���׳�`[��H�����,�mY���F��^�c9�T(����m`;���ǻ������q>˛{V�F�h�9�66i�d捯�CEj��c�\�
�#t��]������斟'��wٽ1(��IJ6x2�OY�ջ����o�Т�U�&6�HƗ�E���n&�w�n쳦�?��4�G;�F�$M��l�|�j��3�i�ܢ�ל�DXdZcY�/�f�n�9_��;LƱi�Բ�]�f�[���F���4�&f;v���(�#��=K��/2��-�G�ohH�F���4C��Β�غ���L��>�GPYqd�Zh�D|0�d+^��z����w�}��\'��6��E�p�{��n�묧<ˡ������\yfd�¯��j��n�&Y6�	;�6���� ����V�]³�N�H�QL-0���%z���I���(#�̌�E7ú��~���y�����߸OE��9��U���* ��#�e����F́aző��~HL��@Z֏8#���w��Ü�twί1���5�.�E��~L�����>avGqmzq:�4�}j��ne뭜fu�j��t�X�R܋��	��Cs���U�׽`�'��l�Z�F�3�� �6����(�*RQ�V)��4��IfT�iD	�EQ��JR�"�44a�v=<�9��IafS�ڳ�bi&>r�RE�M�:��ӽ�c��Y��TF,�K�e��b���n/l�!ɽ~�2T��}�=p��w����H͎���/�>�(�I�N1���=���c�cv�Y���=�қ��(e�h��_~ۍ����~.M��X(�x���a��iaU�g� C�;��r�u-�����o0�X؈�=V����nFz�_D�]cMi�8�7����չ5�N~&;k}��d�\��~.�u��4+�(I5���}�ۏ,ў7%��R4
�#������q�Ͷ�[�gA>��l��^$߸Dʠ�PV���F���A�
��m�1X;�
b�xC1v޻�{�'�J%7�?>Md�����$�0�I���u��^���O.�-��F�^�;Y3�Y|�w��9o[#
��]h
S�La��Gg�rʿ�Qy�xC#���	9_3�K�{V9L9��&�.��ۧ�3��]ISrv��&����ogf�Jm���bW��1S�^Ø@����\F7���u����s/��Zi[�˨�.s#�3<�f�<���w!X�v�~��9�)��t	1NQ�[���,�5�4{�V���%����Z��8����]�v���ݘ�/N�-ʚ�����jWޛ�pL�pVNR�8\���6�P�E(I�3��`�]�#�ޘHVS�DR��;��%HWx�h\\R��?��L��^�����J�zt���Sר�}_j�zʱq��o��dj�OYZ{��YQPy���=n^��K�����c�'<=����ƴC_�^�f�&�c��$x��*!��lک�^�U20�Q��M���Qpc�Vr�e�&��Т�<��G�Mv��u�A��͏*-c<Q_�tcQP�N.ip�&B8|�ew�T�^�w�XSɖ̗?�Yƚ57�جg�|�K8�z%���̵�A}��Y��i2�KX2�Ǿ�@�{o���o���'O�������g�g����Y��ӫ�^���j��tz�}>�,�
a~i�CQ���4}{8�Kn�Oz�أiӐ2I4]=X���4R�@�Y�i�D#�?<P�=��{�O�;����(IfN�1m���'��{m|S���y9�'���k��Ex^g�D��Ǐ���|qCqޗH{��� nS��Dֲ���h\����JR���>ħ]�mv^ȯ�����������:/;�+�̌��8=���/ꃝ�|n�O��u�3-'�N]�t6��P�7��Cle�A]�A�#�<8.8�����h�m�/czmH����#jX*�ߡC�t�H2ެ�lz�q��A���K���u�u��.+sy��TOy�j_��Y���k�,#����bE�[�x��h��?p��J�M`! ��UUzJ��;��v̯5��=�����j��)��t)��ϩ%����@����$P�{�Ҩ�\�yq_����V7�y�k�!	��|����x4Y�6G�i�D���^zAZj0��Pj�t-݀B`$���(�j�g�S���3��Y�@ns�v�q����Xc�N���\C��̕_9j�
���ճ]�}ijF�J����­e���K^��h��̘�$��#U�_(�n���Зc���hҳ]�e���)m������d�tu�b2+5Yܼ����H"�x�4����E�H�JaMƃ��	Y�?7�f��̅?ߒmG~� #uFA"֦��7��,DA�Rr��Y��/J(��q�!�7���K_}��JS<H�<��i�$�J���yFt.})�}H@�����3֜N�WʷF�}`Y�hIGӝ��
wIJL�?���/>�录~F�+襊<
��E�D|J�|�u�
���"@����@���T���"U������0��RD=*�x� MA2b��&b��5�9ԟWIo���뾁$G�ŔatdK���5.c�+t�s��H��%Ry�å"��P���{:���۔eO�����|/f�&�~h=���mۊ0p����ӅzT�$Gc���NsH����q;�?��W��zc��4P�xo�n]g��n�O��i�P��ul�����U�,��}���e.`��|�_pB8K��&!�)Xx�%����H��_^ڱ��d�lD)F���ߏ�/�{~qF ,��p��i��uڤ����ߦ���]�=k>�@ZM4���&	���u߭\1������ɲ�-��E���y	��EJX
�p�l4dA��,�"{j�q���ܥ`B�dN� 9�
� x�������z�;���C�m�tH�H^� ���e5
����_;{��^�y:,���3��MY>�?aF]���]����[�P42�(�h$f��f-�^|���d�َ�U��8��
C�����H�@��䋁f��R<_r}n`��M?�����-�I��C�@�&߬�h�]2�J��Hդ�B�1����RZA]ڜ��8�qQ߼�Ԭ�˩=7�����3��9�Qj�OH��B�L?>��[6��ћ�5���n�O�� �{�~��E��L^~{6��;8?�0�������F�d�
4���k�|��[��]b�S�G��?W/oT���_�,�vSJp��_�_MfF��(]d�q�~�=�񓪄 �;R7�7�����y:�,(`�,�O��d��;�Lҫ+�����Xw|��M,;C����y�8�m���rG��-�tS��Ի���aI{R����
���/���F�ž ��G&	
C�
��ZE����&6�8�e���ۼ�-E��A���kJ�V����'R���y� ����3��?MD�geό�����=K@�8iT�sd���T������φ��E�9
�>�}�nI�����x���ZH{��S����j9�d�y�b��f��'��d��
[yO/Zn�#1� ��0�,����^@G���@� ���&iC�$�h�b��F���kW+��eƮ����D�G�c�X�yèNض6F�P-��&%y"w�8�
�<���Cy��`;�TE̕W�.�}��w�W��6:���E6ኖX}�9��#�^=t�e�����=�I@ڡZ��j`\>v!�q:)���JDY��RY�	�.�ԕ��?1<R�t���'��	�p�Wce�T7ŪbhujP��0�
�ɡS�����g�
@��+�R j�-Ԝ;)m�ѐwn^��i�,�e�T%ۑ����Fr'���1O9��#䏓{�ѝ�>������o��8.�EtY�Yy�s������k�J�N�:�"+k�C�ô�D�ξ9=u����	�r5�؞d�W����������D
��Qʒ���ю),v�]��fۏ�7x)�����2$꒕�hϛ�e���G��a'���e�(�W�@�܅C�I����ﲔj�l^�m?�T7�|\�v�P�,� wi�,�@
���*�-iȩ��l���{��̟�JQ�9�7t���2m���J6�p�SN#!l��B!_�Y[!��^v�F�A��\#Z��M�-	�#�ez1�w
zŰ���!��/�H��Ѽ��=Z��1"<�K+;�M�S�m�P��^}x��x������V�ȧ�W�I}?�3�N2"���m���=ޕԵ���AlίnPC��K�t�R<q�y�#�o�^�ˉ0��%�$�˯�]@0l��,�YeV�b��n����,
�)
4��y8���B�n��ù��y9���}�b�b *éʁ�:$�̃���(�[F�o��R<]>�F46V�"DpyӺ_T���e��ʅ���6��̙]��3�5������l[���vޖ7�N�#��Rn��=wb��}a�2��%uI���"��E� ��\��{c���6]��U�V�?ǟ�jB ��B�^�W���$߽�%�6�[Y
�1��K�Ŷ���1D�\<̰�警l􅱛\P�@��:�Ю�9$)�8g�%�
��+,3��wzi��˩�-�ry@*v����������F4�Cf��a
��3�x\67^�)ᗑ{�j�@�W믑$b��	犆h�:)5�@8�Kc�J�|�R��`��lj&6����D��[l�>�,!�2�Dz45�/퇈/Ī�+�?l��]U3V(�Vm�;�;\����躮Sh{��#�.�4�y2N���o��ߏ��@��u3�e�y���:���H��.�I�*��c�
����P�'�e�6�cor�B��pe�
�_q��Y��rG�R*�W�3�ٺ�9�f�� �;�]��Wq=��Qs�3dN�>�W�i� �<��7��ѩ�Z��
�/�0���� �[��]	��[�����
;�.�o��B�-88����˭��Γ�ۑld�
����pw����5�(
$m/
��2,Ɉ��D/�[�բ�i�y-��dz�Pv;���e�)� Km:U!���?��r����_S��i=��f��2�u	x1�M�#��1h��U��ֵ+�;�R���/�e��-��r��.�˜6uI��T8&�i
({�%�+/a�e�E�q�DŹF�"h��vpj�`�����lTߌ(��AEvGҸU��rrٜV�(��.�i�j{��Y�l�H{��
���9��l�Y��s�2��-�^%�4���Ё�T)��praW��IB$kxiQ�8oP�'��IŜt���"�ύ���&MF����d�m�;��^�'�c���y7j�v�d��9� �p�2M�GG�.��b43=��td�'|�q�һ�ϸwe�����Wɭc�+#=�W&ņ��_��0s�`7�V����a�]�A�F׷�S�2��a
�g,q��tTzL<UYE��MN�]�F�}s�<m#H�g�3��5j�I�p�c���T;6G�ƅ���� ��FuS���/|]aD�Z�Pւ�p�_�-'����q2+�IǓb�.�=\eE����VU=�n�'�P�w��#�C+!���O�\�͑�������QE�g�H,���?4
��8����8Bخ�1�_�������ӷ~��^�c_y:�x��eum)���~�U�f�EO��7��D����(z8Z����7�ٝ�xsZ�'�x0������M���D��l�~C=>��l9�l��F v�t��k�kG�ѵ�����6��B�p�H�OP�@W���W��"
����_9ef@�Ȗb�٩vg�7e��V_���*w{���uS�w�ݑ����|&^�i�,3��ՠ��S���H�S�L��d\�w5�Q5PS�|�	�����,�뷗oOÞ�n��H��ύ%m���E�JǠ��<�/b�Q$=�)O�������=�
-=�>OM�������.˳<���i�V�r�	��Ez�CHZV��c��I��D��6��2���NpDId�)qc5�f3���(�s<P�
��M�T��ˀ����˶�+�?�����r�@�aBP�g�5W0�k�"M<��$��ߨpU-��U�雃)��iZ��0'6L���^��e}��m� �7��Cki�wY|�K�
jv�v���>��~��Y���
��Y�.$3��V��6H��j�el@ެ�9q7�&��X���m����
@$(�m�K}8S�'H&G�@Ҳ�K�:�NԘ�Nw�O'��gPk���&�jU
�FLxGy~�D��&9�tM�����\�h��Ձ�:ȯ����O����	;��Ӳ�Yv�C~yz���ip�}3�|̪18"ix䮤'm��'���VU��!��uTI��I�M�B1L��F���2s�7�Lv�Ԯ'��5��%Uc;���h����c�W��"b���db��&0zb�G�:M�tiZ$��$4sYIW���;�z_P�{n9y����lk���W�!��x���p�Q!������ԓ�ln��(��j.|���q�q��@�#��)B	5��"��퇡|!3�>�b��po�G��S���®rU�(��%T���,�|*��		�ЕdD���h1B��5�s�Up�l�eo�Q�{����OS���=��_$:V���{�F2�Wl�[�95T`��8`���|K��P ��V�b��/I)��B�Z'j��J*PK��C7N�;�z�,P:n�~��X��P �S2Y��F-��$��^B۬�]I1�+̏1kH��I�ș3o)�0PY���M{�*e�1#�r�=HWxr�H�[�U,]��Hk��ﳾs��x��Dxڮ�a����n�
�C�o��䪱QS�;��_�s�:�=!�\�!%{y��/������w�_��7�QS�^��j�q�a'�Br���B�H<L�*�N�X�#}4�o�'����p�'�c\u�G߯�l�N����;�|�e��1�s��Ġ|���p����k� �.@�W)�-����c���H�߃9^���j�?Y��i}o@Glu�t��ak��~����x!�红�z��	�9����]�WhGf��}��ׁ-D�=�����.w[���%�ڒLfc�Н
�/��y��hOډX�x�Q.@����<����f(�C�
�a=��JIՕ`D�H�"9�q�Fj]��fm���l9̞w0��E=p��/�_��QG��3�۸��0���V��h�&C�z�a�XU*��qG&����I�9y�bC|AP?�+v�h�e٥H5���BM[�X$y]��)�p�����=����?|��T�����.�)�^P��€p
k��#2[(�㪐���ɓȢ���a>b��9�K��}�/�y�Q.���
��@�_�8?){F4�&s5�c���ʱ4���h�zb�}p��~X�~:g�g���?d����~��{�]��������e���$�Ca�h��-�H2"{�5��WЅ�6yr���{��@�Ľu#��[4�����׍�X��;xI�5�ǿ�֡�@�u*:���˶�kK�p2xx��@�|���PmE�C&4�5 �~�vsϾ��@�,�����Z�]��vy��f�H"��U�.I�`^f!\�M�����1��.���}��&�v�J��.�>ju�
`����@u
��&E��Iz:���<�G��פLp�u���릩��:�.Z���R,C_�Wx1�B"���e|��	�qX���<��⯨�`��<'ů�n�ˌ�̯ۛ!���`���$�a����	��R�VS���'��z	ӾTȮ9*�.9�?�t���y�T��>�&�aA�N�yP��â�2ٰ��8O��f��j
�H�NC�I�|�V裵A7 !���fw6SN�T�2ɥ$����QO���=�p\`�!`�z��$��&+I����C�
j��r�m�R�Y�^\�- %��"V�䇽��s�@\�C2�c
��;ͥ���1f>il�dY�R��1"�}�Z�D9��C�h}���{g*{"�
'L�?\SG�,h��E�V���Ѧu�*�����q�N���P����]�@&�˾,<�akqB�� uP[}��P�zҧ���d��:�v�� �X�s\6��(_��%���6�Q�*G5J�xgHII��Hh3I�i��S�ҫW6O^K��˘��xd|&���\SR�
J�a��AA���Bӽ�ܬj�L�r���~4�r�C�ڭ�S?iU�8�ݕ��E��>�N>���>��wI��5��帪RY���d���(Ʊ��������-���pR勆�$�!�zV�S>#6�G��-�^o�=#fȃСS�q��'op՗ӫ��Ș��3�A�.�vզ�f��
I<�_B��� Bĕd��Q��P�PЭ�:�I��\1�@��XG�ǐ�d����-�f?�� �j��ɥ�e6�����)R��X���P�������@�M�*k&�/�Y:��CP��mʢ�@C
	SH�1'�R(�=ĩ���DX�PR;�B}�����oO���w��%�K��j�����ܖs��
,9�J�f�0ۂ��5�Ԛ�2��+�D�\�{�^e
#*⻜�)D\=�F+KM���ʥ� ⶞��	��L�y���D�!�^.`�3R��:�?��Cg��~�ݾ�gu6@.W\;��ߡ��K�6]V�I�}d-�7�A���N"�;��)ū�����L�l��y\)$�6���;orc�߀�����,��6ɘL�W��2�xޥ�CH���/y�1�"<$�-F1���hN��m�ldD�#�Ef��ُF��?�~C�~G7�Uq��Ty�X�~@)fr�K��O��K�@I�j��"�rb]{��`3bĢc`$�i��0��W��"�͗�v혧6��\]��o�pکW�-	Z^;a���	��3n��6�"8�hg���v���'�܃�IN�����u4��L-<��*K�tϯ�)v�{�o/����.�&�=@�����?]�fS�K,w�4{� �<�a3�X��n"����	���'� �R��^?�[T���.��5~]� L#�vpH8�~B�.2eB�d�O>�|E��e�	i�Bd�b��i�1��}H8.g�y�Xߜ�
�bP�Hj��*]&)q�=)@y���ٰFk@�7'Z�tl����L4�8�,�SMu�a����R)�v0�4����	�{���5��l"�NJ^��>��WzH-�WX��2�R��U�K�{?�4F�v���@���`N��Ű'^�F�ۃ�۩+��P�n����w�y
��f	�O�ˋ���2R�.�:Ii���;�̸�@��Y%_eS-'�X�(ǧb�SBv�F�8�fY�����DN
D�K3�[�ﬔI6������|}�h5�*���i?ߛo$R��zI��iK�A��E�u���r�f.3]͒"�b��_�+e��B1��wv�.�M��E��
fV#G��d���$��TPu'5�50
c�P��G�pҚ�
�q�k��/I��PT8;�m"���Ъ!V7�褹ߔ���qv>D5��he�TUj$�_�+ �$��
!+���M"�y�U�9�q�Q��br�?0	�o3x�2��+`[�!3�:�/���n�^���������=_�_��.#���d[����,t����{�ޢ"1���,�|0�-��(<s�����:��l>5�G�����hz�e�H��Bp�,%���۰2��I8W��fw��W��4}�ji�v��x��6RV�����&��rm���x���U�JyC�i]��Rs�	���8��Za�Oqc��d ���u��9��^3J��wv~���}V��؄W�� .�����ZK	��l�ޯ�8�\��s�v����=7��{��H�
�_��U�Q��'{��&͏
�W���͡׭ir�B�Y@Y�=@3N�,�4y�Q�AɎ��Ⱦ�?��|�?ڐS
\I�C�r�QK�������D��>��eF5cu�n���0���.�k��j��&E|VV��^ET��ue4�/hk-�b�s�i0�7��U;�iSύp�'��>�ޡ�߿����$/L�Wg�}�
��q�?E�Ar���_'��}�+�v��f/]�+b�E]��ł�u�l��QD��q��M�
�Z����p\@��%o!���s�p�?�7�e������*S�!�cβ/b��NJ�U9����z^`�g4�
�T�g#*�D�'lf������'[9�pă��s��� �B���%�P2Ǖ煮��`q�U�O[�'�%�c��[�X��%Og�w�q������( �e�״�o�߈��0`H���*Y[�E����A����
!��8��8�4vMD!��U�	�tz�H[!��]�jPI��
>eD1#�F����)N�q#";	5�)�$ė3�h�L0~�s�nf��fNh${S,��m�A9���7��V�Ej�X6D
BZ�Sx���
��Q`��o'�XN'C��Og
eǣ~�A��O�O
�R@\"�Gc��j�/,�O󾽙�/%M�]�B�m����q9��a'y��~�Q�W5�V�R�ϯ�q�6����zr�5��%%E�<��Q+�������09�Y2Y:��1�^���\��ӲG�P�r��MʊcD�N���tmp,xU*F��g�K�v�����=�ѣʾogp�E) 1)R��`����^�,��m9a���=(�%匨�8�nS�H^7(�����I*#�H�yHd
�-�q����c��/t�t?�vS{&��ϝ�� �ղ��#�����A���=|�����9-ڵ�z�6W
 �(=���Ah�l=�Ӣ}EI"qdμ�������P����k����.���6�JY��Bky�ʫ+DӍ���r�#AD;I�F'�M�%�/�o�Y5�U�����u~8ٻ����~`�A��I@���M�tN�~��w���c4��f-����#�%�֚���HcH$�9x�#����������L��o{��Ѕ��ӞOomqjŎc-�4p���Uz6|�]��(Ό�lw��G%� @g���S�=/.Hc��#�^��K�����C�#�"����UR�|�8�4���,�`�k���4��/��w\�U9c���I�\ab+R�@a���;$��m[O�%"�h-R8��z��Noh1APO�+ ���Bl@.S:��G=�yj�_D!]���d�!���,[X��u-y� ����\mE�DtؚJ�QiQw�'�����n�"w5��5��+IMfTRO¿�I�	��;�'�
�
L��+fD����ctyv���ad�4MW�4��̐	�b���_y0X��5�+s?������f�[A�������]ɚW��qj.s�8�r#i����l��,z����B�n�u9����ɹ*��na��$Aa��h�7m
)���%3�jȲM����{]!C8q�V�����@���4��hX
傄�a��,9�h�]����B1�J[∊:�kH�~wК�}!`-��-��0��FF��ŗִd�P�!|��&ЛF�svɤ��
�@�Ec���ɂ��
Z02�h�x! J
�BgP5p���shm�v�|{t+�m�A/h��Q�V^��SV;T�BPvƪ,g`�Q�-FO��/M�m�Y���nS�a#G�d<��1%�T�
�+T>�߯(�S��1�Y�svH�d�rh�Κ�"��]��mQ��^	�M�Z�=����}U�^/D���~�ۃ����o�y���G�:BZ�-bf���X9�5�����=�|�^W�o��k(�n����/���ܐ�f�o̍N�Adಊx/.r�F
>�͓��Y���x�T�OD�tR�~?����#�{�h9@U���
?�cX%�5��n�U�X^7mY��]%�l�BZ��w��ߝDb�qP\<�)Ǫ,�w��ÿ~2��������\��C���6I+4�ˣs>�����IA�'�	�'v.�W�.��%@j��k�p����H.!i1`�Ý�R?TX��h�� CE�m��i|R���
Q6��w�01�pϛYw;�+�@�J��G�I*̹�s�����6�~��[��[�Q̠LRTRT>Q�nL�Z�'�����mDm4���اN��Y�?��V���d�IhР��r�w���@�$���H˦h�-�bo�zy}
$�03�R8 0�F���:�,RN�;V��śo��T�@;ڕ��d��D��a��[�n$���0��1�Ye��X�yԽ5�0�N�����~���l0�L�^�r�#�
��(��>::=��QX�'Ѩb��Ͳ���D��^[#��$����L4mK�`^�(mw�G��>Z�v��e�i+�l�KX*���z�T����%�N>YU4�[G@�<�qtC�[@�0]�Y�1��\�����{r3�t���S����+Q��e��0��.�E�t�� !�N�^RyK#)�
=�w�Q�t�8BTY��u㭛~3�r;t�|w5����?"�u���_�?+�s�b���[�&�٩��
�G��	;���HK �
C 1�c"L(��u;�6o!?���c�d�k���[��7d�]��E��@�AEEy�P��H�da
��(L}����@�m|��&�v���ر
t {Z������ޭ0rX��t �|>X�l�*��h��?6i�p%4_�ׅ�����+ ��ϷLJ�-��o�OD]c���
���}�3&GX����{Ũku�'d%G�Jψ�} kҔ�������ȳr\^]����5P�az4��ޘ;+s�zR� ������͠&
���iB�N���%�O��,4O+X��g�D�g4u6�z9��H&�~$nT
���
��2m�ty%��n�
���8��N_*ߘ�z?���?�u�rn�x���[z-��,d�uY��K5��$��	
Lw��SѸ��sAY_�����d��}�R�B�Eal"[XF�#��>�P���`7h�W�`#W�]�kM��P�ө-���P��R]d6
�4Ҫ\��]\��R�V�(+�C4�{)x9�0��~B1(����Fz�^�cY�Nsky���3���N��㣳�o�߽>~��H��GDY�f�������&f/��N-��d��,��Fh�
an��Jޞ�!;:�0�Y`4��t�>4L����{���(�Y�l�O�?���1�g/چ�9Ȁbג� �#6ǿ=<���Y~��_\���f3J%+��0��Yk�%�R��:���E�j9ⱺ~#ʩ�r�Zȋ)��M��b^ӵ;��V�<�rfe�
~���*�ؗEs$gM�<�ȑbX#�Q�d�[��m��*�\Rqߜ�o'o�FJ�4Ø����eq�F8�&>8(Z/ŋ�!R<Ns�4�)+ɻU����xV�)�i�y�xq^/f$
�(/��U�a�3��=�4^o�Չ���s�(��l�cP���QL-.������Q_�Ss�/B_�����ۅ�km�qc
c�,L��MQ�~���_z�FТ�K�*�:���6	�i��2�C/I���.@�WQі�����gږh�.���NI<T�>���q	u.-�ފ��է��*�!��i@��ڟ*�iQE��!�+F��3�����U�p�Cc�Ω$i�2d�#ۮ��X��GHǐ��XT5�؆��/M8�2��	���J�^��~k4���1�_�1��#Lʃ(�h�
.[p�5��
AکK?���hu�vu��:�!K��@"�t������曢YE�jn��t���j�i#�?R2�w����4��s!#i��Ђ�@��xݒ?2�D�4�G�Y{Ǩa��ٕ��r�� 4�����\�φ�� P��/\��y2r����{�׶��Ů���`
ElrmuT2��t�#-	�_���y��4��P�ffR��t���C�<��sƸ��ьY4%�q���w��sFR�$A�9��)�t�2�xE�/��R���2$�Yf\��@����N�}s`eɻ.����-Ӕ��g�5�2!��yYea[T+'�\WeSΦ1���)�ɬl�2Ѧ�a�Kx�JdK�v=�y����0�D�%�s8�h�W��s5I�|^�L~��2�<:���9�>��'�̟t�DqHf��J���
�:�E�:��:u(x�X͒��eLd�ާ���1ޘ_c�n�x�ϧϒ��?�����ёQ�(������x�웞~J��h��y�yz+p�������	�}�,��d���r���a���t|�O��ߊN]itʳC�tΩ�/����L��e�Y��M{w�b#;2S,H=�Zm{��|�$Bi/�8=�COp�g�e��୅4!�g��J���V��1RB�9h-!��Ȧ6��.ǥ�rԌF�9���E]���GP��b1�8�Z�B�:k��itt�h�eЁGEBX@�ER�lL��pWs�"���ֻ}Yo��*
|M�dZM��nΖ0�fE��1q�e�VCk��O���ݓx�k��{ͯ�{#c�[ۍV��n�}nW�"�?z���vW�7�n����ϲi���2;�kR�I?�F���d���l�}��˞�K�/��)R�xT	:�H-�ޱ��'T���Z?USE��xc�}�c���X��VR>�s,���M�[�Q�;�B`I�.ǣ� ���mZˣ>ns�����o��ދ��Mga]<�Xk�lQ�����2[���6?ݹ�e�??ݵ\��u�ʜ>�ڼXYJ"'Rq��	c*#1B^?��>q���1R��O��9�HY��Kx3��U���2�Ƹč�swI�o�;h���f��^�κ�\�������T�Шi�jIp{�|���'J�f�J�^G2�5]vp,D2Aȱ&V��$H��긼�)�ź~kq�9
x�&We[d�� � �2��_����_ۗ-+��@%W"�.�CD/�r�������0RI�gw-/��o����2M�K�>�� �O{�������1&����1V�'�pJ*�
�>�5C�2�I��ϴϼ8�T:�>!����
�d=Ȋx�	^��1Y$:�x�I���#�+����kW=u�q��9�7#��k�7�r���h��>�K̪��̒b�8�R8+��]�FE�?�I?}�َٵ�N]��5���r�}��H��$�W[�֑�17E7[�1o�����hpy!��M(�ժ�r9�^T�L�ͽ6��C�`�����ͬ�xC�,��mvww7\�2���o���̮=5vħă��<$H��xcio����Nu��r�� �ڣ���/?\�@S�����Y�%QX�E�R^�!J�l�j���/Ik�>�!�
��v��k����v$�J�G���%�����ȼ��pq�t�1д�'at����ɹ0lvߏ�^̻�U쨭���z"5Ճ�fǪ
���P�$�5o��e���1?���w��蘽��Jc��80��[X�����[�a�z�Q�T�rtq%��uΩ԰��mC����F��)�NzB�L`X�L��caί,��6�!	r7�2��~A
���2w0��"�v2�tP�7�f�0Lf%����h"c�v�E��ʿ7>f�"����®�8zZyY���7ZI/�s������S���)��ϱ�O�O(�e��
ԅ=�����i�������H�k`������ˣ�����>=�c���S��ҽlxAg��O�$�'?��|�ǀ�Ko_�n6"lG7�U�>��5h�[Va��j�˨y��Nk����mƏ�=�㒗��8��y�ߒ�g��h=:�|cѢF�F��XAT4�����C�fz����~r~��s��}�lʬ� l�'�͉yIqumn�?����'6UƎ�62]��ٰ�4<cfB��N�>��0Y���Ȋ5��Ӿ���Xaf�K����j�OQ�m�QV�8�2�ݡ�_ʴ6�ǕQ�Q���->N꽽չ�C�5���џ���2�E�m�=��ߎ�{A�7��Iz�mx�Q:Հ���0�W	����F�3N����
�u��BR������u��K�qң^�+N[4u����t�� �
�k��^��?�U���̼8���33�wƸϪ��(�:�@Ќ���ɚ�h2;��&�6��&q�П a'�<�mCHwX�ڦ�~�gTFK?ɵ����K5d�����0+���{���ײ�:g�9],���(m�!W��C|9�>Lٌ�29�jN�0�vg�b�v{��Q"�Q�U�X8��Y�
pG��"̈́M3�*��@�j��{����P�1
G���ѸR�� dp��4�4�u��s!�t7	޵����}@:f�?F������
���<!�<�\=Xi�@r4�Pc�A6eW&���Ξ��͉t��i�.�67��PS��b�*�a��8�q�Ü&��C�5,��;��Y���+b�]�Z�2�G��z>2��w��AI i^��9����7�mί��T�&�V_��k�Uؼ懾чB�Kr��[]o�J��<�cQ�����pb�K�0�YI�3ޙ�n�k����Ufh���O3E��I�)���:�p����Nda��h,��%���$����y�D�!9hs~v�d�V�1�S'�lˬ�%=�18ɔ|߃�ޥ�{�i�X�L�԰��B�p�a�R��M?@yΝNr�B$�C*r܃� h�߷6�J�Mڶ��:\�m1�[&�0�ɻ�ѥ���=�A��܁ӓ��0��~��(3����,¨)�P�L�y��;����4J:��u��x࡮��:�{�
�14
�d?�F���wz�d��_��~Ԧ���̣𿵳�)�案�,z�P�d�1!5;�l�W��S�̫۠y\ M"��Bȓ�b%ه�Je��ɑl�c`N1�P$�O^����A��*����ĊQ�e���'��^Q�w�o��6kKy�O�~�p�\ŵ({m(D �
p���vP�(CI��6$GYI��֛�����3c��$�o�[�����5۪��|
��oTk"p<��4IIa��'4��{���)D�91�	���eAM�@�+@�Ҝ޴��;��P&j��t�֩�_�!�F�2�V�{֮��l�AS-됰\�tN�S�^��l5����{p����z�|D��������P/A�O]RUr�f�.'X%
��1� ��v���q�jY��e7"U�2w2V+���IA K�W�
ha��
m_DɿNk#��-n��'/5	�[�V�;��I�$�›s�R�i�f�rʔ��jp���I�ɖV�٪�S�Ձ-c#��i�ɏ?&m���U��>-��58��B�t_�^�Kd��-�@…˸��f��iI��,�A�����
�냄���q��g�y�y�T��D}���$a�©wb:[g�8g;d�/I�zyL����Q�m�]����]�Y�0��(U+�v5��4�֙E<�uG��n�tV��2&��ի�C\�K��	S'�H��������C}�#0�>���e��9�R���3��)�ޑ�A.�'�{Ǝ��9��'�hZ�
!�ExM���|���S��|��f�����e�ł �%���*�����X��BC�����h�c\A�“�O�R������������u�#��տ�Kn��I��$����R��*�IJ�1�$���5a�%J��=�����0\�7��`�	͉���V%.��+W]��i�v�bԊ�[-Eu��JS�g�I��]C#[���`%�"r�qVE8�%�g��7�i{��b_
�/�t�y��O��A�V7Ƹ X�a�vwc�`)��������ը�����C�� {�%c���%�h�m��~����!0CAċ-���Ψ����>��yb
SPMRp������,2q���ĵ��)G�ƒ�+����V
�_=���:�:��c�ħ�H��%�n���@�׀dD"[d��h�mnk�RY�O�[4_:@�����1����=&���4�����u4a��tU��v���^���	���~��/jvo�WY��[�T�Kޓ���Ļ�y�{�lQ��<5����<"o��=��3V�VGZl?8�zg�����<�$V ����m�-%�a��M���ۣ�蝖���g��]���V��}�"LIy�=����lIV�w�4k��O /���%ګb!<r����-u�o{����5�E=ư�G�a����qQ9�o�E|����+-ژ�T��P�	��FE|�$RÅ��nW�J�Т� � `Fm~���qP��*^:#LH��n��fb�]k���D��c�蚠64��|�>�l�wg���G�3�R�\2�}��"�;�#GI�tJ��۬D�DY�X���QU6$���l"��`qii0q/����н�i�#�o����C%�yW ���Fu����V��JA��T!�.���ʙܪ�!׆�V•P⨍~=2������e5]΍�������e|�H���n��!Fމv�,jG�rX���M����÷6�KO!<!O��D>5��7�nʙ���\-�!��PHֆ�n�1�&-�≡r��(�0"͍ev�t�VꏤP3],>��)c�kà�aY�~�!��W�4-�������I����TG�y���F��ݗN�Uep��@�9��`������������Y��Z>kR��*�[~
I��bׄʔ
����M�؂в�Glo>�Աg�?{��N܎�p�	;�H�80'�͜Yv���*��Y�V��-Q��w=�]M3�)m6v�b桮�CΥw5�w�q���Ibж�L7�h��i�h�'%�K2����'�
H)Il�+�������PoH�����,K�ݦ��j��ݕa!�3+z{����O	�$g�:����p��ɇ:y�F���U��UZ2Ɖ�d�J�*-�!�N���#×�D� =
�Lɡم���b+���Ʈ_㈣�r�GJ�Q�d����B���#��bé���42��7c�2��U�-�B�;�f�7S��c�?mMg��)�3b;x�’m7��dݫI ����6�8|�8����9�u�NK�F�9�~�S��;�TS���P����'0F#�U��C�d|uOe?�.rb7rZം�>�5|�Ov�-J�ƀ�N�eȈGZM!�5��X�t�P�N�v�Ʃ��Z��`�1�1�����F6��`y:E���	�^LѤ��L/�-�U�2
�z�?�
��
d��S8ӊf6����=����G٦����T��������,8��掆q7(��F��,KIi�]EL�e,�r�l$I�Q��ٶ�Dh������Ѕ[8�(^
�X����n�8�6���Skz��N�����V�2�6ф�1��&EB�U����c�.%���N��gH>��1��p��BbM�x(�N��R���n)��	�>c+x��nq���7~����`���X�/�ٮ�/�#?��
�m_Q
�n�Y;̈��G�3n������B�_e/\Ȣ�JpLG����-`��̊6$[7�E��1n=3#k[{یz-�˥��C_e&�i��<�@��1+������x7r���D��XǸ�IŲ���t@�*�YE�Ĥ����yU@%�M��޷go�{�g�*w�M��lW3�:4w�QrhYo�$�Z�ar�KJ"��������P�@�Q�t`�GF�>o�U�Л�{2l6[�.٬�o6uz�4�$@�Ѻ�Ӽ���unܝ�>}���][����6�k;VO��o�|������JF��P�%�����*��>�P*P[nT��$�;}����-u	)v���q-Γb_���A?����FA�a٨��V1�;��7f]�i4#�zYݢTU�z�.�[��-��"�oVKA�F�!�S[����e
�ͦJ'�/����2�P�0���(��]e^����弓���(�rA���(��
��X�{���S0 ��j���Y�1N�)f����yX����w��"���1�Td�ɤ}Lêh�ͼ��V��V�'���(~j^t�c�9L��ݖ#��]t1ʕ����&�db�Y�D��l
�MhY{��U�(�\v�;�`j�v����0Z��~��$!:_��e���������3K�F+(�\��������2�崅N	b��֣,"-!��%d�an����Ͳ�h�V1k�oJ��A��B���-�x��2�b��Z
ɴqMjw�a�f���˪b%N���;#&H �5ׂɲr�㫉�]R�n��֕�K2J�h��H�Ee�[��++l�s����Yrc�&��3I�Ji���EỈ$�H�j�d� �;r�I=���j����q�k뷋@�ʪ�.��E ����A�p>�/��
���Z	E|9ymvi������KLjمy?%cރ�"|��W-�awᬈ�#H�D���Ҍ�֙9fXD�����W��q�/�.�:3ǐ��U�1�-��I�Dq�1�Mm�b�F̜v���da����kB�l�s/�@,���u�m���soW�?��%}<U��Kp�%/ͦbWŲ�^.P.��r�`���\�0u$���	�a�#��7lxB���N^�4��t`��6��_
TN���"�*a�d�ؿ>9&s%b*pƘ�4'm�U�jB�BRZ����N=�D�H�Y汖���yz������>��:w
r�ϐs*�h�}4������'�nO9oR��yP�r>���#����ї�.↠�"�Nc��f���[�hL��e3�k�ɋ���9if��������d������2�>�W���709�L�o�֍��/8u	�/6�}��hy���f����iR	�i����w��;��Gϣ3���ߵ����O��O�u�*��|R�uy�j�npr2J��C2K��Ty�Ьi$���@e%8*P�
p��i���x8w@��'��ǩ�,�o��RR�_��<eA��8#fB>Yx�e�<$�������:�ӻ���0�t5�Җ�{e_h����*�P(��
K%E�u~���]Fx���C�ɥY�)
h^�_�v��U�+���s�����h��E^��t���^#Y�|/k��iyڑ.���8K���eC
S�>�k2"*_�еhi��_~��wU���jCԮ�_�E��!��I�_r���v��O
4���
c�Q��VgCHS�A�B�}>S��z�ś�Ns�?{��&��/B;燊�W��P�C~y}�L)[K�8�F�_���� ����*djw�q��fb�jP�D�5�SP
�w��@O=�@gA\�����sEP��MN�lN��HE
s^��]J���7w����Fà�~�����Mp��]U� ����R�q�����<��~�O{��ߋ�}9/A���^j5$����@�AI"�Ր��NSU�<w%��0	tB�� ��E�����@�lHZ���Ҥ3��I��XZ��֛�����G���G:�<�+��<7'�*���v��LB/T�v�2"��1q׵��,���AN���	�›�(L�zڮ�6���E!.~�#�`���A,�n�齑��:��"ic���`3ٲ��4�o�c^H�s�j,��2YB�V`�Y�R6��ɀLEF�ODa ��$��A�K��w���Me4���j�m���)~��r�Dɣ��AZ-�ˆ~Ȕ�N�E(w�Bj�$���p�C�j�!�2m�<Wf�ӷ�#��o�ߖ�>��&Yq1�sA�R�U�2�ØF&</4��Q�.TQ�km���m��"/�ua�b`rR�]X�Î��{f��D���Yq�~+�(�#�Ԅ����,C�`�����]Җc�o����3����}|!�	
�
j�LF�󧖗��I��=�n+fl�M�����0
dB*��_lFS��V�8�󌼺�B��2B��f@P&��)тT���f)g����P&��F�,i�XM�~��4���,�rd(�7-�&�y/1�sT�5�& �Ǭ*�{c�%g�%���	΁�
;���xȿ�b�{�Ȭ��bI�A��f�]PbEo<}Bo��Sw��ʼ�st��?b�F���7mN�D|��r�VpR��[��O#=�������~�q:����<v4�GJs�x�Q����?��y>|:ܷyefc�{�#�odT�i�b��'p�����&��a�(�P��� Jc�z�sc07�ur�(�:$���X�/ƝG��E�N���XМC����3n�3�񄓙A��k���D�p��?0�@ܵ��݊�8U,�w�e��g1�����h�P�:�z�K]�Ci�7�'��.��.s���ٚ-F{Ly����f0Qc����6[������-�{����첶~�>s��ѻL�lX��b�=���o�El�=y�.3:����˞�����r�N�er���c�f�ՠ��I�΁~p���4{�z�;�A����'u���'��}�ܷ�xtv��H���Ĩ�T;
���8Л�3q�X��0Vgq�J�+a��#�k�ދ[�M��<���u��~}L�E�����~��(�-�K0Ҽ����4F��(��m�Qz�O����B"����&��
�EJ��?��"B���?%8/@L�*O����X��we4�Q�`nAބ��h�i\��|�F-��)�\�Q����2BH��v?��� �"���cW�l�j���i��ט
i�i��|�$֒c���|Ͷ�l�r�W~�K���)�L}�~���pF��f���_��`�V���Cq.�-�W��r�C�T�6X��O����Y�Ba"�M�#�*��Lrx�bǷ�a�k
iƴ�zReb �@�/	fϨי�Q+�@%���^������ PЫZ*���B�m��y��|k�|5�V�'�?ְ��Y
x�k#����(�N����H��;��ٺ�)�DRX�٩\.�w�תlx�B������>S0���&��ʊR�u��>qv�U��˿�iN��-8�/x](FPX�҉�Dᦹb<I�L��?�7z����g�ǯ?�_�]���&[{�kK��K�C���̲�آ� ��]�Ǿ
\o�ir�����7(\��k���uuZ(`nW��cr�پ�{	��$�5:s���E�
�S�t!4�_��跞TEiQ�䗯��x�u��#��z	{��������P-#0ld�Dr��i��%,�&C�A��>.t�\�n4^W�H��-���]c���â�����$W��w����G��W	q������d�k�"�z�8
ly�+�8�;3I�R�=��e��1�#7���CU�~
�+y��j?8
��9�Ь���8�oa�2*��?x�]A�C�Z�D���6Ea��F:�bEL����<��b�j�@����NҌ��.0ԠDM� pI����{�0�D+
%� I^gŽJF��[vU�י��j܁��a��}���Wv��ڟ�-%hd���N�v��è^��ʰ�	�L���f�h�9�E�9�ﺽХu%J+��$�Au�0�KN�����ʶT���?�1��'4�z��q�����0]�6�c>�Pl1��w~�V2�}s��(„�^Q�l�9tVZI��gM�\�
COSR-�yڼIVU�Z��O--ēt'�zBF>�yQpܸ�[z[�\c�P��.��`�،�R���!8�">���R�>3{�H=/�D��� �ab����m�h{���J�,��5�k�_���Lt�`�:���f)^��|��IM��!�h	j��;q�c!��]
�Žq;_�l�b:0B`�ƛ�>�DTс�n2wa"����f2�P׍�ҠV���bu�Ve��ɴ��2'����BR��/�A�# �Н�DPŗv�ՎxT '�!�X�L`�b�p4���P�9��s�Frޔ-rZ=S}Z���}�14�4Y�u����ҴV�}�ϼ4'zݠ��oT0*��	fM�g�L�k�\�a��H�Fl
��Op�MYُ����F��!g��X�7���j�f�|_�ݿ�g�A�	�kI3����,%u9���(-��EH��E�A4��#<%/�ϝ�bk�� t*�	�2�~_4^��@�e������̐fsZ�k��C�G�}��@)��I�D����i�v��2JA�3D\�yd�#u�Fxt����Q7�f�������J��L;\Ǣ�d�D�4eD����0��W�ǪuQ��$>O�;�W��^��z�j7��z���#��*��x:����w�'�Kg��@���"���0&�y���̾�{)/���3x= r��K3���V��:a��~G�V,�� BN��u�	]�tE�lD��8+�	#Ğu�W�
W#�]#	��a
�\����+9�y��e�s��"�˗l�\,� GHK\f�� �&J���B���s��Y�#��
1�3���
ݽ`_Q�Ph�g��<e�.������7�z�yw5��D��[�~�gع�ݺR�a*v�`� ]Ի�����ȿ�#a���rw%?x��1��J��)ML�Au`-e_iM�cn�`J�%]��
ga]2�۞x�w?�Ϥn/��4jN��教��Tj�+ɥFk�/̤��S�QG��e�%�Q���eR����r�Q[�&���%R�ʤ���Կo&��Ӌ�C+�O�F��C��4/X+ͰF�)�E���^����'��^׳z@������L��_�4�z��/K*k���R�1)�P����eY�!	˙Ԩ�����FQ�]��
�p���t��8
���.��I��arA�Q�M��q�]��6��?�/N�(/�;;�3�I?}��δ��;����f>�Ï�YQ�����;˦r��<��=��=A�qT&��������,������A���/�:��(�Z�Y-�`ew�lϵx+
�Fm6>PD,F`@��1� ��
�b�۞�1>Ls�fFE�9+F��r�GQ[�Q\T/�;�Io�>9���y�m>�uY�^�(���^pp�+�#�����0vt
�g�B���<�.wu����s���>d�#�Uν��[?��܆^�A���)?�.H�g�⵩�<�W���g��U
��������¨m�u�����ϵ��/TI!�� 	��2Y�E��řfB�T���Ww��+�@�ϒߐ���_����>���//<|/͚(X=�1��G�8�����@8Y�#����л�i=�f�d+
D{��K[��%p�I�I�a4@<��P���5U���n-�l��s�~Zr�s�g��!�e�4�*$rق�+}�>,rŇ1X����^YA��d���T�?6���t��'d�r��]j��n�b�0����O)Q�%Rc{�EF5��L0h����j����/����/d�3z�A�y�΁��1\:ی;+�(g��_!�2�H)����㬹�2��t"=) S�2��	B$P��Z��
N_�p����h�b�"A:�A�i���h�=��!��{�V?��v�YjCr��G�'^��j�
��.h��R����@� ��$%[����%
��q�I;o�v�\���X����%Ac�K��,�S���ve�HP�
�7]�r_2,�J��.�*IT�>�YHԾ�IFp5DE_(Q����[��[�A�����ֈ8FG���y!�tg��^x�)n5���sZLD��~w���!�Q,A���40�\ICLD"^QŅ��f��ּ_F(�j��:LR4���Q��Bu:��z^[�ϲ�����LI�^����U����0�;P���a	� k��{a�&�����A;�o�0���
���`��������(��%��<ao��O��A�����诏ߜ]�ˮ� ���С��^ɋ�2e��^�Α&Rp�ù�sW� ec{H�#��=ĸ93A+��E\�TAl�
�k(������i�؏��pE�|%�LAL���K���A��0}F��?�����V��zj�M:��d�C��U����Qm?�@��^m�I�D�*@ʷd�?�������ᆞ���kQ����"��̬+�EC�eʤ�b�L|���%�/�� I"fw�3����9
�!���8�1%��kb�a�:{Ⱥ�Y��+�NV�˾ݳ
�{�B���Uy�1��mK��u%wd^,�U��v_9Ar�J���t�kH��l���Ċ}V���;
���٘r�����J"R�om�$R��±V
+ג7!��m;ڦ e6�
���[���jP��Xp���Ѐ
� �2���'���V�DŽ����j�V1~-_��Guu����'�[t�4d�ƛsd�t`��b�r��XAf�xs�
+�܆6���dʹ��]?�����)U�d�=��,����)��3o�
U)��MERNo�@�9����Q	,�#��E6?t ��^=��
��fV����xsv�Uv��W�Y�iT�I�����:k>����T���	k��9�REm4@��	*Vl{��D!C�}�
�!2��bC�Y\��"�%|������1I����W:	�s�S?hOd�w���u���w��J�rsR�	7v�P�+?mT�@A
>^e�����X=5��"Kw�G<����N��9ӌ�ò(��R��n���j��7�Q1ހUp.����U=h�u=�w��7�F�k�۳xsv{�{2=}χʐ�Ʈ���_%Ȁ���N_47�b/�j�y%D�R	��"Z,`����f6�'9��
tQB�U�������4;)N�~tpm��OM�
���\���h��&�ȷ����VoI���͹���9m�$��4�5�������p����(���E�jj1w��]G�}���pq;��.�����/Z�y�?���؂�U���~���LW�7��D>��ʷ^��"o�a����\]��ܥ�4�n��j�@\F��'Y�ƌ��nC{�G{/^�g�^�XY��}�t�)z�m�����w�7ɫ�����q�Y��Hs`S+�6QN�N��~�3�u��4[f����4$	�l֔ϩ��r���g3��M�/��Lț±�<ׁ���Z;C������Z�]A��q0a�-4�h�c��U~���	r g�J��N��*S6��ޞm5��b���S��l�CN�'��q53���䥉LA���9s1z�����I�`=Y�"���Y�Nka
��>&���di�>�4�q���ֺC=/	K)�)a@�á�K��W�ʃ��.I�^ȣ����~U�-���$*e�ҙ������M�4+��T���8[59�$�udq���
f؜��ߨS�������S��J^��8]Q�6��d�.2�6U�yz��|��R�8 b^"ߞ��O�ehW�T�nY����(G�:����E�™tA{(�}A.��vs���>�

P�s��,��w�FL;��0��1�$e�$�ҿ�ư.�]ke(��Έyº�h�Ӓ�
�Kia���!�\��/t*�;
�T����{��a�{(�+�A��6($�8���Q.˨_q�qq��un.�:�f�72��D.��(fɼ��ؘ���@
��j�sVײ@�##�c�[��S'6�Y�Nc��r�I7Nh:e'8��hc\<81�;CP����{�Xs�!xY&
�`p�B��"�G�{�G�?c��}f4l�|C*R��0
_ݪ��yҍ@y��"�DXǫ���/ޝ��怐��jB���_��|’B�8[��8X�p	J$�*/��zi�~Uq�OI�5�����4	!KAc��5���������]�$mZRϘ�?��|$�"I+�WS�BFH�W
�G���M��.�p�VN�bb9��e��-���4K-mM�2wY%Ƨ��4�n��J�|�aYj�K2�����\{�bU���*����q�cѽz-=@Z�'Uw��8VR�;=ϩP��h*�Qe�a�3�����Jf�e�n�ι�t�	*�������H�ѭ�
>�����XP�UҦR�=�$~,�U56'59�Z)�%r��%~#Ѧ�G�M�?��ќw3.���.�Ew+�a���O��׼8�3��-�p�ɭ�g�Mb���\;�����I'xrS�R�J�&Pi�Y�B�O.$�`p-��������R����H��?)�ˎs>0v
̦��@O������<5�U�tkk�t�t�,��~I�U���+��
�1'�.�5��b�n*K�O�)�Ng�]6)/�C�ll�"������c����5h�e��!����T�F1!�ň��A��EǗ,v��o��-���Vy
+T���m��o�n/��ʫ����2����,f��ٖ�P^�K1-�ńKf�?�t=�ԓ��	�â�ZF6��du��S�@E���]�i�wv~yr�n��[om1R@�Ǿ[��V�ƞ?1�������o�ju��m��u�h��f�4��"�Z)����j)[�[¢)�VI!���4�Ct��K��*gZ~
�O�YZD��FK���T߉���9��/�O�����k��n%7M6�)�Yy��b�C6~}�=��s:�8;s��u?9:;�K?y{��q$՚`�#���r��C�%r��b�f��ܡ���@�Da>F㳃�/[�8��'�lX�QOWeN�J.S����5_�8��kMK,�*L�~���]�������rFf,8��5l�`�<����b��?�4�H���lˌs�x��[ ��Sb���'F3��>����=$4Έ��K�x3��'��/�\���'�()�#�P�m������StS�C�{ۑ�'�������:f��\��i��
��{mmɵQ�'�8D�K�%Z���
�o�
?L���/���Okvq|y1L�|T����0hCl�ѯ�Fy�W!�a���ų������b�(�=>�p�|��/�Q>y����P��rfT����\���S_���p8�2����W��Z��A�E-i^��$z�Ґ\ř������V�-E���4p�0�}�����qwm�w��~j��^H�摄��HNq���3k&;4κ�Z.p"�	�tE��ٯ;tD4���A(�Z�/~%�B���+��~Hg�I�H|�֍�:ѕc8��#X�j��H��k�������$E�GK�u�aCOE�;)v�,�7�0L~�g�IZ!=,�^e��y�K|�%͈�H�]
~�*~��sLW]������<
c)��)�W���猢״#+lǰ�r�Ŷ���ͽ��9�f�ȯ��Q46�/�ꚍ��0���f1��Q�v���ʚ�z�xI-2ם�
�}n���������q��I+W��lҒ�fPCT�f��[D&RP�l�&%�T�tq���u�F@�/��"��,9#H�p�Ir���������_�����fDB�`�+GWTϲl!Ň�rY�[Ԭ�z���U
�+s�� ��a�i�Y�ʛ�=`�K�|�]ĝIg�eeڛ�z�
9O�v�s0�=�:��3�%'����	��NI�7惧007��Ueם�������3Y���c'`�~��j�v`�-M=V�ȇ�u�1��dWZX����#Ҹ-u��)
���-�����dz�����T����6������D<��
��7�VnG䩉~�V&%���e���GT��r�����;3-��bLy9E�s��;��l���S>_��~��#�tk�"���sf�læm8��b,�����4ݗa'Bс}Iy��Գ"e���*k�ZB	��+;��ꜿ|-ɾ�fе�"�󭜰����ĈmK�r�c��H�8� dYp��b��=4)�|}-�{��S��=���Z~��:�g�:F�0
ߧ����OX�M�F���.��-�0�����JA�f��L�+mtZ.9�����g���������N��2�Ų�pj�����쓜��Ȃ��9�N.�����lV�u�Of���$�����$C�!�#�?-!ny� ��F�$��K�����]��l�we�1�	m.�݅����贃<�
x����Qx����Ȭ>�;X԰3��DUL8��;��P$�Au�#�
��q�
�q(�'k<M	A�\[VbQ.����C�n�^1��k�+'�C���2��h�M�3Ä<�Y*�dI�����÷��uzn:�w�S��Q6�$
h&?ɴ���[�A��h�p�Hg;u3%��,f�IjJ�Ѻs��i�����R��+��csA���"7��Z�uX	��!���e�0�f���y�ׯDUa�[Se�mH��Ub�QdJ��GIhj!��x�s���l���$LfF�GN��#ر~W��KRAfK�6#vY�(�펢�Y�':���RY?����3\�;�
�>E�o�S9�v���FQ��K���Z����I�=:�ج8X�k9{�.1$N�T~+v���y>kS;	��o:P��NԊ���;OT��#����
.�=�O�M�x��=��)����r
����B��k�X�8�cEC4�.�3�Z_���I����a(ꃎ����ځQ\�
���hpx~B豃pGy����ǘ]�:ݤ�u��v���NZ��)�N�6N��V�2��rO5B !{/��Sq�({���ᓝ�ç$�$(�N�7�.�}��ػ㣄S����X�*�$��4����Yc,�5%P�_؎��c�B�V�xS�M�i�OW���/+ ����`H���ܚ$W��_kOEb�lҮ� [iՀ�D�zx�af�kʶ���)���q[U�ΤW�w�_�m������MGq���\'�"�%�ȡ^��0F��z:�:��^y��[�U�;i�;��(`,I�a���h�R۷��1��d�GH��C�
�~�_���&[wK-�bj5�Bt�&��*���8A�7����V�Qɚ�o�&gr�����_���S:��M>�6�D��ճ�a�N��#n��;��N����9�lHml�l�;�Nb�X��N���#�����md�
�W�����_q�7�"˦����?��EE����I���FM)�c��R�mQ���*g��}M�_C�{�3��I�n(�a��'���ɚ?U���Uik��_��R$p��B>�ԟ��s�'�si>ߚ�H�b����w���u�s��%��^��,�
�*�$}��H�Ƭ���|��f2�+�6�Qq�Ռ�R|��`��B#�+�����L\a���c�TH�8C�9�:�����+�G�O0���#���+꼾>>]�!�1��!�aX�N�X�	&P�Ǩs�7m��ܔ����
S/�܍�����XCsIG5r9��2�L�A��R������e�	���s��`�"�q\�"LkM돚��;J�Y�[׵��B����@�$pr�l{͊k��g���H��&3��Ы`�l0g�����i8!U��i��H���F�������;�0��)+��G��a$�S>�V��lN�P)�=<��U��[�;v��X1���^ݯkGf��	'��I�|WN�+͓�����	��Q�.!C�vpڋ�X����Y1��>������r�=#�C����=�]�[��s�ɖQ��P�RR~:�irm��W~���u�Ȅ��v�|4m'<W���gG��*�q�8�o�Zđ�������2����ӷ�����k�N3�Z+f`b飑�H���{�=�^ǗK\)T��[���?�'(���C�J*��%0��6��)�)�V��$7���ߞ>iw���3]�e���V��U~��U������*{3��m�����VY�B��g����=��t}~6�'aX
!#=,bd;h��qUm6�=�eb��ß3K�OD�
sf������ό��9H��7A��6����%���2)��A�� S��ҔNƒ�/۝a�FsJ&L�3������ϻ	w+HZ��?��&�\XF���hd8
[Hs��K��e@m��M�3�pm%�6�J�˓{M�;]�
�FU9ʅ��;F؝V��I���c�k%<$��d�p��� �
�Nf���N[B���D�	��dJ�H4Ħ7Y���5r��E�:�f�Vi&��UJ�A�$���<:Oޤ»�l	��ӽ'�k��6��U����˥1���|�û��ǧ����4	Za���������z�MJ	�u���<�5�8�A�;�v��w2�czH>�k�J0�'9Y+r�s
�_��P�H�XVn��E6+�f {i�|u�΂�W�ӝiE��1K�,ł>i�J��py����W/I�}I9�uK�%Ĭ����'��ӳ�W/$��\�޻�g->N8�����_��M�>���^A��j���g��Yb^�-C��K�2w7�C_�~G���O:g���g{�ێ]�¦��ꐿK��ci�E�C]N@@�+�SV�W
<n�o<,����3�������tMJL���d������A�K�t�n<-�~���ϩ�2���xޛYv�N�-�.dZ�tGƜ���!�2�W���YP�.iR��s{�;���
�_���Ӷ��8�6��K�ko<Ep[0�/��Ӱ-N��wlu���q,/��6�3��?+ڳ���cS�^R[$I'13��F}��R
�bČ:���vup���,|��f�Z){�Lw���k�:I��yd���m�i ��Π���	;��i�Z�
w��wf#Re�p��"�dM�o���rm
�Q�X�--b�-@�>uȎ���p����<Rb4Vdw~c��
���nc3Q]N�����ٻ/���2^iE��"/��Z��&/葀�h�-�KjK;fE�]��������#pV��'��v�x�r��`�/�|��n�E���W�b�ۋ=�>�{n?|�I�9o��/3��2n����-���V��/�oث]�ڬW9��5��b6��{2���u^*�M>
V~�$�<�CNGۉ��"P�x%�w*K�`J]��Ƽ'୫��nJی����kX���byU�7gU]��/N�����&��iXg;F��;�ʧo�����F���n��K1�n�i�T�ļ�5�/���+�!#z���^_"����Qh<{*Ie�G&�
C'��K��Zd7�i��]����F�q�nĥN�v��e�Q��Ǐ�P���u�oюY&���X�3*ԟ��|S,iQА�#�<�G�:y�ew�X$��
������J�#�j�ID�[k������dc�&c>j@�l�48���7,�Kih��{�@[#��!*T#�n�:�gF�Z1�g��(@xK��Ԋr���
/	�����u��O��o���
���7���}V��ޏy�����{wLꡨ	Tz��J�3�ƢfX�wq</	��K���L�'�F#N6!`ҵ���f�.�3�C����y:�����l�
�͈��@Z����^�O�{T�Y
}
~	HQ�m��+�4���g
�_O�b7���I�Ҋ�#S
�8&�N��	���)o��˻Ϋ�Y!�D���OA�y�5�e��q��@v	y�3���#��ǛN�AZO�<N\��
��oG��iWڼ$�n�l�Ku�#���c���L�|�=��o9aabK̄)R��A���+ļKب^����W��yi�н�o]��"�3HN�R��o�O\=*���ހ���=���j�h���5�R�&{c&,s��o5� W����:���fN�27�yZ����n�->W~|'�k���JH�'FpÉ5�P��e3V
1$��9�8�����u�J|�y����� ?�Q�<|�_���Ij�.�swZ�b��.��Ҹ�*�@�W��b�hV:F�޼�L�9E������
��
(������v��OJ^��n~/1�%�����#�>@�c	��q��]$�+\�Fx�»�Cr2�[,@a�g��w4�93n��:*�@\��
uV�!d=]�ŋ:�׫����f��@��Va{�L�(�գ�G��K-�ˤ�R���V��RX�@c�(무��!hs�]
Jui�����J��<�۪v���v|�Bo"b)9�܌�<����p��v��~��^�ߦ~j%��)��O�pcxQ�����
�<aI�<K�h��'���>�7E�:�B!�h�q�DHĬP*�*�y�N�鍰�~���:ep��d�	p5�z�B�AJ���I�zV��f�=O)5_�h~?�eu��F��Q��.d-���+�k䞑�X�40/�Y�	��A�0JV%ɵ�6�ʳ�סW��P�菽>�w��{p������
I~h�l#��!��Lz����������/�M��5������D�d"-rC��休<!��tu�,����ٓ���U.J�&�#�*�e�e�����Z���CsQJ\9�w
�]^�le��F &H[�hm���@�Rh<��ZV����]zߺ�͌�4�YE��*�U�LnL[�oR�o�h,d�*~+W�g%4s�#3�-�Ĉr�iu���k���ds��[�(ՓM���ޕ��f[���-'T�K�ǩ\'Z�*��dbV�#��@t�TV6'����%J�H���-��8�UH
S�X�0V�z�#P�d��D�����p���>�>n�Z�.�x��v��0�+P�o�����O�N۲�IA���V	�B�H{"V�}ǬQ�- 7�T���b�I@X2�Z�DYO�|�Rnknۭ�p�]���t)g��u$A�[f�TF��c����u�k��7G�ҭmɈL#��}j�޿�f�d?��1�'�K�
�x�Xn��W�0�h��#8z)K���x�m:%��'�;�s?��܌G���"̙�<��a�e�
�0l(Ί�y�+�n~���RW�Hm��
}�������6X��z�4���09s�d�fSMĘ��ʵ�p�P2Խ�Z��+~	�93�D��A�4���A��r8�ii����1g�^䈳C�6"�,��E
��D�@sa'��)��{��D��t��ava�x�+���>�J#���Y:B�*w��%f�I���{����\Zl��e����l�+8�I��	�?��1b�7�S��˜�+�09�U.?��	��Q��}M�L��8*Mڻ�ӷ��I���#`����	a��,l߱�q�2M]_�Օ�5�u���;)ɭ����;f;z�K�.[��_0چ���.�)U�%��5YM����w�I����ѣۢ��|sIo���o�O�fE4��+O3���ILO�W�>>�G��B	1_W^��X���C�<�w���Ǣ��~�_#��ɱ��!&W�����ٌ]\+�(�b�CT$�x|�3����C�+���Lz�E�#�L�z�����ꖁGԜtQ�����H�?��d��ɽY'��5��!z�2�,��r��ꚲ��8>��妢���o_h:=Vu�L��O6_n�s��E��p������O�Y!�"N�/a�
.&t]{�}%6��/H�k�s#_]uR�	})Z^���m �:��vG-oVDa��č���s�KM5y��3<������^E��m��Q��(²W��f��'���5/��a��DeC�g�g�䨨�{9Uu�������2v/�&�A\
-���È�Ê��������`����p$���eM7�Vi�ԕ�G�0�ƳO�dٴ�#|�K�ѭ-5Z��ᠷ-�>
Y(�XO�\e�ws���=��7��>m��ySG9�2�;�ɡ���Wu�����s��Iw~d%~0������;�㊭G\bo]���`V��EG�;U�<�Cʀ���,��4!F���31bA^�j��T���ٶʑh��6��2D]ԟ}�t̄�3_х�C��.�����{��:9�|�̬����a�Y1Y�O�he@vH��Ӝgs
��{�^�X��xsS����$�	bb�}1�y�n=�7zm!/ęQ���śk�`�E�X��Iă��Ȱڞi�)�<MV^�Rw_��A��5�|J�ӑ�?C��/Bh��^�mڗ݊U��d&e�����������D4O��B`2�P����k����(v������&�Y"��xs$�bp%$����}��d˅pH�*E�i���݌�4ǥ�PGU��d�N��6SɹZ���(It�>|���$[csc{($o�"�;�ܳϟ=��V�_N�S}JNr��Bi�o�{�1����Wi��D�fp�2�v���R�$燢p-�}�.x���A��FIϗ㙹�Fĺ�)9ͅ�RlM�[u��Q�����+w�}�����zy5X5�OY�qo)�g.�G�'K��N�z��h �w�5��L�Z(��P��N�({�S�f��I>���	/^�D���EV
�
8��=�f^�1î�Bܚ�e��wch��� �8�q� ��&
�"MG
V��}��i$�*��W����0q��U�������9xei�L��^\��s��-�O��v>%7y���Q�6��+0��GI�D7V'VH�*sV�y��u�kW����_��4Y���%�N�Z��Ƥ��R_xf��yh�hm�J�Y0�\R�.���4]
�q"��e��,
c˘����?�6�L�PbZ"�T5�NJ
�[������}�	}l$����b��g���ҟ��|\����ܛ	ԟ�ADg������Òr2A�%����D+֙�Mx�<@�xRt���b��,	���*�W��G�K��"�K*�N-%����Hm'p�϶od=���>��ַ�#�� �R	]�>��p�m�Ps��w����s�ܩ�`4C^v���XK�9�f�:�'.
�aϊ¥�s�T�_�����5��s��F��I̍��zAY�m
�`�R¯o����G�⯚��#�\F��F�L-W�.�6��d��a��}���6?�Ӡc����M���͗U��'���O�G�(@f��ej@�kjJ�@�Mʾ���!�q���/`F�<�my�"Z�p<���D
�p��pziwfVO��y��ۊ��<k�ۜT���'z��n�yW����f�A?K\a7k�`ﶢgv�D���|��nd�#��C��e��yb��E�r.*���8�N�5��������^O#��$�.�b�m]��o�$���!�a<�������F1q�� �=�I�uQ�;��I��RX�}p?��BW�U)̡�;�ý�)�P�3��ս�R�X��@�9],�`ެ��\d�����mF���y�9aՅ!1��|P��Z�F\h�=!T�L��X��Vn^�>���Ј����Y7�{�	��n��J)<d�h�b��պ0�f[r�TQ�M6カ	1H:R��9�p�Ժ�K��J�R��]�Vd]����xFru�?p���!UV)���2�Q���"Jr$�#GK(?ު�&TM/؎��t�8���+����}�H���q:7�9�R9��OG|thMc��Z�J2�B��4B��~Q���*�r��OK��#?�y�a[r�ց�J)��ڃ�gjg��Y/+��~X�S�m����+ze��J~���ԯ����>��{�s�u���]�a��Uֺ�>������a�W��7Hy���E���ଓ�#2Z����ա�Yd�a��0�`��ϟ��@�'�!t

�}���l�p�-e��6#@�#���X<x\�o��m9D�����b!���[�1����8D��֔�Gv�r�.U�%!�h��g��ag4�v'k&z���?k~?�.^�9��~�G�}LB����)�:��K��b<Ac�>|���C!�
��,��Dq�'#A��/ȉ�~�G�Gw��=��P�:約�M�:/���,N{��])M�@�S<ػT@X�Z�|��?�ǓO�T�a#
�XF�㊜[
˯X��?�=�x6�v��W���:=�/�Mx���`�Goc���@%��,�2��i�P�Rf!jO��
Ύz��[>Q���>����+z����Gp�R�Vꎏ�'��⑮�;����Ф�Y]>��
x4"�������p��.E�p�.��mM=�e"��=ί}�&"�g��Z�2g�9�i��'z���%}r�]��A����ԣ���a>Xߜ·��H|�Rs�Uu�k���&��&<l��M��VO�m�ƢN���0���b�+���g�@�"UR툯Yݧ��r�o�4�����C���kNk���۝c�"�f�tԖ�X���%��O�^��X)
{�V(x|Qy]/�`oNN�mV��҄W� ��+
��Q)E��Ϭh�q���'g�������]��r
ݡT����8�_C�9�!��S"ɂ;S��9`Y%	v���"�*�6�p��J[�p��=W���˹��q��\���q�$^�+#�	0���(~Ro���/�^�R�WC����H\�����N��?�_�����^��O�����򛾶�s�m�� p�_�Dт_�ᰉ@|��>�	�Ji�:��S�����T_���H��qxz��'AY���
K;���Q��Cj|w&�y	�xPgF�M)⯰�Աz�'\�!Ϊ��8�-����t�T�*��u2�ݷU^DQ�PhHZ�M*/�4d 
WO�ױށ���br��:mw	t/gPն=V��עT˂�7u6�Z�}�'1��2
�
N�
�,��:ى�F����6�/�e�q]�WӰ`ʈ$�As�����j=#�yLs)<_��C����KdCpm����:����Fb��1r�3Ԉߞ�(�����)�R��ӗ��P�H��U���C.֎hKwF}�h�[u�g���Ɗڠ�-�枕utqLi�h�ț�^������9��ic�j�8~�$վ8�$�!��7܄����g���ͭ�Z
7�'-����‘;�$�\Ac���V����2x|��"�{�T���2F�5�� :;���k�=&�I�Cn)����h� �)��*R/=^^�4(�M+ZQ��G����Y�LL��
����oSԖ���Yw�HS#i��g���g�6n~S#� �b���ert���K��-����كD�Lj��)	�֒��b�J���ƫѥ���s��/�HBDK+-)�ySpm$���ڜ�Skt�ў���{�����BN�ˏ����9BJq�r���4��m�;�J0*:{
$�,����?������S>����?� '�I@ܛOE+��Bee�Q���B+�!R̔����Kb��U��.ٵ�LYL�)�׀6��tW��6Ǵ����K����Ll�\i�+��s5O��#�ٴn(��ڥ����C\G�����|��~���|��Π<�Yw_x�}�h��\|-��\e���L�	B��'`�'�K���������9�mP�v�	a0~D��n*����/�K�x���:@d��E���m��-����{�L�ٹI��]/�!�,�eh�:ԗ"һ.j�ޮ�aQAy
M���K�eQ���ɢE��0O�;);�8ӓ������ìЮ�2f�G�Ѝ�l��a0]o<{n<w�)燣�pK��@+R%���F'�`�e�k���޵&�=��8�=�+i�Q��2�tC#wڼ�{O"���G�G�}d�O�S���IU����
 ���<8PT� ��^�S�ܰ��M�V�r&?j̑~GTM<�W��}�u���k�P��5�Yc��y���J��;K�#�L�)fsŜ�� K���������u��W8�Zȭ�̈�G��Λ]	�l1F�7u*L4  <��E�+OA�ci|N�N`Y���p- j�J]�h{��VX{��/;"f���������^�fZm[�R�fNq�Q��z�?�=�~ɴ�ąt�[��.	��|�I&�P�6��By��!N�.���!��
�t�/L�jpO�r
����~:6BU�9��+�5�zY��1�"7&�XhT쳌�eF2gm��Hʫ�j�1j���,���";"]�](lx?#󁞰P+�rgj�,֥�U� W��}/�����{����_�_�}$��
+鰖����9�^��2Hk�����JbSʾ�I�]VSI_��S��g{�����eb/}|?� "ր�ΕmI�	�N}0qNK��q�GA��=����)�O�";�����%��-�7��C��J@3�ڷ�ތ=�
!5e���=�H�(f| Z �O�z���)i�D)��*�,xS�s��gR�~jU�+�c�����rOx�m6��Z���ѵ�b�AGK�RI�]/��!����[)f�	v�>��kb���-�?\k|H�7�&̔�0���_=��`�/�˵�1л�<�}e�w4ae3�e��rW�LK�{M�ep8�43�&L��i� I;���6L�r�džFҝ�9�Sމv����;�O�;rP<�\���k�j:m[N�X�F`�cb1b
Š����31}�-�]����7c:����߈_�X!��\rx�/}.��</,�����Z���l���t<W����T(=�+�py��)�K��
Erh��4���Գ埾��A�9�^|�g}��1+u ~�,�䎾M޾~F�<�Y��(�S���w^c���)Wl.��l�~T�|����U���e�n�gO���D�Q\�]9Q�Xh�'%6|
�9���{�|���"Q����x�>�ϒ�(/<��o���FrX����{�E�i|�51(-zn���)
���*3CD�:��UE@���G���g�u��]��V�"��}�K	�H�S��ٵL�
�4���Zi�ϟ�Υ�1ݼ43@2v��s��d)-Q�%}���兤��?_�~���<�^�̞�S����$���FYc���g�u�c�<�-���:(Z<����7���7>���)Ee����3NfD�=S�p�2t��>%'�����3���QUE��(�w%�na��gx;ݘ[m� '��Ww�?{��Y�4k{�{�}s5�JANZ�E���������_��>�*C�`�"pB��^s�G,'9�,���;I2_�P�u�s�%[�vD�潶珞\�\prDQ`6�-�<��U�>C��J㩙�D�}FTJq2�t�M>ꑱmD�zj��v��q�p�򮹸�P9lh��(��������+��s�dJ�׬��o�e��}v�Q� 
)����yjn��G�/
��.�{�
�j��PZr�w�����Ů�~��cv�v��X,�\��^��u�6K�y�{gDQǹ�׼Po[Dž�/��#�#,NBW�"��]�#��O�������Ģ�DT��%o��Y��M|a���/�=�%;T�~yq�K�Om�uZ��v2��
�Y��ʇ���}\V�hB�(���}&6e���r�;E����\~{��<������ּ�1:>NOGg�ak�����ec���ca\�y&x�tvG �W9��	a��]�Ys��h���Q���&2l$�;�0��0�������]�b'���~sL�~�5nf�Z�W�eM=I�&�i<��8��Y����{q|���T,�5o�)�Y!Ubi�0�1s��s�p���n]���9�$U����绻�k��C.i3�z|ǵ�zL�
�vE�;�����]������'�(�P��opǍ����$�YE�fXV�;�h@�7�B�Mڢ��4����ѯ_1�v�#W���Gh��394��|�@��E�_+J�i>AL=3�S�a4-c@�`2"�"�2q������j�[�qoP<�������^�Z:��?�3���A�qt.�|��O7B�lѕ�Z1�7a�2@�g���ၙ����ΰ�ov�釪N��7:u��A�/�௚�գ�#F0P�����7�."
� �Ȗ�FWv���ww��>�{�����wp����No�Խ�zE�f�=θ�َ����z>��<>��`j�xgހ^�������ury��M���ϥ�{�=��ħe�cщn?K�����?|#<��}��p�>��'9B�ƽ$�A�]�ũ\����;�o�XLRj����l��e�}¨۲��Y�������.#�1�9���d�	������u��ɻo?�����4k��,IJ��\ҧ���Sߧޘ��q��o
o7~5O��7�fE:��퐝�Ӕ؎h��|�ϛc���,���c�}L>��Oҵ��N�P�"�+�?"�����E��]F0�63�Q�]��P�%O'�]꺣G�)��P>'�^H:!��G����'�B����mג� �=�⢖��Hq+y��G��./�:�I�$H�I��;���F����ȺcRnM�b�ss$���������-`s�'d�s�i�|R��Y#j����ܲW��;!!IX�RI%��e�5�:?�-ْ!<��k�ls-��U��sG�u���d��XV|,�'�▱9��j�2^j
?�,��6���Tk������%���Œ��aB�hS�7�{F]��)��r����x�ɣ�~R�X�ٓ�[#PP����1��Q.�
$م�F$�jy�	����장A^�:҉G}c�Q���9�{�@R#Oů����4�����'}a�zò�$[F�=L~P
 cD2�I>ۓK81�!�S|���G�)V5�?��JD*2Y�f#_kV+4��Kacwmm3�,m"v�Q���0��g���N:Qv���m���w�Zel�˿!��Ω\�RuRKV���&ʌy�p|}&�E��0�R>:r�a��@��ɶ@���z���}�b;��e���mv���s�)�ϑ^�;�T�����\�#�_^�s�����.��7f�z1:;�n�*'3��Cʫ���F�4�dq`�t�7������$󠺋rû�x����D�\fҗqƐeĎ�U����Μcso��MwЪq��fk��߶j%ҭ�״:�l�g��)�d~/H����肟���מ�cF9)�m�j] ã2�/�0N��N�o�y�Mk�kZa�����Ӛ��>�K���Q)
�$Kg����#��d���y�[�s��-��I)��ԗ�ժ����k܆�E�Oè���ڕ�v��/}ki&��Rܶ7��+[0[��A��SQh$pw^���1n�9I�@Jt���b�8GOݑzf�[�ȕ'����P>��[jVA��1h?㲵t�B� 9��*e{G$
�I2�-ҹfG7m-E�v�:���vg���&@��JNd�na���i�x�B���~2�23����������
�҆�e�R<�?{�u��DT(�%�FRa�a{�}M@�Ge�O��r�S�֕����ླྀ3��/I���Z��KD���<9��w��C���u�yO��^C|0�{;�)��~'[���@�[�M՗P�Ϝ%���(s�2�i)���oU?������Qd%�����kͰ0;����7�� �����	L"3sH���R���/�lb,�$�m$�Y�&�d�ݰ�r�_�4'n��2l��
A/s�}�~�{�zeow� ���@jV���ŋU�6
��g�ns@��j3bـ�Sk������6��Y�FL�Fb�F��Ђrs�}��x���)�
G����s������"�ƇO}�c�g$C�>E��o����+|���SRƐ4���ZH����,ۻl�c:J���F򸮴\�m�3Ұ���#�tӗ���(���kzH�n�b�|��h@���O����:5�@��]Zx�iH������F"x(@��=\bs�^EF�*�ws���U�Bd�]��i}�lC�
�,|��%���*(٭�h��9�w�%?
'P}�k���`�z7��Jy�ce>d���Yt��]k�a�4�u֌����_
b��x�uͧW�H#E�ma�������}[ls~6�$��?5N�?���ltl����It�a?4�3��Q����J�2[}��g;.s.0V�T<�����'������rK-������R-�M���N�R۸���8[B�Z�gFk�[�<����L�n	�s����m�E|�q
���f
�M3�3V�ֹ]-.y��؀6 P�w���i)|����'WӪ�j+�&W��VR�hI��zn��A��(��/ON�_''�ޜ]�=��܌��=�(�u�s�a�U4���?OC֚�
�^t����@�P��v��ڦ,3_��<{rp�33��}�Z@}�v<���)&~�+jT��O��%�
JEk�V���j�R����Jm
�	���Ԗ
��ip"X�4�"J��hSO����x�8m��*v��yh��/��E�j8�t	Ys�/���w�qA��P^�踭�`BF��.3r��0�[�3G[V��"�D������%�~��u{ R�ȓ{e�!�N���x")��
L��{%���8�L!�
-0֗4����
x�����V*x�ΰ>Y��Q~BDO���,�.y�>�׊F;L3H��<�sz U5��x�z��^rM���t=�S~��Ez�f�?�����,�W���ɓ���>�
�?�;$t���:�YG��L@�$d$�)��[�M����c�pç�]��ya��/�&��U��ƭe�`�L�O�&q�� =v���>ڐ:S���G�����[j;���.�.+3y����/_a��W��}����:������MJ����f><�IO��OH_ V�䵏EX���/Ў�>����o��$Yea�R�b�)�D���ă�*�������f#��p)��:�x��?�(������Ȍ�Csp4	!�\�W2Rn�,�����i���c7�F[��p���.��òc����Z���bm�U���{y�����8�߳W{��'j%�W.���|�O��ө���|��MH�E?f�g��x��:�C���CfwGF*�h�We9N�M��h?7���<}�9}
���H�	�����(ߏEDI���^�����
���|�ʎ�_i,�dkDOtQu�60X����6��v>
L+je�*`;�})���"WuY"b��ɦdɰ-׏9�m>�$]Щ�P\┒>�\m>&�Œ���z͘��%���-���J[�'��_�Q�Ѓ���/50`�t��
V�Hn����_&��$H(^"v��
�	�3�Rg��S���6���Iˀ_��a9�f݉������a%��D�,�1��l*��֛̍gpC��&���M���&]�)����;m�X�]�1����*�壯h����O���َ�g�|��&��$O�; �p�_r{7KF�:P�Z�Ω>见�5Dv㒊Vl���>�6M�q.�*��m���X#�o�\�E\�%}~K�\�Rb�u�]�6%*���u�M��f��&�U�IÇ6}PN����9`!w<g�j��ـ�NQ]o��)r���y�z�-a�+�LTKX��C�,CV.D��km��w�=t��k�ӬDK�d�=	���gD94�5�a�W-���Yf-`^��&��a"��6�F��~���/�8Wfճ�����{��|{�(�ѕS�4�C�+C�_q<�T���έ����Xk�4��d��J���|����m#G��y�Uk��sm�Wx�O��uT�,��ԉ�Y����p�/U٤Mq�T�����8�+�
����Dҡ�����Ä�l���:�1��'Tdc�״�&��7��D
�|�;��‘�����7䴜H۶i^Ӿ���-��TZf�fᯞ�[Mx��/����m~��Y��/7!�H.�������q�
��P�����z~�#lyGM���S[��N�_�XP�K���0y_��v��E�W��	�b�a�P�;�vm�w�<B)S⺆j`�PDQ�������a��OA�]PPu}w���(
:��D	������%x	[
�k�2�����d-u(�����g։�!_�%�	�Q7�E>�.Y�s�&|�k�NA�Q=�K�aw�C�j��0���q�\�$-4aƗ�p��uGc}���� ���'���;m|*L�L�X�\��~t|�~C����sr;l���d�J̣vJ��C�h�!��X�Ǭ!2���6�:�9y��ͷ�ߍ2��<�&[?�ŋg_$'ۛ��{����G�dg8ٜ'����V���N��O���'0��SS��ς&��6�s������~�u6�ٷ-�M�	z���S��OY�K���ޞi��������4�.���
z�F��6�u�8͋�'s����'��ϟkC�~�v)2�Qu�?�Q�;�X�x��Y)!��[4�AНd�=�E�vtrlF�k���;�_ar_mV�P��SOͦ3w��R�����j��������(�i��-|���k�ߦ����yU�H=�\����Y�φ{�dM���{O7�U�|��qtv��	�j�+k�t5&��/B��c�-P�ۑ��h��D�O�����u|oq9R��.��c���H�͑����Z���Ѣ�����@�Tw��'gn�w�o�_}x��ؼ���m��;�q�O���6�����Go��kf_п��_�_�[�L�+p΂+�ꨶ�Y�i E�6zvk|��=z���vߪjS��D&[=�˫ׇ���~^���%A�W4��6���,4��աך[������}+�7S��,"���$2�>Q`w�ǡ`^
��T�{�O��|��혻��}:o<�G��S��8��V݃��q]��h��3���G���>��c� ��^K��-��f�f<�#�	�h�����?B��t�M��xV��z=~��D%�emI	ʳ�u�T�alҳ}lDM�UkS!"#��7��Ck� �%�"��k3�L�'x�ے"#~{4<Ǧ|vSQ>�aM��)�HVN�v.hS�7��[*$�J�Hȕw@ �e���da�fiG��f���w��`i��z6]ElJ�|V�6`�-T�!���m�F�;s�n��23ʮe��pr/I���Sd�Q�txeN=g���Ƭ�Qf%[lh0\�z�H/�y*�����s#�G�ord����t��b�}���D	��(������;��&;�Y���U�yiy�����8�ukl�J*ځ޳�
��BA�{.M���٤(l�d�:�k#i�|���9T�f��9���~+L:QX+�0�ά�Iv��-pj�M���"��p�L��R��M炴:ʞ]��e``�Bg�엲N���uip�l*G������W
&*��C�[�sz~q����h��=�d[�������B4i^�:P�Dd�و�In�
\�H<B4�zН�1�"�*A�G�+����̦�����)���hڜ�U��G �v�˹G�pQ`��(�]�H�업y.IN�+�"�s��]��{K?�M�|�|�s������]A�7�zz�t��wv�*?!�������3�AS"���mO$��O(�z��4��Ue����C�f^E�����p��~ZK�7�&K%�M���'�ﰰ����ޒݐ�_���o�6φ[~7S����b>�Ȑ���/��Ӝv�]���89g�YU�
�\�x�n��!:��dw-�x~^wv�)ڍ��8O�Э�˂W
ON���;��9$����g`p�<��K�v�V6��ͭ�eƹg���̯~��n�V-�(8�@�E�#�ecct~|�:9=y{r�i�PO�r	v��1Ë���L�f�`o�i�|�e/*�����$���$ز�GP;����8	�s�!��.>�<��ȴ�K�7�E�tجW�V��f��ɮ-,X@�~O�K��$U�Z�u�~׌��.����u�~�.U����̱�vTDWR".9�@C��\�p:���*:E���jNÔ����<�����)������r��xv5s�ud�HP�(D�Y-��F��㫭l�(O�D�^�˧P��Y/�|�Ќ�%���g��д��(lA��d ��Ds�}����f�΄�vc��L�*ް�v��:+�MZ��������Yv�ڗ���Y��
�x���P]�%X6���,�kz�������i�eMn����j�M�{�%g�-$t�T���+J��	�ZΫ�͔;�	�w���*TΝ�����r.\�|�
�������b�=�Q4���ˮEK�S$�k��d�|r���{s�b!��`����]I�5����	9����v���R�U�\�B��W�x|�`�$%�-o.��N�$��3#@N?�]�7Ӵ�����9���tJ���ȱ)�.>dy�\����U"։���������/)��O���3N�M�>br�l�isP����L�#,�>��%�m<��K�r�gn#��t@�!ϴ�B�b�f�=t���K�p�QĨ;=����m����{�4LAb��3;9���>ڙz����Zp�$�#���X�$)%6k�Ӓ���6�]�v#z�O6%uw�V8��\f�k�ă%���?]��h���5��%�e�<���}�+�FrU�����h��P%�F��2.�Y��A��ޤ�$�\q��Dт!u؀��ḨJE
>ĺ�s�S����P��V��m�~�e�7�3��t��̦���z�)�\�w������90��J��r�DŽo�_>E}���u}�����xtԋ!}"1S�~��7(�Ա�W��T]G8�	=�U�w;�nN�*��_g-:t[����\l�fN��c���|s
��.�ڸo�!m��X(.�r I�6�5�h���s"�Ț�7����Z3i^Mf/����s�u���9t��ˋ��������Υ/������B�&J�*��桃d�D-�q
acۘ	EI�2��Z���L��V�W�[W��-�d�k�q`�;0�? ����u\���CF_�'��hKt�fĘԵ ��W�d9AA
�$(93S��ts��R�13{�L��!�~@D��V|T����(�Q�׼}���Ȼ�FF=��L��T�,ؼ�3��
��,���q���%�~�!�-뺱�uO燗�"��-�'S리��B)Z�K��圈4c�b��/#��mQ�ͷ��M6=)sI+���d@M�8R�w����CȜ��e�+�b�YVe�x}���6r����BM�w��a:��ٲ�R�]��No���`P9c���ƪ,ڬp�����b@k��?@��>p�`b���m�)D8�q^��_�p��]���/�:�!Zu�QLh���ڦ�R'w��N�g΂��2�� �Jy��a�uhL��j�v���;�_�F`f���IƸ�^=�WeRV�A��aӍ�e�=!��G��%��#��c�5I�)g�i8R;�ZE+D)!�IF��\YM�_j�蕪�v�\���G�<"sD��:$����
?!�el^S����u���\�Jy�۬���QJ����ćax`�U.���0l��#����X���H܍.��=���dQm�E��M�v_fɖ�K���B/��b��R뺩�����v�e��9.}��\�{�>�g[i���r���ݶ�lpn��ۀE�N��^QĠxT��%B�!�内44]H�*Gw�D*��循,b'O�JV?x7��a�Z�|��N�w�9����T!r07d��"�y�O�.Ј7g��G޵�I�%�/��Jnێt�4�k;��b������po��u���K�S���o�;����������śã�B�nk��<s�ݜe����Z�{н��ڣA�nł)�8����B̃	�"��W�Lo#9�"s)?y��q�0�*�Je)`��"��8�u"*`#��t�����v�Rk�k�Z��#�N���*�5�cӘ�(�N���D�z݂L����UmdgN���+�	�hsn����<9?~;P�c�wvF)"$�,�Bsi %���))��s��] MZOIXN�l�.}����i���w4��޾tg[��U��y�k��Z_���ز�Aۭ� d~�[Ӳ�RH�OB���T���q���f-EV���]s�o�[Bv��]�{�gp${}��n�c.����B����
$��.���q�,8���0�6+���2�
y��,	���,M#�j�p�e*��<�����L
l��0Ab���#�$^�`���-.=d�xH4��A$��;��{��~��l�ٳg{�8����#����br?�}�l����(ӵp��m�2�@`i��ж��I=�+!���[L-���+��+��#�Ȯg�t��m"R&�F��$A�7{���[~�"��5" �P&�Y�@��$!*�w�.8�dN#@�,�|�̯o��W��t���"��
�%'%=a��Bi�@B'AR��+Jz�
��l!$>�P=�'�}��'1m��0-i+"2�d�ߚ��}�����rv��kW�w���f*�K�S;`�P�Er���h���;�	J)�۵Te���4-IT�z�xF�'#�K�Bv��5yR�b
q�p��������t�L�aZҭ�X�vn��p�%
��tc��@$��c�2�o"=hS�Ŀ����;&	�g!# �
�GREvg����|�b�_ߤ���g�\�&�K�z�&Sg$��Ғ��N5��.�S2�1�w����ImnA*��	F;���x�K2��0�4�?���'~�k�&��C?c��Qk���-�M�4��$�i:f>��sc�ut���-�Z�ї��~Jҙ�n�|Mq�*�0]�rd2?Z��*�v$A����M{p�־��hME�C���:����VԻ��Tk�[���э͙���~���Q���ZA	Mu�e�ݻ<��!P���[",w�����v�_�+��4�l���ECs�2��E�g�m�
���h�*K�O����Y�i9���O��]	-zd�Ɂ��8`5�r�W0�l�~m�6��o{���/m���ʎ��m{��I�M�u6y����U6��Cn!{Pj���]pN*PN��c��l�+��r�o���纠H7��)Ƶ|�~{�.O���B�	��z),��ρ�!`��f%�]	���I�Z�yr5x[NaIFH'4o��/�#ռ��v��3Pg��%����3A�잓R�b�*<���̹�ѷ�C�����\��7��{��~�����i�K	r���'��tVyוt[9�<�RU��Oҵ���ץ
���hS#g��s���`ly��׏&�&�+ˠXW�;��2���ArM�M6�m��u����r1E����'A\W���~?1��~d���ĩ}����Q���$Rl��p��d����bG�2gZB�)�q���1֛�V �l�Q��P�
����O�.���q�k���dF�.��냿��uY<�EgFB��{��Y���M�@)�E�(��|ݧ��Sy���7��a�J9���6�c�OXF�#g�*�*K?:e�Сa��7GE�5U��ĺ����|����G<d����	u�P+�2%o1Q,G%�k�A� �o�n}}x��0$�㏞#Cd�±�w&J9I���K�O�G�l�"X*�UI�Z���2��;��ύ��������֦�n�R�Q\���n���}KZ�ǐz����8z�z�RW��uG�'J$���6��/��>%R�"�9‡�Ǩ�^��o�i��\
��`�1��?��rN"g��Z[�/S��gu�X�
�� m=�L�wqF�t�ٳ~�#�$�D�
O/ʛ�S]M���E^J�u�X��;�~wb�OkZd�B��s!���H�8�N���x E�lh��0�i��鯓�l7�c��p6�a��������V^�[��x������8��!�Z���"���rT!�o�&�|M�ꌪ��"ypۥ��|�����:�XwzS�)�:�_���ڎ8FE�����7��#[�\{4�"R�	���TT���A�'��{'t:\8NVX�FhND7Ɍ���Y�H��"	Zc&�f6g�)HŴ�#/B�4��$�2��:�������:(���V2	@��ժ�H�M�7#�3�-���ht~��4i��?�8{����e�����ק��@ä�4�;��^�\���C��A��a�V�L�ʺE���W�Os$�T�;�IK��
�F(���
������z�#�rC4J����a��>�?}�l�-Fz���&��c?��M��5�(m�N�;s}�P��}�%ZԪ]#��=.#�B�#�b��‡�N<�q�� Ǜ�Sߴ��3�ڲT;����<c*9�C3�8��Cj9w6ꔇJ8�l�L�Uy��
M�N;3u"�R��C�Gc,v"�a�]�z��ц�&s��$Q��a�+e[Bd�.�L��e�)ѭNw�i��
7ȧ�B�UF�֫i���^_�Z� �UNj��"k*��-�A�>L��T�;�y5�E�3�-���[��"e��SV��CopN$ǹ�G����hȅF��A4)i�hR�[F\ͨ�T��4�׌Bt,Y�3:�x��~S�|B����| :��yԄUa��]
�R�@���-`���6.���ݺei��	8��ᤓ6ɗ,���=A�63��)��"����_�O(�)�.5��a�E��2�zH�$o6�x�����!�\NdLqo RvB�Y'��� �@�+���s6���sb�����������K�R�\��M�9�b�%Yh%�G=�1[�	4>Fǔߙ)G�=��Z
����6��}ۋ���6ƛO�ˮ]����DW�O�x�l�v�_ݔf�7�h�
�,�9V����"�#�'Ш��2��?�UvП�7��b��L������g#��v�{�cV���n<�׳�oF����:ekL�CRp4�__1�b�k��
�Q���SÊ�F0���6I�c5��Q�عTʈJ��p�Əy�7;�|#�l�ҝ�&Ɠ�]�_c�f�L��m~����ޏ\�+sW-�r�ĞuK���4Q���K*V��,->B}�B@w���.R1ߌ��=��,
�x�qr�@���Ss1�:4x�E�4i�K�s2�ʃ��1�*�k�$����y��e%�G.eВ�q'�	jZp+��_���p*�N��U
�J�8'Q�f�X7E�lй�9U��O�gP�Қ�l�[[v�r0^�-��q�wyŚ������5*��X\��˔+��,�u�x&M�S��XފK�	�:h���v�6D��1��vV^%|���˿���7׭c*"�.c���l�A��>��A������ѫ�?�H��"���ٟ9�y����9��h���L^"�4��
� �݉��î��^3m=Z��Uyaw�f�iהe�'� �]~�R�f�"/����y������Q��ܨ�%Ulk�_�NF�d�
����*�.mHb��u���k�y�
��㤈2�vz������oVg���+��AB�I��!
�9�!�kM
��w딂Ѣz�����.�p���MB9�bU�N��H%��*����T�
�)�[p����fp��im�\�$괂#�&	5|$#z���}�Fغ��`i�V��6�K��xc1��1�%RzA%jF�Q`	$�`W����k�J�no[qt�^>h14t��\���P�:^%y-��6;�ŤM�ke�r&��PM ��6����,3�oߟ^�����'���}t��S
�}{��H�!����#3Ŵw��F;Ǐ�ҋ�$m����=9qql�آ��rL��5td����XQN
;��L��5|_�˒��%��΍N'����:lQj�u���;8�f4�3�/�ɵ�Y�mK&f���~]�6Msڲd��dC*e̐��X���3
Mj�%qt�`H��"���_�~Q,��/b++X�	1e��6�����b89�}n1��W�T)�F��Üe"��(�tY��� �•p<AN�ue4�j�u�LעL�ŭ2w��>�<[u+D��#W��F���~e�
�rua3�Cy��'�U�iww�`���{{{�{�����6��4.�n>l뺹�Tv�a_��c�g���A&�g��G������I�NS����Y9���V�B[��[B��;��f�y�����<G����V�%W����罾���u0}{=qd~��,��2�A#gCFafS�^�nF��8�(�h�;R5�ڍ��ɀ�U0=1=�:<<&�r+%~?y����g+Ӂp�����K7�V6��V!�ƾ_W�LL<;MJ��VfY��_��������{������=M�(@���gO����_˨�^I��"��I�/N�H�0��]�Iܷ��1�	�t1Zxܰ怖�Z8t੄�,��Z`d�<b�����(��
̓�9N=n�:mӃ}S�'Ev
9���g1o�|n��J��먺
f��E��1��_lcq��hnu�%�s���.�W���9/�:�lE�sٓ��BOvv�W�F~��9`���o����ij�Vr*i��FU�;�«=��S9f�眀arH���a����UfUb�;��R�<E
���q�IVrz��y��F��b0�JA�}P��H�+�vs�˜�Wk>���9��&T��8<9���Sc�TUB�8�u�����$�zJ�-ae�_`D�j}�f�- ����6����,�A�Ve��V��x���+0oq�ս�r"�;������̐�y��+���kA|�֊��P�/������r�a�;���bbH��vL��
�&n���C�QR׉�Ǝ��H�.�N�7��4�F��9��˹9�Śt���������h��
��EP�0�x��f޿�P�w���Rb�CR���T�Y`~�%��ł�hRQ�
*]1�
�>����<�a���?^�(�fs��r��a�,�U\%ӶN	�p�EP�Z�)�/,�0�%]#`�ܔp�����8��:�j�7�ɜ>����HҒ�h����8t_�$�\�����dp�}g��;u-��ׯ���l�b�W%��)���қ�Ie���;��%
@��|�U�]1VVb�<��sr��n4n��6�[t@�.&�	���2�*-dictftpsgopherhttphttpsimapimapsldapldapspop3pop3srtmprtspscpsftpsmbsmbssmtpsmtpstelnettftperror initializing curl easy handle
error retrieving curl library information
error initializing curl library
error initializing curl
Note: Warning: curl: curl: try 'curl --help' or 'curl --manual' for more information
<stdout>no URL specified!
CURL_CA_BUNDLESSL_CERT_DIRSSL_CERT_FILEFailed to open %s
--capathbad output glob!
abCan't open '%s'!
fcntl failed on fd=%d: %s

[%lu/%lu]: %s --> %s
--_curl_--%s%s
CURLOPT_TCP_NODELAYCURLOPT_WRITEDATACURLOPT_TCP_FASTOPENCURLOPT_INTERLEAVEDATACURLOPT_READDATACURLOPT_WRITEFUNCTIONCURLOPT_READFUNCTIONCURLOPT_SEEKDATACURLOPT_SEEKFUNCTIONCURLOPT_BUFFERSIZECURLOPT_URLCURLOPT_INFILESIZE_LARGECURLOPT_NOPROGRESSCURLOPT_NOBODYCURLOPT_PROXYCURLOPT_XOAUTH2_BEARERCURLOPT_PROXYUSERPWDCURLOPT_PROXYTYPECURLOPT_HTTPPROXYTUNNELCURLOPT_PRE_PROXYCURLOPT_PROXYAUTHCURLOPT_NOPROXYCURLOPT_FAILONERRORCURLOPT_REQUEST_TARGETCURLOPT_UPLOADCURLOPT_DIRLISTONLYCURLOPT_APPENDCURLOPT_NETRCCURLOPT_TRANSFERTEXTCURLOPT_NETRC_FILECURLOPT_USERPWDCURLOPT_LOGIN_OPTIONSCURLOPT_RANGECURLOPT_ERRORBUFFERCURLOPT_TIMEOUT_MSCURLOPT_POSTFIELDSCURLOPT_POSTFIELDSIZE_LARGECURLOPT_MIMEPOSTCURLOPT_HTTPHEADERCURLOPT_HTTPAUTHCURLOPT_REFERERCURLOPT_USERAGENTCURLOPT_FTPPORTCURLOPT_FOLLOWLOCATIONCURLOPT_UNRESTRICTED_AUTHCURLOPT_AUTOREFERERCURLOPT_MAXREDIRSCURLOPT_PROXYHEADERCURLOPT_HEADEROPTCURLOPT_HTTP_VERSIONCURLOPT_POSTREDIRCURLOPT_ACCEPT_ENCODINGCURLOPT_HTTP09_ALLOWEDCURLOPT_TRANSFER_ENCODINGCURLOPT_LOW_SPEED_LIMITCURLOPT_LOW_SPEED_TIMECURLOPT_MAX_SEND_SPEED_LARGECURLOPT_MAX_RECV_SPEED_LARGECURLOPT_RESUME_FROM_LARGECURLOPT_KEYPASSWDCURLOPT_PROXY_KEYPASSWDCURLOPT_SSH_PRIVATE_KEYFILECURLOPT_SSH_PUBLIC_KEYFILECURLOPT_SSH_COMPRESSIONCURLOPT_CAINFOCURLOPT_PROXY_CAINFOCURLOPT_CAPATHCURLOPT_PROXY_CAPATHCURLOPT_CRLFILECURLOPT_PROXY_CRLFILECURLOPT_PINNEDPUBLICKEYENGCURLOPT_SSLCERTCURLOPT_PROXY_SSLCERTCURLOPT_SSLCERTTYPECURLOPT_PROXY_SSLCERTTYPECURLOPT_SSLKEYCURLOPT_PROXY_SSLKEYCURLOPT_SSLKEYTYPECURLOPT_PROXY_SSLKEYTYPECURLOPT_SSL_VERIFYPEERCURLOPT_SSL_VERIFYHOSTCURLOPT_PROXY_SSL_VERIFYPEERCURLOPT_PROXY_SSL_VERIFYHOSTCURLOPT_SSL_VERIFYSTATUSCURLOPT_SSLVERSIONCURLOPT_SSL_FALSESTARTCURLOPT_PROXY_SSLVERSIONCURLOPT_PATH_AS_IS%s/%sssh/known_hostsCURLOPT_SSH_KNOWNHOSTSCURLOPT_CRLFCURLOPT_FILETIMECURLOPT_QUOTECURLOPT_POSTQUOTECURLOPT_PREQUOTECURLOPT_COOKIECURLOPT_COOKIEFILECURLOPT_COOKIESESSIONCURLOPT_COOKIEJARCURLOPT_TIMECONDITIONCURLOPT_TIMEVALUE_LARGECURLOPT_CUSTOMREQUESTCURLOPT_STDERRCURLOPT_INTERFACECURLOPT_KRBLEVELCURLOPT_XFERINFOFUNCTIONCURLOPT_XFERINFODATACURLOPT_DNS_SERVERSCURLOPT_DNS_INTERFACECURLOPT_DNS_LOCAL_IP4CURLOPT_TELNETOPTIONSCURLOPT_DNS_LOCAL_IP6CURLOPT_RANDOM_FILECURLOPT_EGDSOCKETCURLOPT_CONNECTTIMEOUT_MSCURLOPT_DOH_URLCURLOPT_SSL_CIPHER_LISTCURLOPT_PROXY_SSL_CIPHER_LISTCURLOPT_TLS13_CIPHERSCURLOPT_PROXY_TLS13_CIPHERSCURLOPT_FTP_USE_EPSVCURLOPT_FTP_USE_EPRTCURLOPT_DEBUGFUNCTIONCURLOPT_DEBUGDATACURLOPT_VERBOSECURLOPT_SSLENGINECURLOPT_MAXFILESIZE_LARGECURLOPT_IPRESOLVECURLOPT_USE_SSLCURLOPT_FTP_SSL_CCCCURLOPT_SOCKS5_GSSAPI_NECCURLOPT_SOCKS5_AUTHCURLOPT_PROXY_SERVICE_NAMECURLOPT_FTP_ACCOUNTCURLOPT_SERVICE_NAMECURLOPT_IGNORE_CONTENT_LENGTHCURLOPT_FTP_SKIP_PASV_IPCURLOPT_FTP_FILEMETHODCURLOPT_LOCALPORTCURLOPT_LOCALPORTRANGECURLOPT_SSL_SESSIONID_CACHECURLOPT_HTTP_CONTENT_DECODINGCURLOPT_TCP_KEEPALIVECURLOPT_TCP_KEEPIDLECURLOPT_TCP_KEEPINTVLCURLOPT_TFTP_BLKSIZECURLOPT_MAIL_FROMCURLOPT_MAIL_RCPTCURLOPT_FTP_USE_PRETCURLOPT_PROTOCOLSCURLOPT_REDIR_PROTOCOLSCURLOPT_HEADERFUNCTIONCURLOPT_HEADERDATACURLOPT_RESOLVECURLOPT_CONNECT_TOCURLOPT_TLSAUTH_USERNAMECURLOPT_TLSAUTH_PASSWORDCURLOPT_TLSAUTH_TYPECURLOPT_PROXY_TLSAUTH_TYPECURLOPT_GSSAPI_DELEGATIONCURLOPT_SSL_OPTIONSCURLOPT_PROXY_SSL_OPTIONSCURLOPT_MAIL_AUTHCURLOPT_SASL_IRCURLOPT_SSL_ENABLE_NPNCURLOPT_SSL_ENABLE_ALPNCURLOPT_ABSTRACT_UNIX_SOCKETCURLOPT_UNIX_SOCKET_PATHCURLOPT_DEFAULT_PROTOCOLCURLOPT_EXPECT_100_TIMEOUT_MSCURLOPT_TFTP_NO_OPTIONSCURLOPT_HAPROXYPROTOCOLcurl: Saved to filename '%s'
Throwing away %ld bytes
failed to truncate, exiting
curl: (%d) %s
(%d) Failed writing body
%s%c%s%s/?%s-qconnection refusedHTTP errorFTP errorSSL_CERT_DIR environment variableRemote file name has no length!
Using --anyauth or --proxy-anyauth with upload from stdin involves a big risk of it not working. Use a temporary file or a fixed auth type instead!
CURLOPT_SUPPRESS_CONNECT_HEADERSCURLOPT_SSH_HOST_PUBLIC_KEY_MD5ignoring %s, not supported by libcurl
ignoring --proxy-capath, not supported by libcurl
CURLOPT_FTP_CREATE_MISSING_DIRSCURLOPT_FTP_ALTERNATIVE_TO_USERCURLOPT_HTTP_TRANSFER_DECODINGCURLOPT_PROXY_TLSAUTH_USERNAMECURLOPT_PROXY_TLSAUTH_PASSWORDCURLOPT_HAPPY_EYEBALLS_TIMEOUT_MSCURLOPT_DISALLOW_USERNAME_IN_URLTransient problem: %s Will retry in %ld seconds. %ld retries left.
failed seeking to end of file, exiting
Metalink: fetching (%s) from (%s) FAILED (HTTP status code %ld)
Metalink: fetching (%s) from (%s) FAILED (%s)
Metalink: fetching (%s) from (%s) OK
More details here: https://curl.haxx.se/docs/sslcerts.html

curl failed to verify the legitimacy of the server and therefore could not
establish a secure connection to it. To learn more about this situation and
how to fix it, please visit the web page mentioned above.
Error setting extended attributes: %s
@�@http://https://%s/%sEnter %s password for user '%s':Enter %s password for user '%s' on URL #%zu:unrecognized ftp file method '%s', using default
unrecognized ftp CCC method '%s', using default
unrecognized delegation method '%s', using none
,unrecognized protocol '%s'
singlecwdnocwdmulticwdpassiveactivenonepolicyalwayscurl/7.64.0%s%s%s%s:%d: warning: '%s' %s
%s:%d: warning: '%s' uses unquoted white space in the line that may cause side-effects!
\%03ostruct curl_slist *slist%d;slist%d = NULL;curl_slist_free_all(slist%d);curl_mime *mime%d;mime%d = NULL;mime%d = curl_mime_init(hnd);curl_mime_free(mime%d);curl_mimepart *part%d;curl_mime_name(part%d, "%s");curl_mime_type(part%d, "%s");curl_easy_setopt(hnd, %s, %*s%s%ldL); |%s(long)%s%s%s%luUL);functionpointerobjectpointer%ldL(curl_off_t)%ld%s set to a %sCURLPROTO_ALLCURLPROTO_DICTCURLPROTO_FILECURLPROTO_FTPCURLPROTO_FTPSCURLPROTO_GOPHERCURLPROTO_HTTPCURLPROTO_HTTPSCURLPROTO_IMAPCURLPROTO_IMAPSCURLPROTO_LDAPCURLPROTO_LDAPSCURLPROTO_POP3CURLPROTO_POP3SCURLPROTO_RTSPCURLPROTO_SCPCURLPROTO_SFTPCURLPROTO_SMBCURLPROTO_SMBSCURLPROTO_SMTPCURLPROTO_SMTPSCURLPROTO_TELNETCURLPROTO_TFTPCURL_NETRC_IGNOREDCURL_NETRC_OPTIONALCURL_NETRC_REQUIREDCURLSSLOPT_ALLOW_BEASTCURLSSLOPT_NO_REVOKECURLUSESSL_NONECURLUSESSL_TRYCURLUSESSL_CONTROLCURLUSESSL_ALLCURLFTPSSL_CCC_NONECURLFTPSSL_CCC_PASSIVECURLFTPSSL_CCC_ACTIVECURL_TIMECOND_IFMODSINCECURL_TIMECOND_IFUNMODSINCECURL_TIMECOND_LASTMODCURL_TIMECOND_NONECURL_SSLVERSION_DEFAULTCURL_SSLVERSION_TLSv1CURL_SSLVERSION_SSLv2CURL_SSLVERSION_SSLv3CURL_SSLVERSION_TLSv1_0CURL_SSLVERSION_TLSv1_1CURL_SSLVERSION_TLSv1_2CURL_SSLVERSION_TLSv1_3CURL_HTTP_VERSION_NONECURL_HTTP_VERSION_1_0CURL_HTTP_VERSION_1_1CURL_HTTP_VERSION_2_0CURL_HTTP_VERSION_2TLSCURLAUTH_ANYCURLAUTH_ANYSAFECURLAUTH_BASICCURLAUTH_DIGESTCURLAUTH_GSSNEGOTIATECURLAUTH_NTLMCURLAUTH_DIGEST_IECURLAUTH_NTLM_WBCURLAUTH_ONLYCURLAUTH_NONECURLPROXY_SOCKS4CURLPROXY_SOCKS5CURLPROXY_SOCKS4ACURLPROXY_SOCKS5_HOSTNAMECURLPROXY_HTTPCURLPROXY_HTTP_1_0CURLPROXY_HTTPSslist%d = curl_slist_append(slist%d, "%s");part%d = curl_mime_addpart(mime%d);curl_mime_filedata(part%d, "%s");curl_mime_filename(part%d, NULL);curl_mime_data_cb(part%d, -1, (curl_read_callback) fread, \                  (curl_seek_callback) fseek, NULL, stdin);curl_mime_data(part%d, "%s", %ld);curl_mime_data(part%d, "%s", CURL_ZERO_TERMINATED);curl_mime_subparts(part%d, mime%d);curl_mime_encoder(part%d, "%s");curl_mime_filename(part%d, "%s");curl_mime_headers(part%d, slist%d, %d);curl_easy_setopt(hnd, %s, %ldL);curl_easy_setopt(hnd, %s, (long)%s);curl_easy_setopt(hnd, %s, mime%d);curl_easy_setopt(hnd, %s, slist%d);curl_easy_setopt(hnd, %s, "%s");curl_easy_setopt(hnd, %s, %s);unmatched close brace/bracketunmatched bracenested braceempty string within bracesrange overflowunexpected close bracket%c-%c%cbad rangebad range specificationtoo many globs%0*lu%s in URL position %zu:
%s
%*s^internal error: invalid pattern type (%d)
url_effective%{%03ld%.6f%.0f%.3fhttp_coderesponse_codehttp_connecttime_totaltime_namelookuptime_connecttime_appconnecttime_pretransfertime_starttransfersize_headersize_requestsize_downloadsize_uploadspeed_downloadspeed_uploadcontent_typenum_connectstime_redirectnum_redirectsftp_entry_pathredirect_urlproxy_ssl_verify_resultfilename_effectiveremote_ipremote_portlocal_iplocal_porthttp_versionschemestdoutcurl: unknown --write-out variable: '%s'
����^�������������������ˑ��ב����� ���]���i���������������(���4���C���R���a���m���y�������������������������)������+���R���user.xdg.origin.urluser.mime_type         (((((                  �AAAAAABBBBBB ;���b��8�i��`q�� Ps���s��$@t��x�t����t����{��00������0�������0����HІ��� �������������0����������������������	����0	�P	`����	����	����
���,
0���H
�����
 ����
����
����8P������������`�����P���
����P
�|
0����
���
����
��������` ����0����@����`�����`@��� ���������0M���PO����O���P��`P��,�Q��l R����T��� U��(pU��DPW���PX���`X���X�� �X��<�Y��x`[����[���\��P�\��pP]����]���P^�� _��4�_����g����g����g���g���g��0�g��Dh��Xh��l h���0h���@h���Ph���`h���ph����h����h���h�� �h��4�h��H�h��\�h��p�h���pj����k���q��\@r����s����u��8@v��l�v��� z���0z���z��DP����p���P���X�t0���� ����0����@���P���`���(p���<����P����d������������(�<���P���d ���x0����@����P����`����p���������������������,����@��T��h������0����P����p�������������������  ���4@���H�����zRx�8n��/D0Tn��$D`]��@FJw�?:*3$"lxd��04��n��tE�F�D e
DAG]
DAF�o��!J�O�\�o���F�B�E �E(�D0�A8�D��
8A0A(B BBBD{�O�T�A�L<Xu���F�B�B �B(�A0�D8�H`�
8A0A(B BBBEH��y���F�L�E �B(�A0�D8�J��
8A0A(B BBBC@�}��>F�F�B �D(�A0�G@�
0A(A BBBD~��WE�b
If<X~�� HR@T`~��E�A�G Y
AAHu
CAGm
CAGH�<��CF�H�E �E(�H0�A8�GPg
8D0A(B BBBD�@����@�̀���O�B�A �A(�G0�(A ABBA����L<X���wF�B�B �B(�A0�A8�GP)
8C0A(B BBBF�����|Dw��,E�V
EK0�����F�G�A �G��
 AABE�̊��?He
CN ���T�_
E�
I<X���_H@
HN\\����eF�G�E �A(�A0��
(A BBBKv
(A BBBKI(A BBB(������E�L�G�B
AAD(�����E�A�GPi
AAH ����dD�N
N8ܐ��E�O4T��sE�D�G b
CAJM
FAD(�(���fE�F�D x
AAG8�l����B�G�K �D(�G��
(A ABBDL� ����B�F�B �B(�A0�C8�O�W
8A0A(B BBBH�D�����F�E�B �E(�D0�D8�J��
8A0A(B BBBB��E�L�B���F�S�A�(�B�Z�B���F�K�A�@�x���pB�B�G �G(�D0�DPZ
0A(A BBBDH �����B�B�B �B(�D0�D8�GP_
8D0A(B BBBMLlH����;F�B�B �B(�A0�D8�G��
8A0A(B BBBBL����F�B�B �B(�A0�A8�DpY
8A0A(B BBBKLH�%F�N�D �F(�D0�
(D ABBE[(D ABB(\(�jF�O�H �IAB4�l�3F�A�A ��
ABGdHB �t��E�I ~
AC�������H@�
AT	p�F�A�A �DP|
 KCBHg
 AABE[
 JABE$l	(�Hg
AN
J�	���	��
4�	��F�R�A �D�{
 AABD4�	p�F�F�A �}
CBAAFB<,
�a��<F�J�D �A(�G��
(A ABBAhl
��3R�E�B �E(�A0�D8�G`�
8A�0A�(B� B�B�B�MJ
8A0A(B BBBA�
l��K��
B�
0��K��
A(���E�D�J��
AAAL<��HB�I�B �B(�D0�A8�G�x)
8A0A(B BBBCD�x<��NF�D�J �s
ABFg
ABF�
ABB(��>��_F�D�A �PAB �>��VJ�a
EUK�$�>��C<8,?��F�B�E �D(�A0��
(D BBBG0x@���F�A�D �Z
IDNH�x@��\B�B�B �B(�A0�A8�G�`
8A0A(B BBBE8��B���B�B�D �A(�G@n
(A ABBD4
�B��IE�w
DLP
$C���F�B�B �B(�D0�A8�G�_
8A0A(B BBBG`�
�D���F�E�E �E(�A0�A8�D@�
8F0A(B BBBDQ
8A0A(B BBBEPE��LE��,XE��1O�YH�8H|E���F�B�A �A(�DP�
(A ABBF`�0F���O�B�B �B(�G0�D8�D@_
8A0A(B BBBC�������P@������<�|G��tE�I�D z
CAHD
FAEDFA0(�G���F�A�A �D0�
 AABF\HH��'E�V
EF(|XH��qF�K�F �VAB0��H��lE�K�G R
CACrHA0��H���E�K�G O
DAEJFA,DI���F�D�A �U
ABEP@�I���O�I�D �K(�I0C
(C ABBED(F ABBA����T�0J���F�B�B �B(�A0�A8�G� L�%_
8A0A(B BBBF��Q���Q���Q��(�Q��<�Q��P�Q��d�Q��x�Q����Q����Q����Q����Q����Q����Q���Q��|Q��,xQ��@tQ��TpQ��hlQ��|hQ��L�dQ��B�B�B �D(�A0��
(A BBBH�(A EBB8��R��H�B�H �F(�J0�e
(A BBBBHxS���B�B�B �L(�D0�D8�D`W
8A0A(B BBBAHh,Y���F�I�G �D(�G0[
(A ABBFN(J ABBD��Y���F�G�E �G(�A0�G�U
0A(A BBBBD��Z���F�G�E �G(�A0�G�U
0A(A BBBB0D`\���F�G�F �G0R
 AABH0x�\���F�G�F �G0J
 AABHL�8]��=F�E�E �B(�D0�D8�G�h
8A0A(B BBBE�(`��8 `���F�B�E �D(�D0��(D BBB\P�`��UF�B�B �B(�A0�A8�G�
8A0A(B BBBH�O�M�D�`��l��F�B�E �B(�A0�A8�G@u
8A0A(B BBBI�
8C0A(B BBBFL`n���F�B�B �B(�A0�A8�D�X
8A0A(B BBBDd�p���H@n
J�tq��1L��q���F�B�B �B(�A0�A8�D��
8A0A(B BBBI�@w���<w��8w�� 4w��40w��H,w��\(w��Hp$w��F�E�B �E(�A0�C8�K��
8A0A(B BBBID��x���F�E�E �D(�D0�D@�
0A(A BBBA,�y��EE�G�K P
JCL4�y��H�y��\�y��p�y��
��y����y����y����y����y����y����y��
�y��$�y��8|y��Lxy��`ty��tpy���hy�� �ty�� ��y����y����y��#��y���y���y��,�y�� @�y�� DT�y��eF�E�E �E(�H0�H8�G@n8A0A(B BBB�z��p4@@4@[A[A��A:�B[A:�B[A�kAraA[A�bA�aAcA�aA�kA`bA(bAHcA�cA�aA�kA�cA:�B�aA�aA�kA�A�kA�kA�kA�kA�kA�kAlAlAlAlA(lA+lA;lA>lAFlA�oAIlALlAZlA�A]lA`lAylA�A|lAlA�lA�lA�lA��A�lA�lA�lA��A�lA�lA�lA�|A�lA��A�lAQA�lA�A�lA�A�lA=�A�lAB|A�lA7{A�lA��A�lA�}A��B�lA�lA�A�lA�}A�lA��A�lAPlA�lA�lA�lA�lA�lA�A�lAhkA�lA|AmA�AmA~�AmA
mAmA�AmA�AmAmAmA؏A"mAc�A%mA��A(mA+mA1mAV�A4mA7mACmAFmAUmAيAXmA[mAgmA��AjmAT�AmmA)�ApmAs�AsmAvmA�mA�mA�mA�mA�mA�mA�mA�mA�mA�mA�mA.�A�mA�A�mA�A�mA��A�mA�mA�mA�mA�mA��A�mAшA�mA��AnAnAnAnA%nA߈A(nA+nA3nA��A6nA9nABnAEnARnAUnA_nAbnAlnAN�AonArnAxnA{nA�nA�nA�nA�nA�nA�nA�nA�A�nA�A�nAA�nA�nA�nA<oA�nA��A�nA�nA�nA�nA�nA�nA�nA�nA
oA
oAoAh�A"oA%oA0oA3oAHoAKoASoAVoAooA�|AroAuoA�mA��AֈAۃA�A��A�A
�A�oA��A�mAZ�A�oA}�A6�A��A�oA��A�oAՑA�oA�oA�oA�oA�AM�AnAc�A&nAy�A�kA��AmA5|ASnA�oAmA�oA`nA��AmA�oAmnA�oA mAW�A�kA�oA�oA�oA�oA�oAf�BpApnApA#mApAynA�pA'pASqA*pA�pA-pA�pA0pAqA3pAqA6pA9pA@pA��BCpA�pAFpAIpATpA<qAWpA�pAZpA�A]pA�pA`pA�AcpAfpAtpA�pAwpAzpA�pA�|A�pA�A�pA�A�pA��A�pA�pA�pA�pA�pA�pA�pA�pA�pA�pA�pA�pAqAqAqAqA"qA%qA3qA6qADqA4�AGqAfpAJqAMqAZqA]qAjqAv�AmqA��ApqAz�AsqA��A&mA�AvqA�AyqA��A�nA|qA�qA�qA)mA�A�nA��A�qA/�A5mAh�A�nAIZA�qA�qADmAE�A�nA)�A�mA��A�nAČAVmAS�A�nA�qA�lAC�A�nA�A�qA��AYmALmA�nA{�AhmAC�A�qAO�A=pA�qA�nA��AkmA�ZA�nA݌A�qA�AnmA"�A�nA�qAqmA^A�nA`�AtmA��BoA�A�mA�A oA��A�mA�qA�mA�qA�mA�mA#oA�qA�mA,�A2mA:�A�mA�qA�mA�A�qA�qAIoA�BToArA�mArA�mArA�mA�ACkA}�A�{A��{A@�{A �{A�{A�{A�{A�{A�{A�{AJ�Bk�B�N�B�{A�{A��{A�{A@|A
|A|A "|A@+|A��A��A1{A(�A/|AH�A<|AH|Af|Ap�Az|A��A��A�A�|A�A�|A@�Ah�A�|A�|A�|A�|A}A"}A6}A��A��AЕAN}A^}Ay}A�}A�}A�}A�A�}A0�A�}A�}A~A`�A.~A@~AO~Ag~A|~A�~A�~A�~A�~A�~AA-AKA��AXAfAvA�A�A�A��A�AؖA��A�A �A�AH�A�A=�AU�Ai�A��Ap�A��A��A��ÀA��A�A�A�A�A@�A��A�A&�A@�Ap�A@�A\�Au�A��A��A��A��A��AׁA�A��A�A/�AH�AW�Am�A��A��A��A�AтAނA�A�A@�A��Ap�A��AؙA�A�A#�A.�AF�A@�Ab�Am�A|�A`�A��A��A��AȃAՃA�A�A��A�A��A#�A��A?�A�AM�A�A\�AH�As�Ap�A~�A��A��A��A؛A��A��A��AʄA �A�AH�A�Ap�A�A �A=�AM�A\�A��Ay�A��A��A؜A��A΅A�A�A��A�A.�AH�A]�Aj�A��A��A��A8�A҆A`�A�A��A��A��A
�A�A�A2�AI�A^�Aw�A�A��A@�A��A`�A��A��A��A��AއA��A�AОA�A�A7�A��AE�Aa�Av�A(�A��AH�A��Ah�A��A��AˈA��AوA�A�A �AP�A��A
�Ax�A�A5�A��A��AN�A�A�Al�A{�A@�A��Ah�A��A��A��A��A�A�AԉA@�A�A�A)�AD�A]�Ah�A��A��Ap�AآA��A��A��A�AӊA0�A�Ah�A��A��A��A�A�A�A.�A8�Ah�AJ�A��A��A�Af�A��A��A��A͋A�A�A��A0�A�AX�A.�AA�AZ�A��Af�A��A�A�A��A�A��A��A��A8�A׌A`�A�A��A��A��A�A�A)�A�A0�A`�A>�A��AP�A��Ah�A��A�A��A��A�AʍA�A��A8�A	�A�A"�AX�A=�A��AY�A��At�AШA��A�A��A0�AX�A��A��AЩA��A��A͎A�A�A�A��AH�A�Ap�A(�A7�AG�AS�A]�Ai�As�A��A��A��AȪA�A��A��AҏA�A��A�A/�AJ�Ab�Ax�A��A�A��A8�AX�AĐA�A��A�A$�A1�AF�AT�A`�Aw�A`�A��A��A��A��AϑAݑA�A��A�A�A5�A��AN�A�A_�A�Ax�A0�A��A��A��A’AڒA��A�AX�A&�A��A4�AB�A_�A��Ax�AЬAϚBI}A�BԚBٚB�B�B�B�B ��B���B�B@�B��B�B�B�B �B#�B(�B-�B3�B@:�BoA��BȫBӫBoAуA�A��AّA��A���������B�B�BԚB�B�B 3�B@��B���BϚBI}A:�B�B�B �B@�B�(�B-�B�BٚB�B#�B>�BU�B[�Br�B��Bl�B��B��B �B��������.�B=�BL�BZ�Bi�Bz�B��B��B��B ��B�ǴB״B@�B���B�B�B "�B0�B?�BN�B^�B@o�B~�B��B��B��BеB�B��B�B�B&�B:�BQ�Bg�B��B��B��BĶBܶB�B�B�B6�BN�Bf�B~�B��B��B��B׷B�B��������B�������B�B+�BA�BO�Bb�B s�B���B��B��B��BøBݸB�B��B��B��B��BøB+�BQ�B[�Bi�Bv�B��B��B��B��B��BҽB
޽B�B��B�B	�B
!�B.�B;�BI�BW�Bf�By�Bs�B��B��B��B��B��BȾBվBܾB��A ��B��B,9I]j{�����_�"@
�YA0�b8�b���o�@@8@
� c�
�@P@�	���o�@���o�o�@0c�"@#@#@ #@0#@@#@P#@`#@p#@�#@�#@�#@�#@�#@�#@�#@�#@$@$@ $@0$@@$@P$@`$@p$@�$@�$@�$@�$@�$@�$@�$@�$@%@%@ %@0%@@%@P%@`%@p%@�%@�%@�%@�%@�%@�%@�%@�%@&@&@ &@0&@@&@P&@`&@p&@�&@�&@�&@�&@�&@�&@�&@�&@'@'@ '@0'@@'@P'@`'@p'@�'@�'@�'@�'@�'@�'@�'@�'@(@(@ (@0(@@(@P(@`(@p(@�(@�(@�(@�(@�(@�(@�(@�(@)@)@ )@0)@@)@P)@`)@p)@�)@�)@�)@�)@�)@�)@�)@�)@*@*@
GA$3h864�3@�3@
GA$3h864P1@P1@
GA$3h864�3@�3@
GA$3h864P1@P1@GA$3a1�3@�3@GA$3a1�3@�3@
GA$3p864�3@�3@GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFY�GA*GA!GA*GA!stack_realign
GA$3p864�3@�3@GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFY�GA*GA!GA*GA!stack_realignGA$3a1�3@�3@GA$3a1�"@�"@GA$3a1�YAZAGA$3a1�3@v4@
GA$3p864�4@!5@GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864�3@�3@
GA$3h864P1@P1@
GA$3p864!5@!5@GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864�3@�3@
GA$3h864P1@P1@
GA$3p864!5@!5@GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864�3@�3@
GA$3h864P1@P1@
GA$3p86405@�;@GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864�3@�3@
GA$3h864P1@P1@
GA$3p864�;@b@@GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864�3@�3@
GA$3h864P1@P1@
GA$3p864p@@nE@GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864�3@�3@
GA$3h864P1@P1@
GA$3p864pE@�E@GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864�3@�3@
GA$3h864P1@P1@
GA$3p864�E@�E@GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864�3@�3@
GA$3h864P1@P1@
GA$3p864�E@SH@GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864�3@�3@
GA$3h864P1@P1@
GA$3p864`H@�O@GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864�3@�3@
GA$3h864P1@P1@
GA$3p864�O@�O@GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864�3@�3@
GA$3h864P1@P1@
GA$3p864�O@GR@GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864�3@�3@
GA$3h864P1@P1@
GA$3p864GR@GR@GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864�3@�3@
GA$3h864P1@P1@
GA$3p864PR@�X@GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864�3@�3@
GA$3h864P1@P1@
GA$3p864�X@�Y@GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864�3@�3@
GA$3h864P1@P1@
GA$3p864�Y@�v@GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864�3@�3@
GA$3h864P1@P1@
GA$3p864�v@��@GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864�3@�3@
GA$3h864P1@P1@
GA$3p864��@��@GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864�3@�3@
GA$3h864P1@P1@
GA$3p864��@�@GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864�3@�3@
GA$3h864P1@P1@
GA$3p864 �@¾@GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864�3@�3@
GA$3h864P1@P1@
GA$3p864о@\�@GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864�3@�3@
GA$3h864P1@P1@
GA$3p864`�@��@GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864�3@�3@
GA$3h864P1@P1@
GA$3p864��@:�@GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864�3@�3@
GA$3h864P1@P1@
GA$3p864:�@:�@GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA*FORTIFYGA+GLIBCXX_ASSERTIONS
GA$3h864�3@�3@
GA$3h864P1@P1@GA*P1@�3@GA!stack_realignGA!stack_clashGA*cf_protectionGA*
GA*GOW�DGA!
GA$3p864:�@:�@GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864�3@�3@
GA$3h864P1@P1@
GA$3p864@�@$�@GA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864�3@�3@
GA$3h864P1@P1@
GA$3p8640�@�AGA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864�3@�3@
GA$3h864P1@P1@
GA$3p864�AVAGA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864�3@�3@
GA$3h864P1@P1@
GA$3p864VAVAGA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864�3@�3@
GA$3h864P1@P1@
GA$3p864`A�AGA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864�3@�3@
GA$3h864P1@P1@
GA$3p864 A�'AGA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864�3@�3@
GA$3h864P1@P1@
GA$3p864�'A�'AGA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864�3@�3@
GA$3h864P1@P1@
GA$3p864�'A]:AGA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864�3@�3@
GA$3h864P1@P1@
GA$3p864`:Ao:AGA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864�3@�3@
GA$3h864P1@P1@
GA$3p864p:A�LAGA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864�3@�3@
GA$3h864P1@P1@
GA$3p864�LAaMAGA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864�3@�3@
GA$3h864P1@P1@
GA$3p864aMAaMAGA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864�3@�3@
GA$3h864P1@P1@
GA$3p864pMATSAGA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864�3@�3@
GA$3h864P1@P1@
GA$3p864`SA�UAGA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864�3@�3@
GA$3h864P1@P1@
GA$3p864�UA�VAGA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864�3@�3@
GA$3h864P1@P1@
GA$3p864�VAWAGA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864�3@�3@
GA$3h864P1@P1@
GA$3p864 WA(XAGA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864�3@�3@
GA$3h864P1@P1@
GA$3p8640XA�YAGA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protectionGA+GLIBCXX_ASSERTIONS
GA*FORTIFYGA*GA!GA*GA!stack_realign
GA$3h864�3@�3@
GA$3h864P1@P1@
GA$3p864�YA�YAGA$gcc 8.3.1 20190507
GA*GOW�DGA*GA!stack_clashGA*cf_protection
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*GA!GA*GA!stack_realign
GA$3h864�3@�3@
GA$3h864P1@P1@GA$3a1�YA�YAGA$3a1�YA�YAGA$3a1�"@�"@GA$3a1ZAZAcurl-7.64.0-2.el8.x86_64.debug����7zXZ�ִF!t/��(
3]?�E�h=��ڊ̓�N��[6L�1#Cc�&��WCZ�i��M�Uߒͥ����"�j�}s�Nz�K��c�l�
�V)7���|�[h�7*}kc}T�_%��2�>ݍH�<��V�H�_�W�%�d� ח���v\j֋v��}��^���mA�p82�ot7�: �e�%Ȑu��3D_�
M��a�l%�B���b��.U��T�ͦ�Cf�ځ<��3���Z�j
��KbL���0��/m	��I�=�W/�!�=`�#�%�ˍ�������j���Q.�ы?B~A���L�;7���$��[�{lN��J��tV���R_u�������ʯ�T�Mh&њ[�A�)䡭-�`/�j~/Z���j^�����
�@J8�N�=�I���.�.��z9��VC�,x����e��䅐�
�~��O�Ħ0�����|d�m+�+�l��g �[�&�z]�jX6�ɧ@�d,�j�B�LtA�G6��������
��vgy��xO�PE���嘛y�)���'-F��/�قgdfc�����<�'��2���}rcN����p��bz%�_EO�xc�沫���!���2���>l����-*%��9�'�O���ex	�5OKE�ょ?�g ?�4�E<�V�#(�ن���F����Mհc��V0#������������D##4D�?�Eͳ��Q�ʵ/U{t�-�Ҹ��xP7�=
���@H�S�7�|���'�� T�L��Y����E�v�ȱ����?8�Ib1`��	�]�=�t�}�*���_k�'��iI��Jۅ&'�.�m��z�S�0V�>h���^���
R`U_�� �N,�1?c�d�C�ف��2	&����ڪ;@i��4�r{�v�R���R�{�0E��5wME�J�����b��fA6vi��	�<f�BZlWd���WU@��[��[1h+;0Yd4��A&q�dSv|«R�Wӱ����Q���k�X|k�xj�yx���
,If5 TZm�=�n�v�*�dQ��W6�Yl}�_�W���hd���J�_`ڋ���Q�}��v	M�3�C5UVP��0R��f��g��J���T'�K3�Av����2Z{z-H��?n?VB`�����N�c�Gq���F^�F�Q�P�V
~�W��� �#��D4<�F��Y@}ծ��"(�]Q�a�`������k�cH��x��I�v�|8[�/�C�}��5���1�Z��Z���=قX{~���n����ɍ���/�I#�n�k��4��w,0:�s5��$�
�ԕ��bj!p��Ljþ��W���o����ԜL�r�8��t�$�W�Z�A[]��E�|�_)���}��,}"���:J�����ȣv&���Άv
֮F�j�RS3��)��'w��'����r��uy_��+Sݏ��O�8ؗ�y��Mß_h}��x�Еx�2����?/>����kW΢r�mY�6�>W��8� �
Ҵ^� b�g{9�Zw����¿��g�w�=i��Ƭ<�J���n)O>�>q��"�4j�,��YZ*�t�X�_<���Pe�sInb�O�*���(���~Z�����<{�,�ꭀ!IS����s���=7�[�i��Ĥ���Σ��P���E��}S��5 ��`C�%2l��� ��D�>ǎD:=���s��%�F�\��Sʸ�fp��1�Рx���/�`�]$g�"�I9��+D��O����"~�P�j&Aj#@W�!oN�����[��J�wĔ�ɫ��������,3�`�!��t�.RS��8��`�ڏu��k�e��<.�������|�x��s��cq�w+bk&(*�ђ���������k�[mZ���<�%]�v�%�Q������9���}��+�!�
e}6�M�k�8���Qnwy��nP�B��G�A��$��.A�_��W��Dÿ���ל"�J�Xu�w8�W�`��1܊PO&��Ds�������tE�}]�c���<����'qf�9�$Y���g�2���^b�[4�Ku�|/j9��UE�h�^R�|�m�����E����&�?&�MÜ7z �w��WX#ҟ��_Tg�_�me��G�q�Ez97�?e`d7����X��C�}�B��n�<1��}�tA;d�/���CeJ�R>}����RC������3���%�K�~�l=����I�u�@���8�
��qHb!�b��	&��0_o�S�ͪ\o��XoY��܄P�RM��)MIz�Fm,DrLdni�2�'`R�9��d�z�W��*0��6��p
>�z
I�Ht�1��~���|��i�?�a}�Z�-w�B�Ȼ���t00d���YOm�'VR���ml'��,�o�;�+� ���2�T�'s�s9"���ɤ
M�s{�E�S��h�>ݩv@Z,	zQZ���Xr�!��HH
�l��)FE�]�+��Xё!%d(��-:����b2x��+��*��H��˒1��ӳ�'��Hq�x,�l���_�;�[�⏅�{;�
�u�Q,��p��A:�s#wr��P�����g�YZ.shstrtab.interp.note.gnu.property.note.ABI-tag.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.init_array.fini_array.data.rel.ro.dynamic.got.got.plt.data.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdatap@p�@� &�@� 4�@�$G���o�@�<Q8@8�Y@�a���o�@��n���o�@��}P@P��B�@��
��"@�"��"@�"@� *@ *0�P1@P1�(��YA�Y
� ZA Z f �@�B@���8�B8���0�b0��8�b8��@�b@��1 �0c0���c� � c ��#c�#�#c�# �$��#�M)�q$8�qt
0|G