ÿØÿà JFIF    ÿÛ „ ( %!1!%*+...983,7(-.- PKj5]0-@@!usr/share/man/man5/freetds.conf.5nu[.Dd May 2, 2017 .Os FreeTDS 1.5.16 .Dt FREETDS.CONF "FreeTDS 5" "FreeTDS Reference Manual" . .Sh NAME .Nm freetds.conf .Nd configuration file for FreeTDS . .Sh SYNOPSIS The .Pa freetds.conf file describes Sybase and Microsoft database servers to the FreeTDS library. It comprises sections headed by a servername, followed by a list of connection properties denoted as name-value pairs. Defaults are defined via a .Bq global section. This file supersedes the .Pa interfaces file that Sybase defines for the same purpose, although the latter is still supported. . .Sh DESCRIPTION A section begins with a servername \(em the name of the server \(em in square brackets. The servername is chosen at the client's descretion. (One exception: with Sybase ASA the servername must match the database name to be used.) .Pp Sections contain properties, one per line, in the form .Pp .Dl name = value .Pp where .Ar name is the connection property to be described. Servernames and properties are not case sensitive. Values are case-preserving i.e., copied literally. Comments begin with either a semicolon .Pq So ; Sc or pound sign .Pq So # Sc and continue to end of line. Blank lines are ignored. Whitespace surrounding the .So = Sc is ignored. . .Sh PROPERTIES .Bl -tag -width "emulate little endian" -compact . .It client charset encoding of client data; overrides locale(1) settings .Bl -tag -width "default:" -compact .It Domain: iconv character set names .It Default: ISO-8859-1 .El . .It connect timeout seconds to wait for response from connect request .Bl -tag -width "default:" -compact .It Domain: 0 to MAX_INT .It Default: none .El . .It debug flags logging granularity .Bl -tag -width "default:" -compact .It Domain: 32-bit integer .It Default: 0x4fff .El . .It dump file specifies location of a logfile and turns on logging .Bl -tag -width "default:" -compact .It Domain: valid file name .It Default: none .El . .It dump file append log data appended to file instead of re-writing for each connection .Bl -tag -width "default:" -compact .It Domain: yes/no .It Default: no .El . .It emulate little endian forces big endian machines to act as little endian to communicate with Microsoft Servers .Bl -tag -width "default:" -compact .It Domain: yes/no .It Default: no .El . .It encryption .Bl -tag -compact .It Em off disables encryption .It Em request use if available (default when tds version greater than 7.0) .It Em required allow encrypted connections only .El . .It host Name of the host the server is running on. .Bl -tag -width "default:" -compact .It Domain: host name or IP address .It Default: SYBASE .El . .It initial block size maximum size of a protocol block .Bl -tag -width "default:" -compact .It Domain: multiple of 512 .It Default: 512 .El . .It instance name of Microsoft SQL Server instance to connect to (supersedes .Em port ) .Bl -tag -width "default:" -compact .It Domain: instance name .It Default: none .El . .It port port number that the server is listening to .Bl -tag -width "default:" -compact .It Domain: any valid port .It Default: TDS 5.0, 5000; TDS 7.0 and up, 1433 .El . .It tds version TDS protocol version to use .Bl -tag -width "default:" -compact .It Domain: 4.2, 5.0, 7.0, 7.1, 7.2 .It Default: .Fl -with-tdsver value (5.0 if unspecified) .El . .It text size default value of TEXTSIZE, in bytes .Bl -tag -width "default:" -compact .It Domain: 0 to 4,294,967,295 .It Default: 4,294,967,295 .El . .It timeout seconds to wait for response to a query .Bl -tag -width "default:" -compact .It Domain: 0 to MAX_INT .It Default: none (wait forever) .El . .El .Pp Do not define both .Fa port and .Fa instance Ns \&. One implies the other. .Pp Boolean property values may be denoted as on/off, true/false, or 1/0. . .Ss DEBUG FLAGS The log's granularity can be controlled with the .Em debug flags property. .Bl -column -offset indent ".Sy 0x8000" ".Sy show source level info (source file and line)" .It Sy Value Ta Sy Meaning .It Li \ \ 0x02 severe error .It Li \ \ 0x04 error .It Li \ \ 0x08 warning .It Li \ \ 0x10 network .It Li \ \ 0x20 information level 1 .It Li \ \ 0x40 information level 2 .It Li \ \ 0x80 function trace and info .It Li 0x1000 show pid .It Li 0x2000 show time .It Li 0x4000 show source level info (source file and line) .It Li 0x8000 thread id (not implemented). .El . .Sh NAMES AND LOCATIONS The file is normally named .Pa /etc/freetds.conf or .Pa ${HOME}/.freetds.conf . That name can be overridden with the FREETDSCONF environment variable. .Pp FreeTDS will search conf files for a servername in the following order: .Bl -enum -offset indent -compact .It a filename set programmatically via dbsetifile() that is in .conf format .It a filename in the environment variable FREETDSCONF that is in .conf format .It .Pa ${HOME}/.freetds.conf if extant .It .Pa /opt/alt/freetds11/etc/freetds.conf .El .Pp The search stops with the first file containing the servername. .Pp If no conf file is found, FreeTDS searches for an .Pa interfaces file in the following order: .Bl -enum -offset indent -compact .It a filename set programmatically via dbsetifile() that is in .Pa interfaces format .It .Pa ${HOME}/.interfaces .It .Pa $SYBASE/interfaces (where .Ev $SYBASE is an environment variable) .El .Pp If the requested servername is not found in any configuration file, the fallback mechanism is: .Bl -enum -offset indent -compact .It attempt to convert the name to an IP address with inet_addr(3), else .It attempt to convert the name to an IP address with gethostbyname(3), else .It attempt to look up the literal name .Dq SYBASE .El . .Sh ENVIRONMENT .Bl -tag -width "TDSDUMPCONFIG" -compact .It Ev FREETDSCONF overrides name and location of the system-wide conf file .It Ev TDSDUMP overrides the name and location of the FreeTDS log file .It Ev TDSDUMPCONFIG specifies a name and location of a file that logs the search of configuration files .It Ev TDSHOST overrides the host property .It Ev TDSPORT overrides the port property .It Ev TDSQUERY synonym for DSQUERY, the default servername .It Ev TDSVER overrides the version specified in the freetds.conf .El .Pp The environment variables .Ev TDSVER, Ev TDSDUMP, Ev TDSPORT, Ev TDSQUERY, and Ev TDSHOST override values set by a .conf or .Pa interfaces file. . .Sh FILES .Pa /opt/alt/freetds11/etc/freetds.conf , ${HOME}/.freetds.conf . .Sh SEE ALSO .%B FreeTDS User Guide . .Sh HISTORY \&.conf files first appeared with version 0.53 of FreeTDS. PKj5] 'Wusr/share/man/man1/osql.1nu[.\" cf. groff_mdoc .Dd April 26, 2012 .Os FreeTDS 1.5.16 .Dt OSQL FreeTDS "FreeTDS Reference Manual" .\" .Sh NAME .Nm osql .Nd utility to test FreeTDS connections and queries .\" .Sh SYNOPSIS .Pp .Nm .Fl S Ar dsn .Fl U Ar username .Fl P Ar password .Op Fl I Pa ini_directory .\" .Sh DESCRIPTION .Pp .Nm is a diagnostic tool provided as part of FreeTDS. It is a Bourne shell script that checks and reports on your configuration files. If everything checks out OK, it invokes isql. .Pp .Nm works only with the isql that comes with unixODBC. .\" .Sh OPTIONS .Bl -tag -width indent .It Fl S Ar dsn the Data Source Name to which to connect, as known to .Pa odbc.ini Ns . .It Fl U Ar username database login name. .It Fl P Ar password database password. .It Fl I Ar ini_dir override .Pa odbc.ini file location. .El .\" .Sh EXAMPLE If you have an .Pa odbc.ini with a section like this: .Bd -literal -offset indent .Bq myDSN servername = myserver TDS_Version = 5.0 .Ed .Pp You would invoke .Nm as: .Pp .Li osql -S myDSN .Op .\|.\|.\& .\" .Sh FILES .Pa odbc.ini .Pa freetds.conf .\" .Sh NOTES If you can connect with .Ql osql -S servername -U user -P passwd Ns , your FreeTDS ODBC installation is working. .Pp .Nm guesses where unixODBC might look for its .Pa odbc.ini by examining the binary. This is not always an effective approach. If it doesn't work, you'll receive a report of candidate strings. Kindly pass along the output to help improve the guessing. .Pp If .Nm cannot intuit your .Pa odbc.ini directory, you can force the issue with the .Fl I option. However, you're then instructing .Nm what to test, not where unixODBC will eventually look. Your override is therefore only as good as you are. Look carefully at the error output before overriding. .Pp If you have suggestions for ways to make .Nm more useful as a diagnostic tool, please post them to the FreeTDS mailing list. .\" .Sh HISTORY .Nm first appeared in FreeTDS 0.65. .\" .Sh AUTHORS The .Nm utility was written by .An James K. Lowden Ns . PKj5] usr/share/man/man1/bsqldb.1nu[.\" cf. groff_mdoc .Dd March 26, 2015 .Dt BSQLDB 1 .Os FreeTDS 1.5.16 .Sh NAME .Nm bsqldb .Nd batch SQL script processor using DB-Library .Sh SYNOPSIS .Nm .Op Fl hqv .Op Fl S Ar servername .Op Fl D Ar database .Op Fl U Ar username .Op Fl P Ar password .Op Fl i Ar input_file .Op Fl o Ar output_file .Op Fl e Ar error_file .Op Fl H Ar hostname .Op Fl t Ar field_term .Op Fl R Ar pivot_description .\" .Sh DESCRIPTION .Nm is a utility program distributed with FreeTDS. .Nm is a non-interactive equivalent of the "isql" utility programs distributed by Sybase and Microsoft. Like them, .Nm uses the command "go" on a line by itself as a separator between batches. The last batch need not be followed by "go". .Nm makes use of the DB-Library API provided by FreeTDS. This API is of course also available to application developers. .Sh OPTIONS .Bl -tag -width indent .It Fl D Ar database Database to use. .It Fl H Ar hostname hostname Override name of client sent to server. .It Fl P Ar password Database server password. .It Fl S Ar servername Database server to which to connect. .It Fl U Ar username Database server login name. If username is not provided, a domain login is attempted for TDS 7+ connections. .It Fl e Ar error_file Name of file for errors. .It Fl h Print column headers with the data to the same file. .It Fl i Ar input_file Name of script file, containing SQL. .It Fl o Ar output_file Name of output file, holding result data. .It Fl q Do not print column metadata, return status, or rowcount. Overrides .Fl h Ns . .It Fl t Ar field_term Specifies the field terminator. Default is two spaces (' '). Recognized escape sequences are tab ('\\t'), carriage return ('\\r'), newline ('\\n'), and backslash ('\\\\'). .It Fl v Verbose mode, for more information about the DB-Library interaction. This also reports the result set metadata, including and return code. All verbose data are written to standard error (or .Fl e Ns ), so as not to interfere with the data stream. .It Fl R Ar pivot_description Specify pivot trasformation. The format is .Ao Ar down\ columns Ac .Ao Ar across\ columns Ac .Ao Ar function Ac .Ao Ar value Ac . Columns are specified but numbers. The format of .Ar down columns and .Ar across columns is a comma separated list of columns. .Ar function is either count, sum, min or max. .El .\" .Sh ENVIRONMENT .Ev DSQUERY default .Ar servername .\" .Sh NOTES .Nm is a filter; it reads from standard input, writes to standard output, and writes errors to standard error. The .Fl i Ns , Fl o Ns , and Fl e options override these defaults. .Pp The source code for .Nm is intended as a model for DB-Library users. DB-Library has a rich set of functions, and it can be hard sometimes to understand how to use them, particularly the first time. If you find something about the source code unclear, you are encouraged to email the author your comments. .\" .Sh EXIT STATUS .Nm exits 0 on success, and >0 if the server cannot process the query. .Pp For messages with severity > 10, .Nm calls exit(3) with the severity level. For example, if the severity level is 16, .Nm will return an exit status of 16 to the shell. .\" .Sh HISTORY .Nm first appeared in FreeTDS 0.63. .\" .Sh AUTHORS The .Nm utility was written by .An "James K. Lowden" Aq jklowden@freetds.org . .\" .Sh BUGS Microsoft servers as of SQL Server 7.0 SP 3 do not return output parameters unless the RPC functions are used. This means .Nm cannot return output parameters for stored procedures with these servers. PKj5];ӛ< < usr/share/man/man1/defncopy.1nu[.\" cf. groff_mdoc .Dd April 26, 2012 .Os FreeTDS 1.5.16 .Dt DEFNCOPY FreeTDS "FreeTDS Reference Manual" .\" .Sh NAME .Nm defncopy .Nd extract procedures and views from a Microsoft server. .\" .Sh SYNOPSIS .Pp .Nm .Op Fl v .Op Fl U Ar username .Op Fl P Ar password .Op Fl S Ar server .Op Fl D Ar database .Op Fl i Ar input_file .Op Fl o Ar output_file .Bo .Ar owner.object_name .\" Elipsis according to Werner Lemberg: .\" http://www.mail-archive.com/groff@gnu.org/msg03122.html .Op Ar owner.object_name .\|.\|.\& .Bc .\" .Sh DESCRIPTION .Pp .Nm is a utility program distributed with FreeTDS. It replaces a similar program of the same name distributed by Sybase. .Pp .Nm reads the text of a stored procedure or view, and writes a script suitable for recreating the procedure or view. For tables, it reads the output of sp_help and constructs a .Ql CREATE TABLE statement, complete with .Ql CREATE INDEX Ns , too. .\" .Ar owner is optional if you or the database owner is the owner of the procedure/view being copied. .Ar object_name is the name of the system object you wish to extract. .\" .Sh OPTIONS .Bl -tag -width indent .It Fl U Ar username database server login name. .It Fl P Ar password database server password. .It Fl S Ar server database server to which to connect. .It Fl D Ar database database to use. Optional if the procedure/view being extracted is in your default database. .It Fl i Ar input_file a script to apply to the database. Not currently implemented. .It Fl o Ar output_file a file to hold the script, defaults to standard output. .It Fl v Show version information and copyright notice. .El .\" .Sh NOTES .Nm is a filter; it reads from standard input, writes to standard output, and writes errors to standard error. The .Fl i , .Fl o , and .Fl e options override these defaults. .Pp .Nm makes use of the db-lib API provided by FreeTDS. This API is of course also available to application developers. .Sh EXIT STATUS .Pp .Nm exits 0 on success, and >0 if the server cannot process the query. .Pp .Nm will report any errors returned by the server, but will continue processing. .\" .Sh HISTORY .Pp .Nm first appeared in FreeTDS 0.63. .\" .Sh AUTHORS The .Nm utility was written by .An James K. Lowden Aq jklowden@schemamania.org. .\" .Sh BUGS Works only with Microsoft servers and ancient Sybase servers. Does not create primary keys. Many options are defined by Sybase that this version does not implement. Feel free to correct this situation. In theory, .Nm could apply/produce DDL for any system object, but at present only tables, procedures and views are supported, and only for extraction. PKj5]usr/share/man/man1/freebcp.1nu[.\" cf. groff_mdoc .Dd March 25, 2015 .Os FreeTDS 1.5.16 .Dt FREEBCP 1 .Sh NAME .Nm freebcp .Nd bulk loading utility for Sybase and Microsoft databases .Sh SYNOPSIS .Nm .Bo Bo Ao Ar database Ac Ns . Bc Ns Ao Ar owner Ac Ns . Bc Ns Aq Ar object_name .Bro .Ar in | .Ar [query] Ns Ar out .Brc .Ar datafile .Bro .Fl c | .Fl n | .Fl f Ar formatfile .Brc .Op Fl S Ar servername .Op Fl D Ar dbname .Op Fl U Ar username .Op Fl P Ar password .Op Fl b Ar batchsize .Op Fl F Ar firstrow .Op Fl L Ar lastrow .Op Fl e Ar errfile .Op Fl I Ar interfaces .Op Fl m Ar maxerror .Op Fl t Ar field_term .Op Fl r Ar row_term .Op Fl h Ar hints .Op Fl T Ar textsize .Op Fl A Ar packet_size .Op Fl O Ar options .Op Fl i Ar inputfile .Op Fl o Ar outputfile .Op Fl C Ar charset .Op Fl EdVv .\" .Sh DESCRIPTION .Nm is a utility program distributed with FreeTDS. .Nm replicates (in part at least) the functionality of the bcp utility programs distributed by Sybase and Microsoft. .Nm makes use of the DB-Library bcp API provided by FreeTDS. This API is also available to application developers. .Pp The manual pages or online help for Sybase or SQL Server can be referenced for more detailed information on bcp functionality. .\" .Sh TABLES\ AND\ FILES .Bl -tag -width indent .It Ar database The name of the database containing object to be copied. Optional if the table/view is in the default database for .Ar username . .It Ar schema The schema of the object being copied. If not provided, the default schema for .Ar username is used. .It Ar object The name of the database object you wish to access, typically a table. It can also be a view. All views can be read; some can be written, subject to constraints. With .Ar queryout Ns , Ar object can also be an SQL query. .It Ar in Copy data from a host file to a database table. .It Ar out Copy data from a database table to a host file. .It Ar queryout indicates that .Ar table_name is in fact SQL, rather than a database object. .Nm will execute the query and write the results to a file. (It is a good idea to have the query return one and only one result set.) .It Ar datafile The name of an operating system file. .El .\" .Sh OPTIONS .Bl -tag -width indent .It Fl A Ar packet_size Set the size of a TDS packet to packet_size. Not sure why you would want to do this, except as an experiment. .It Fl D Ar dbname The name of the default database to use. Overrides default database associated with the login account. Causes .Nm to issue a .Ic USE Ar dbname command immediately after logging in, before commencing BCP operations. .It Fl E Write the data in datafile to the table's IDENTITY column. Without this flag, the identity data present in the datafile will be ignored, and new IDENTITY values will be generated for the imported rows. .It Fl F Ar firstrow The first row to copy from the input file or database table. The default is the first row, row 1. .It Fl I Ar interfaces The name and location of the .Pa interfaces file to search when connecting to servername. Overrides .Pa freetds.conf. .It Fl L Ar lastrow The last row to copy from an input file or database table. The default is the last row. .It Fl O Ar options SQL text to set connection options prior to the bcp operation. If .Ar options is a valid filename, the SQL is read from the file instead. Sometimes needed for .Ar queryout . Example: .Li -O `SET QUOTED_IDENTIFIER ON' Ns . .It Fl P Ar password The password associated with .Ar username . .It Fl S Ar servername The name of the Database Server to which to connect. .It Fl T Ar textsize For text or image columns, set the maximum number of characters to request from the server. Defaults to the setting in .Pa freetds.conf . If not specified anywhere, defaults to the full size of the data. .It Fl U Ar username A database login name. For TDS\ 7+ connections, a domain login is attempted if .Ar username is not provided. .It Fl b Ar batchsize The number of rows per batch of data copied. Batching applies only when you are bulk copying into the database. Each batch of data is effectively .Dq committed into the database. The default value for .Ar batchsize is 1000. .It Fl c The host data file is (or will be) in "character" format, i.e., a text file. Encoding is determined by the client charset attribute in .Pa freetds.conf . .It Fl d Turn off any logging. (Unintuitive, perhaps.) .It Fl e Ar errfile Write errors to .Ar errfile . For uploads. Includes line and column information, and the row data. .It Fl f Ar formatfile The format of the host data file is described by .Ar formatfile . The layout of .Ar formatfile is identical to that understood by the Sybase and Microsoft bcp utilities, but is too complicated to describe here. .It Fl h Ar hints Set bcp hints. For valid values, cf. .Fn bcp_options in the FreeTDS Reference Manual. .It Fl m Ar maxerror Stop after encountering .Ar maxerror errors. Default 10. .It Fl n The host data file is in .Dq native format. This is a format that .Nm will be able to process, but is not portable or readable. .It Fl r Ar row_term The row terminator for a character file. May be more than one character. Default is newline ('\\n'). Cf\&. .Fl c Ns , above. .It Fl t Ar field_term The field terminator for character file. Also known as a column delimiter. May be more than one character. Default is tab ('\\t'). Cf\&. .Fl c Ns , above. .It Fl v .It Fl V Print the version information and exit. .It Fl i Ar inputfile Read input data from file specified. .It Fl o Ar outputfile Write output data to file specified. .It Fl C Ar charset Specify character set to use to talk to server. .El .Sh ENVIRONMENT .Ev DSQUERY default .Ar servername .\" .Sh NOTES When connecting to a Sybase database server, it is required that the TDS 5.0 protocol be used. When connecting to a Microsoft SQL Server 2000 database server, the TDS\ 7 (or later) protocol is required. .Pp Sybase and Microsoft define different versions of the bcp portion of TDS 4.2. Because FreeTDS has no way of knowing which type of server it's connected to, .Nm does not support version 4.2 of the TDS protocol. .\" .Sh HISTORY .Nm first appeared in FreeTDS 0.60 .Sh AUTHORS The .Nm utility was written by .An Bill Thompson Aq thompbil@exchange.uk.ml.com .Sh BUGS Currently, there is no support for text data types in .Nm Ns , when SQL Server 2000 is the target server. PKj5]t t usr/share/man/man1/datacopy.1nu[.\" cf. groff_mdoc .Dd March 25, 2015 .Os FreeTDS 1.5.16 .Dt DATACOPY FreeTDS "FreeTDS Reference Manual" .\" .Sh NAME .Nm datacopy .Nd move table data between two servers .\" .Sh SYNOPSIS .Nm .Op Fl vdE .Bro .Fl t | .Fl a | .Fl c .Ar owner .Brc .Op Fl b Ar batchsize .Op Fl p Ar packetsize .Op Fl S Ar server/username/password/database/table_or_view .Op Fl D Ar server/username/password/database/table .Op Fl T Ar textsize .\" .Sh DESCRIPTION .Nm is a utility distributed with FreeTDS. .Nm will move table data from one server to another without the need for intermediate files. .Nm is much faster and more efficient than is freebcp out/in. .Pp .Nm makes use of the db-lib bcp API built into FreeTDS. This API is also available to application developers. .Pp .Nm can be used to migrate data between Sybase ASE and SQL Server or vice versa. .\" .Sh OPTIONS .Bl -tag -width indent .It Fl t Truncate target table before loading data. .It Fl a Append data to target table. .It Fl c Ar owner Create the target table with the same schema as the source table. .Nm will submit a .Ql CREATE TABLE command on the target server using the specified owner in the command, e.g. .Ql CREATE TABLE owner.table (.\|.\|.\&). .It Fl b Ar batchsize The number of rows per batch of data copied. Each batch of data is effectively 'committed' to the database. The default is 1000. .It Fl p Ar packetsize The number of bytes, per network packet, sent to and from the servers. Increased packet size can enhance performance. .It Fl T Ar textsize Specify size of TEXT/IMAGE column from network. .It Fl v Produce verbose output, including diagnostic timings. .It Fl d Produce freetds TDSDUMP output. (Serious debug only!) .It Fl S Ar server/username/password/database/table_or_view The connection information for the source server and the location/name of the table (or view) to be copied. If not specified, .Nm prompts the user for the information. .It Fl D Ar server/username/password/database/table The connection information for the destination server and the location/name of the target table. If not specified, .Nm prompts the user for the information. .It Fl E Keep identity values. .El .Sh SEE ALSO .Xr freebcp 1 , Xr defncopy 1 , Xr bsqldb 1 , Xr tsql 1 , .%B FreeTDS User Guide. .\" .Sh HISTORY .Pp .Nm first appeared in FreeTDS 0.64. .\" .Sh AUTHORS The .Nm utility was written by .An Bill Thompson Aq thompbil@exchange.uk.ml.com . PKj5]s99usr/share/man/man1/fisql.1nu[.\" cf. groff_mdoc .Dd March 25, 2015 .Os FreeTDS 1.5.16 .Dt FISQL FreeTDS "FreeTDS Reference Manual" .\" .Sh NAME .Nm fisql .Nd interactive SQL shell .\" .Sh SYNOPSIS .Pp .Nm .Op Fl eFgpnvXY .Op Fl a Ar display_charset .Op Fl A Ar packet_size .Op Fl c Ar cmdend .Op Fl D Ar database .Op Fl E Ar editor .Op Fl h Ar headers .Op Fl H Ar hostname .Op Fl i Ar inputfile .Op Fl I Ar interfaces_file .Op Fl J Ar client_charset .Op Fl l Ar login_timeout .Op Fl m Ar errorlevel .Op Fl o Ar outputfile .Op Fl P Ar password .Op Fl s Ar colseparator .Op Fl S Ar server .Op Fl t Ar timeout .Op Fl U Ar username .Op Fl w Ar width .Op Fl y Ar sybase_dir .Op Fl z Ar language .\" .Sh DESCRIPTION .Pp .Nm is very similar to the .Ql isql utility programs distributed by Sybase and Microsoft. Like them, .Nm uses the command .Ql go on a line by itself as a separator between batches. .\" .Sh OPTIONS .Bl -tag -width indent .It Fl a Ar display_charset The client charset name. Not implemented. .It Fl A Ar packet_size Set protocol packet size. You should not need to set this parameter. .It Fl c Ar cmdend Command terminator, defaults to .Ql go Ns . .It Fl D Database name on the server to use. .It Fl e Echo SQL input (usually in outputfile) .It Fl E Ar editor Specify an editor to invoke. Defaults to vi. .It Fl F FIPS mode ON. Server returns a message (but processes the query anyway) when it encounters a non-standard SQL command. .It Fl g Display a brief help message .It Fl h Ar headers Number of rows after which to repeat the column headers. Default is once per resultset. .It Fl H Ar hostname Hostname of the client machine as it will be told to the server. .It Fl I Ar interfaces_file Name of the interfaces or freetds.conf file to use. .It Fl i Ar inputfile Name of script file, containing SQL. .It Fl J Ar client_charset Not implemented. .It Fl l Ar login_timeout How long to wait for the server to acknowledge a login attempt. .It Fl m Ar errorlevel For errors of the severity level specified or higher, print only the message number, state, and error level. Below that level, print nothing. .It Fl n Suppress line numbers in echoed output. .It Fl o Ar outputfile Name of output file, holding result data. .It Fl p Prints performance statistics. Not implemented. .It Fl P Ar password Database server password. .It Fl s Ar colseparator The column separator. Default is space. Shell metacharacters require quoting. .It Fl S Ar server Database server to which to connect. .It Fl t Ar timeout The query timeout, in seconds. How long to wait for a query to be processed. The default is indefinitely, or as determined by freetds.conf. .It Fl U Ar username Database server login name. .It Fl v Display version and copyright. .It Fl w Ar width How many characters wide to print the output. Defaults to 80. .It Fl X Use encrypted login. Not implemented in FreeTDS. .It Fl y Pa sybase_dir Sets the .Ev SYBASE environment variable. Not used by FreeTDS. .It Fl Y Use chained transactions. .It Fl z Ar language Name of a language for fisql's prompts and messages. Cf. DBSETLNATLANG. .El .\" .Sh NOTES .Nm is a filter; it reads from standard input, writes to standard output, and writes errors to standard error. The .Fl i Ns , .Fl o Ns , and .Fl e options override these defaults. .Pp .Nm uses the DB-Library API provided by FreeTDS. It was first implemented using Sybase's own library and continues to work with it. Before (and after) modifying it, it would be well to test it with Sybase's library to assure compatibility between it and FreeTDS. EXIT STATUS .Pp .Nm exits 0 on success, and >0 if the server cannot process the query. .Pp .Nm will report any errors returned by the server, but will continue processing. In a production environment, this behavior may be insufficiently stringent. To make it extremely intolerant of errors, change the message and error handlers to call exit(3). .\" .Sh HISTORY .Nm first appeared in FreeTDS 0.65. .\" .Sh AUTHORS The .Nm utility was written by .An Nicholas S. Castellano Aq entropy@freetds.org Ns , who contributed it to the FreeTDS project under the terms of the GPL. .\" .Sh BUGS Requires the GNU readline library. PKj5]R#ZP P usr/share/man/man1/bsqlodbc.1nu[.\" cf. groff_mdoc .Dd March 25, 2015 .Os FreeTDS 1.5.16 .Dt BSQLODBC FreeTDS "FreeTDS Reference Manual" .\" .Sh NAME .Nm bsqlodbc .Nd batch SQL script processor using ODBC .\" .Sh SYNOPSIS .Pp .Nm .Op Fl hqv .Op Fl U Ar username .Op Fl P Ar password .Op Fl S Ar server .Op Fl D Ar database .Op Fl i Ar input_file .Op Fl o Ar output_file .Op Fl e Ar error_file .Op Fl t Ar field_term .Op Fl V Ar odbc_version .\" .Sh DESCRIPTION .Pp .Nm is a utility program distributed with FreeTDS. .Pp .Nm is a non-interactive equivalent of the .Ql isql utility programs distributed by Sybase and Microsoft. Like them, .Nm uses the command .Ql go on a line by itself as a separator between batches. The last batch need not be followed by .Ql go . .Pp .Nm makes use of the ODBC API provided by FreeTDS. This API is of course also available to application developers. .\" .Sh OPTIONS .Bl -tag -width indent .It Fl U Ar username Database server login name. .It Fl P Ar password Database server password. .It Fl S Ar server Database server to which to connect. .It Fl D Ar database Database to use. .It Fl i Ar input_file Name of script file, containing SQL. .It Fl o Ar output_file Name of output file, holding result data. .It Fl e Ar error_file Name of file for errors. .It Fl t Ar field_term Specifies the field terminator. Default is two spaces ( .Ql \ \ .Ns ). Recognized escape sequences are tab ( .Ql \et .Ns ), carriage return ( .Ql \er .Ns ), newline ( .Ql \en .Ns ), and backslash ( .Ql \e\e .Ns ). .It Fl h Print column headers with the data to the same file. .It Fl q Do not print column metadata, return status, or rowcount. Overrides .Fl h . .It Fl v Verbose mode, for more information about the ODBC interaction. This also reports the result set metadata, including and return code. All verbose data are written to standard error (or .Fl e Ns ), so as not to interfere with the data stream. .It Fl V Ar odbc_version Specify ODBC version (2 or 3). .El .\" .Sh NOTES .Pp .Nm is a filter; it reads from standard input, writes to standard output, and writes errors to standard error. The .Fl i , .Fl o , and .Fl e options override these defaults. .Sh EXIT STATUS .Nm exits 0 on success, and >0 if the server cannot process the query. .\" .Sh HISTORY .Nm first appeared in FreeTDS 0.65. .\" .Sh AUTHORS The .Nm utility was written by .An James K. Lowden Aq jklowden@freetds.org . PKj5]%ߜ usr/share/man/man1/tsql.1nu[.\" cf. groff_mdoc .Dd March 25, 2015 .Os FreeTDS 1.5.16 .Dt TSQL FreeTDS "FreeTDS Reference Manual" .Sh NAME .Nm tsql .Nd utility to test FreeTDS connections and queries .Sh SYNOPSIS .Nm .Bro .Fl S Ar servername .Op Fl I Ar interface | .Fl H Ar hostname .Op Fl L .Op Fl p Ar port .Brc .Op Fl D Ar dbname .Op Fl U Ar username .Op Fl P Ar password .Op Fl o Ar options .Nm .Fl C .Sh DESCRIPTION .Nm is a FreeTDS diagnostic tool. It uses the TDS protocol to connect to a Sybase or Microsoft SQL Server, and lets the user issue queries. .Nm does not use the FreeTDS client libraries. Instead, it uses only the lowest level library, libtds, to test the protocol implementation. .Pp .Nm can be run in two ways, one which uses the freetds.conf and one which connects directly using the server's hostname and port. The .Fl H and .Fl p parameters are provided to let the user verify a server is listening on the named host and port. These parameters override any configuration files and environment variables. The .Fl S parameter can be used to test the local configuration. FreeTDS will use freetds.conf (or equivalent) and environment variables in the normal way to determine the server's IP address and port. You can use .Fl I to specify a filename, overriding FreeTDS's configuration file search algorithm. .Sh OPTIONS .Bl -tag -width indent .It Fl S Ar servername database server to which to connect. .It Fl D Ar dbname database to use. .It Fl I Ar interface freetds.conf or interfaces file describing servername. .It Fl H Ar hostname DNS hostname of the server. .It Fl p Ar port port at which SQL Server is listening. .It Fl U Ar username database login name. If username is not provided, a domain login is attempted for TDS 7+ connections. .It Fl P Ar password database password. .It Fl L list Microsoft server instances (with .Fl H Ns ). .It Fl C print some of the compile-time configuration parameters. .It Fl o Ar options apply the options specified to every command. .Bl -tag -width indent .It Fl f No footer .Bq result count .It Fl h No header .Bq titles .It Fl t Print time .It Fl v Print version .It Fl q Quiet .El .It Fl a Ar appname application name. .It Fl t Ar colterm column terminator. .It Fl r Ar rowterm row terminator. .It Fl r Ar rowterm row terminator. .It Fl J Ar charset character set. .It Fl v verbose mode. .El .\" .Sh NOTES If you can connect with .Ql tsql -S servername Ns , your basic FreeTDS installation is working. .Pp Typing .Ql exit Ns , .Ql quit Ns , or .Ql bye (or .Li ^D Ns ) exits .Nm Ns . .Pp Typing .Ql version displays the TDS protocol version. .Pp Command batches may be separated with .Ql go or .Ql GO Ns . If .Ql GO the version string is reported before executing the batch. .Pp After prompting for the password (if not provided with .Fl P Ns ), .Nm will attempt to connect to the remote server. .Nm displays a counter indicating the number of seconds elapsed during the connection attempt. Typically, .Nm immediately responds with a .Ql 1> prompt. If you see the counter (1, 2, 3, ...), most likely .Nm is unable to connect to the indicated server. .Pp .Nm is not a replacement for a complete isql such as sqsh (www.sqsh.org). If you have suggestions for ways to make .Nm more useful as a diagnostic tool, please post them to the FreeTDS mailing list for consideration. .Sh HISTORY .Nm first appeared in FreeTDS 0.60. .Sh AUTHORS The .Nm utility was written by .An Brian Bruns Ns . .Sh BUGS Several, to be sure, now that it's documented. :) PKj5]d &usr/share/doc/alt-freetds11/AUTHORS.mdnu[Brian Bruns Started this crazy thing James K. Lowden Documentation, maintainer from 2003 to early 2015. Marc Abramowitz Testing and patches, Travis CI tests. Koscheev Andrey Negative money patch. Craig A. Berry VMS support. James Cameron GNU standards compliance and minor fixes. Peter Deacon Lots of help, testing and patches. John F. Dumas Patch to fix memory leaks. David Fraser Testing and patches (NO-DM support). Scott Gray TDS 7.0 numeric support and bug fixes. Alex Hornby Testing and patches. Mihai Ibanescu GNUified the packet. Gregg Jensen Message handlers and extra datatype support and some sybperl stuff? Viktar Klimkovitch ODBC fixes to get libodbc++ working. Bob Kline NTEXT support. Lothar Krauss ODBC fixes. Steve Langasek Off by one fixes and autoconf byte size thing. Debian package maintainer. Mark J. Lilback Implementation of dbstrlen and dbstrcpy. Kevin Lyons Various TDS bug fixes. Steve Murphree Contributed a huge ODBC patch. Dennis Nicklaus vxWorks port and fixes for dbdata() and SYBVARBINARY. Arno Pedusaar Donated his TDS4.2 code to the cause. Brandon M. Reynolds Fix for arbitrarily large queries under dblib. Thomas Rogers Testing and patches. Mark Schaal Cleaned up message handling, bug fixes, ctlib unittests. Ken Seymour ODBC Driver Fixes. Craig Spannring JDBC driver and CVS repository. Martin Spott Testing and patches. Sam Tetherow Various TDS bug fixes. Bill Thompson BCP patches and datetime fixes. Patrick van Kleef Various bug fixes, dbcanquery() and odbc version checks. Geoff Winkless Lost connection stuff. Nicholas S. Castellano Many bug fixes and improvements, contributor of fisql application. Frediano Ziglio Lot of contributions, maintainer since 2015. Special thanks to Michael Peppler , author of the DBD::Sybase Perl module. Thanks go to the folks at A2i, Inc. (http://www.a2i.com) for funding the development of dblib host file bulk copy and writetext support, and to Dave Poyourow there for helping with the debugging. PKj5] č%usr/share/doc/alt-freetds11/ChangeLognu[Author: Frediano Ziglio Date: Sun Mar 29 20:38:27 2026 +0100 odbc: Update SQLGetInfo(SQL_DESCRIBE_PARAMETER) SQLDescribeParam was implemented, so return it's supported. Author: Frediano Ziglio Date: Mon Mar 23 18:31:52 2026 +0000 odbc: Fix SQL_DESC_BIND_OFFSET_PTR handling Use sql_desc_bind_offset_ptr not only on structure binding or on following (not first) rows. SQLExtendedFetch uses sql_desc_bind_offset_ptr so do not clear it. Add a test, partially from Bob Kline. This fixes https://github.com/FreeTDS/freetds/issues/716. Author: Frediano Ziglio Date: Sat Feb 14 17:16:58 2026 +0000 utils: Fix compatibility with Nettle 4 library Hash length parameter was removed from nettle_md5_digest. Method suggested by Satadru Pramanik. Author: Frediano Ziglio Date: Thu Feb 19 04:48:16 2026 +0000 odbc: Fix leak in SQLDriverConnect if string is invalid Login structure was not freed if odbc_parse_connect_string returned false, which can simply happen if the string has an invalid syntax. Author: Frediano Ziglio Date: Mon Feb 16 21:45:25 2026 +0000 tds: Avoid overflow converting numeric to string Author: Aaron M. Ucko Date: Thu May 9 16:36:31 2024 -0400 Improve support for TDS 5 (Sybase) bulk transfers. * Read defaults, send them back explicitly as needed, and clean up their storage afterwards. * tds5_bcp_add_variable_columns: ** Send spaces in lieu of fully empty SYB(VAR)CHAR data. ** Send correct textpos values in all cases. ** When writing the adjustment table, avoid a potential Sybase "row format error" by eliding the (effective) column count when it would have repeated the largest adjustment table entry. * tds_deinit_bcpinfo: Free and reset current_row for transfers in. Avoid potentially trying to interpret fragments of outgoing TDS data as BLOB pointers. Author: Frediano Ziglio Date: Mon Dec 1 19:37:18 2025 +0000 odbc: Fix for SQL_COPT_SS_OLDPWD attribute This attribute allows to change the password while logging to the server. Code was wrongly taking the length of the attribute in characters instead of bytes causing a failure using wide function. Author: Frediano Ziglio Date: Wed Nov 19 23:57:13 2025 +0000 Fix ABI breakage for tdsdump_open under Windows tdsdump_open is exported by our DB-Library implementation. Before version 1.5 tdsdump_open always accepted a "const char*" string, however in 1.5 this was changed to "const wchar_t*" for Windows to support Unicode. This broke ABI for Windows. Provide tdsdump_open with old ABI and a new tdsdump_wopen (Windows only). Author: Matt McNabb Date: Thu Oct 30 21:26:10 2025 -0400 odbc: Re-prepare a prepared query if it never returned a handle Merge: b95ce1e6 e39070ff Author: Frediano Ziglio Date: Thu Oct 30 06:30:11 2025 +0000 Merge fix for SQLPutData Author: Frediano Ziglio Date: Thu Oct 23 19:45:03 2025 +0100 odbc: Fix inserting too much data with SQLPutData An error is returned if column is truncate. Author: Frediano Ziglio Date: Wed Oct 8 16:35:57 2025 +0100 odbc: Accept any variable data type using DATA_AT_EXEC length Reported in https://github.com/FreeTDS/freetds/issues/667. The behaviour is consistent with Microsoft driver. This caused an issue using PHP ODBC PDO driver. Author: Frediano Ziglio Date: Tue Oct 14 21:35:22 2025 +0100 ci: Update win-iconv version Pick up more recent master version, already including my fix. Author: Frediano Ziglio Date: Wed Sep 10 17:53:56 2025 +0100 dblib: Expand buffers to hold converted floating point Make sure there's enough space for converting the numbers. This fixes fisql command printing real/float values. Author: Frediano Ziglio Date: Thu Aug 28 21:02:57 2025 +0100 Use CORK flag correctly, do not delay partial packets Resetting TCP_CORK flag in Linux causes the partial packets to be flushed however if the queue is full partial packets are not moved to the queue. Partial packets are then processed when space is available. However FreeTDS used to set again the flag causing partial packets to be delayed. Remove that delay reducing latency. Merge: 569401e6 65efc2d5 Author: Frediano Ziglio Date: Wed Jun 25 17:15:09 2025 +0100 Merge test for vasprintf for VMS Author: Craig A. Berry Date: Tue Jun 24 10:38:20 2025 -0500 VMS has had vsnprintf for a long time And this allows for a better vasprintf fallback for systems where vasprintf is not available. Author: Craig A. Berry Date: Mon Jun 23 07:26:27 2025 -0500 Better test for vasprintf on VMS Recentish CRTLs do have it, but the test I added 23 years ago was not correctly detecting it. Author: Frediano Ziglio Date: Wed Jun 18 11:08:10 2025 +0100 tds: Fix bulk copy in for Microsoft XML type As documented, and tested, the protocol requires the usage of NVARCHAR type, not XML, which is refused causing an error. Merge: 349445e4 6c532e2a Author: Frediano Ziglio Date: Sat May 31 17:43:29 2025 +0100 Fix conversion bound checks, tsql message formatting Author: Frediano Ziglio Date: Sat May 31 17:02:34 2025 +0100 tds: Fix bound check conversion (float -> uint) Converting from floating point to unsigned int the bound check was incorrect resulting in invalid conversions if the input value was not in range. Author: Frediano Ziglio Date: Sat May 31 17:00:18 2025 +0100 tsql: Avoid possible invalid type formatting a message Specifically: tsql.c: In function ‘do_query’: tsql.c:292:80: warning: format ‘%ld’ expects argument of type ‘long int’, but argument 4 has type ‘__suseconds64_t’ {aka ‘long long int’} [-Wformat=] 292 | sprintf(message, "Total time for processing %d rows: %ld msecs\n", | ~~^ | | | long int | %lld 293 | rows, (long) ((stop.tv_sec - start.tv_sec) * 1000) + ((stop.tv_usec - start.tv_usec) / 1000)); | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | | | __suseconds64_t {aka long long int} long should be enough for 49 days in case of 32 bit, I hope your query doesn't take so long. Author: Frediano Ziglio Date: Mon Apr 21 15:58:08 2025 +0100 ctlib: Remove leak freeing command Release cursor while freeing command. PKj5][Dkk#usr/share/doc/alt-freetds11/NEWS.mdnu[$Id: 73172b888449ed18e50fb44dc7f823fddbfb3611 $ Summary of Changes in release 1.5 -------------------------------------------- User visible (not in a particular order): - Generic: - Do not write to stdout/stderr; - (\*) Fix certificate check for hostnames with wildcards; - (\*) Update to Autoconf 2.71; - (\*) Fix conversions of "-0" numeric; - (\*) Minor compatibility for 32 bit for bulk copy; - Distribute OpenSSL libraries with Appveyour artifacts; - Use Unicode and wide characters for file paths for Windows; - Remove ANSI encoding code from SSPI code, always full Unicode; - (\*) Set control method for final OpenSSL BIO to avoid some errors; - (\*) Get Windows code page using Windows API for compatibility; - (\*) Do not try to use `pthread_cond_timedwait_relative_np` on newer Android; - Fix compatibility connecting to some old MSSQL 2000 server; - (\*) Support Sybase server not configured with UTF-8 charset; - (\*) Change some file license from GPL to LGPL; - (\*) Support very old Sybase ASE versions; - (\*) Ignore query errors during connection initial setup increase compatibility with different servers like OpenServer; - Support `strict` encryption for naked TLS (TDS 8.0); - (\*) Don't leak allocations on syntax errors converting to binary; - Accommodate FreeBSD/Citrus iconv; - Fall back on unsupported address families locking for host address; - Avoid potential hangs on short replies reading TDS packets; - Add support for TDS 8.0; - Reject invalid NULL data in `tds7_send_record` (bulk transfer); - Allows `freetds.conf` to be stored in `~/.config` (Unix). - ODBC: - Fixed some attribute size for 64 bit platforms (now more compatible with MS driver); - (\*) Prevent setting some wrong type in internal decriptors; - (\*) Fix leak in `odbc_parse_connect_string`; - Fix an issue compiling bcp test on 32 systems with unixODBC; - (\*) Fix getting `SQL_ATTR_METADATA_ID` attribute; - Check for maximum value for `SQL_ATTR_QUERY_TIMEOUT`; - (\*) Return better error for invalid character set; - Check errors from `SQLInstallDriverExW` and `SQLRemoveDriver`; - Update some driver registration field for Windows; - (\*) Remove minor leak parsing connection string; - Add `Encrypt` and `HostNameInCertificate` settings; - (\*) Fix bug cancelling not active statements; - Fix `SQLGetInfo` `SQL_DRIVER_HSTMT` and `SQL_DRIVER_HDESC`; - Avoid shared object version for ODBC driver; - Allows `SERVER` to override `DSN` or `SERVERNAME` settings; - Allows to set version to `AUTO` from Windows dialog; - (\*) Fix handling of `SQL_C_STINYINT`; - Fix return value when bulk operation not using status array fails; - Implement `SQLDescribeParam` using `sp_describe_undeclared_parameters`. - Applications: - datacopy: - Allows copy when `dest_collen` > `src_collen`; - Increase CREATE TABLE command buffer to accommodate larger queries. - defncopy: - (\*) Use memory instead of temporary file; - (\*) Fix MS column length for N(VAR)CHAR types; - (\*) Quote strings and identifiers; - (\*) Handle correctly order of index recordset; - (\*) Quote key index names. - CT-Library: - Error reporting more compatible with Sybase; - Return CT-Library type values, not TDS ones; - Fix `*resultlen` for conversions to SYBIMAGE from `cs_convert`; - Populate `datafmt->format` to avoid not initialized values; - More debugging on not implemented `bcp_colfmt_ps`; - Makes sure we don't use a negative number as string length; - Use client type, not propagate TDS one; - (\*) Fix crash using `ct_command` with `CS_MORE` option; - (\*) `_blk_get_col_data`: Consistently return `TDS_FAIL` on failure; - (\*) Formally define `BLK_VERSION_{155,157,160}`; - (\*) Cap binary/image copying to the destination length; - (\*) Conditionally distinguish NULL and empty results; - (\*) Issue an error for unsupported server types from `ct_describe`; - Add support for setting hints for bulk copy using `blk_props`; - Support getting `CS_ENDPOINT` (socket file descriptor) using `ct_con_props`; - Support getting `CS_PRODUCT_NAME` using `ct_con_props`; - Introduce `CS_INTERRUPT_CB` and corresponding return values: `CS_INT_*`; - Better support new date/time types (DATETIME2, etc.) in bulk copy; - Report system errors' descriptions. - DB-library: - Improve error reporting; - Allows to set port number with `DBSETLPORT`; - Allows encryption option. - pool: - Disable Nagle algorithm on user socket for performance; - (\*) Ignore extension in login packet for compatibility. - server: - Reply correct version for TDS 7.4; - Avoid leaks in `tds_get_query_head`; - Set `SO_REUSEADDR` option; - Better support for string conversion and UTF-8; - Improve sending data, fix sending metadata; - Update prelogin reply allowing TDS 7.2; - Fix `tds_send_login_ack` product name length; - Support no-ASCII characters in environment names; - Return 0 rows during login; - Pass correct packet size environment in test server; - Do not overwrite error before displaying it; - Improve message writing functions; - Set `TCP_NODELAY` after accepting connected sockets. (\*) Feature backported in stable 1.4 branch. Implementation: - Remove various minor leaks; - Remove some potential `NULL` dereference; - (\*) Add support for `SYBSINT1` type conversion; - Improve GNU compatibility in CMake using `GNUInstallDirs`; - Remove many warnings compiling code with stricter options; - Optimize numeric precision change; - Use more `bool` type for boolean instead of integer; - Minor compatibility with tests and Sybase/SAP libraries; - Avoid some warnings from CMake; - Various improvements to bounce utility: - Allows multiple connections; - Allows to specify a server name; - Allows to write dumps. - Use 64 bit constants, add `(U)INT64_C` macros; - Move `tds_new` macros to `include/freetds/macros.h`; - Move `tds_strndup` to utils; - Add GitHub actions to CI; - Allows `FREETDS_SRCDIR` overrides for tests; - Avoid potential zero-byte allocations (whose behavior is undefined) in libTDS; - Unify header guards definitions; - Unify tests includes in ctlib; - Accommodate Windows static builds; - Inform CMake of some accidentally Autotools-only tests; - Add Visual Studio 2022 to Appveyor test matrix; - Add `tds_socket_set_nodelay` utility; - Change `TDSCOLUMN::column_bindlen` field to signed type; - Use `TDS server` instead of `Adaptive Server` in error messages; - Add and reuse `TDS_END_LEN_STRING` utility; - Acknowledge non-exhaustive `TDS_SERVER_TYPE` switch statements; - Use replacement `getopt` in tests for more compatibility; - Include `stdint.h` in Visual Studio if available. Summary of Changes in release 1.4 -------------------------------------------- User visible (not in a particular order): - Fix some numeric conversion checks; - Always use Unicode for SSPI allowing not ASCII to work; - Improve BCP copy, especially for Sybase; - Better error reporting for ICONV failures; - Disable TLSv1 by default; - ODBC: partial TVP support (missing data at execution); - ODBC: support for quoted string in connection string; - CT-Library: support large identifiers; - CT-Library: report appropriate severity values; - apps: datacopy report errors on standard error; - pool: use poll instead of select to support more connections. Implementation: - Use more bool type for boolean instead of integer; - more macros for ODBC tests to encapsulate some ODBC API. Summary of Changes in release 1.3 -------------------------------------------- User visible (not in a particular order): - Generic: - Support UTF-8 columns using MSSQL 2019; - Do not accept TDS protocol versions "4.6" (never really supported) and "8.0"; - Minor portability issues; - Fix log elision for login; - Detect some possible minor memory failure in application; - Support long (more than 64k) SSPI packets (never encountered but you never know); - Fix unicode columns for ASA database; - Avoid using BCP with old protocols; - (\*) Fix bulk copy using big endian machines; - (\*) Fix Sybase uni(var)char and unsigned types for big endian machines; - (\*) Do not send nullable data during bulk copy if type is not nullable; - ODBC: - Added "Timeout" setting; - Applications: - Improve defncopy utility: - Fix some declaration; - Fix Sybase support; - (\*) Fix datacopy and freebcp logging ; - CT-Library: - Minor fix for variant type; - Better support for timeout setting; - (\*) Support some missing types (like nullable unsigned integers) for Sybase; - DB-library: - Unify date format (all systems can use the same syntax); - (\*) Allows to pass 0 as type for bcp_bind; - (\*) Fix DBSETLSERVERPRINCIPAL macro; - (\*) Do not limit queries length for bcp using Sybase; - (\*) Add KEEP_NULLS to BCP hints. (\*) Feature backported in stable 1.2 branch. Implementation: - Move replacement headers under freetds directory for coherence with other internal headers; - Lot of style updates; - Optimize UTF-8 encoding for ODBC, reuse common code. Summary of Changes in release 1.2 -------------------------------------------- User visible (not in a particular order): - Sybase server: - All strings are now converted as MSSQL; - Support kerberos login; - DB-Library: add DBSETNETWORKAUTH, DBSETMUTUALAUTH, DBSETDELEGATION and DBSETSERVERPRINCIPAL; - CT-Library: add CS_SEC_NETWORKAUTH, CS_SEC_NETWORKAUTH, CS_SEC_NETWORKAUTH and CS_SEC_NETWORKAUTH; - Bulk copies: - DB-Library: fix trim of unicode fields; - (\*) Apply character conversion for Sybase, like MSSQL; - (\*) Ignore computed columns; - (\*) Properly support multibyte strings in column names; - (\*) DB-Library: stop correctly on BCPMAXERRS setting; - (\*) DB-Library: do not try to convert skipped rows reading file allowing for instance to load CVS files; - (\*) CT-Library: added CS_DATABASE property to allows to connect correctly to Azure servers; - (\*) Improve support for MS XML columns for both DB-Library and CT-Library; - (\*) Fix some issues with MSSQL server redirection (used for instance in Azure); - (\*) Change SQL_DESC_OCTET_LENGTH value for wise character columns; - Better support for SQL_VARIANT: - Better column checks; - (\*) CT-Library: now supported, columns are returned as CS_CHAR_TYPE; - Some updates to server part: - Set correctly initial state; - IPv6 support; - Fix TDS 7.2 logins; - Support extended character using domain logins under Unix; - Improve MARS: - Less memory copies; - (\*) Remove possible deadlock; - Handle wrapping sequence/window numbers; - Make sure we sent the wanted packet; - (\*) Support UTF-16 surrogate pairs in odbc_wide2utf and odbc_set_string_flag fixing some character encoding support; - (\*) Fix multiple queries, used by ODBC to optimize data load; - (\*) Improve emulated parameter queries, fixing minor issues and reducing memory usage; - Support DBVERSION_UNKNOWN in dbsetlversion (will use automatic detection); - CT-Library: define CS_MIN_SYBTYPE and CS_MAX_SYBTYPE; - (\*) CT-Library: fix cs_will_convert accepting library constants, not libTDS. (\*) Feature backported in stable 1.1 branch. Implementation: - User guide converted to XML; - Always use little endian on network level, simpler and faster; - Converted some files to markdown; - Optimize bytes endianess conversion; - Made character lookup faster making character conversion quicker; - Optimize data padding in CT-Library; - Fix some build dependencies causing some files to not be properly recompiled during development; - Add "freeze" support allowing to pause sending in order to simplify lengths computations sending data. Summary of Changes in release 1.1 -------------------------------------------- User visible (not in a particular order): - Changed default TDS protocol version during configure to "auto". Versions 4.2 and 7.0 are no longer accepted for default, you may still specify an explicit version to connect to obsolete servers ("auto" won't attempt these versions); - allows to disable TLS 1.0 support; - pool server allows to specify different username/password for server and clients allowing to hide internal server logins; - tsql utility now send final partial query to server to avoid to have to specify a final "GO" line to terminate commands; - better support for Microsoft cluster, client will attempt multiple connection to server at the same time if DNS reply multiple IPs; - MONEY/SMALLMONEY types are now formated with 4 decimal digits to avoid truncation; - MARS support is now compiled by default; - pool server is now compiled by default; - Fixed SQL_ATTR_LOGIN_TIMEOUT for ODBC; - Fixed large integer numbers for ODBC RPC constants; - Fixed encrypted logins if "auto" protocol version is used; - Support CS_TIMEOUT, CS_LOGIN_TIMEOUT and CS_CLIENTCHARSET properties under CTLibrary; - Added a dbacolname function in DBLibrary, similar to dbcolname but for compute columns (mainly for Sybase now, Microsoft removed support for compute columns); - NTLMv2 is now on by default. Implementation: - Improved UTF-8 performances; - Use more stdint.h style definitions (like uint32_t); - Use bool type instead of int; - pool server compile under Windows too (not as capable as Unix version); - CMake build is now able to do an installation; - Added a src/utils directory to collect all common code not strictly related to replacements or TDS; - Simplified makefiles; - Support CP1252 encoding in internal trivial iconv; - Better ODBC detection. Allows to specify a directory with --with-iodbc to specify custom iOBDC. Summary of Changes in release 1.0 -------------------------------------------- User visible (not in a particular order): - Removed "8.0" from protocol version string accepted. Please update configuration files; - Default protocol version is now auto. This could slow down connection but make user experience less painful; - Sybase encrypted login. Set encryption to get it; - Support protocol version 7.4; - Add intent support to specify we don't want to change data; - Allow to attach database file during the login (MS SQL Server); - Support for Sybase time/date/bigdate/bigdatetime; - Pool is working again; - ODBC BCP (not complete); - Improved dbconvert and dbconvert_ps (more compatible); - Fixed dbspid; - Improved ODBC type information; - Better certificate verification; - AppVeyor is used for every build; - Try all IPs from DNS. This allows SQL Cluster connection to secondary servers. Implementation: - Removed Nmake support; - Type conversions simplified; - Better type handle code. Summary of Changes in release 0.95 -------------------------------------------- User visible (not in a particular order): - Support for build with CMake under Windows. - Support MSSQL 2008: - new date/time types; - NBCROWs; - able to retrieve CLR UDT types in binary format. - Moved from CVS to git. - Support MARS under ODBC. - IPv6 support. - Support unsigned Sybase types. - Sybase use some characters conversion like MSSQL. - Bulk-copy improvements: - more types; - support for empty fields; - no needs for seekable file; - avoid possible buffer overflows; - less memory consumption; - handle different BIT fields in Sybase; - -T option for datacopy. - datacopy: - prompting for password (use "-" password on command line); - empty user/password (to use Kerberos). - Support for query notifications in ODBC. - Support for protocols 7.2 and 7.3 under dblib and ctlib. - dblib: - dbpivot extension; - dbprcollen extension to get printable column size; - add DBCOL2 structure for dbtablecolinfo; - support DBTEXTSIZE option for dbsetopt; - support SRCNUMERICBIND and SRCDECIMALBIND binding; - DATETIME2BIND extension binding to support new mssql 2008 type; - ODBC: - add SQL_INFO_FREETDS_TDS_VERSION option to SQLGetInfo to retrieve FreeTDS version; - add --enable-odbc-wide-tests configure option to use wide functions in unit tests. - Better thread support. - Allow to specify server SPN for GSSAPI. - Sybase graceful disconnects. - Better support for VARCHAR(MAX)/VARBINARY(MAX). - Better error reporting from login failure. - More strict test for configuration errors, fails if configuration is wrong. - "use utf-16" option to enable use of UTF-16 for server encoding (MSSQL). - Remove support for Dev-C++. - Remove support for bad iconv, use libiconv instead (Tru64 and HP-UX should be affected), connect will fail. - New NTLM options: - "use lanman"; - "use ntlmv2". - New Kerberos options: - "realm" ("REALM" in ODBC); - "spn" ("ServerSPN" in ODBC). - New certificate options: - "ca file"; - "crl file"; - "check certificate hostname". - Many bug fixes, majors: - SSPI with Kerberos on some setup; - SQLCancel threading; - ctlib numeric; - ODBC statistic function quotings. Implementation: - Introdude streams support to make easier handling large data and making conversions faster. - Use array of flags to make faster to retrieve data type features. - Use callbacks for handling various type functions. - Optimize data conversions. - Store TDS packets in a new structure to handle multiple packets. - New DSTR implementation which use less memory. - Faster logging. - Put mostly data handling in src/tds/data.c. - Move mostly headers to include/freetds directory. - Add a include/freetds/proto.h header to separate protocol declarations. - Add src/tds/packet.c to separate code handling TDS packets. - Modify libTDS error codes, not only TDS_FAIL. - Use DSTR for names in TDSCOLUMN. - Generate graphs in Doxygen. Summary of Changes in release 0.91 -------------------------------------------- 1. Full Kerberos and SSPI support for passwordless login to Microsoft SQL Server from Unix and Windows clients. Includes Kerberos delegation option. 2. Full support for DB-Library under Win32/64 via NMAKE.EXE. 3. Built-in support for UTF-8. 4. Support for wide characters in ODBC. 5. Support for varchar(max) and varbinary(max). 6. Better thread-safety in ODBC. 7. Distinguish between connect and login errors. 8. Bulk-copy functions in CT-Library. TDS versions now reflect Microsoft's nomenclature. The previous version numbers (8.0 and 9.0) are now 7.1 and 7.2. See the UG for details. Executive Summary of Changes in release 0.82 -------------------------------------------- 1. timeout handling 2. encrypted connections 3. fisql (and odbc utilities) 4. autoconf improvements 5. 23,710 lines added or deleted (101,022 total). 6. 85 files added 7. 21 unit tests added Details ------- db-lib - timeouts work! - corrected dbnextrow - implemented dbsetnull and dbsetinterrupt - improved error reporting and checking - fixed rpc parameter processing, now php works correctly ct-lib - added cs_loc_alloc, cs_loc_drop, cs_locale implementations odbc - cursors (mssql) - fixed database setting - return error always if odbc returns SQL_ERROR - fixed SQLGetData result utilities - added support for NUL characters inside terminators in freebcp - added row termination and column termination option to tsql - new fisql application - new ODBC utilities documentation - significant updates to TDS protocol documentation - freetds.conf man page - added tenderfoot sample code general - fixed timeout handling - added freetds.conf option for encryption - added protocol version discovery - NTLM2 session response - read table and real column name from wire - experimental Kerberos support using gssapi - some optimizations for GCC4 - optimized conversions avoiding some memory copy - minor improves to server stuff - improved MingW compile (even cross one) - more verbose log for dblib and odbc - many test added 1 test for libTDS 1 test for ctlib 3 tests for dblib 13 tests for odbc libTDS API changes - tds_add_row_column_size removed - tds_alloc_row return now TDS_SUCCEED/TDS_FAIL - tds_alloc_compute_row return now TDS_SUCCEED/TDS_FAIL - removed TDSCOLUMN->column_offset - added TDSCOLUMN->column_data and TDSCOLUMN->column_data_free - added TDSCURSOR->type and TDSCURSOR->concurrency for mssql support - added fetch_type and i_row parameters to tds_cursor_fetch - added tds_cursor_update and tds_cursor_setname functions - made tds_alloc_get_string static - removed tds_free_cursor - added TDSCURSOR->ref_count - added tds_cursor_deallocated and tds_release_cursor to handle cursor release. tds_cursor_deallocated is called when cursor got deallocated from server while tds_release_cursor is called to decrement reference counter. Reference counter is used cause is difficult to trace pointer owner between libTDS and upper libraries - added TDS_COMPILETIME_SETTINGS->sysconfdir - changed DSTR_STRUCT structure to include dstr_size - changed DSTR type - error handler cannot return TDS_INT_EXIT - removed TDSSOCKET->query_timeout_func TDSSOCKET->query_timeout_param, TDSSOCKET->query_start_time - changed TDSLOGIN->host_name to client_host_name - changed TDSCONNECTION->host_name to client_host_name - changed TDSLOGIN->encrypted to encryption_level - changed TDSCONNECTION->encrypted to encryption_level - added TDSRESULTINFO->row_free handler to free row - added TDSCONTEXT->int_handler handler - removed tds_prtype - removed tds_alloc_param_row - added tds_alloc_param_data - added flags parameter to tds7_send_auth - removed tds_client_msg - added tdserror to report error - added flags parameter to tds_answer_challenge - added is_variable_type macro - added TDSCOLUMN->table_column_name - added tds parameter to tds_set_column_type - renamed BCPCOLDATA->null_column to is_null - added TDSMESSAGE->oserr - remove length, number_upd_cols and cur_col_list from TDSCURSOR (never used) - added new TDSAUTHENTICATION to handle authentication modules - added TDSSOCKET->authentication - added tds_ntlm_get_auth and tds_gss_get_auth - removed TDSANSWER - removed tds7_send_auth (use new tds_ntlm_get_auth) - added tds_get_int8 - add TDSPARAMINFO *params argument to tds_cursor_declare - add TDSPARAMINFO *params argument to tds_cursor_open - changed TDSSOCKET->rows_affected from int to TDS_INT8 - added TDSSOCKET->tds9_transaction (used internally for TDS9) - added TDSCONNECTION->server_host_name needed for Kerberos support * 0.64 - core library - reduced network bandwidth use on Linux and *BSD - do not free TDSSOCKET in tds_connect - moved network stuff into net.c - fixed conversion NUMERIC->NUMERIC changing precision/scale - added named instance support (mssql2k) - fixed cancel and timeout - added support for encrypted connection using mssql (using either GnuTLS or OpenSSL) - improved numeric conversions performance - improved debug logging (added "debug flags" option) - ctlib - ct_dynamic and friends (placeholder support) - dblib - more functions - made threadsafe - improved bcp - support for large files using BCP - fixed buffering - ODBC - fixed compute handling in ODBC - paramset support - constant parameters in rpc (ie {?=call func(10,?)} ) - configure use automatically odbc_config if available - compatibility - improve PHP support - improve DBD::ODBC support - partial dos32 support - improve JDBC support - added msvc6 project to build dblib library on windows - support long password on tsql for all platforms - improved pool server - RPMs - ODBC driver registration (in odbcinst.ini) - better dependency for RedHat and SUSE - a lot of fixes libTDS API changes - tds_connect does not free TDSSOCKET* on failure - TDSSOCKET->env is not a pointer anymore - tds_free_compute_result and tds_free_compute_results are now static - added TDSDYNAMIC->next for linked list - removed TDSCURSOR->client_cursor_id - use TDSCURSOR* cursor instead of TDS_INT client_cursor_it in tds_cursor_* functions - added const char* file param to tdsdump_dump_buf and tdsdump_log and added line information in level - changed tds_alloc_compute_results declaration, pass a TDSSOCKET* - removed tds_do_until_done (not used) - removed tds_set_longquery_handler function (not used) - changed some fields in TDSSOCKET - removed out_len (not used) - renamed cursor to cursors - removed client_cursor_id - added cur_cursor (instead of removed client_cursor_id) - dyns now a pointer to a pointer to first dynamic allocated - removed num_dyns (now useless with linked list) - removed chkintr and hndlintr (use longquery_*) - removed longquery_timeout (use query_timeout) - renamed longquery_func to query_timeout_func - renamed longquery_param to query_timeout_param - queryStarttime to query_start_time - add a DSTR instance_name to TDSCONNECTION - add tds7_get_instance_port - removed tds_free_all_dynamic - tdsdump_append now static - new tds_process_tokens to replace removed - tds_process_result_tokens - tds_process_row_tokens - tds_process_row_tokens_ct - tds_process_trailing_tokens - removed tds_ctx_set_parent/tds_ctx_get_parent, use parent member - added void * parent argument to tds_alloc_context - tds_process_tokens return a TDS_CANCELLED if handle cancellation - removed query_timeout_func and query_timeout_param from TDSCONNECTION and TDSLOGIN - add tds_free_row - renamed TDSLOCALE->char_set to server_charset * 0.63 - ODBC: use tds_dstr* functions to store descriptor information - header privatizations (removing tds.h dependency). This is quite important for future binary compatibility. - ODBC: SQLFetch returns error correctly - ODBC: fix problem rebinding parameters - ODBC: ability to fetch data types after prepare (needed for Oracle bindings and OTL library). - Builds cleanly under OS X. - Improved BCP support for NULL fields and native file format. - ct-lib: ct_blk support (bcp for ct-lib). - ct-lib: Cursors! - apps: added bsqldb and defncopy. - iconv: better collation support, e.g. SQL_Scandinavian_CP850_CI_AS * 0.62 - ct-lib: cursor support - fixed PHP problem handling empty recordsets. See messages on ML: Damian Kramer, September 23, "Possible bug in freeTDS" Steve Hanselman, September 16 "Issue with freetds 0.61.2 ..." - ODBC: improved, best error report - ct-lib: support ct_diag (for Python) - ODBC: fixed SQLMoreResults/SQLRowCount and batch behavior - ODBC: fixes call to {?=store(?)} - ODBC: multiple record with "select id,name from sysobjects where name = 'sysobjects'" - ODBC: fixed early binding - ODBC: autodetect iODBC or unixODBC during configure - ODBC: implemented option 109 in SQLGetConnectOption (for OpenOffice) - freebcp understand \n as newline. Also \r and \0 (null byte). - added --without-libiconv configure option to switch off iconv library - ODBC: test and fixes for NUMERIC parameter - ODBC: dynamic query - SQLPutData - Sybase and blobs ported code for string building from ODBC to libtds - extended TDSSOCKET::iconv_info as an array. Keep converters for non-UCS-2 server charsets. Every TDSCOLINFO holding character data should point to one of these elements. - dblib: src/dblib/unittests/t0017.c (bcp) fixed - changed tds_get_char_data(), ML 2 May 2003, "tds_get_char_data and iconv". - rewrote tds_iconv: - use iconv() signature. - rely on TDSCOLINFO::iconv_info for conversion descriptor, instead of inferring it from the column sizes. - on read error, emit Msg 2403, Severity 16 (EX_INFO): "WARNING! Some character(s) could not be converted into client's character set. Unconverted bytes were changed to question marks ('?')." - on write error emit Msg 2402, Severity 16 (EX_USER): "Error converting client characters into server's character set. Some character(s) could not be converted." and return an error code. Do not proceed. - Cf. ML 16 Apr 2003. "conversion error management". - added doxygen to the nightly build - "make install" put the UG in PREFIX/share/doc/freetds/userguide - "make install" put doxygen html in PREFIX/share/doc/freetds/reference - moved website docs (not UG) to doc/htdoc, put in CVS - added bcp support to tds/dblib/ctlib. (started in dblib) - RPC stuff - added support for TDS 8.0 - TDS 7 Unicode to native charset conversion using iconv - autoconf the connection pooling stuff - DBLIB: output params - set database during login process - libtds: dynamic query - ctlib: null returns zero-length string (see "SELECT '' and TDS 7.0" in message list on 26 Jan 2003) * Jan 2003 - Version 0.61 - Dynamic SQL - Output parameters - Compute rows - Varbinary support - dsn-less ODBC connections - RPC support (db-lib) - Compatibility with DBD::Sybase 0.95 - 68 new functions! (see doc/api_status.txt) - Error/message handling rewritten, uses real error numbers - new sample programs - much cleaner code, warning-free compiles - namespace cleanup - public domain versions of functions for OSs that lack them - autoconf portability improvements - builds in HP-UX, Win32, and cygwin - No dependency on OpenSSL * Sep 2002 - Version 0.60 - Support for SQL Server 2000 datatypes and domain logins. - Support and convertibility of all major datatypes. - Much expanded coverage of the ODBC API. - An all-new BCP implementation, including host variable support. - Character set conversions, via the iconv library. - Threadsafe operation. * [late 2001?] - tdspool now working for big endian systems - Fixed mem leak in ctlib - Added some descriptive text to the PWD file - EINTR handling during login (Kostya Ivanov) - Added support for TLI style interfaces files (thanks Michael for explaining) - Added 'text size' config option which changes textsize on connect - Added preliminary TDS 8.0 support (no new datatypes supported though) - Added 'emulate little endian' config flag - Some TDS5 placeholder stuff. Not ready for primetime yet. - Fixed interfaces handling seg fault * Jul 2001 Brian Bruns - Version 0.52 - Mem leak fixes in dbloginfree() and tds_free_env() (John Dumas) - Added support for new configuration format (freetds.conf) - unixODBC now working - Fixed error in two's complement function for money types - Added support for nullable bits (BITN) - checked in work on tds connection pooling server - added preliminary userguide (James Lowden and me) - a lot of work on ODBC driver, now works with PHP - added config options for iodbc/unixodbc (unixODBC doesn't actually work yet) - image -> char now works (verified with ctlib only) - varbinary -> char now works with destlen of -1 - New config routines - Free socket on login fail - 64bit patches - off by one error - numeric problem with 7.0 fixed - digit cutoff on numerics/floats fixed * Nov 2000 Brian Bruns - Version 0.51 - removed all the old unittests from the samples directory - endian detection fixed - 'make check' and ctlib unittests (Mark) - TDS 7.0 fixes, numerics et al. (Scott) - dead connection handling (Geoff) - query timeout stuff (Jeff) * Dec 1999 Brian Bruns - Version 0.50 - Added TDS 7.0 support for MS SQL 7 - Added hostfile bulk copy for dblib - Added writetext support for dblib - Added CS_CON_STATUS property to ctlib - Fixed bugs for ctlib version of PHP 3/4 - Many changes to text/image handling - New script for running the unittests - dbcancel/ct_cancel now working properly - inserts/updates now return proper rowcount - Numerous bug fixes * Sep 1999 Brian Bruns - Version 0.47 - Added workaround for SQL 7.0 bug handling datetime/money for big endian (testing/bug report - Paul Schaap) - Added TDS 7.0 login function (untested) - Fixed many big endian bugs - Fixed some bus errors on Sparc - Fixed big endian detection - DBD::Sybase 0.19 now passes all tests - Fixed date bug working with PHP 3.x - binary/varbinary support added - Fixed Text datatypes in tds layer - More conversions implemented (Mark Schaal) - Fix make install for not overwriting interfaces (Michael Peppler) - CS_USERDATA now works - Numerous bug fixes (many people) * Thu Aug xx 1999 Brian Bruns - Version 0.46 - Fixed floating type support - Fixed lots of little datatype conversion bugs - Fixed 5.0 login acknowledgement bug - Message processing was cleaned up (Mark Schaal) - Fixed login bug for SQL Server 7.0 - DBD::Sybase 0.19 now compiles and partially works (very partially) - Fixed Solaris #define clash - Numerous bug fixes * Thu Jun 03 1999 Brian Bruns - Version 0.45 - Capabilities added to ctlib code - Numeric support working - MONEY to string conversions now support > 32 bit values - Fixed underread in message handling - Fixed various buffer overflow problems - Fixed NULL handling - Added support for length binding (copied arguement to ct_bind) - Converted ODBC to use iODBC driver manager - SQSH 1.7 runs - PHP 3.0.x with ctlib now runs * Thu Jan 14 1999 Brian Bruns - Version 0.41 - Better row buffering (Craig Spannring) - CT-Lib code improved greatly - Closer behaviour to real dblib - Commonized datatype conversions - Server side code is running somewhat. - SQSH 1.6 running - More ODBC functionality - Many bug fixes - Lots of other stuff I've already forgotten * Sun Nov 22 1998 Brian Bruns - Version 0.40 - Row buffering is now supported for dblib. - Better row handling (side effect of above) - Improved conversion code - Preliminary ODBC layer - PHP now runs basic scripts, maybe more - Many many bug fixes - General cleanup (better error handling, C++ friendly headers, etc...) * Fri Sep 04 1998 Mihai Ibanescu - Version 0.31 - By default the install dir is /usr/local/freetds - The Makefile in the samples dir is automatically built from Makefile.am. The samples dir is not installed, only packaged in the distribution. * Wed Sep 02 1998 Brian Bruns - Version 0.3 - Updated the AUTHORS file - FIXME Brian (added by misa) * Mon Aug 31 1998 Mihai Ibanescu - Version 0.21 - GNUified - Fixed a couple of the TODO issues: byte order is automatically determined, and the TDS version is a configurable option - Modified the README file to reflect the new directory structure Pre-GNUification log by Brian : 2/8/98 Should be able to send the first packet to a server soon, my output is only slightly different than open clients. This codes pretty crappy right now. I need to clean up alot of stuff, remove hardcode values, etc...but I'm anxious to see something work! 2/7/98 Broke the code up a bit, tds.c now handles all wire level stuff, dblib.c handles dblib specific stuff. So, in the future there can be ctlib.c and obdc.c can also sit on top of tds.c to handle the other CLIs 3/16/98 Been working on the code here and there...We can now send a query to the server, dbnumcols() and dbcolname() both work. Almost ready to get some data back. I put in a dummy dbbind to just handle strings so, I could do some work on dbnextrow(). However, we will have revisit almost everything later. 3/23/98 Haven't been able to work on it lately. Still trying to decide on the best way to propagate the row data from tds.c to dblib.c to the calling func. Not that hard, but nothing strikes me as the "Right Way" (tm). 4/2/98 Ok we are ready to release 0.01 (marked by the fact that a simple dblib program actually works!) 5/1/98 Haven't updated in quite a while. A few more dblib commands are supported. dbconvert() support is preliminary. Fixed alot of bugs. A little bit of cleanup. dbbind() sorta works now, needs work still. At least one mem leak that I know of (haven't gotten around to fixing it. Wish I had more time to work on it... 5/2/98 Decided to release what I have. executing sp_who seems to mostly work.. a step in the right direction. Version 0.02. Seem to have generated a little interest after mentioning it in a usenet post. 5/6/98 Can compile against sqsh!!! Did a reorg on tds.c, all dblib func that read data now go through tds_process_messages() which read the marker and calls other routines as necessary. sqsh's output is a little screwy (well I don't have a real dbprrow() yet, but the number of result sets coming back is too many). So, anyway Version 0.04 5/9/98 Decided to upload some new code, mostly just stubs. Sybperl compiles I can't get my perl to work with it. (I need to download perl and link statically, the one that comes on the system won't do). Anyway, most of dblib is present in stub form. 5/17/98 Managed to scrape up some time and release new code. Duplicate result sets went away, and handling of more datatypes (money, bit, more int stuff). Also, improved dbprhead()/row() function. 5/26/98 Ok, I'm doing the long overdue cleaning up of the code. All the kludges should be gone. Thanks, to everyone who contributed code/idea/corrections. 6/3/98 The majority of the overhaul is done...still some work to do, but this is much better than before. I'm bumping the version to 0.1 signifying that I actually use sqsh compiled against it on a regular basis. 6/5/98 TDS 4.2 support seems to be working properly 6/26/98 Gregg Jenson has added support for err and msg handling among other things. I've added some prelimary ctlib support (nothing working yet) 7/3/98 I think we are about ready to release 0.2. Gregg sent some datetime code which appears to work great. I added TDS 4.6 support (small changes really) and tested all the byte order issues on an RS/6000. Also, ctlib code will run the unittest.c and will compile all modules in sqsh 1.6, however there are many missing functions before it will link! 7/10/98 Haven't been able to work on it lately (moved this week). Anyway, trying to add some functions to server. 7/13/98 Tom Poindexter made some changes to get sybtcl to work. 8/8/98 Haven't had much time lately (again), however some small stuff has been fixed and the protocol version stuff has (mostly) been moved to a runtime option. sybperl is supposedly running for simple stuff. PKj5]-&usr/share/doc/alt-freetds11/INSTALL.mdnu[FreeTDS Installation ==== If you are installing from git repository please read [INSTALL.GIT](./INSTALL.GIT.md) For complete instructions, see the [FreeTDS Users Guide](http://www.freetds.org/userguide/). It is included in the distribution inside "doc/userguide/index.html`. Brief Instructions ---- ``` $ ./configure --help $ ./configure $ make $ make install ``` Post Install ==== * Edit the `/usr/local/etc/freetds.conf` file to add servers. * Test the connection with `/usr/local/bin/tsql` * Build and test the package that requires FreeTDS. If you want to build the ODBC driver, you'll probably first want to install a Driver Manager (on Unix-like systems). For any other information please see the Users Guide. PKj5][y'c'c+usr/share/doc/alt-freetds11/COPYING_LIB.txtnu[ GNU LIBRARY GENERAL PUBLIC LICENSE Version 2, June 1991 Copyright (C) 1991 Free Software Foundation, Inc. 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. [This is the first released version of the library GPL. It is numbered 2 because it goes with version 2 of the ordinary GPL.] Preamble The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public Licenses are intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This license, the Library General Public License, applies to some specially designated Free Software Foundation software, and to any other libraries whose authors decide to use it. You can use it for your libraries, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the library, or if you modify it. For example, if you distribute copies of the library, whether gratis or for a fee, you must give the recipients all the rights that we gave you. You must make sure that they, too, receive or can get the source code. If you link a program with the library, you must provide complete object files to the recipients so that they can relink them with the library, after making changes to the library and recompiling it. And you must show them these terms so they know their rights. Our method of protecting your rights has two steps: (1) copyright the library, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the library. Also, for each distributor's protection, we want to make certain that everyone understands that there is no warranty for this free library. If the library is modified by someone else and passed on, we want its recipients to know that what they have is not the original version, so that any problems introduced by others will not reflect on the original authors' reputations. Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that companies distributing free software will individually obtain patent licenses, thus in effect transforming the program into proprietary software. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all. Most GNU software, including some libraries, is covered by the ordinary GNU General Public License, which was designed for utility programs. This license, the GNU Library General Public License, applies to certain designated libraries. This license is quite different from the ordinary one; be sure to read it in full, and don't assume that anything in it is the same as in the ordinary license. The reason we have a separate public license for some libraries is that they blur the distinction we usually make between modifying or adding to a program and simply using it. Linking a program with a library, without changing the library, is in some sense simply using the library, and is analogous to running a utility program or application program. However, in a textual and legal sense, the linked executable is a combined work, a derivative of the original library, and the ordinary General Public License treats it as such. Because of this blurred distinction, using the ordinary General Public License for libraries did not effectively promote software sharing, because most developers did not use the libraries. We concluded that weaker conditions might promote sharing better. However, unrestricted linking of non-free programs would deprive the users of those programs of all benefit from the free status of the libraries themselves. This Library General Public License is intended to permit developers of non-free programs to use free libraries, while preserving your freedom as a user of such programs to change the free libraries that are incorporated in them. (We have not seen how to achieve this as regards changes in header files, but we have achieved it as regards changes in the actual functions of the Library.) The hope is that this will lead to faster development of free libraries. The precise terms and conditions for copying, distribution and modification follow. Pay close attention to the difference between a "work based on the library" and a "work that uses the library". The former contains code derived from the library, while the latter only works together with the library. Note that it is possible for a library to be covered by the ordinary General Public License rather than by this special one. GNU LIBRARY GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License Agreement applies to any software library which contains a notice placed by the copyright holder or other authorized party saying it may be distributed under the terms of this Library General Public License (also called "this License"). Each licensee is addressed as "you". A "library" means a collection of software functions and/or data prepared so as to be conveniently linked with application programs (which use some of those functions and data) to form executables. The "Library", below, refers to any such software library or work which has been distributed under these terms. A "work based on the Library" means either the Library or any derivative work under copyright law: that is to say, a work containing the Library or a portion of it, either verbatim or with modifications and/or translated straightforwardly into another language. (Hereinafter, translation is included without limitation in the term "modification".) "Source code" for a work means the preferred form of the work for making modifications to it. For a library, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the library. Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running a program using the Library is not restricted, and output from such a program is covered only if its contents constitute a work based on the Library (independent of the use of the Library in a tool for writing it). Whether that is true depends on what the Library does and what the program that uses the Library does. 1. You may copy and distribute verbatim copies of the Library's complete source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and distribute a copy of this License along with the Library. You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. 2. You may modify your copy or copies of the Library or any portion of it, thus forming a work based on the Library, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: a) The modified work must itself be a software library. b) You must cause the files modified to carry prominent notices stating that you changed the files and the date of any change. c) You must cause the whole of the work to be licensed at no charge to all third parties under the terms of this License. d) If a facility in the modified Library refers to a function or a table of data to be supplied by an application program that uses the facility, other than as an argument passed when the facility is invoked, then you must make a good faith effort to ensure that, in the event an application does not supply such function or table, the facility still operates, and performs whatever part of its purpose remains meaningful. (For example, a function in a library to compute square roots has a purpose that is entirely well-defined independent of the application. Therefore, Subsection 2d requires that any application-supplied function or table used by this function must be optional: if the application does not supply it, the square root function must still compute square roots.) These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Library, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Library, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Library. In addition, mere aggregation of another work not based on the Library with the Library (or with a work based on the Library) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. 3. You may opt to apply the terms of the ordinary GNU General Public License instead of this License to a given copy of the Library. To do this, you must alter all the notices that refer to this License, so that they refer to the ordinary GNU General Public License, version 2, instead of to this License. (If a newer version than version 2 of the ordinary GNU General Public License has appeared, then you can specify that version instead if you wish.) Do not make any other change in these notices. Once this change is made in a given copy, it is irreversible for that copy, so the ordinary GNU General Public License applies to all subsequent copies and derivative works made from that copy. This option is useful when you wish to copy part of the code of the Library into a program that is not a library. 4. You may copy and distribute the Library (or a portion or derivative of it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange. If distribution of object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place satisfies the requirement to distribute the source code, even though third parties are not compelled to copy the source along with the object code. 5. A program that contains no derivative of any portion of the Library, but is designed to work with the Library by being compiled or linked with it, is called a "work that uses the Library". Such a work, in isolation, is not a derivative work of the Library, and therefore falls outside the scope of this License. However, linking a "work that uses the Library" with the Library creates an executable that is a derivative of the Library (because it contains portions of the Library), rather than a "work that uses the library". The executable is therefore covered by this License. Section 6 states terms for distribution of such executables. When a "work that uses the Library" uses material from a header file that is part of the Library, the object code for the work may be a derivative work of the Library even though the source code is not. Whether this is true is especially significant if the work can be linked without the Library, or if the work is itself a library. The threshold for this to be true is not precisely defined by law. If such an object file uses only numerical parameters, data structure layouts and accessors, and small macros and small inline functions (ten lines or less in length), then the use of the object file is unrestricted, regardless of whether it is legally a derivative work. (Executables containing this object code plus portions of the Library will still fall under Section 6.) Otherwise, if the work is a derivative of the Library, you may distribute the object code for the work under the terms of Section 6. Any executables containing that work also fall under Section 6, whether or not they are linked directly with the Library itself. 6. As an exception to the Sections above, you may also compile or link a "work that uses the Library" with the Library to produce a work containing portions of the Library, and distribute that work under terms of your choice, provided that the terms permit modification of the work for the customer's own use and reverse engineering for debugging such modifications. You must give prominent notice with each copy of the work that the Library is used in it and that the Library and its use are covered by this License. You must supply a copy of this License. If the work during execution displays copyright notices, you must include the copyright notice for the Library among them, as well as a reference directing the user to the copy of this License. Also, you must do one of these things: a) Accompany the work with the complete corresponding machine-readable source code for the Library including whatever changes were used in the work (which must be distributed under Sections 1 and 2 above); and, if the work is an executable linked with the Library, with the complete machine-readable "work that uses the Library", as object code and/or source code, so that the user can modify the Library and then relink to produce a modified executable containing the modified Library. (It is understood that the user who changes the contents of definitions files in the Library will not necessarily be able to recompile the application to use the modified definitions.) b) Accompany the work with a written offer, valid for at least three years, to give the same user the materials specified in Subsection 6a, above, for a charge no more than the cost of performing this distribution. c) If distribution of the work is made by offering access to copy from a designated place, offer equivalent access to copy the above specified materials from the same place. d) Verify that the user has already received a copy of these materials or that you have already sent this user a copy. For an executable, the required form of the "work that uses the Library" must include any data and utility programs needed for reproducing the executable from it. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. It may happen that this requirement contradicts the license restrictions of other proprietary libraries that do not normally accompany the operating system. Such a contradiction means you cannot use both them and the Library together in an executable that you distribute. 7. You may place library facilities that are a work based on the Library side-by-side in a single library together with other library facilities not covered by this License, and distribute such a combined library, provided that the separate distribution of the work based on the Library and of the other library facilities is otherwise permitted, and provided that you do these two things: a) Accompany the combined library with a copy of the same work based on the Library, uncombined with any other library facilities. This must be distributed under the terms of the Sections above. b) Give prominent notice with the combined library of the fact that part of it is a work based on the Library, and explaining where to find the accompanying uncombined form of the same work. 8. You may not copy, modify, sublicense, link with, or distribute the Library except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense, link with, or distribute the Library is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. 9. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Library or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Library (or any work based on the Library), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Library or works based on it. 10. Each time you redistribute the Library (or any work based on the Library), the recipient automatically receives a license from the original licensor to copy, distribute, link with or modify the Library subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. 11. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Library at all. For example, if a patent license would not permit royalty-free redistribution of the Library by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Library. If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply, and the section as a whole is intended to apply in other circumstances. It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. 12. If the distribution and/or use of the Library is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Library under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. 13. The Free Software Foundation may publish revised and/or new versions of the Library General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Library specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Library does not specify a license version number, you may choose any version ever published by the Free Software Foundation. 14. If you wish to incorporate parts of the Library into other free programs whose distribution conditions are incompatible with these, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. NO WARRANTY 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Libraries If you develop a new library, and you want it to be of the greatest possible use to the public, we recommend making it free software that everyone can redistribute and change. You can do so by permitting redistribution under these terms (or, alternatively, under the terms of the ordinary General Public License). To apply these terms, attach the following notices to the library. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA Also add information on how to contact you by electronic and paper mail. You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the library, if necessary. Here is a sample; alter the names: Yoyodyne, Inc., hereby disclaims all copyright interest in the library `Frob' (a library for tweaking knobs) written by James Random Hacker. , 1 April 1990 Ty Coon, President of Vice That's all there is to it! PKj5]B#usr/share/doc/alt-freetds11/TODO.mdnu[To Do List ========== This list is ordered top-to-bottom by priority. Things that are broken and need mending are at the top, followed by things that should work before the next release, followed by features that should be added/fixed/reworked (grouped by library). Everyone is encouraged to add to the list. Developers can do it directly; anyone else can post a patch to SourceForge. In this way we can communicate with each other about the project's priorities and needs. Must be fixed: ==== Work in progress: ==== * be able to disable iconv for BCP (see Sybase documentation) I have a patch to disable it, how to handle NVARCHAR? -- freddy77 For future versions (in priority order within library): All ---- * Cache protocol discovery (TDSVER=0.0). Save port/instance into some permanent storage. tsql should report progress in verbose mode. * retain values used from freetds.conf, so we can report them. * add a way for tsql to report host, port, and TDS version for the connection it's attempting. Actually libTDS does the name resolution in tds_connect and then just connect so there is no way for tsql to report these information. * review the way parameters are packed (too complicate, see ctlib bulk, cf "bulk copy and row buffer") * improve cursor support on dblib and ctlib * read on partial packet, do not wait entire one * support for password longer than 30 characters under Sybase (anybody know how ??) * under Sybase using prepared statements and BLOBs we shouldn't try to prepare every time (cache failure preparing, see odbc unittests logs, binary_test) done in ODBC ?? * Native bcp has no iconv support; character bcp files are assumed be encoded with the client's charset. More flexibility one both sides would be good. * encrypted connection for Sybase db-lib ---- * add DBTEXTLIMIT (dbsetopt), PHP require it to support textlimit ini value ct-lib ---- * dynamic placeholders (DBD::Sybase) * ct_option() calls (CS_OPT_ROWCOUNT, CS_OPT_TEXTSIZE, among others) * async function, async calls (dbpoll() and friends) * support all type of bind in ct_bind (CS_VARBINARY_TYPE and other) search "site:.sybase.com CS_VARBINARY ct_bind" on google for more info * complete sqlstate and other field in message (for Python) odbc ---- * Star Office complains that these TypeInfo constants are not implemented in SQLGetInfo: 47 SQL_USER_NAME (handle environment callbacks) do a "SELECT USER_NAME()". If data pending MS do another connection with same login. * SQLNativeSql and fill SQLGetInfo according (mssql7+ handle odbc escapes directly) * it seems that if statement it's wrong and we issue SQLPrepare on SQLExecute it try to send unprepared dynamic... state on dynamic?? * odbc array binding test large field (like image) have language queries some limits? do we have to split large multiple queries? * report error just before returning SQL_ERROR from inner function? * handle async flags ?? * handle no termination on odbc_set_string* Test and fix ---- * hidden fields (FOR BROWSE select, see flag test on tds) * what happen if we bind to an hidden field?? * if we use SQLGetData?? * if we request information with SQLDescribeCol/SQLColAttribute(s)/ SQLGetDescField?? * as you noted returning # columns hidden fields are not counted (there is however a setting which is a mssql extension which threat hidden columns as normal) (cfr "SQLNumResultCols() is wrong (+1)" Jan 8 2008) * test: descriptors work * what happen to SQL_DESC_DATETIME_INTERVAL_CODE and SQL_DESC_CONCISE_TYPE changing only SQL_DESC_TYPE (with SQLSetDescField) * test: set SQL_C_DEFAULT and call SQLFetch (numeric, others) * test: SQLGetStmtAttr(SQL_ATTR_ROW_NUMBER) * all binded parameters * no bind and sqlgetdata * before first fetch * after last fetch pool ---- * get connection pooling working with all protocol versions server ---- * Server API needs more work. It's in a quite ugly state. It's more experimental. Should be disabled by default to state it. PKj5]a[* * %usr/share/doc/alt-freetds11/README.mdnu[README for FreeTDS 1.5 ==== *Release date 17th April 2025* **To build FreeTDS read the file [INSTALL](./INSTALL.md) or the [FreeTDS Users Guide](http://www.freetds.org/userguide/)** FreeTDS is a free implementation of Sybase's DB-Library, CT-Library, and ODBC libraries. FreeTDS builds and runs on every flavor of unix-like systems we've heard of (and some we haven't) as well as Win32 (with or without Cygwin), VMS, and Mac OS X. Failure to build on your system is probably considered a bug. It has C language bindings, and works also with Perl and PHP, among others. FreeTDS is licensed under the GNU LGPL license. See [COPYING_LIB.txt](./COPYING_LIB.txt) for details. Other files you might want to peruse: * [AUTHORS](./AUTHORS.md) Who's involved * [NEWS](./NEWS.md) Summary of feature changes and fixes * [TODO](./TODO.md) The roadmap, such as it is Also, [api_status](./doc/api_status.txt) shows which functions are implemented. For details on what's new in this version, see NEWS. For unbearable detail, see git log. Documentation ============= A User Guide, in XML and HTML form, is included in this distribution. Also included is a reference manual, generated in HTML with Doxygen. "make install" installs the HTML documentation, by default to /usr/local/share/doc/freetds-. Note to Users ============= Submissions of test programs (self-contained programs that demonstrate functionality or problems) are greatly appreciated. They should create any tables needed (since we obviously don't have access to your database) and populate them. Unit tests for any of the libraries is appreciated Notes to Developers =================== The code is split into several pieces. 1. `tds` directory is the wire level stuff, it should be independent of the library using it, this will allow db-lib, ct-lib, and ODBC to sit on top. 2. `db-lib` directory. This is the actual db-lib code which runs on top of tds. 3. `ct-lib` directory. This is the ct-lib code which runs on top of tds. 4. `server` directory. This will be a set of server routines basically to impersonate a dataserver, functions like send_login_ack() etc... 5. `odbc` directory. ODBC implementation over tds. Uses iODBC or unixODBC as a driver manager. You need to have one of those if you are using the ODBC CLI. 6. `unittests` directories. Test harness code for ct-lib, db-lib, ODBC and libtds. 7. `samples` directories. Sample code for getting started with Perl, PHP, etc... 8. `pool` directory. A connection pooling server for TDS. Useful if you have a connection limited license. Needs some hacking to get configured but is quite stable once configured correctly. Contact the list if interested in how to use it. Please look at doc/getting_started.txt for a description of what is going on in the code. PKj5]FNFF'usr/share/doc/alt-freetds11/COPYING.txtnu[ GNU GENERAL PUBLIC LICENSE Version 2, June 1991 Copyright (C) 1989, 1991 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Lesser General Public License instead.) You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all. The precise terms and conditions for copying, distribution and modification follow. GNU GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. 1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. 2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. 3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. 4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. 5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. 6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. 7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. 8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. 9. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. 10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. NO WARRANTY 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. Also add information on how to contact you by electronic and paper mail. If the program is interactive, make it output a short notice like this when it starts in an interactive mode: Gnomovision version 69, Copyright (C) year name of author Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, the commands you use may be called something other than `show w' and `show c'; they could even be mouse-clicks or menu items--whatever suits your program. You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the program, if necessary. Here is a sample; alter the names: Yoyodyne, Inc., hereby disclaims all copyright interest in the program `Gnomovision' (which makes passes at compilers) written by James Hacker. , 1 April 1989 Ty Coon, President of Vice This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. PKj5]_~ usr/bin/fisqlnuȯELF>C@({@8 @@@@hh(`(` 0j0j 0j  HjHj Hj @@ DDStd Ptd<[<[<[QtdRtd0j0j 0j /lib64/ld-linux-x86-64.so.2GNUGNUGNUձc~ӹ'l lmp)fUa9cw. ]Zv'}iq7F VI0: u"_aT8\<WN'S b";gCnip%drLXOHp 0 p 0p @p 8p libsybdb.so.5__gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTabledbhasretstatdbspr1rowlendbdeaddbsetlogintimedbaltopdbsetoptdbcoltypedbalttypedbgetchardbnumaltsdbfreebufdbmsghandledbsqlexecdbadlendbcmddbrowsdbexitdberrhandledbprtypedbsetinterruptdblogindbsetllongdbsetlnamedbsetlbooldbadatadbspr1rowdbinittdsdbopendbcollendbsetifiledbsprlinedbconvertdbsettimedbcountdbnextrowdbaltcoliddbcanceldbretstatusdbcolnamedbsprheaddbresultslibssl.so.1.1libcrypto.so.1.1libpthread.so.0readwaitpid__errno_locationsigactionlibc.so.6fflushstrcpy__printf_chksetlocalefopen__longjmp_chkperrorsignalfork__stack_chk_failunlinkputcharreallocstdingetpidkillmkstempstrtolisattyexeclpfgetsstrlensigemptysetmemsetstrstrtcsetattrmemcmpgetopt__fprintf_chkputenv__sigsetjmpstdoutfputcfputsfclosemallocumaskstrcasecmp__ctype_b_locgetenvoptargstderrsystemfreopenstrncasecmpfilenofwritestrchrfdopentcgetattrsleep__ctype_toupper_loc__ctype_tolower_loc__cxa_finalize__sprintf_chkopterr__libc_start_mainfreeGLIBC_2.2.5GLIBC_2.4GLIBC_2.3GLIBC_2.3.4GLIBC_2.11/opt/alt/freetds11/usr/lib64:/opt/alt/openssl11/lib64  ui NBii Zii dti nzui N0j D8j `D@j @j p pUo  o o "o *o . p m0p n8p p@p oHp ll l l l l l l l l  l  l  l  m m m m  m (m 0m 8m @m Hm Pm Xm `m hm pm xm m m  m !m #m $m %m &m 'm (m )m +m ,m -m .m /m 0n 1n 2n 3n 4 n 5(n 60n 78n 8@n 9Hn :Pn ;Xn <`n =hn >pn ?xn @n An Bn Cn Dn En Fn Gn Hn In Jn Kn Ln Mn Nn On Po Qo Ro So T o U(o V0o W8o X@o YHo ZPo [Xo \`o ]ho ^po _xo `o ao bo co do eo fo go ho io jo kHHP HtH5JM %KM hhhhhhhhqhah Qh Ah 1h !h hhhhhhhhhhqhahQhAh1h!hhhh h!h"h#h$h%h&h'qh(ah)Qh*Ah+1h,!h-h.h/h0h1h2h3h4h5h6h7qh8ah9Qh:Ah;1h<!h=h>h?h@hAhBhChDhEhFhGqhHahIQhJAhK1hL!hMhNhOhPhQhRhShThUhVhWqhXahYQhZAh[1h\!h]h^h_h`hahbhchdhehf%F D%F D%F D%F D%F D%F D%F D%F D%F D%F D%F D%}F D%uF D%mF D%eF D%]F D%UF D%MF D%EF D%=F D%5F D%-F D%%F D%F D%F D% F D%F D%E D%E D%E D%E D%E D%E D%E D%E D%E D%E D%E D%E D%E D%E D%E D%E D%}E D%uE D%mE D%eE D%]E D%UE D%ME D%EE D%=E D%5E D%-E D%%E D%E D%E D% E D%E D%D D%D D%D D%D D%D D%D D%D D%D D%D D%D D%D D%D D%D D%D D%D D%D D%}D D%uD D%mD D%eD D%]D D%UD D%MD D%ED D%=D D%5D D%-D D%%D D%D D%D D% D D%D D%C D%C D%C D%C D%C D%C D%C D%C D%C D%C D%C D%C DAWAVAUATIH5(USH8dH%(H$(1D$|H=(^HC HzC E1H.E1HD$AH)*HnC D$@HD$0D$@DDtH B 5H=,w,H {B H=*Z+H ^B H=*=0H AB H=* $H $B H=*H B H=_&-H A H=*-H A H=*H A H=*1Dl$8HzA HCA 11Dl$t1Dl$DHMA HD$1H:A HD$H1L5'A 1HA HD$01mHA HD$ 1ZH@ HD$(1G1Dl$l;H@ HA 1&H@ HD$1H=@ 1D$@1H@ HD$`1H=3(1H$(dH3 %(H8[]A\A]A^A_H=D@ 1@D$h1H&@ HD$X1zDDl$pmL=@ 1_D-@ 1QH=? 1? 11H=? 1D$<1H? HD$1H=? 1D$x1H={? 1HHHHx<H5]? HHSYBASE=HHzH$dH$Hd1H=? *MQHD$HtH> H5#HyHpMtH> H5D#LUH,H=> @tH> H> rHHCH=H=^H5"HH|$tHt$HLH1HL1LHHHP|$DH|$(tHt$(HH|$0tHt$0H|$@H|$ t H|$ p|$h'|$<x |$H5- H$j$\$|H=u- H=a- H571obH=T:ByH=- 1ɾ Hy7 H=, 11ҾH=, 11Ҿf.@1I^HHPTLH H=H+ H=!, H, H9tH+ Ht H=+ H5+ H)HHH?HHtH+ HtfD=+ u+UH=+ Ht H=% d+ ]wATL%+ USMt)+ ~LIlH;H H9um+ L[]H`+ A\DHHtHH + H=IFfD + ATIUH=+ hSHcHHHtLd[-* ]H* A\H * H=AUATUSHH9IH;1A@H* IlDHHHD* )tHtO HHu}HHHL9rILLHtIf.Hu LE1pHL[]A\A]fH5) HHHD5) =HL[]A\A]ff.@AUATAUHSHDH.PڃYH {HcH>A HDHL9w H[]A\A]DHHHÉ[]A\A]fDA vpAA{LcsA[AKA;E111fDHLc,Lf.HH=( %t f( 1҅tHfH=' tH5]( …u&( Hff.@HH=' ,u HDK…uH=^' H5"( {…uH=>' %( H' 1Hff.HH=' u HD…uH=& iHR' 1HEDUHSHHgu]8 ueItt11H1[]1HHH1jHپ1H=I& H=H= G}cAUATUSHHteMLʼnAMuQA2NtHH5N,t,LH5G1 H[]A\A]1H[]A\A]fSLH>% ~}t9}H1[HcA1HH5LL$=$ uLL$A9ukHD$ 8uAD$(~T$(H51R$ uHH1[HH51LH5p1zDPXH=% HED=b% DR% uP=F% <% ff."% ff.ffD=$ DAWAVIAUATUS˃ HhH$Ht$pHT$xL$PdH%(H$X1e\$XHD$hML$ IFHD$`H$HD$Df$ L$Xb\$PH|$`HT$LH4H$ DŽ$H$LHHD$0H$`LHHD$ H$L HHD$H$LHHD$@cH$@LHHD$FH$LHHD$()H$LHHD$8 H$ LH$fHDŽ$HD$HH$H$D$X)$)$)$)$DŽ$DŽ$)$)$HDŽ$DŽ$DŽ$D$THD$xHl$pL$LlD$PD$\$fDD$A t$A tI9LHtIHD$hE($QH4$H|$H<vHt$1ҿHt$01ҿHt$ 1ҿHt$@1ҿzHt$1ҿ iHt$1ҿXHt$(1ҿGHt$81ҿ6~h! t&^! ljJ! HD$hI(HED$pH$XdH3 %(Hh[]A\A]A^A_H= 1ÃH|$`HT$LHH$ DŽ$dH$LHHD$0GH$`LHHD$ *H$L HHD$ H$LHHD$@H$@LHHD$H$LHHD$(H$LHHD$8H$ LNH$HH$~H$fo$fo$fo$H$$)$)$)$$D$Pu$H$HHD$H\$TL$L|$TLHOhf.v@H$P|$TH5fDT$\t AD$AHH$DPtED$PtH$H$AD$PtEHB$AHD}\$TH$fHDŽ$HD$HH$)$))$)$DŽ$DŽ$)@)@ H@0@8DŽ$HD$h1iHD$h1W\$XD$TPH$D$TH$9`AWIAVIAUAATL%$ UH-$ SL)HHt1LLDAHH9uH[]A\A]A^A_ff.HHOut of memory EDITORVISUALvi [-o outputfile] rw/dev/nullPassword: fisqlfisql: dbopen() failed. time%d>> !!Failed to execute `%s' :rexitquitreset*/%s%.*s(%d rows affected, return status = %d)(return status = %d) go ``````` `0`````@@````````````````````````````````````````````````@``````````````PuiVC"_QC6#0 fisql, a free isql replacement by Nicholas S. CastellanoeFgpnvXYa:c:D:E:h:H:i:I:J:l:m:o:P:s:S:t:U:w:y:z:A: [-c cmdend] [-D database_name] [-E editor] [-h headers] [-H hostname] [-i inputfile] [-I interfaces_file] [-J client character set] [-l login_timeout] [-m errorlevel] [-P password] [-s colseparator] [-S server] [-t timeout] [-U username] [-w columnwidth] [-y sybase_dir] [-z language] Unable to open input file '%s'.Unable to open output file '%s'.Command `%s' exited with code %d Operating system error: Failed to open %s. usage: fisql [-e] [-F] [-g] [-p] [-n] [-v] [-X] [-Y] /tmp/fisqlXXXXXXUnable to invoke the '%s' editor. DB-LIBRARY error: %s Operating-system error: %s Msg %ld, Level %d, State %d: Server '%s', Procedure '%s', Line %d: /dev/tty;$Lt<hTD <t $8$zRx /D$4FJ w?:*3$"\Xp(t0[BHA AAMd:DN A (iHDK Z GIA HBBA A(L0 (D ABBC g(D ABBL43BBD D(D0W (C ABBA W (E ABBG \FBB B(K0H8G 8A0A(B BBBA /J UA qHn J pHb F K$[Hb F d,D0IDG { CAA HtFBA A(D0Z (C ABBH F(C ABB(EG X CI u CH EAP %P0D \ PpFBE B(A0A8L 8A0A(B BBBH D eFEE E(H0H8G@n8A0A(B BBB HD`D@j  B  hT0j 8j o0h  l  p P oooooHj P`p  0 @ P ` p !! !0!@!P!`!p!!!!!!!!!"" "0"@"P"`"p"""""""""## #0#@#P#`#p#########$$ $0$@$P$`$p$$$$$$$$$%% %0%@%P%`%p%%%%%pUGA$3a1C GA$3p11130,:LGA*GA$annobin gcc 8.5.0 20210514GA$plugin name: gcc-annobinGA$running gcc 8.5.0 20210514GA*GA*GA! GA*FORTIFYGA+GLIBCXX_ASSERTIONS GA*GOW*GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realignGA$3a1CuT GA$3p1113HeTGA*GA$annobin gcc 8.5.0 20210514GA$plugin name: gcc-annobinGA$running gcc 8.5.0 20210514GA*GA! GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realign GA*GOW*HSGA*HKGA*@LeT GA*GOW*SeTGA+GLIBCXX_ASSERTIONSDKL GA*FORTIFYHUTGA+GLIBCXX_ASSERTIONS GA*FORTIFYDKLfisql-1.5.16-1.el8.x86_64.debuga7zXZִF!t/_^]?Eh=ڊ2Nڞ F}{~Y[~\ WkU,l$fTV|\&b&BZMf\8\ۙWZ|io\Yo!^ G](>};p /qMH(//o_o8X }r>[&9P_1As?-7n(xX!nk[43(ʛ&9FKWp[޶mA8Pcdg3}tJZQD$fXw\:2 i-~;0N:\G=b\Lth%jSI$g gYZ.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.data.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata  & 4$Go008Q hh Yaono}  PBpp @@%%p0,0,5(hThT TT<[<[\\ 0j 0j8j 8j@j @jHj Hj@l lxp p p p (r`p   u$/Duy>PKj5]`%% usr/bin/osqlnuȯ#! /bin/sh # $Id: osql,v 1.12 2011-05-11 03:08:13 jklowden Exp $ # # Check odbc.ini, odbcinst, and, optionally, freetds.conf, # then execute isql (assume it's unixODBC's isql). # USAGE="Syntax: $(basename "$0") -S server -U user -P password" while getopts I:S:U:P: OPTION do case ${OPTION} in I) OVER_DIR=${OPTARG} # override ;; S) DSN=${OPTARG} ;; U) USERNAME=${OPTARG} ;; P) PASSWORD=${OPTARG} ;; \?) echo "$USAGE" exit 1 ;; esac done #cho ${DSN} ${USERNAME} ${PASSWORD} if [ -z "${DSN}" ] || [ -z "${USERNAME}" ] || [ -z "${PASSWORD}" ] then echo "$USAGE" exit 1 fi ISQL=$(command -v isql) if [ -z "${ISQL}" ] then echo "$(basename "$0"): error: no \"isql\" command found. Is unixODBC installed?" exit 1 fi # Establish ODBC prefix directory ISQL_DIR=$(strings "${ISQL}" | grep ^/ | grep -v elf | grep -v '\.so\.' | head -1 | sed 's/lib$/etc/' ) INI_DIRNAME="/tmp/$(basename "$0").$$" exec 3> "${INI_DIRNAME}" # Check the libraries, too. if [ -z "${OVER_DIR}" ] then libcmd='ldd "${ISQL}" | awk "/libodbc\./ {print \$3}"' if ! command -V ldd >/dev/null 2>&1 && command -V otool >/dev/null 2>&1 then libcmd='otool -L "${ISQL}" | awk "/libodbc\./ {print \$1}"' fi echo "checking shared odbc libraries linked to isql for default directories..." (echo ${ISQL_DIR}; eval "$libcmd") \ | while read L do strings "$L" | grep '^/' | grep -v '/lib' \ | while read D do if [ ! -s "${INI_DIRNAME}" ] then printf " trying %s ... " "$D" if [ -d "$D" ] && [ -r "${D}/odbc.ini" ] then echo "$D" >&3 printf "OK" else printf "no" fi printf "\n" fi done done fi exec 3>&- ODBC_DIR=$(cat "${INI_DIRNAME}") && rm "${INI_DIRNAME}" if [ -z "${ODBC_DIR}" ] && [ -z "${OVER_DIR}" ] then echo "$(basename "$0"): problem: no potential directory strings in \"$(command -v isql)\"" echo "$(basename "$0"): advice: use \"osql -I DIR\" where DIR unixODBC\'s install prefix e.g. /usr/local" echo "isql strings are:" strings "${ISQL}" | grep ^/ | sed 's/^/+ /' #xit 1 fi if [ "${OVER_DIR}" ] then if [ -d "${ODBC_DIR}" ] then echo "\"${ODBC_DIR}\" is a directory, overridden by" else echo "\"${ODBC_DIR}\" is NOT a directory, overridden by" fi echo "\"${OVER_DIR}\"." if [ -d "${OVER_DIR}" ] then ODBC_DIR=${OVER_DIR} else echo "$(basename "$0"): error: \"${OVER_DIR}\" is not a directory" exit 1 fi fi # Look for server entry in odbc.ini echo 'checking odbc.ini files' for F in "${HOME}/.odbc.ini" "${ODBC_DIR}/odbc.ini" do if [ ! -d "$(dirname "$F")" ] then echo "warning: $(dirname "$F") is not a directory" continue fi if [ -r "$F" ] then echo " reading $F" else echo " cannot read \"$F\"" continue fi grep -F "[${DSN}]" "$F" > /dev/null if [ $? -eq 0 ] then echo "[${DSN}] found in $F" ODBC_INI=$F break else echo "[${DSN}] not found in $F" fi done if [ -z "${ODBC_INI}" ] then echo "$(basename "$0"): error: unable to locate ${DSN} in any odbc.ini" exit 1 fi # Report finding of server entry echo found this section: SED_CMD="/^\[${DSN}\]/,/^[[:space:]]*$/ { s/^/ /; p; }" sed -ne "${SED_CMD}" "${ODBC_INI}" # # Examine server entry in odbc.ini # # Find the driver in the servername or default section for D in "${DSN}" 'default' do echo "looking for driver for DSN [$D] in ${ODBC_INI}" grep "$D" "${ODBC_INI}" > /dev/null if [ $? -eq 0 ] then CMD="/^\[$D\]/,/^[[:space:]]*$/ { s/^/ /; p; }" DRIVER_LINE=$(sed -ne "${CMD}" "${ODBC_INI}" \ | grep -Ei '^[[:space:]]*driver[[:space:]]*=') if [ -z "${DRIVER_LINE}" ] then echo " no driver mentioned for [$D] in $(basename "${ODBC_INI}")" continue fi echo " found driver line: \"${DRIVER_LINE}\"" DRIVER=$(echo "${DRIVER_LINE}" \ | awk -F ' *= *' '{print $2}' \ | sed 's/[[:space:]][[:space:]]*//g') if [ "${DRIVER}" ] then echo " driver \"${DRIVER}\" found for [$D] in $(basename "${ODBC_INI}")" break else echo " driver line for [$D] incomplete in $(basename "${ODBC_INI}")" continue fi fi done if [ -z "${DRIVER}" ] then echo "$(basename "$0"): error: no driver found for [${DSN}] in $(basename "${ODBC_INI}")" exit 1 fi # get filename of driver echo "found driver named \"${DRIVER}\"" if [ -d "${DRIVER}" ] || [ ! -x "${DRIVER}" ] then # not a filename, look it up DRIVERNAME=${DRIVER} ODBC_INST="${ODBC_DIR}/odbcinst.ini" echo "\"${DRIVERNAME}\" is not an executable file" echo "looking for entry named [${DRIVERNAME}] in ${ODBC_INST}" grep "${DRIVERNAME}" "${ODBC_INST}" > /dev/null if [ $? -ne 0 ] then if [ $? -eq 1 ] then echo "$(basename "$0"): error: no driver entry [${DRIVERNAME}] in ${ODBC_INST}" fi exit 1; fi CMD="/^\[${DRIVERNAME}\]/,/^[[:space:]]*$/ { s/^/ /; p; }" DRIVER_LINE=$(sed -ne "${CMD}" "${ODBC_INST}" \ | grep -Ei '^[[:space:]]*driver[[:space:]]*=') if [ -z "${DRIVER_LINE}" ] then echo "$(basename "$0"): no driver mentioned for [${DRIVERNAME}] in $(basename "${ODBC_INST}")" exit 1 fi echo " found driver line: \"${DRIVER_LINE}\"" DRIVER=$(echo "${DRIVER_LINE}" | awk -F ' *= *' '{print $2}') if [ -z "${DRIVER}" ] then echo "$(basename "$0"): driver line incomplete for [${DRIVERNAME}] in $(basename "${ODBC_INST}")" exit 1 fi echo " found driver ${DRIVER} for [${DRIVERNAME}] in $(basename "${ODBC_INST}")" fi if [ -z "${DRIVER}" ] then echo "$(basename "$0"): error: sorry, failed sanity check: \${DRIVER} is null" exit 1 fi if [ -x "${DRIVER}" ] then echo "${DRIVER} is an executable file" else echo "${DRIVER} is not an executable file" echo "$(basename "$0"): error: no driver found for ${DSN}" exit 1 fi # find the server/servername SERVER_LINE=$(sed -ne "${SED_CMD}" "${ODBC_INI}" \ | grep -Ei '^[[:space:]]*server(name)*[[:space:]]*=') ATTRIBUTE=$(echo "${SERVER_LINE}" | awk -F' *= *' '{print $1}') if [ -z "${ATTRIBUTE}" ] then echo "$(basename "$0"): neither \"Server\" nor \"Servername\" found for [${DSN}] in $(basename "${ODBC_INI}")" exit 1 fi echo "${SERVER_LINE}" | grep -i servername >/dev/null # # Find the server's hostname # if [ $? -eq 0 ] # ODBC-Combined then TDS_SERVER=$(echo "${SERVER_LINE}" | awk -F ' *= *' '{print $2}') echo 'Using ODBC-Combined strategy' echo "DSN [${DSN}] has servername \"${TDS_SERVER}\" (from ${ODBC_INI})" if [ -z "${TDS_SERVER}" ] then exit 1 fi # Look for $TDS_SERVER in freetds.conf FREETDS_DIR=$(tsql -C | grep 'freetds.conf directory' | awk -F: '{print $2}' | sed 's/^ *//') if [ -z "${FREETDS_DIR}" ] then echo "$(basename "$0"): error: unable to locate directory for freetds.conf using \"$(command -v tsql)\"" exit 1 fi for F in "${HOME}/.freetds.conf" "${FREETDS_DIR}/freetds.conf" do if [ -r "$F" ] then echo "$F is a readable file" else echo "cannot read \"$F\"" continue fi echo "looking for [${TDS_SERVER}] in $F" grep -F "[${TDS_SERVER}]" "$F" > /dev/null if [ $? -eq 0 ] then FREETDS_CONF=$F break else echo "[${TDS_SERVER}] not found in $F" fi done if [ -z "${FREETDS_CONF}" ] then echo "$(basename "$0"): error: unable to locate ${TDS_SERVER} in any freetds.conf" exit 1 fi # Examine server entry in freetds.conf echo found this section: SED_CMD="/^\[${TDS_SERVER}\]/,/^[[:space:]]*$/ { s/^/ /; p; }" sed -ne "${SED_CMD}" "${FREETDS_CONF}" SERVER_LINE=$(sed -ne "${SED_CMD}" "${FREETDS_CONF}" \ | grep -Ei '^[[:space:]]*host[[:space:]]*=') # No character class support in mawk, # cf. "Mawk does not support Posix character classes in expressions" # https://bugs.launchpad.net/ubuntu/+source/mawk/+bug/69724 HOST=$(echo "${SERVER_LINE}" | awk -F' *= *' '{print $2}') if [ -z "${HOST}" ] then echo "$(basename "$0"): no \"host\" entry found for [${TDS_SERVER}] in $(basename "${FREETDS_CONF}")" exit 1 fi else # odbc.ini contains a "server", a DNS host HOST=$(echo "${SERVER_LINE}" | awk -F ' *= *' '{print $2}') echo "\"${ATTRIBUTE}\" found, not using freetds.conf" echo "${ATTRIBUTE} is \"${HOST}\"" if [ -z "${HOST}" ] then echo "$(basename "$0"): no value found for \"${ATTRIBUTE}\" entry in $(basename "${ODBC_INI}")" exit 1 fi fi # If the "host" is an ip address, look up the name, for neatness, e.g. ## $ host 10.81.36.39 ## 39.36.81.10.IN-ADDR.ARPA domain name pointer ntc5003.eg.com if [ "${HOST}" = "$(echo "${HOST}" | sed 's/[^.0-9]*//')" ] then ADDRESS=${HOST} echo "looking up hostname for ip address ${ADDRESS}" HOST=$(host "${HOST}" | awk '/domain/ {print $5}' | sed 's/\.$//') if [ -z "${HOST}" ] then echo "$(basename "$0"): warning: no DNS hostname found for \"${ADDRESS}\"" HOST=${ADDRESS} # restore host address string fi fi # Now we have a DNS hostname for the server in HOST if [ "${HOST}" != "${ADDRESS}" ] then ADDRESS=$(host "${HOST}" | awk '/has address/ {print $4}' | head -1) fi if [ -z "${ADDRESS}" ] then echo "$(basename "$0"): no IP address found for \"${HOST}\"" exit 1 fi #cho ${HOST} has address ${ADDRESS} # Report what we know and exec isql printf "\n" printf "Configuration looks OK. Connection details:\n\n" printf "%22s:\t%-30s\n" DSN "${DSN}" printf "%22s:\t%-30s\n" odbc.ini "${ODBC_INI}" printf "%22s:\t%-30s\n" Driver "${DRIVER}" printf "%22s:\t%-30s\n" "Server hostname" "${HOST}" printf "%22s:\t%-30s\n" Address "${ADDRESS}" printf "\n" echo "Attempting connection as ${USERNAME} ..." if [ -z "${TDSDUMP}" ] then TDSDUMP_AUTO="/tmp/$(basename "$0").dump.$$" export TDSDUMP=${TDSDUMP_AUTO} fi ( set -x; isql "${DSN}" "${USERNAME}" "${PASSWORD}" -v ) \ || sed -ne 's/Connecting/FAILED &/p' "${TDSDUMP}" test "${TDSDUMP_AUTO}" && rm -f "${TDSDUMP_AUTO}" PKj5]l Lusr/bin/bsqldbnuȯELF>+@؊@8 @@@@hhnn zz z  zz z @@ DDStd PtdhhhQtdRtdzz z /lib64/ld-linux-x86-64.so.2GNUGNUGNU1a ~ hV\ra abd)fUa9.i zm4&{ 08: ^="TRgTJ {aK9so|0J g^6qYC)H  `@ Y( libsybdb.so.5__gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTabledbhasretstatdbaltopdbcoltypedbdatlendbsqlokdbstrlendbalttypedbbylistdbnumaltsdbpivotdbretnamedbfreebufdbsqlsenddbmsghandledbvarylendbcmddbrettypedberrhandledbprtypedbpivot_lookup_namedbdatadbnumretsdblogindbsetlnamedbinitdbretdatatdsdbopendbcollendbaltbinddbnumcolsdbconvertdbcountdbnextrowdbaltcoliddbretlendbretstatusdbcolnamedbcolsourcedbaltlendbbinddbnumcomputedbnullbinddbresultslibssl.so.1.1libcrypto.so.1.1libpthread.so.0closeread__errno_locationsigactionlibc.so.6__xpg_basename__printf_chkexitsetlocalefopenperror__stack_chk_failputcharreallocstdingetpidkillstrdup__assert_failfeoffgetscallocsigemptysetmemsettcsetattrmemcmpgetopt__fprintf_chkstdoutfputcmemcpy__ctype_b_locgetenvsscanfoptargstderrfreopenstrncasecmpgethostnamefwritestrchrtcgetattr__ctype_toupper_loc__ctype_tolower_loc__cxa_finalizememmovestrcmpstrerror__asprintf_chk__libc_start_mainferrorfreeGLIBC_2.2.5GLIBC_2.14GLIBC_2.4GLIBC_2.8GLIBC_2.3GLIBC_2.3.4/opt/alt/freetds11/usr/lib64:/opt/alt/openssl11/lib64 ui T'ii 2ii <ii Fti Pui z ,z p,z z      ! * b b( d@ cH a| | } } } }  } (} 0}  8}  @}  H}  P} X} `} h} p} x} } } } } } } } } } } }  } "} #} $} %} &~ '~ (~ )~ * ~ +(~ ,0~ -8~ .@~ /H~ 0P~ 1X~ 2`~ 3h~ 4p~ 5x~ 6~ 7~ 8~ 9~ :~ ;~ <~ =~ >~ ?~ @~ A~ B~ C~ D~ E~ F G H I J  K( L0 M8 N@ OH PP QX R` Sh Tp Ux V W X Y Z [ \ ] ^ _ `HHc HtH5 ` % ` hhhhhhhhqhah Qh Ah 1h !h hhhhhhhhhhqhahQhAh1h!hhhh h!h"h#h$h%h&h'qh(ah)Qh*Ah+1h,!h-h.h/h0h1h2h3h4h5h6h7qh8ah9Qh:Ah;1h<!h=h>h?h@hAhBhChDhEhFhGqhHahIQhJAhK1hL!hMhNhOhPhQhRhShThUhVhWqhXahYQhZAh[1%EZ D%=Z D%5Z D%-Z D%%Z D%Z D%Z D% Z D%Z D%Y D%Y D%Y D%Y D%Y D%Y D%Y D%Y D%Y D%Y D%Y D%Y D%Y D%Y D%Y D%Y D%}Y D%uY D%mY D%eY D%]Y D%UY D%MY D%EY D%=Y D%5Y D%-Y D%%Y D%Y D%Y D% Y D%Y D%X D%X D%X D%X D%X D%X D%X D%X D%X D%X D%X D%X D%X D%X D%X D%X D%}X D%uX D%mX D%eX D%]X D%UX D%MX D%EX D%=X D%5X D%-X D%%X D%X D%X D% X D%X D%W D%W D%W D%W D%W D%W D%W D%W D%W D%W D%W D%W D%W D%W D%W D%W D%}W D%uW D%mW DUHH5 6SH0H=wH=+1 HHW HHH}W HW / HH|H=4X HtH0W H53THH=X HtH0W H5p6,HKH=W HtHW H5H6H; W H=V H=V H W A1H>H5V Ht HH5V HߺH-5;HHu}fDH1AHH=qV H V HH=NV H _V 1AH5HH.u1H[]H=Q9H5!5MHHU H8AH=U RH U L 9Hv=P1^tH U AH4H=RU (>AH yU H{48,LU IH= U H LU H141H b8H5/H=38LU I8LU IAH T H3&f.D1I^HHPTL/H .H=hS H=T HS H9tHS Ht H=S H5S H)HHH?HHtHS HtfD=S u+UH=jS Ht H=M YdS ]wGރ]H-3HcH> f. f.f.t˸t1D@@Dff.fDf.f.PH=R H-1}AUATUSHL'Mt?I~(FI\$HIl0fDH;H(TH9uLGIEH[]A\A]@AUATUSHL/Mt?I~(FLHIlH;HH9uLI$H[]A\A]@AWAVAUATUSHL7MI~~FLMd@HE1ۋ~;@H@HHL<H*H21xH1H .H=L H2QIIQQJH L$<11E1oHc0IIEH@T$81DLo H$DLHHm HH(D;|$<ALL-&.D%H=C H)QIIQQH T$<XlH &!H5H=S'H %H5H=FH %H5nH=,YH %H5OH=2:H %H50H=8H l%H5H=@DL$TH $B AvH_%H=A \$ HJT 1I(L9uH=$DH > H=iH5> HH |> H=Y> EAH `> Hq"EAH D> H-"H Q!H5H=EAH== H > H!1H H5H=H5= ]H = H=H >H5QH=I"OH=7 n1DL$(H1H=7 HH1H=7 ~fDH=7 L1H[EH=o7 H 7 A1H2Kff.AWAVAUATUSH|$,Ht$dH %(H$1HHHD$IH8mIE(HiIvHD$@H<Iu(H|$@L5H=rHD$HIEHD$pHD$0HD$8fHt$|$,HBD2!IcL>@AEfDH6 A15f<0(<\PA\H(tSH߾\HH;Cmetametacompute[i]->datametadata[c].size != -1data[c].bufferData For computeid %d: by (out of memory%s%s%s%s(%s)0x%02hxrow_code != BUF_FULLrow_code != FAILData for computeid %d Retrieving return status... Procedure returned %d none %d rows affected @@rowcount not available ret name %d is %s ret type %d is %d ret len %d is %d ret data %d is %s Metadata sourcecolvariessizetype%s:%d: Query: go %s%s:%d: dbcmd() failed %s:%d: next_query() failed Msg %ld, Level %d, State %d Server '%s', Procedure '%s', Line %d options && argvDSQUERYinputncols <= 2pinchars <= pend - psurprised by %c %u%c%nbsqldb(): no name in %s bsqldb(): invalid name in %s %d%c%nU:P:R:S:d:D:i:o:e:t:H:hqvunable to get hostnamePassword: %s:%d: dbinit() failed login != NULL%s: unable to open %s: %s w%s:%d: dbsqlsend() failed %s:%d: dbsqlsend(): OK %s:%d: dbsqlok() failed %s:%d: dbsqlok(): OK 00p`88P@@8@H` HhXparse_pivot_descriptionget_loginset_format_string----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------print_results/dev/nullmain %s:%d: dbresults(), result set %d failed %d columns found in computeid %d %6d %30s %30s %15s %6d %6d %s:%d: asprintf(), column %d failed %s:%d: dbbind(), column %d failed %s:%d: dbnullbind(), column %d failed Insufficient room to create name for column %d: 0 < altcolid && altcolid <= dbnumcols(dbproc) column %d is %s, type %s, size %d %s metacompute[i]->data[c].buffer%s:%d: dbaltbind(), column %d failed could not write to output filebsqldb: fatal error: dbnextrow returned FAIL Retrieving output parameters... %s:%d: dbresults() returned NO_MORE_RESULTS (%d): %-6s %-30s %-30s %-15s %-6s %-6s %.6s %.30s %.30s %.15s %.6s %.6s %s: error: severity %d > 10, exiting %s: unable to allocate login structure found %lu row and %lu col keys bsqldb(): could not parse value column %s bsqldb, line %d: NULL terminators ('\0') not yet supported. usage: %s [-U username] [-P password] [-S servername] [-D database] [-i input filename] [-o output filename] [-e error filename] %s:%d unable to open %s for verbose operation: %s %s:%d: Verbose operation enabled /dev/tty-;4 Ŀ<4$$<ttThddttttdzRx `/D$4HFJ w?:*3$"\t4\BBA A(D0K(A ABB4\BBA A(D0K(A ABBD BBB B(A0A8D@8A0A(B BBB\D<BBA A(D0w (I DGDG D (L HDBJ I (D ADBA ,xFKD W FBD LBIB E(D0A8G  X M B  O T O Y ] G A I I X B A ] E J g A 7 O T O Y ] G A I D 8A0A(B BBBA  H U A DtBBB A(A0G I K 0A(A BBBE 8"k+alb9}b]X)6㊩Q8cUq~)|-ڐS:i3}Zrd{UIk.E G0Nk$/"t:g5+<.ծiryJa^I5?lG&ceV|0^mq*JW)ϲ,?qǐa؆:@]B&v2Z0f ·V֡T U+{ )0B䎢" ]/#6kz=Bl%RҾjjM=媑VMs2u>g$R}\Nw+OQ}{PɶGiQjGx:^ۉ37M ^5E4[0)\A`ݔ\ZB1a c 1vWoK5jkT*6 ؒfz}E (xi( 8w_:Dq}|TA 6GMiԌ%E_~Ρ?5d醆Ci=({"hԼLuojyvGIk3:!jә=qC.ZҼKP(RN^h'vHuF"t(n萤eӮxrCs ~v` ш jeǠO7]= e>)!.8ZN}$4j12STJT#AjʲuUȺdM)NFx`xd(|+ CUIlC ""kX9dUf,7sM9f#ʱgYZ.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.data.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata  & 4$Go004Q hhx Y aorrno@@}8B""`(`(2[[  [ [{ hhPiPiPz zz zz zz z@| |(  @ `` (/(p>PKj5]d@@r@rusr/bin/defncopynuȯELF>2@j@8 @@@@hhOO [[ [  [[ [ @@ DDStd PtddJdJdJQtdRtd[[ [ /lib64/ld-linux-x86-64.so.2GNUGNUGNUK.&2K~{Sf$l@!@AC)fUa92 [ /B;v : |"T.cvaen( [o4'H` 0` T@`  ` M8` libsybdb.so.5__gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTabledbfcmddbcoltypedbdatlendbsqlokdbsqlsenddbmsghandledbsqlexecdbrowsdberrhandledbdatadbtdsdblogindbsetlnamedbsetlbooldbinittdsdbopendbcollendbnumcolsdbconvertdbnextrowdbcolnamedbbinddbnullbinddbresultslibssl.so.1.1libcrypto.so.1.1libpthread.so.0__errno_locationlibc.so.6__xpg_basename__printf_chkexitsetlocaleoptindperror__stack_chk_failreallocstdinmemchrstrdup__assert_failstrtolfgetsstrlenstrstrmemcmpgetopt__fprintf_chkstdoutfputsmemcpymallocstrcasecmpoptargstderrfreopengethostnamefwrite__memcpy_chkstrchr__cxa_finalize__sprintf_chkmemmovestrcmpstrerror__asprintf_chk__libc_start_mainfreeGLIBC_2.2.5GLIBC_2.14GLIBC_2.4GLIBC_2.8GLIBC_2.3.4/opt/alt/freetds11/usr/lib64:/opt/alt/openssl11/lib64Q ui rii ii ti ui [ 2[ 2 [  [ @[ qHH[ }HP[ H`[ Ih[ Ip[ Ix[ I[ "I[ )I_ _ _ _ _ _ A0` A ` C8` D@` BH` @] ] ] ^ ^ ^ ^  ^  (^  0^  8^  @^  H^ P^ X^ `^ h^ p^ x^ ^ ^ ^ ^ ^ ^ ^ ^ ^  ^ !^ "^ #^ $^ %^ &^ '_ (_ )_ *_ + _ ,(_ -0_ .8_ /@_ 0H_ 1P_ 2X_ 3`_ 4h_ 5p_ 6x_ 7_ 8_ 9_ :_ ;_ <_ =_ >_ ?HHI HtH5G %G hhhhhhhhqhah Qh Ah 1h !h hhhhhhhhhhqhahQhAh1h!hhhh h!h"h#h$h%h&h'qh(ah)Qh*Ah+1h,!h-h.h/h0h1h2h3h4h5h6h7qh8ah9Qh:A% D D%D D%C D%C D%C D%C D%C D%C D%C D%C D%C D%C D%C D%C D%C D%C D%C D%C D%}C D%uC D%mC D%eC D%]C D%UC D%MC D%EC D%=C D%5C D%-C D%%C D%C D%C D% C D%C D%B D%B D%B D%B D%B D%B D%B D%B D%B D%B D%B D%B D%B D%B D%B D%B D%}B D%uB D%mB D%eB D%]B D%UB D%MB D%EB D%=B DAWAVAUATAUHH5z!SHdH%(H$1QHD 1HHH\H}.HD IHH5gD HǺH=VD tH5@D LAH3)H7!HDD2. HcH>H=A dHeD H=A LHED H5qA LE1 |@H=QA HuC `H=1A IH+HLLE1 H=@ HC EH=B 6 @ H=|B H= H=^C HtH@ H5HH=>C HtHr@ H5HH5~B Ht LH5]B L(IH6B A9HcMDHLHHL$8HDHD$HH$HD$(HD$8.L LiHHHŸLt$(LL)HIHGHHsLƄ,LHhSLt$(L0IIELHLIHHH5(1/H=A HtHHA HHuLqLL1D$@D$@ulHD$(H=> H%L @ L@ PHH @ P1H^_H$dH3 %(H[]A\A]A^A_HD$8HD$8H9D$HT1뽸붺eL9HD$(LǀdboH1zLt$(LIHpHLH5&H1H=@ HtH/0H-i@ HHuLpD$ D$0D$DD$7HD$H$f.L8 L L H5H+L^H=HuL|$`LH7 L,LH5H?L9~ЃD$ HcD$ H<$H@HHH$H H$L$L|$ HD1HPH$H$HPH$HPH$HP H(H$H$H$HD$Gf.[M4$HcH,IHCHkHIHD$ LDtH=? u*LLLLD$yT$LD$ADID؉T$AI0D9uD$H([]A\A]A^A_fUHSHH? uH; tHgHHHP8H[]ÐAWAVAUATUSHH $HH $HH $H1۽AdH%(H$>1HD$$ILl$0HD$HD$(LHD$HD$,HD$me@LL=>[1MLHT$L~LD$LHT$L@H* H5 1nL5 0D9l$(t H=LL1dH3 %(CH>[]A\A]A^A_þLw=>1H + H=Z) EARH  AAcH ^+ H=) H> UAAhH )+ H=( H1 AAnAAsH=( A1HS aH H5H= H {^H5H=X c>ff.H m* H=.( SLÅtFAAо1HHپ1H=' H[fH1Hپ1H=' H5[fUHG@S1H fDHHxHuHH[]f.HHHtH* H* HHPHH ,' H= ff.U]SHHMHHH|x[ HPtJf.Hr]u HJ]HH H  Hu׺]fH[]Hֺ]fH[]ff.S'HHu H[Hً1H! t€DHqHDΉ@HH)H| tBHHr'u HJ'HH H  HuHH[@Hff.USLHEt+GttHH5j1H1[]þ'LHtHh'HHtH-H=<% IH 1H=' HtHH' HHuH1[]AWHAVIAUATDaUHJTSHH<$L$ HH9uH<$AA9LDH<$DE1H@IJtHuLIGM9uAH<$VA9~1A=3index_descriptionnew_index_keyslocatedprimary key%s %sret >= 0Column_nameCollationp != NULLdatlen >= 0%sCREATE TABLE %s.%s %s(%s,%s)-1%s(max)%s(%d)%s(%s) %c %-*s %-15s %3s NULL ) GO %s:%d: dbresults(), result set %d failed sizeof(sql_text) > dbcollen(dbproc, ctext)%s:%d: dbbind(), column %d failed %s:%d: dbnullbind(), column %d failed defncopy: error: unexpected NULL row in SQL text defncopy: error: expected REG_ROW (%d), got %d instead Expected column name %s not found %s: unable to allocate login structure Copyright (C) 2004-2011 James K. Lowden This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. usage: %s [-U username] [-P password] [-S servername] [-D database] [-i input filename] [-o output filename] [owner.]object_name [[owner.]object_name...] There was a problem connecting to the server. %sALTER TABLE %s.%s ADD CONSTRAINT %s PRIMARY KEY %s (%s) GO %sCREATE %s INDEX %s on %s.%s(%s) GO error: insufficient memory for row DDLerror: insufficient memory for row detailError converting column to char%s: error: %s.%s.%s.%s not found decimalnumericncharnvarchar1yes%%%%%%%%%%%x%%X%8%%%%%%%%%%%%%%%%%% %%%%%%%%%%%quote_index_keysindex_nameindex_descriptionindex_keysparse_index_rowcharncharvarcharnvarcharunicharunivarcharbinaryvarbinarycolumn_nametypelengthprecscalenullsnullableprint_ddlprint_resultsget_login execute sp_help '%s.%s' select c.text, number from syscomments c, sysobjects o where o.id = c.id and o.name = '%s' and o.uid = user_id('%s') and o.type not in ('U', 'S') order by c.number, %sc.colidmain-;l $ p<<X[ [ o0 h R ] h@( oo oo2 o [ 0@P`p 0@P`p 0@P`p 0@P`pGA$3a1?2 GA$3p1113>GA*GA$annobin gcc 8.5.0 20210514GA$plugin name: gcc-annobinGA$running gcc 8.5.0 20210514GA*GA! GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realign GA*GOW*=GA*s<GA$3a1@2> GA$3p1113<&>GA*GA$annobin gcc 8.5.0 20210514GA$plugin name: gcc-annobinGA$running gcc 8.5.0 20210514GA*GA*GA! GA*FORTIFYGA+GLIBCXX_ASSERTIONS GA*GOW*GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realignGA*<> GA*GOW*0>> GA*FORTIFY3>GA+GLIBCXX_ASSERTIONSdefncopy-1.5.16-1.el8.x86_64.debug&,7zXZִF!t/%]?Eh=ڊ2NKK {?2鯇m SZ1tʹaBiE[+5:T^2OhpL) ;K >{+P᝟}+< 7 tzC')YډQ~r>D`鹋UYz]jivLBZ1Q2'@_.Iyz}x,ҝ=b 0DjR}IIzH23ba7¤~-7E",\Rh_Q?;mYwe1ؿ/3;Ҟb1x(N YdC@lQ9S0JXd,m kk4nk>3w)qyJ`P&9tl#ykʕÉOÌb49nJ7 W;~EOzp;= >q7Z0S6\Qr1f~.QT_)mЩb٘J#UU*>vl%_/2T|8lq)@f"eJk긫Y]&"J㺈wNl1Qiʶ-}de`],0ԥє'؁lZ]REM}0# 6% fW;:3ҎR@giimc,Pp=׉ﺢd eW8ۙߊ n/ @`bN> >> dJdJKK[ [[ [ [ [p [ [@] ] ` ` ` ` c`` d(/dh@i>PKj5]aausr/bin/bsqlodbcnuȯELF>P#@Z@8 @@@@hhHEHE KK K 4 KK K @@ DDStd PtdAAAddQtdRtdKK K 00/lib64/ld-linux-x86-64.so.2GNUGNUGNUEݦC)@8E  8;>|BE)fUaqX9l* a &" 9 w4~" -dw\XP|pSQ P HP  P P I@P B(P libodbc.so.2_ITM_deregisterTMCloneTable__gmon_start___ITM_registerTMCloneTableSQLDisconnectSQLPrepareSQLGetDiagFieldSQLMoreResultsSQLGetDiagRecSQLGetStmtAttrSQLConnectSQLNumResultColsSQLFreeHandleSQLDescribeColSQLBindColSQLSetEnvAttrSQLAllocHandleSQLGetDescFieldSQLFetchSQLExecutelibssl.so.1.1libcrypto.so.1.1libpthread.so.0__errno_locationlibc.so.6__xpg_basename__printf_chkexitsetlocalefopenperror__stack_chk_failreallocstdinstrdup__assert_failstrtolfeoffgetscallocstrlenmemsetgetopt__fprintf_chkstdoutmallocstrcat__ctype_b_locoptargstderrfreopenstrncasecmpgethostnamefwritestrchr__cxa_finalize__sprintf_chkmemmovestrcmpstrerror__asprintf_chk__libc_start_mainferrorfree_edata__bss_start_endGLIBC_2.2.5GLIBC_2.4GLIBC_2.3GLIBC_2.8GLIBC_2.3.4/opt/alt/freetds11/usr/lib64:/opt/alt/openssl11/lib64L ui mii ii ii ti "ui K 0$K #K K O O O O O  P ;(P >@P =HP :@N HN PN XN `N hN pN xN  N  N  N  N  N N N N N N N N N N N N O O O O  O !(O "0O #8O $@O %HO &PO 'XO (`O )hO *pO +xO ,O -O .O /O 0O 1O 2O 3O 4O 5O 6O 7HH!< HtH5Z: %[: hhhhhhhhqhah Qh Ah 1h !h hhhhhhhhhhqhahQhAh1h!hhhh h!h"h#h$h%h&h'qh(ah)Qh*Ah+1h,!h-h.h/h0h1h2%%7 D%7 D%7 D% 7 D%7 D%6 D%6 D%6 D%6 D%6 D%6 D%6 D%6 D%6 D%6 D%6 D%6 D%6 D%6 D%6 D%6 D%}6 D%u6 D%m6 D%e6 D%]6 D%U6 D%M6 D%E6 D%=6 D%56 D%-6 D%%6 D%6 D%6 D% 6 D%6 D%5 D%5 D%5 D%5 D%5 D%5 D%5 D%5 D%5 D%5 D%5 D%5 D%5 D%5 DAWAVAUATAUHH5SH8dH%(HD$(1HD$HD$H.6 1HHH5 H#6 H%H}(H5 H6 HH&H6 HD$HH=5 6HX$HVHD~D2HcH>H=4 Ht$ BH5H;H;5 &5 @L-4 A13<0<\A\AHB8L\IHAE1H= H5HH/ H8{H=$/ H / L ~ VA HP11H=H=. H / H1LH cHt$ LH LeH WH H5hH=aH=?. HپHKaH H5$H=R8FL// IH=- H . H,1Ht$LH m8L. IU8L. IsH $H5bH=LnH Ht$pVLH LH 1I^HHPTLH H=b, H=, Hz, H9tHN, Ht H=Q, H5J, H)HHH?HHtH, HtfD=U, u+UH=+ Ht H=' Yd-, ]wAVIAUIATUS~fDH APH=h& AH PH ' 1jXZL[]A\fDH Hi QH=& 1APH & AH #AH=% 1H {& HDAW11AVE1AUE1ATUSHH|$@dH%(H$1HD$lft$lHD$XLLcHt$XH|$@1fL$l f8 H\$l0HIH HhIH, H % H= HH H=u% PH L PH L PH H+1H1H H=#% H4QIIQQ$H fHD$nLl$HL|$@MeHD$(InH$HD$HD$rHD$8HD$pHD$0Lt$Pf.HMt$Mt$@LAt$@AVLD$HHT$(H f$HD$nf=H|$ƄM\$ID$HD$pLfx L9IBHA$IT$P fwp @HseE\$E1HT$xL'feH|$xLL$tLDAgf&ID$L\A$M\$D fhH HcH>AH HMD$DjH=N# H ASP1$H 9L5# LH5M\$A$H/ H fw @HH HEIL$I|$L\$ HT$HL$HL$L\$ MHT$LH9ƾHCA1HMt$M9t$MCt$L"HEHvIMHDLfL$lHI0HS9u" Ll$HLt$PLd$@f4Lfd ftf@LD$l11f5fIt]H 1XT$lH9~IDHtHtH^IIt]1E1HIAHAHAHAHAH |AHjAHXAHFA]HE4A\H%"A[HA HA HA HA HAHAHlAHPAH1AHnAH\AHJH @1H=@ L\$vE $L\$H% H= L5 FD1LHTL߾ELt$PLl$H1H= H 5 H AOT$lLLcH$dH3%(;HĘ[]A\A]A^A_f|$l~Ht$@H|$@f~_f)fdH= H H1Ht$@T$lLLGftUfu]H H=# Hc1LhH eHt$@H '믹1AH=+ HT?H= 1H HftfwHt$@@T$lhH :3fLE1HUHM1H=0 AH0T$lD9f]MeH- I$H= H1I0tT$l9H= H H1C/H= H 8H1LH czLH >dH #H5H=LH / aLqH H H5qH=H p `H5RH=H Q H53H=%a,LH LH xH  H5H=AWIAVIAUAATL%4 UH-4 SL)HHt1LLDAHH9uH[]A\A]A^A_ff.HH%s:%d: Query: go %s%s:%d: next_query() failed bsqlodbc.cret == SQL_SUCCESS"%s" %s: error %d: %s: %s SQL_SUCCESS_WITH_INFOSQL_ERRORSQL_STILL_EXECUTING%s: error %d: %s: %s: %s SQL_UNKNOWN_TYPESQL_CHARSQL_NUMERICSQL_DECIMALSQL_INTEGERSQL_SMALLINTSQL_FLOATSQL_REALSQL_DOUBLESQL_DATETIMESQL_VARCHARSQL_TYPE_DATESQL_TYPE_TIMESQL_TYPE_TIMESTAMPSQL_INTERVALSQL_TIMESTAMPSQL_LONGVARCHARSQL_BINARYSQL_VARBINARYSQL_LONGVARBINARYSQL_BIGINTSQL_TINYINTSQL_BITSQL_GUID%%%u.%us%s%%-%u.%us%sSQL_INVALID_HANDLEfailedSQLNumResultColsmetadataMetadata type valuecolvariessizetype nameSQLDescribeColnamelen < sizeof(name)SQLGetStmtAttrSQLGetDescFieldunknown: %d%%s%sdata[c].bufferSQLBindColSQLFetchNULLdata[c].len >= 0unknownSQLMoreResults returned %s SQLMoreResultsSQL_NO_DATAoptions && argvunable to get hostnameU:P:S:d:D:i:o:e:t:V:hqv%s: unable to open %s: %s wSQLAllocHandlehEnvfailed to set SQL_OV_ODBC3SQLSetEnvAttrhDbcSQLConnectSQLPrepareSQLExecute: continuing... SQLExecuteSQLFreeHandle%s:%d: could not allocate memory %s: error %d: %s: invalid handle: %s %s: error: %d is an unknown return code for %s %-6s %-30s %-10s %-18s %-6s %-6s %.6s %.30s %.10s %.18s %.6s %.6s %6d %30s %10d %18s %6lu %6d %s:%d: asprintf(), column %d failed error:%d: prret cannot interpret SQLRETURN code %d %s: unable to allocate login structure bsqlodbc, line %d: NULL terminators ('\0') not yet supported. warning: -V must be 2 or 3, not %s. Using default of 3 usage: %s [-U username] [-P password] [-S servername] [-D database] [-i input filename] [-o output filename] [-e error filename] %s:%d unable to open %s for verbose operation: %s %s:%d: Verbose operation enabled failed to allocate an environmentfailed to allocate a connectionfailed to allocate a statement handleiPC`DRRR2 @. RRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRzhVH((----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------print_resultsprint_error_messageget_login/dev/nullmain ;` T|T ,4tzRx /D$4x@FJ w?:*3$"\08tfBEE A(A0I(D BBB@BBA A(G I  (A ABBI BOE B(A0A8G f L B M M ] A c  K U A M M E E 8A0A(B BBBA @|EGA t(R0T(D K ABG Z (P0c  BFE E(A0A8GOTOY]GAQ^NOBSOPAST 8A0A(B BBBA h` FBB B(I0K8DpxZFxApD 8A0A(B BBBA ~ xSQ DeFEE E(H0H8G@n8A0A(B BBB0$#K -;Lm.  5K K o0X p d (N    oo@ oo oK  0@P`p 0@P`p 0@P`pGA$3a1# GA$3p1113@5GA*GA$annobin gcc 8.5.0 20210514GA$plugin name: gcc-annobinGA$running gcc 8.5.0 20210514GA*GA*GA! GA*FORTIFYGA+GLIBCXX_ASSERTIONS GA*GOW*GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realignGA$3a1#6 GA$3p111355GA*GA$annobin gcc 8.5.0 20210514GA$plugin name: gcc-annobinGA$running gcc 8.5.0 20210514GA*GA*GA! GA*FORTIFYGA+GLIBCXX_ASSERTIONS GA*GOW*GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realign GA*FORTIFY@$5 GA*FORTIFY55GA+GLIBCXX_ASSERTIONSGA+GLIBCXX_ASSERTIONS@$5bsqlodbc-1.5.16-1.el8.x86_64.debugDox7zXZִF!t/_]?Eh=ڊ2NaiO"emRƋP<_q?:c~rMT%4QҸzBYu=;tREk?U�ސn F!3j+. *DwlX@[2?gy,QSA@- %%o^S-Ƕ'0qG%~g%# wKtױsk 葘ۏLǩ ?h:8:4dcWc*sN ?d^*^P*KP~;=/.pӷٳ2GYO-)%OICnc7j}\S3^IdHfAW˸)qpسuq-SpD)0sZuN2"91/-ES'QV?&/.H4Ahu=Y>=BIX԰P_j?QAyrX_7\0ߗ"Eqb_Sn!B@XdFJ]9Y] U1ռTDls| 2+Z- URǟL%/bKa拢2c[ $ˍ.ѷYے! 䡣I߁4/c%kҊ?ɑ6d9Q ڴB_jh 6\7Jb6_n:,JzaA4ϠN7<t {P_ IۮP&[l>? щ)X_ě(0Mp^iH(egP0e0޹ܠKr#y|_;oGK%UV_ĭEfal,`C*Tsɀ.m0I͓[>]XڪNSv5٨1CZظȶ$)[OJ#Ơ!\] [ص M`1ڸ’3#D$1##,rşc \0,gYZ.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.data.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata  & 4$Go00@Q ppYX X dao ~no@ @ } B@0@@55  6 6 AAd B B(K KK KK KK K@(N (NP P P Px Q`P T(/TX>PKj5]q1aausr/bin/datacopynuȯELF>$@ Z@8 @@@@hh0C0C KK K 4 KK K @@ DDStd Ptd???||QtdRtdKK K 00/lib64/ld-linux-x86-64.so.2GNUGNUGNUn^w.=k8 8:fUa9K~# M T: 7a"`omZAevZp~F$1- P ?@P 8(P libsybdb.so.5__gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTablebcp_sendrowtdsdump_opendbsetoptdbclosedbcoltypedbdatlenbcp_donedbmsghandledbsqlexecdbcmdbcp_controlbcp_initdberrhandledbdatadbloginfreedblogindbsetllongdbsetlnamedbsetlbooldbinittdsdbopendbcollendbnumcolsbcp_batchdbnextrowdbtablecolinfobcp_collendbresultsbcp_colptrlibssl.so.1.1libcrypto.so.1.1libpthread.so.0libc.so.6__printf_chkexitsetlocaleputs__stack_chk_failputcharstdinstrdupstrtolfgetscallocstrlenmemsetgetopt__fprintf_chkmemcpyoptargstderrfwritegettimeofdaystrchr__cxa_finalize__sprintf_chkstrsep__libc_start_mainGLIBC_2.14GLIBC_2.4GLIBC_2.3.4GLIBC_2.2.5/opt/alt/freetds11/usr/lib64:/opt/alt/openssl11/lib64ii ti ui K %K %K K O O O O O  P 8(P :@P 9@N HN PN XN `N hN pN xN  N  N  N  N  N N N N N N N N N N N N O O O O  O !(O "0O #8O $@O %HO &PO 'XO (`O )hO *pO +xO ,O -O .O /O 0O 1O 2O 3O 4O 5O 6O 7HHQ= HtH5; %; hhhhhhhhqhah Qh Ah 1h !h hhhhhhhhhhqhahQhAh1h!hhhh h!h"h#h$h%h&h'qh(ah)Qh*Ah+1h,!h-h.h/h0h1h2%U8 D%M8 D%E8 D%=8 D%58 D%-8 D%%8 D%8 D%8 D% 8 D%8 D%7 D%7 D%7 D%7 D%7 D%7 D%7 D%7 D%7 D%7 D%7 D%7 D%7 D%7 D%7 D%7 D%}7 D%u7 D%m7 D%e7 D%]7 D%U7 D%M7 D%E7 D%=7 D%57 D%-7 D%%7 D%7 D%7 D% 7 D%7 D%6 D%6 D%6 D%6 D%6 D%6 D%6 D%6 DAWAVAUAATIH5UH-z%SHdH%(H$1H\$ UH{1HD$$HǃHD$ DŽ$HLDQD2HcDH>fD$fD$fDH=96 1$}D$$H=9DoH=5 $?-{HD$xAH=5 1$D$ @$ H=5 1$H 5 H=aH m5 H=IA4H J5 H=4H -5 H=|6H 5 H=_(H 4 H=B9H 4 H=%:H 4 H= $H 4 H=8 ?H 4 H=C %H b4 H=f H E4 H=q !H (4 H=| w2H 4 H= Z7H 3 H= =H$dH3%(DQH[]A\A]A^A_ÐH53 H{H$  @$H5Q3 H{0H$a $$$$E$H=H=Ht$(IHt HvHt$0Ht L_Ht$@Ht LHH5aL4$tHct$$~ LHt$8LRHHHt$PIHt HHt$XHt LHt$hHt LH5LL$tHct$$~ LSHt$`LIHLmLe$Lvt A$HWAǃuރ$HD$pL$H LHD$HD$HHD$I17LHLHE1u=HAHtE5LD$L1H LLLD$u LD$LFt|$'AD;l$tzDHDHD$DLD$DLD$sDL$DT$AAluAlt AjuAjtE9D9\$AE9~LHH HE1LH |/ 5H=H Z/ E1H=>LLHT$pHt$xMHH|$HrLD$pHL$xHAH=. HLH=\H5;1?H55HD$81"H5*HD$(1H5HD$01H5HD$@1pHD$HH=%H51BH5HD$`1%H5HD$P1cH5}HD$X1FH5rHD$h1)HD$pH - %H=,H f- H=WH I- 5H= H;L3AH - H=aH , H=F?MH , H=H , H=)SHL$H=, Hv1H z, H=KHL$H=S, H?2DD$D1H=', H H , H=YD1D\$H=+ HDT$DL$DL$1DD$H=+ HDD\$1DT$H=+ HEDg"f.1I^HHPTLH H=* H=* H* H9tH* Ht H=* H5* H)HHH?HHtH* HtfD=* u+UH=b* Ht H=>& d* ]wSHH<* dH%(H$1HHHt HHtHH$dH3 %(u H[ff.AUIATUHSHH\$Ht$H5HHH6H5{HHEHHH5WHHEIHHƹH=2LLHE*LHH5 HrHt=HH5 HHERHtHuHE H[]A\A]ÐH1[]A\A]LH5-GHE}ff.AWAVAUATUSHH $HH $HXLD$IIHH$@H A IIվ HdH%(H$H'1_HLtADžL!ADžLuA<$MRL~AUHL . MDH 1YL^gADžL?Ld$L-d L$L H It$Hߺ  HH5( I$,Hߺ $0 HH5 L- HD4$ $, HH H5 HE A9|MLLD$,p?E1H$H'dH3 %(DHX'[]A\A]A^A_ú H5 H$ H=weH|$HADžt/H|$nADžH|$9uAuH 2& H=# |SH & 1E1H=|W.H=% H1H H % #H=pYfAWAVAUIATIUSHH|$dH%(H$1҅ZHD$H$HdtcHD$H H߾L@P1[HLpD$LD$LD$HD$H p H߾L@(1HL D$^LD$LL4D$`HD$11ALHpPHct$FIH|$(D$Ld$1Hl$PAMHI7f.:}-tP/|r4~8uhIM9HDLD$P,]n$pDLExCD>~ztjtltH=p# Hq 1MsH L# H==H$dH3%(D$HĘ[]A\A]A^A_H=HH " H=J;D$T@@E,PރH " H=*D$-H \" H=*LD$HD$Ld$ttLH|$01;D$D$,D$ D$$D$(LXD$D$$Dt$(IFHD$tf:}+-t&/4~8fLLMLHLPH;\$LALIƃ>xzt!jtlt{fAރvlwZEbFD1LHH;\$xL%HT$D$ D$ 9LOD$,T$,H5 щ1wD$ jH 3 H=}H  H=[|$$tLgD$,B1H|$@HD$uqLXD$uH  H=[L&D$CH r &H=AD$HD$HfH+D$8fH*HD$@H+D$0^fH*ȿ XD$]T$$1H5&T$,1H5D$H5fH5*D$,^D$H  H=pLD$0SH=T LÅt=AѾ1H%Hپ1H=$ H[ÐHH=WHپ1H= H[=Eu1DU1LſSALHcH57H;uNHD$ 8udD$(~T$(H5H1HH5:1H1[]fD1HڿH5ZHD$ 8tHH51:USH8dH%(HD$(1x=HAH HH 1HڃHÅtHT$(dH3%(u&H8[]H  H=XAVIAUATIUHSLH L,MtIT$L9sH9r3[L]A\A]A^H|LHP[L]A\A]A^H|H)LpBD%L[]A\A]A^f.@AWIAVIAUAATL%4 UH-4 SL)HHt1LLDAHH9uH[]A\A]A^A_ff.HH/-( IDENTITY NOT NULLselect * from %s where 0=1dbcmd failed table %s not found on SOURCE CREATE TABLE %s%s%s ) Starting copy...truncate table %sdbsqlexec failed Error in dbresults select * from %sError in dbnumcols Error in bcp_init bcp_sendrow failed. bcp_batch error bcp_done failed. rows read : %d rows written : %d elapsed time (secs) : %f rows per second : %f Msg %d, Level %d %s DB-LIBRARY error: Msg %ld, Level %d, State %d Server '%s', Procedure '%s', Line %d %s dbsetopt failed Invalid owner specified. stderrEnter Source Password: Enter Destination Password: Invalid textsize specified. b:p:tac:dS:D:T:EvEnter Server : Enter Login : Enter Password : Enter Database : Enter Table : Migrate DataError in dbnumcols 1 table %s not found on DEST Error in dbnumcols 2 source: type %d, length %d dest : type %d, length %d datacopy: table copy failed. Buffer overflow building command to create table create table on DESTINATION failed Could not allocate memory for srcdata Type %d not handled by datacopy %d rows successfully copied (total %d) one (and only one) of -t, -a or -c must be specified No [-S]ource information supplied. No [-D]estination information supplied. usage: datacopy [-t | -a | -c owner] [-b batchsize] [-p packetsize] [-T textsize] [-v] [-d] [-E] [-S server/username/password/database/table] [-D server/username/password/database/table] -t : truncate target table before loading data -a : append data to target table -c : create table owner.table before loading data -b : alter the number of records in each bcp batch (larger batch size = faster) -p : alter the default TDS packet size from the default (larger packet size = faster) -T : Text and image size -E : keep identity values -v : produce verbose output (timings etc.) -d : produce TDS DUMP log (serious debug only!) Can't connect to source server. Can't connect to destination server. datacopy: could not create target table %s.%s . terminating number of columns do not match. source : %d , dest: %d COLUMN TYPE MISMATCH: column %d datacopy: table structures do not match. terminating the data may have been partially copied into the target database x`8(.A;|XXHdX<hXHhzRx /D$4`@FJ w?:*3$"\x0 tPuALa AA LBBEA D(D@ (F ABBB D (C ABBD dBBB B(A0A8G L@LOOIObODO 8A0A(B BBBA LPD?BBB E(D0A8Gu 8A0A(B BBBA 4EI B |(YKT M CAG (HAADPl AAA P FBB J(K0H8GF 8A0A(B BBBB \lhFEB D(D0i (D BBBH R (D BBBD Z(A BBBDeFEE E(H0H8G@n8A0A(B BBB%%K z x 4K K o0`  (N    ooX oo oK  0@P`p 0@P`p 0@P`pGA$3a1x% GA$3p11134GA*GA$annobin gcc 8.5.0 20210514GA$plugin name: gcc-annobinGA$running gcc 8.5.0 20210514GA*GA! GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realignGA*3 GA*GOW*GA$3a1%5 GA$3p11133r4GA*GA$annobin gcc 8.5.0 20210514GA$plugin name: gcc-annobinGA$running gcc 8.5.0 20210514GA*GA*GA! GA*FORTIFYGA+GLIBCXX_ASSERTIONS GA*GOW*GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realignGA*44 GA*GOW* GA*FORTIFY%4GA+GLIBCXX_ASSERTIONSdatacopy-1.5.16-1.el8.x86_64.debug7H7zXZִF!t/]?Eh=ڊ2NiU֔NhU} T|Qv_9p_$WM )*$.)v/*u @.B;|(Xq՞Fjďm+Oz/pQٳI rhƇƷe{h;Z,EYxU*ZR&a^gӬ T% {J=S,ңiu|5h8]5&δ##5^&Ecx(y:B%Y%Kι -i;51$`(\.ox&_ M?r!' :-DM֓hg ~MvLK43RJ,{%" KÒ뾬|2y σ4tl 2ʎIH|HʸX*՟FmGt?\doO9mů0w 6np;0bQ<^Η$AXF`d`P??HN;v:#l5O/ ֐sY{̼N'Ś{?旪=+@O_+$6z'$)7"j*oMH* jH^K(0 ?YJy]3S*JߙZdaXD)`}ut8J,w}-8W5GSM8jF?wsׯ_+f^;`ZEU\:hg5qD g!},bN?꣦5b UdY~5k)tk(ǯǓOx"Cm: x`_tևg$*ZX%[z_[wD[T~JU{Me$`rgh@XRnpd(P# (Dt=Eŗ^>l^|L\)ʲXp iZ)!$ltgYZ.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.data.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata  & 4$Go000Q ``Yao vnoX X P} B xx@044 55 ??|@@(K KK KK KK K@(N (NP P P P0 PP`P T(/T(X>PKj5]Rbbusr/bin/freebcpnuȯELF>@Z@8 @@@@hhCC KK K L KK K @@ DDStd Ptdp>p>p>QtdRtdKK K HH/lib64/ld-linux-x86-64.so.2GNUGNUGNUo<me} C`˼:!:;=)fUa92h+ N$r : " aQT}Y;]E Gnv@1&{9HP 0P g@P  P `8P libsybdb.so.5__gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTabletdsdump_opendbfcmddbcoltypebcp_execbcp_colfmtbcp_columnsdbmsghandledbsqlexecdbcmdbcp_controlbcp_initdberrhandledbloginfreedblogindbsetllongdbsetlnamedbsetlbooldbinittdsdbopenbcp_getbatchsizedbsetifiledbnumcolsdbnextrowbcp_readfmtbcp_optionsdbresultslibssl.so.1.1libcrypto.so.1.1libpthread.so.0__errno_locationlibc.so.6__printf_chkexitsetlocalefopenoptindperrorputs__stack_chk_failstdinstrdupstrtolfeoffgetsstrlenmemsetgetopt__fprintf_chkstdoutmemcpyfclosestrcasecmpgetenvoptargstderrfreopenfwritestrchr__cxa_finalizememmovestrerror__libc_start_mainGLIBC_2.2.5GLIBC_2.14GLIBC_2.4GLIBC_2.3.4/opt/alt/freetds11/usr/lib64:/opt/alt/openssl11/lib64 ui ii ti ui K K pK K O O  O O O O ;0P ; P =8P >@P <HP :(N 0N 8N @N HN PN XN `N  hN  pN  xN  N N N N N N N N N N N N N N N N O  O !O "O # O $(O %0O &8O '@O (HO )PO *XO +`O ,hO -pO .xO /O 0O 1O 2O 3O 4O 5O 6O 7O 8O 9HH!< HtH5R: %S: hhhhhhhhqhah Qh Ah 1h !h hhhhhhhhhhqhahQhAh1h!hhhh h!h"h#h$h%h&h'qh(ah)Qh*Ah+1h,!h-h.h/h0h1h2h3h4%6 D%6 D%6 D%6 D%6 D%6 D%6 D%6 D%6 D%6 D%6 D%6 D%6 D%6 D%6 D%6 D%}6 D%u6 D%m6 D%e6 D%]6 D%U6 D%M6 D%E6 D%=6 D%56 D%-6 D%%6 D%6 D%6 D% 6 D%6 D%5 D%5 D%5 D%5 D%5 D%5 D%5 D%5 D%5 D%5 D%5 D%5 D%5 D%5 D%5 D%5 D%}5 D%u5 D%m5 D%e5 D%]5 DATIH5USH dH%(H$1H\$31 HHHLD$XQtufEDH}AAADAE9EXAUDHLMPE1ɺ/P^_uDH=, H#fDH i, H=[fDH A, H=BfDH , H=,fDEhAT1ɺ/LM`ADHPZYU@HH= Ht$H3AąubAHH pH=+ HEH1|H `+ E1H=DT$H51AmAVAUAATEIUSHHHO(HWdH%(HD$1H7HD$u%1HL$dH3 %(H[]A\A]A^I$HtA$tPH^I$H1H5GyŅ_HwŅuHeuAT$8HAT$<HAT$DHI$H5AtH5H1ŅHŅ1f.Ht#uuHH߉uH.BAAAD9DH8ATDE1jEDH.ZYuH=) DHQ 3H ( H=c fDH ( H=;fDH ( H=fDH=Ht$HŅuYAHEH -H=@( HEH19aH ( 1H=B=T$1H5z4f.AUAATEUHSHHHO(HWdH%(HD$1H7Hcu/E1HL$dH3 %(DH[]A\A]f.HHttQH!HH1H5 =AąH:AąH'uS8HS<HSDHHs HAąH=FHt$H"Aąu;AHwH _ H=r& HEH 1kfDT$H5 1AfDH !& H= zfDH % H= sRfAUATIUHSHVHH5d dH%(H$1wI$Ht:H5 HIHI$HHpAÅu#HÃtH9ÃtڅtSxHHeLHmHuLLcADH=$ H X H;1H$dH3 %( H[]A\A]H=I$ A1H H 9LH=$ 1AH H kf.H= 1I$1H=# ALz H( LfDAH=~# A1H 5 H nD@HH A# YH= 4H # H=S 2H # H=n <H " H= dSH " H= GMH " H= *6H " H= )H q" H=5 H T" H= ZH 7" HH='fAUATUSHH AH~HHB8IHB@HHUHkIt$ H?H5HCH{H-AI|$W]! HCfH LD0Fw HcDH>f1H[]A\A]@H5 HyqH5Hb8CMfDH= HCPHICXQH= }HC`H!Ch)fH4H=u HH@@H=B 1CDfDHH= H@H= HH{ H= HC [H= HC(<@H='@H=j 1C@fDHL11H5LH[]A\A]H= HCp@H= 1^CHvfDH= HQH= HCx4@H= 1C<fDH{0H=Y ,HC0H=: 1C8fD@H=  HH= HxH= 16KH= |H0C@2MtC_H(CXHCPtH{`uHChHC`HHtH H5HoHXHHH H5:CH8LIH= H vH1fH y 1H=HH[]A\A]@H=oHHtTHHDH  41H=H{PH  H=WH  91H=3eY8LIAUIHATIUSHHAHHtHLLH9HFHADHH[]A\A]f.fUSHH=7 HHdH%(H$1Hu7H HHiHHt5 HHQHtHq HH1H;u$H$dH34%(Hu*H[]@HC*;tHC*;t7AWIAVIAUAATL% UH- SL)HoHt1LLDAHH9uH[]A\A]A^A_ff.HHMsg %ld, Level %d, State %d Server '%s', Procedure '%s', Line %d %s %d rows sent to SQL Server. Msg %d, Level %d %s DB-LIBRARY error: FreeBCPinset identity_insert %s ondbfcmd failed dbsqlexec failed Error in dbnumcols Error in bcp_columns. Error in bcp_colfmt col %d Starting copy...bcp copy %s failed %d rows copied. Starting copy... set textsize %d freebcp.cfreebcp Out of memory! queryoutfreetds v1.5.16freebcp version %s stderrDSQUERY-S must be supplied. rb%s: unable to open %s: %s wbFREEBCPUser name: "%s" db-lib: Unable to set hint "%s" Can't connect to server "%s". SET FMTONLY ON %s SET FMTONLY OFFSET FMTONLY ON select * from %s SET FMTONLY OFFsetoptions() could not set textsize at %s:%d setoptions() failed preparing options at %s:%d error reading options file "%s" at %s:%d setoptions() failed sending options at %s:%d usage: freebcp [[database_name.]owner.]table_name|query {in | out | queryout } datafile [-m maxerrors] [-f formatfile] [-e errfile] [-F firstrow] [-L lastrow] [-b batchsize] [-n] [-c] [-t field_terminator] [-r row_terminator] [-U username] [-P password] [-I interfaces_file] [-S server] [-D database] [-v] [-d] [-h "hint [,...]" [-O "set connection_option on|off, ...]" [-A packet size] [-T text or image size] [-E] [-i input_file] [-o output_file] example: freebcp testdb.dbo.inserttest in inserttest.txt -S mssql -U guest -P password -c Copy direction must be either 'in', 'out' or 'queryout'. m:f:e:F:L:b:t:r:U:P:i:I:S:h:T:A:o:O:0:C:ncEdvVD:Exactly one of options -c, -n, -f must be supplied. 8xP80p`H(`0-;P$`P LxP80l(dPXzRx /D$4h`FJ w?:*3$"\P(t(BDD DE(YIY b CAG 4dBAA n FBF ^CB$EV E { E l\,pBBD A(N0  (F ABBC d (C ABBD k(C ABB09EDG M CAG DGAdFBE E(A0D8GPM 8A0A(B BBBK jXU`FXAPXX`FXAPP(6FBE G(A0G@K 0A(A BBBA jHHPQHA@8|FED D(G@E (A ABBK <|FBD D(GZ (A ABBI .H`FBA A(D0 (C ABBE  (C ABBH  (C ABBE 0xUFKH G  AABA 4TFHD A(G0p(D ABB,EFT AAE DeFEE E(H0H8G@n8A0A(B BBB\pK gu  x6K K o0P h  N X P oo ooj oK  0@P`p 0@P`p 0@P`pGA$3a1 GA$3p1113p5GA*GA$annobin gcc 8.5.0 20210514GA$plugin name: gcc-annobinGA$running gcc 8.5.0 20210514GA*GA! GA*FORTIFYGA+GLIBCXX_ASSERTIONS GA*GOW*GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realignGA*p4GA$3a16 GA$3p11134u6GA*GA$annobin gcc 8.5.0 20210514GA$plugin name: gcc-annobinGA$running gcc 8.5.0 20210514GA*GA*GA! GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realign GA*GOW*45GA* 55 GA*GOW*6u6 GA*FORTIFY5GA+GLIBCXX_ASSERTIONS GA*FORTIFY6u6GA+GLIBCXX_ASSERTIONSfreebcp-1.5.16-1.el8.x86_64.debug\7zXZִF!t/3]?Eh=ڊ2N`%>'|/z~gnZҰp^u*3Nч6\&۬ݮ] !r|ae4 ] m];1"<*N5!kǴȊxIaU͚t3Un4Ѓm"^c8W䕠veZNU[gE\?-ZӸ^o/я۰WH:[mF'`c ^G2֫8~d4eӏ c!?H5;mGHrFDRYT::xGsaT!r@^}"&Q*{u D(jI&Wm)5)y&=ЕQk=K'8ztX=l C1*+~tD2#%_gYZ.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.data.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata  & 4$Go008Q hhYP P aoj j ~no p}X X PB`  Pppx6x6 66p>p> ? ?pK KK KK KK K@N NP P P P8 XP`P U(/(UtY>PKj5]"66usr/bin/tdspoolnuȯELF>0@/@8 @@@@hh00 $$ )P- %%00 DDStd Ptdxxx,,QtdRtd$$))/lib64/ld-linux-x86-64.so.2GNUGNUGNU1\z\ `)92BGL p3x*,cJ$ K0T( 0=Jjit4 D:  _?I" "Pn XBJm'+4XTqKq'1  t@`e^^%P2 *gl5Xz\Yz$X=H%@% %(%libssl.so.1.1__gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTableSSL_writeSSL_set_connect_stateSSL_shutdownSSL_CTX_newSSL_CTX_get_cert_storeSSL_readOPENSSL_init_sslSSL_CTX_set_optionsSSL_get_errorSSL_get_peer_certificateSSL_pendingTLS_client_methodSSL_set_optionsSSL_connectSSL_CTX_freeSSL_set_bioSSL_CTX_set_default_verify_pathsSSL_set_cipher_listSSL_CTX_set_verifySSL_get_stateSSL_newSSL_CTX_load_verify_locationsSSL_set_alpn_protosSSL_freelibcrypto.so.1.1BN_num_bitsGENERAL_NAME_freeX509_LOOKUP_fileOPENSSL_sk_numBIO_meth_freeBIO_meth_set_ctrlX509_STORE_set_flagsX509_NAME_ENTRY_get_dataBIO_meth_set_destroyRSA_public_encryptRSA_freeX509_get_subject_nameX509_freeBIO_freeASN1_STRING_to_UTF8BIO_new_mem_bufBIO_set_dataBIO_meth_set_readBIO_get_dataX509_load_crl_fileBIO_newOPENSSL_sk_valueRSA_get0_keyRAND_bytesPEM_read_bio_RSAPublicKeyBIO_set_initBIO_ctrlOPENSSL_sk_pop_freeX509_STORE_add_lookupERR_clear_errorBIO_meth_set_writeASN1_STRING_lengthX509_NAME_get_index_by_NIDCRYPTO_freeBIO_meth_newASN1_STRING_get0_dataX509_NAME_get_entryX509_get_ext_d2ilibpthread.so.0acceptsendtopthread_cond_timedwaitpthread_mutex_initpthread_cond_destroypthread_cond_signalpthread_condattr_destroypthread_cond_initpthread_cond_waitpthread_mutex_lockrecvpthread_mutex_destroy__errno_locationpthread_mutex_unlockpthread_condattr_initpthread_condattr_setclockpthread_detachsendpthread_createpthread_mutex_trylocklibc.so.6socketfflushstrcpy__printf_chkexitsetlocalefopenoptindstrrchrperror__stack_chk_faildaemonlistenreallocsocketpairmemchrgetpidstrdupinet_ptonstrftime__assert_failrewindlocaltime_rstrtodstrtolfgetscallocstrlengetaddrinfomemsetstrstrbindmemcmpgetnameinfoeventfdgetsockoptgetoptdup2poll__fprintf_chkgetpwuid_rstdoutfputcfputsstrtok_rmemcpyfcloserand__memmove_chkstrtoulsetsockoptmallocstrcatstrcasecmpnl_langinfo__ctype_b_locgetenvoptargstderrioctl__snprintf_chk__memset_chkgetuidstrncasecmpfilenogethostnamefwriteiconv_closegettimeofday__memcpy_chkclock_gettimestrchr__vfprintf_chkiconviconv_open__ctype_toupper_loc__strcpy_chk__ctype_tolower_loc__cxa_finalizefreeaddrinfo__vasprintf_chkfcntl__sprintf_chkmemmovepthread_selfstrcmpstrerror__asprintf_chk__libc_start_mainGLIBC_2.3.3GLIBC_2.2.5GLIBC_2.3.2OPENSSL_1_1_0GLIBC_2.14GLIBC_2.4GLIBC_2.8GLIBC_2.3GLIBC_2.7GLIBC_2.3.4GLIBC_2.17/opt/alt/freetds11/usr/lib64:/opt/alt/openssl11/lib64        o@si : ui F ri R  m^  m^ l ii w ii ii ii ti   ui F $$Є$z$z $ $@$pH$P$X$`$`$P$$$$ $$P$$ $$p$$$p $@$H$#P$0X$P`$`$$P$@$$`$$P$0$ $$$$$ $@$H$)P$@X$H$ $$ļ$i$$$$$M$ $$0$*@$_P$3`$>p$H$P$T$Ѽ$\$d$j$$y$$ $0$@$P$`$p$$$$Ź$˹$ӹ$ٹ$߹$$$ $0$@$P$ `$p$$ $4$<$E$Y$d$m$$$ $0$@$źP$Ӻ`$p$$$ $$#$/$;$L$_$o$ $0$@$P$`$ɻp$Ի$$$$$$ $$$"$) $00$6@$P$6`$p$<$>$D$H$S$^$o$c${$$ $0$@$P$`$p$$$$f$ȼ$Լ$$$$ $' $0$$@$0P$<`$Hp$T$_$j$u$$$$$$$½ $ͽ0$ؽ@$P$`$p$$$$$$/$:$E$P$[$f$q $|0$@$P$`$p$$$¾$j$̾$׾$$$$$  $0$@$(P$9`$Dp$P$a$m$y$$$$$Ŀ$Կ$߿ $0$@$ P$`$%p$0$@$K$[$f$v$$$$$ $0$@$P$`$p$$ $$$$3$D$$J$Q$Y$` $g0$n@$wP$`$p$$$$$$$$$$$ $(0$4@$P$`$p$$$$$$$$$$$$ $,0$7@$BP$J`$Rp$Z$`$i$q$y$$$$$$ $0$@$P$`$p$$$$$$$~$v$$%$- $10$=@$OP$Z`$ɾp$J$h$q$z$$I$$$$$ $0$@$P$`$p$$$$$$$$$$)$. $50$<@$CP$J`$Qp$X$_$f$m$s$y$$$$$ $0$@$P$`$p$$$$$$$$$$$  $0$@$$P$-`$6p$<$B$I$N$T$[$'$%v%~ %q0%h@%%P%`%p%z%%$%3%P%T%Ѽ%d%j%%y %0%@%P%`%p%%%%%Ź%ٹ%߹%%%% %0%@%P%"`%)p%<%^%o%%ȼ%Լ%%%% % %$0%0@%<P%H`%Tp%_%j%u%%%%%%$%:%P %0%@%P%J`%Qp%Y%`%%%%%%%%% %$0%,@%7P%`%p%%%%J%I%% %1%B%N%>%V%Y(%>8%>H%H?X%?h%0@x%x@%@%@%(A%`A%A%A%B%{<%(B%HB(%<8%xBH%BX%Bh%<x%B%<%(C%PC%xC%<%C%=%%%$%2%;%E%%@%H% %(%8 %@ %H %P %X %` %h %p %x % % % % % % % % % % % % % % % % % % % % % % ( %!0 %"8 %#@ %%H %&P %'X %(` %)h %*p %+x %, %- %. %/ %0 %1 %3 %4 %5 %6 %7 %8 %9 %: %< %= %> %? %@ %A %B %C( %D0 %E8 %F@ %GH %HP %IX %J` %Kh %Lp %Mx %N %O %P %Q %R %S %T %U %V %W %X %Y %Z %[ %\ %] %^ %_ %` %a %b %c( %d0 %e8 %f@ %gH %hP %iX %j` %kh %lp %mx %n %o %p %q %r %s %t %u %v %w %x %y %z %{ %| %} %~%%%% %(%0%8%@%H%P%X%`%h%p%x%%%%%%%%%%%%%%%%%%%%% %(%0%8%@%H%P%X%`%h%p%x%%%%%%HH$HtH5"$%#$hhhhhhhhqhah Qh Ah 1h !h hhhhhhhhhhqhahQhAh1h!hhhh h!h"h#h$h%h&h'qh(ah)Qh*Ah+1h,!h-h.h/h0h1h2h3h4h5h6h7qh8ah9Qh:Ah;1h<!h=h>h?h@hAhBhChDhEhFhGqhHahIQhJAhK1hL!hMhNhOhPhQhRhShThUhVhWqhXahYQhZAh[1h\!h]h^h_h`hahbhchdhehfhgqhhahiQhjAhk1hl!hmhnhohphqhrhshthuhvhwqhxahyQhzAh{1h|!h}h~hhhhhhhhhqhahQhAh1h!hhhhhhhhhhhqhahQhAh1h!hhhhhhhhhhhqhahQhAh1h!h%=$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%Ք$DHH=$H=$Hf.fAWE1AVAUE1ATUHH5SHdH%(H$1\H5eKH5d: +HHAƃAdthAlActhHMH H=v$1:D$H$dH3 %(D$HĘ[]A\A]A^A_DAjDH=$$IHMH $H=D$|fDH$H$ Hc$9.HDHD$0HD$HHH=ÇDsx1HCHCHHHD$D$?Ld$0Ht$HLL HL$0HH{HH{1{8H{(/H{0C@9CDH|$Hq HyHa!C81ҾD$,fD$TfD$RfD$PLD$%|$C|$HL$,AYK81H=H$H |$Ht$P|$D$1HL$HCpg|$HC|$L CHD$HLHCtEqL@HD$0H#D{tHD$8CpD$<HHD$0L$f@Dxf@ HD$`HD$=$IHD$0HHD$8f@f@H9t/@HIt"HHttL IuH9uHHH9t5f.HIt"HHttLn IuH9uE~Eit$8H|$0D`=$t=$Ht$0FF8T$8Hq#T$8Ht$0H@HAHH9HHHHH9HPuHP@Ht HH HQHH@HH HAHHPHH8Hn*4Ht$@ DBHl$HULHHǃ+Mt'fDI.LIAVL'IHuHt$0t$H)Ht$0=h$EHH1H5DH2HJ{t2{p*{x"H|$H{H{H{}H{ tH;lH{(cH{0ZHRH=611~HMH7+8HŃxH=$MH!I1$gH{HC0HC(HH=1H $#H=Q<rH|$H5-H=Z$H1=H=6$HL$H=H $H=H|$H5^H|$H5MH ƌ$H=^pH -H5H=$H=wqH=\[H=׸oEH >$"H=uf.@1I^HHPTLfH H=Z$H=$H$H9tHF$Ht H=y$H5r$H)HHH?HHtH $HtfD=u$u+UH=$Ht H=.b$dM$]wAVIH5AUIATIU1SHtL=U$HuPLHH5H7KHHLLHKH߉`[]A\A]A^DLH1H=,두UHSHdH%(HD$1b1HHH u&H9,$t H=wHL$dH3 %(uH[]Ðd@AUATIUHSHH=HHL*@H=HH=uHL H= H H=EH H=HH=HH= HVH= HH= HI}HIEH[]A\A]HPw]AE8H[]A\A]ÐI}WHoIE@I}7HOIEH[]A\A]AE8ID$H8I|$IHHY 11CIT$H H/DI} HIE  H(AEK1IHHKIH}IUHH0VHIe M$LLLA Hu Htk>tfI$Hx@tUH {$H= %LE1+H Q$H= HE1HL$HdH3 %(LHX[]A\A]@H5 LTjH $ E1H= fDHmIHH@nLE1ML%HM1H=s$H 75H [$H= LmfDATUSHoHw LgHI$HtiHf8w'=X$u~HHHy"[1]A\DIt$0Ht HftHHH%`"[1]A\f=$tH H= DH1 H=1cfHH~0uUHFHNHt LFLI@HFHFHH8HOH~HFHH~t,HV0Hr0HH H5eH=gH -H5*H=Kff.HF0HtXH@0HFHVHF0Ht HNHHAHFHFHHHQHNHFHH~tF PH  -H5H=&fDATIUSH.HHtuaHHHk0HtHL.HL HSHCHH tA$HtHHBH[]A\fH9fDAUATIUHSHLn0HMtLL@ HeH\tHHL[]A\A]C1HdxH߾[ƃH4WxHf8wH[]A\A]H[uH)H5Hua HgH߾k[Hc:yDf.HwHOff.@HLJHHHHHG@UHSH@8aHH@ 1HHH1HHKHC(H{uJH{uCH2HNHsHSH H{tIHHf:H;E@]H[]H >(H5H=FH -H5H='H |$H=H {$"H=H {$OH=9lfUHSHHHH9tHtHbHH9uHHH9tHtH2HH9u拃uH[]H /H5H=fDAWLAVAUIATUSH(LHt$T$M9IMH|$+A~ tAoIH\IFI9HXHDI~0A~ uAF;D$wHT$I>Dl1A~ HD$tAzI.E1.fMf0MLL(E,9E$HDE,9}$EtHMHTH=AMf0Ma=|$tI$H=HHH1趺LLc=|$H|$LI3Hf.Ll$AE@A9\1M\IIL9;H1A'=9|$HLHHtSHCL9HhHDH;JH{0 IcUA~ tAtDI~0LDtPHD$IF(zfH EH=16tHH=e1fH|$L&AFHH=,۸CH ?nH5H=H H5H=hH H5H= IH sH5H=*f.AU1HATIUHSHdH%(HD$1HfN H9HHHx xHHHYHv H v f;1t?HH9HHt{Hx gx>HHHH f;1uLHH11LHHC(fS HT$dH3%(H&H[]A\A]DED98RHHm=/y$(*IHHX1HLHhID$ Hb@ AE t9H1gL_H cu$H=&DH<$H{HSC HXH{MHHQHKHCHH{LHH1fAD$ H t$/1H=yH!H=-1ڵH1{H t$H=:.BH bt$H= H H5H=8H H5H=GH H5H=5H -H5BH=cH (H5#H= HG Hp0tfP fN H_ff.@AVAUATUHSLgLoI$HxZHC$9C,v=v$K0guRHf8EC1#H5H=VHYC,C$HZC$9C,vIID$ HC0<<Hf8ufLH(fA~ v|C$LC,IIuHxuNIIuHu61=iu$tH>rH=+1-D1E H}HH[1]A\A]A^Df0HH=1ֲK0vDHf8ufLH$HSHHHHHH1H[ff.ATUHSLf0HMtI9t$0uKLJLH_H;wH{ nHCHt HSHHBH[]A\H H5H=UHSHHHH9tHtHBHH9uHHH9tHtHHH9uH:HǃH[]AWAVAUATIUSHdH%(HD$1="s$L11QŅV E$A|8HHH{I$HS!LsMHHQHKHCHH{AI$E$bIH(WIHI}1H5s蹞IE1HLHNh1ADžAE1L+C(fC I_MgHL[H _n$H=fDHL$dH3 %(LH[]A\A]A^A_fLLyH m$2H=E1IH<$IwE18 =q$THH 1H=迮2f.H H=蘮H Im$H=KyH (H5H=oH -H5gH=ff.AWAVAUATLUSH(LM9kIM^T$ Ht$H|$@I_M/I9xHM#AG;D$ HT$A DtAA(1CfD HtuIw0L1IIo0AE,A9E$r{L uoEE,Do$EIMtHH=˩IM v=o$H|$LI{4fHt} u H}1@A t Au#IHH([]A\A]A^A_DI0LL uIw0H|$IDMtAG9D$ v1f.MHEH= 1.fIw0H|$I/UHH=1ЫH H5H=i|ff.AWH)IAVAUIATUSHXHLv dH%(H$H1HF0H(HEL0MLDHHf HJHhJh@lBlHEHHz ȈHUH HzHL$HT$HL$HT$HHAHcr(5HUHMG J(H(I H9gEAE"C1LHHLD$L|$@} LD$L1H  jEHjMM1ɺ^_AHf8!HEHHl$ HpH HH ]D@(1HHH 11HHCOLIE H$HdH3%(HX[]A\A]A^A_DHQ1HHcIH#fo F A@0L OFfA@4AfoA@6A@foD$A@ fH߾#NH߾MH߾ NH߾MHHߺHphJ1HMf1H rH j1ɺjMLEH߾GHZYf87SHQLHL$HLD$HT$"HT$LD$EHL$Ad1H耙Hc"IHAELH!%tHLD$DHQHDʉ@HL)IItUSE @IHPD$LD$LHLD$LD$ALEx H"y1{fDD$EtIL@dfDHEL@@QH57LUSHHHoHwHHHHC H1[]DUHSHH=yh$H{0H{  C(HHHtH[]=1h$1C(HSfC HCHt HKHHAHCHCHHHQHKHCHH{uH -H5H=gH+H=t1vH H=TXHH LH57H=H -H5H=DHSH_x Ht"C H~=g$uEH{ t[@H[{(tH H5H=PsK(HV1H=胤뜐ATI(UHSHdH%(HD$1HHh1HHL`HHtSIt$0HHH b$H=qHD$dH3%(u0H[]A\H<$DIt$0Hcf.fSHG0HHH=Fb$HH1HH=#b$HuHH1HH=a$HYHH1HCxH=a$H@HH1HH=a$H(HH1yC H=a$HD1THH=qa$HHH1/HCH=Oa$HHH1 HC H=-a$HHH1KH[H= a$1ff.fUHSH=LILHFHH>LbILIHD$8dH3%(H@[]A\A]A^ft+=]$tDH(1H= 赛H@L[HIPHAt@DH@L-H@LLHH\=HH@HHHH3=)fAWAAVAUATUSHHhLL$L$Ld$ LD$L$L$dH%(HD$X1MHMLD?LH;EDH`?@HHl$@?L$H?HHELH<HG1H?H?1Hw?HHDLD$HL<HJGHHDLL$HLe<HGHH]DLH=<HF$H>LFHD$XdH3%(uHh[]A\A]A^A_yfHD$ Pt$ AQMAȉщH(@HD$ Pt$ AQMAȉщH(@AVIAUATUSHHPdH%(HD$H1Hl$>HH[CHf8H=H tfLd$ H߉D$ LLl$0|:LHBLH:LEHLHߋ@%ȉD$ 3:H+EHD$HdH3%(HP[]A\A]A^f.s [r fKfu><%j'H<f 胼SH<H߾a<H߾<H߾<H߾z<H߾am<H߾A`<H߾S<H߾F<H߾9<H߾,<H߾<H߾<H1<H1;H߾;H1;H1;H1;H1[;AT@AUSH;H\;HO;Hf8vIcH[]A\:fDDH[]A\:щff.ATIUS&;L:~1fD1L;9u[]A\f.AWAVAUATUHSHH(dH%(HD$1Hfff:EfHUH1HBH f.HHHR8HtHH9uHE1:f}t8HEHN,IIE80%:IE8HHHp6ED9ɾH9E1ftHHUH1L-1HBH< HHJ1ADM@ƍtHH9uHE1L-W9f}L=ugEID9~SHELHN46HAvN9AFADEuAvHI19ED91HL$dH3 %(4H([]A\A]A^A_P1fwϾ8uH8f}tE1I~H88At$ Hj8At$H8I$LHPiLHI=It$8HHH5LW@ED9*HEN$Hf8At$oH7g8Ef!HUHL->HBH<@HHHJ8RATUfH1H9uHm7uHa7f}vE1L-%f.1HIr7ED9EHEHN$ID$8L8AI7ID$8LHHp30H(7At$H6At$H 7AD$ADEuAt$H6mD1!葶ATIUHS6f}t11DEH9~HE1LH4HP y[]A\[1]A\fH8fo#fo dH%(HD$(1H)L$fD$ )$D$"H@%ȉD$2HD$(dH3%(uH8谵AVIAULcATU1SHLH";Ht'HLLHpL莭A9}[]A\A]A^H:[]A\A]A^fHЅ~2VE1DIB  P B IHI9ufATffIU1ҿ SH@dH%(HD$81Hl$D$ HEft$D$ fD$úHL$ A)H躶膱HHT$D$菷Ņ5GL*HHH81H5o@1}ǃHL$8dH3 %(HH@[]A\@H=y1芶H=Kt1軭fH=\T1蛭f艭 HL$H=H蹵X?ff.@AUATUHH0SHHdH%(HD$1HH$C1Hl1H]1HNH֪HA˪AHA fDe ԫH謪H褪H輫1H1H1HE1ܪIH$H5"HP1H$1 HxڰLE6S,1+S$H菪DHL$dH3 %(H[]A\A]DHHHH1H!1HHuxHHH1HҩHZHAOAHA fDe XH HThHH H$1HeHuHu1HAN@1H)Hu H"1HILHE1AKff.AWAVAUATUHSHHHdH%(HD$81裩HA蘩<Hƃ Hs1 HdH1 H߈Gf} EAA^E9v1E1HL$8dH3 %(DcHH[]A\A]A^A_H訨HA蝨f$tAA9wPD9wHyHDmAtE9yAGD9lHEHD9HD$ HtAA9>IGDH9.HHDfD$tE9AGD9HѧHDŧfD$tE9AGD9H蛧HD菧fD$tE9AE9HfHDZfD$tE9dAGD9WH0HD$fD$ tE9.AGD9!HHDfD$ tE9AGD91H H赦HD試fD$tE9AE9H耦HDttE9AGD9vf} v9HGHD;tE9JAGD9=Hf$Hu0HE1HtAHHE1HALt$ K<6H|$ΧIHQLLL2H6HT$LHt$LLHHL$(HHHHD$8HH@`HLd$0HT$(@4HH@`RH0LL$@LD$("jZYHHt$0LHH)-1LeDd$EL1H9T$1H*H} /ƅU HEf@ԾH耵pHD$AH :H@H81豥LɧT$HuxH^HT$HHEL1HHtWsT$HHHt>T$ HuH Ht(T$ HHE1HAE1L1HE1ff.@USHHG1:+~. HHtC0<<t<t`Hh1HH[]@HHfH}*H*x{0uHHtHH[]fHHf8HztuuE}HfAWIAVAAUIATUSHL&A|$[Il$tI:HܦHHtTH9tOH{ 1IAEAG-`fH5<H!HXHu\HsHHtcH9t^HpI-HtIAEEt9A|$[uH9wBHHLH),HH[]A\A]A^A_@1H[]A\A]A^A_{]uIl$ Hff.@S1 Ht [f.H[.AWE1AVIAUAATUHSHHH|$J4HMcۢt/IIu=D$u4AHD[]A\A]A^A_fDBDH[]A\A]A^A_LD$H21H:H=^ff.ƒ0 v> 1ҍJv+Oʃ0 v1 ҍJDCBOʃ0 wÐAVAAUL-ATIULS1HLסtHu[D]A\A]A^HcEt[]A\DA]A^AWIAVIAUATIUH-S1HHtLLclt0HHu=gC$u5AH1[]A\A]A^A_@BDH[]A\A]A^A_MLH1bH=Yff.AWAVAUATIUSH8Ht$HT$HL$dH%(H$(1=B$D$H\$ D$f.LH萡HDl$ Et觢HL0HDmEtAADF uA;tA#tE<=AńA Dl$t1E1DfIcAD UMcHBD< EUHu@<=@t)HADF uE}ADV uDEAEHIcHED uHqADF u<;wHHNH1E1fDIcHADF u/EHIcHAD~ tEH HIcH>9E@:H9H<;wIIs|$ [t^|$@HT$HHD$,@=@$H$(dH3%(D$H8[]A\A]A^A_þ]H谢Ht=q@$u$t#IH81H=~|DL%E ->$@ MLH1H=8A{D==$EMLH11H=E1{MLH1H=ɾ`{:L`$VLH 1E1&H=({?.ff.AUATUHSHHH=9$HtHHH5nu*H=nHt)HHH5HDtH[]A\A]À=<$SH='HH5H IHt%HHH5HLAEuH=!IHt)LHH5QHLA辛EUH=E IH}HHH55HhLA}EHHH[H5H=S]A\A]1=;$QH H=1yy2@=;$tH H)F1H=Fy}H&H=1&yAUATUSHHHHILc`HH%tHL9u=:$uH1DC=:$fEE uIE H[]A\A]HH5=1H=x1HH<H=ӻjx1H _H5H=SHH=!7$HtיH 7$1Ht;u[fDHМ[HH6$ff.ATUSHPdH%(HD$H1HD$HHl$Ld$f1LHD$HHEHE$E,HD$D$ et(t=t1HT$HdH3%(uLHP[]A\@1LHH߃d$#uHD$H H5iH=ɖ@USHHt8HHt0HHtH;HtOH+1H[]H H5H=Zf.AWAVAUATUHSHHXH|$HL$dH%(H$H1=e8$D$@Ƅ$@Ƅ$@Ƅ$@;H=)ݚIMH5PALRHH=7$HD$8E1H\$@E1HD$H$@HD$ HHHDt$@A#t֗HBDp EtHT$H5HHHtHƹH=0uHT$1H5ܗH= H>='7$L|$1H5L蛗1LH5芗1LH5yHI~HE@HT$H5~HE1AHt$HęD%6$E+A=y6$rLE1H$HdH3 %(DHX[]A\A]A^A_fHxL谕EtLt$H$@HI=5$ $@$@iHt$H$@|RHHIsDIH5FHH=öZs3DI~8HdHIL%dHuYHm(HI=,5$tHD$H޺HALJH=FH1rfDL|$1H5LjH|$ H踖1LH5~GH$@HH菖=4$HHT$1H5C H$@HWfHL$H%HH=#rnfDH$@HL$ABfDLHG1H=DqI~}I~AqH$@AHL$(HH Y%A1bI~9I~A-I~ A!I~ L$@A LASAH B1AR D=S3$XZEtHL$(M%I1HH=oEqNHHH=OpLHEG1H=-plHHU3K1H= pHIH=1p艕fATUSHH=HdH%(H$1ߔHtHHH =E2$H=y賔Ht98%H͔HHt H虑=2$HH='iHHt$HHC=1$-H=1HHtOHHxfH{8HHt+HHtIfD=i1$H[(HuH$dH3%(5HĐ[]A\=)1$tHHES81H=SnˏH*L,A*H1ՕHDLHߺIH8HH=1xn0HH61H=SnfDHIH57H 1!HHDH=1nHH51H=\mfAWAVI1AUATIUSHHdH%(H$1舱HH LHѪH H=E1Ht8 H#oAH=v/$HpH4 IHHH8lC ft+fE Mu"uE1HCH8HC H8tHH83 R HH8p HC0H8 HCxH8 HH8 HH8 HH8 ttuStUt Јt ЈCtEC(tE(tu ЈM HCPH8 HCpH8 HCHH8 oo  Ј t, ʈ ʈ@t#@ Ј߃ ЈMHHH~E=,$PH1HLd$Y H[(H|H[(HuH]L1H gH; H=fIi=,$$DE1H SH8H=0i=+$DE 1H HH=i=+$DE 1H HҼ%H=ʬai=z+$DE1H ϼH5H=/i=H+$ZLE1H H;EH=fIh=+$$LE 1H rHUH=0Ih=*$DE(1H KHeH=h=*$LE01H )HuH=ȫI[h=t*$L1H HdH=I"h=;*$MD1H ǻH]H=UAg=*$LEx1H HH=Ig=)$L1H kHH=Iyg=)$L1H <HH=I@g=Y)$kD1H H{H=sAg=)$1D1H ںHAH=9AAf=($D1H HH=f=($D1H HϹ%H=ǩ^f=w($L1H AHgUH=I%f=>($PL1H (H.eH=Ye= ($D1H HuH=$e='$D1H HH=e='$LE@1H HH=IPe=i'${LEH1H H\H=Ie=3'$ELEX1H iH&H=QId=&$LE`1H :HH=Id=&$D1H HH=AApd=&$LEP1H H|H=I:d=S&$tiD1H HyH=qAAd=&$t/LEpH 1HH=;IcfD`H_t"$HLeHHHEHHpH1HHAE`HEHHx;/HHh H_H1^H$dH3 %(HHĨ[]A\A]A^A_f軃Ld$,LzAL,1ÉL[dA3HH =$$Iu ЈMHH8HHo =8$$IMHC0H8dHs0H}0; IHHCxH8KHsxH}x IHeHH82HH IH5HH8LLX LH IHHH8HHy I ЈLH8H +H IH=/1`"$t="$+HIIxy="$He$HtLH5hHH=IHt;=["$LLH5*HLD$āD$H=i蛄IH8H5LD=!$ALHmLH?{D}H=EDD;HHHD$U=!$HL$AHLqYE=i!$HI1ɺ,NLIHx |H=褃IH8HWLD=!$aLHL1H=)^2HHIC f}HsPH}PIHE1Hs H} IH5HH8sHsH}sIHHC H85L-b H}8H8HHH$HfDHsHH}HIVHspH}pIH,f.=$!HLtD}H1HE H=3]=L$tH H={1]HHp@H}8LHfDH`LM1H=,\H$H]=$6HѾuMH1H=\Hr$ DHi H=ɟ1^\fL=c@H}8LTHfD1HU H=o\=$LE1H He H==I[$LE81H Hڮu H=I[H$H#1LrH  HH=Q[j$HEH H' H=L@H1[LH 1Hح5/H=XIZLH 1H.H='IZHHHY%N1H=Z^LHeO1H=ߝvZH UQH=1WZDHuQ1H=5Z;HHNfDAUATIUHSHHdH%(H$1=$D$ H=HH=vHH=kH7H=_HaH=ZH H=RH H=>HH=BH1H=HH=HH=HH=HFH=߭H  H=׭H8H=ʭH|H=H H=HH5ǫH}H5qH|H5kH|"H5]H|5H5lH| H5bH|H5VHz|ZH5JHc|/H5yHL|H5"H5|H5H|pH5H|H5H{H5H{H5H{H5֬H{H5ЬH{H5ɬH}{[=N$t$HHJ,1H=xVIMuK1LD 1LywˉEfDLHIMt|$uH$dH3%(HĨ[]A\A]@HL$LHc ЈDLHHIpf.IHHʩ%H=kU,DHL$LH Јf.1 Lqx 1LZxHvHDžA<$LyHH9f1Ht$LwA<$HT$:HHH1 Lw 1LwE(HL=$LH}8HIHLl$fDH[(H=t$tLHߺH(H=H1%S1 Lv 1LvE@1 Lv 1Lv=$1LHs(H=R1LH} =$ILE HHS1)H=IRRLH^=W$ItLHپ)1HH=sIRG wHL$LH߃ ЈLH}ILH(1H=Q$LHL$HIw$LH}ILHjIH5LCq!H5 L,qH5LqH5LpuJ%HL$LH Ѓ@=$1LLXrHH=ӓjP=$]PHJH /PH1L %LH=%PZY/%LH}HI2LH}@IHL$LH ЈHL$LH Ѓ LH}pqIHL$LH, Ј=+$PLH7,1H=QN.LHILH}PILH}hIHL$LH ЈLH}`zILH}XfIff.H#@f w uƇfG HGXH8t 1fDHHXH5kHt1HøֱAUIATIUSH_t=xsHcI|$L9IG)HA\$ kEH[]A\A]fDHHt$kHt$~ DAD$H[]A\A]fH1ۉ[]A\A]ÐAVIAUMATIHUHLSH@dH%(HD$81HHyx0ItGI4$Ht>ILLuHT$(UH|$8dH3<%(u H@[]A\A]A^fDHLxqff.vVw(txu"#FtpDt`vt6-DfDc#Df'f/tfD%dfDATUHS~Hw9FHqHcH>F1҃$=w H*SHECfvH ˮqHރv'ct"fv =1[]A\fHfv6hH0AĄtfDHiHHlAufhHs0Hkf.HFBfDgCHE%hCHE fvACH ׭CA0f%@?CChCfDHgHg11H iHf11HhHg11HhfDLcYHLgH}L@BHC(HEC>ff.f(wGff.fAWAVAUATIUHSH(DFdH%(HD$1= $FAw(HJcH>Lf<HM8A$)= $\}LuHEdADImdMcL92IHLLtHUdHu(MMLLÅyHT$HT@1HL$dH3 %(H([]A\A]A^A_fI$tkH}(tdHcHLLgSE=U=t=u}"wU 9Uk #fDDmA9IcLLD)dHc1LDdDEd1 f.E1ۃ$=LHH;@L d؅L(eHL`eHc؅LLmHeHHH1HIILHUdHu(LH$Ld$D$;6@HcLLc]dofI>IIgUHIP LD@-/U 9UUDI>EdHpgI@NHF,H=EDEHG/1H=lEU193)Hc1HcL1d@H]HLLkLbHsLbI$C f8vHCHSH3H3H uC LycHc1LfbI}gfMHHJHIEJ HEfEd1hfDXfDKti@UHSHH {w"SH HcH>H3Huf=t=f=vSHPupH1[]HHuf=uËCPރvcu1HHufDHHmHHhH1[]fDAWAAVAUATIUSHH8nddH%(HD$(1=[$yYC<%v+<<HL1wD<L1V@HLDL$Lc KE1LsHIDL$vMM6EurHs(H~0ME1tVLD$ LLDL$L\$LT$+LT$L\$IDL$HD$ MtLcKM1I$f8=5$owRHHcH>fM9MGEtCPރcDLLT$@LLL{u MM9ttx1HL$(dH3 %(H8[]A\A]A^A_HHcH>fD1L1fa1Ln1f.Lb{Eu I$f8wCPރvctL1F@1MfDCE1$=wHL,@LLL@T$Hc9H=Z@kdDL$r=c$ H:H=t1#@DL$fEHLLT$IDDL-DM9LLT$MGA M9LLT$MGACE1$=HeL,LT$ILLGD(LLT$LT$LIr8LT$LIr"I@@LLT$LGDSMILLT$LGD"f.1LvHU>H=פ1DL$L\$LT$w>KDL$L\$LT$PLSHP0t L~1LoLLT$XH5|LH5hLLT$ FbH PH5H=x]UHSHHZHCZHCZKCQL8H []ff.@#fDATIUHSMZuEd1[]A\H]Hf1CfS C"UUSfEu 1HI9t'I1HH4HP yH[]A\A]A^A_fMvMu1H1fA1UAMt$HHD$#f.1HHbH9\$)IHL<AwAw HAwH*ILHPyH[]A\A]A^A_ff.fD1ffDfDfD$1w H(8F[wHHcH>fw>fu,u @t ~Hu`1D1tbf.t11D3t1.x11D@1@I1t8~Nf1øf.IvIAP6lvcH#ueH=3#A@I8LA@dA@1A@A@ A@d@bweRH5#HY#HFILA@A@dA@u$$wH“A@A@ A@dÐjH5#H#HE뜐EH5#H#HF{H=#A@I8LA@d%A@fA9H=#vH=#I8bLA@A@dA@B>H#@SHIAf=vBۃ w HHcH>u f=DLHH<DB8ucA"Aw.HݏJcH>hACAC [@ADLH|HՒDBfHS`HIC(ChACYClAC]s@[5DA[Df;oAC[ACfDf;OAC[ACfDAC[AC fDAC&[ACACdÐACo[ACACdfACm[ACACdfACn[ACACdff;AC[ACfD[fAC@[DAWAVAUATUHSHH8dH%(HD$(13LEdAǃ8HJHDD4$JDHD PfALeHEoD$D9Et$AtcMT$H߈L$EoLֺDD$DL$L$JL$DL$L$DD$A HH@`HHE(A@A(^xA+nUHIEE<?AC$HSC$D,I<$Ht NAD$ tRHHI$DuHEH}EbLeHDI<$Ht MI$AD$ ##RIHI$HHHAHAAUAFq@L@ǃ!@@Z8RUdIvH IH1f:xHL$(dH3 %(H8[]A\A]A^A_D1HH1A$H;D $$9JH߉$6I$AD$I<$A)DmdHt xLI$EHtH}(t1D*AD$Lt$LHLVHUdHu(MMLHIEdfD1HGfH;LDD$ $"DD$ $6fDAA~I~$HAF4$Yf1AD$ 1BfH߉$F$AD$DH11H ]AD$AF=v1DcNn!v/{v\DfDvMh|m>DfDous=DfD&ucD3f2f.1f.~ECDt{<D0D@@D@;f:f.4f.8f.Bf.zf.Af.AUATUSH=w#LcH#AH=}#LHHHrHHt$HU#HJ PHH[]A\A]H=#H9HHuH- #\HyfDHH]Ht;EA9uH=#HGHuH=#HGHth@H#H 9J `H H5H=:Ff.AVAUATUSHHpH(HCՅLcH#LcLHfoLHfo G9L%#G0K<Kf$t)f'ff.f.f.f.f.f.f.f.fPtkffww=fZ,f 1f91ff-w+fff$Efff!Eff*f@v3fCfD1fBD@f?f,R1f/1f)fDf 1f"fN f'vr%f v0f)f1f fCf 1f,fmv;)fXfH1fff%f1fmf$wsfw6%ff1f@f f 1ff4uv.f<`f@U1f8fDf,tQf0+1f(@f-%f1f"ø@HHHHy 1*f.ATUSH`HA>HHE`H8DHHE1H ]fP HfpAHp8EXHHH@"@ HPHP(HsHHPHH8fxX@ZfD@@@BHPHHP`HsD[]A\fDH?HE`H ?<H5PH=n=GX~5UHS1Hf.HE`H{X~&fHHHHC`Hx>9CXH{`>HC`CXH[]DAWAVAUATUSHH|$@H$PHt$T$8dH%(H$1?f$H%MMMMH ˆT$M(MD$8I΅RHD$HD$0HHD$HD$@0ÉD$ @HD$(;HD$ HD$HxHH$HD$HH$HD$PH$HD$XILLLW>IHHD$EMtE1HD$Hx@0D$<HD$ HtH%DHD$(L$<H$dH34%(LH[]A\A]A^A_fD=!#H yH5uH=Y:@HD$HHHD$HL$0HD$(D$H s 4qs4qs4qs4qs4qs4qs4qs4qD;A,A@A-w:L-Itfx&HH@8>uHH{C7uEdHD[]A\A]H AH 1i@H !O@H 5@H @H @H @H ъ@S H QfAWAVAUATUSHHHHt$@T$ dH%(H$1H{8D$D$Ht D$HC`= #HHD$f;ED$ =#D$ -=#HC`L$ H8t$/HD$fx HC`T$Hx#G0T$t$P#1ۄfH$dH3 %(oHĨ[]A\A]A^A_t$[HC`H89fDHcT$H $#HfoGHD$x #@!H5ZH=)v0H-#IHeH vHH x#H ZH r#%8H=^#H5-vb0HtH vHH K#7H=/#H5v30HtH uHH $#7H#HGH=##2H#1L=#L ~uL5#L-uL%#uuHHtH#tMHL꾥 LMMDHHI 1QL uHu@H$H\$H1L5ʨHD$ HD$`HD$0HD$pHD$8AAAAMcK4HMcKpH=o &#K DL$(1OH&pH=lo=#:1+L$`HTWH=fD=#[]A\A]A^f.DcdD-d#EHHGEtZf=9#tHCHH龇HkD=#tHCHHHCDs=#`HCHfH H)Z[H=]A\A]A^=#HCHH龷HϕD[H=x]1A\A]A^NfD=a#HHĕw bf.A|$Hc> IHt&HsHIcH"Eu^[L]A\A]A^fHHƕEe[H=ܔ]1A\A]A^fHCHHG HMHH1H=tH H5{H=~#H ĕH5\H=[@ATUSHLIX LVL9CtH[]A\h wAKdÀHtHHL$HL$HKdHpHt HHKdHxhH[]A\AVAUATUSDo0A EHHJL)L4AvhoAF8oJANHoR AVXH:Ht IF8H{HtJL)HD@H{HtJL)HDHH{HtJL)HDPAEE0[]A\A]A^fDH1!1Hf.HH@ATUSW0Ht$1HHH)Ht ED)N~LD$HL[SuL1{I}H(LJHtHPI}HLJ(f^LL]D$ @ LnIEfIH9A fA2 HD$HL[|$IEH|$HHHH1]Ht$HL‹H=AT$3I AAAGIHxj1IfA蒊 IE1ɺ"NLޱHx zH$dH3 %(H[]A\A]A^A_HHjAGfEgE1 IELHx HD$BzA!@AE1H=~EWH&H=}BHM\I|$H IUI<$#f= O LZIH;w H5|Ht$ HADŽ$EH$HƄ$Ƅ$H$fD$f$fkƄ$ff$EAA} AE1H$LmIELH5z~f8Ht~HGEAtAAtE1AAEDLZHt$ HcL L軃IEf8JALl7L輄tA}0iAEu,AE$EA)IEHECDAE A+H@ffD9 E1ۻYDtfA9DA BA9LDHffA9A9AtIuf>vA@@ tA A AafDIH8AHp I}fHHHl$PlHL5n|HHD$1LB MfHIHj LHD$PHGHD$`H[HD$hHIJ(fAG H߉L$OHT$LLO\IUIH݉HD$D$ILB EtNLe8E1L-fHGHtLLAI8D;$sIEHx A|$0tHGHufD$E1EtBMMt(DLH@HHHAAD;$rHfIELHx HD$#u`fDHCT$(HHD$ cT$(Xىf{IHX#}ALT$( T$(@P!%A fA!ff$f$fD$fD$f$^DA|Af=f=f= y$$IG0LHpILHpA1ɺ1L~IL$AH L1LH!%tLDHQHDʺ@LHL)~H5xL{ALփ1L{IEf81Lg~1L{IGxLHpHLsIEf8AN1LK{H$L6{I LHpIEf8qH$LzH5wLzIGLHpAL@}1LzALE} 1Lz1ɺLH5e|L}EGA=2L1H LH!%tLDHQHDʺ@LHL)|IEf=f=f=LH}I}D$AL@@|LT$(T$(LD$ QIUD$L$ 9B(2ޱuAx IM9u IH݉gA&A$512IH=Hc)ƒL$(HcHL$8D$41L |t$(L{IHLHpxHT$81Lxt$4L{=Ա,Nc Ht4H=Q&1G=Y#H rHsR+H=&1DHcLL$iIUL$D$(1D$4HD$8=#HrR)H=%1Lcz1LTzILHpwf=vLHT$(HT$(H(IEH(Mt$$fftAl$ LL@eAIDžASs$s$ILHp:AAAA =y#Eu$5AtEt IEf0EA1L!v\1L vH1LuL,yL xIE LHpuu=Ε#SH gppH|$HBIE1ɺ"NLHx lֱu1ɉLLk1LIELLI}D$ /D$ yHq24H="1Lx{UAu L4H@ISLfP3x=#HH&HHt%@ID$PH{HI\$PHrHH\$(dH3%(H8[]A\A]A^A_HIHHNNNI88HHHRIHHI)Aaf#D4$L1Huɉ#HIHHHH)A0W<9GHHшFGt. u5LH+Hu1fDb#RHщff.HG8Ht#SHh uH!HC8[ff.@SHHHtdCCWH{0Ht.HGHtHǀƀHGo uH`H{@H[fD[fDSHH= #Ht$u~HCPH9u<HH9t8HHu=#tJHNHig1H=k*HCPHH|$HHD$H@ H[HNHh1H=AkJHt$ZHtWGftNUSHHHfGH,H}HtHUPHt HCftHH[]HH;HHH[]ff.USHHHPH{HtHCPHtHH7HcHCPHCHH[]AV@AAUATUSrHI@ fEu!fEt$LAD$([]A\A]A^fDA*HI$HtRAV1L,HI9tI$HHHuAl$ uL+E1[]LA\A]A^AD$ ސHtWHFHtHǀƀHFHHtH@H~HHf.HHtH@f.Ht#HGHtHǀƀHGAVIAUATUSGfE11H,@IJ< IHHGPP\L9uۅ۸A^(D؉IIFH~HE11IF IJ< ILHGHHP\L9u1[]A\A]A^G(2IFHtH[]IF A\1A]A^øff.Hto u ,@HtHtHG Ht PH hfH5]gH=\g/ff.@Hto u @AUATUSHH=8#rHHt.HGHtHǀƀHGo uXHHǃHt.HGHtHǀƀHGo uLHǃHǃǃthLMlMt@H}Ht7HGHt#HǀƀHGH}Ht o uHL9uLǃ1fHHt,H@0Ht#HPHtHǂƂH@H[]A\A]@He)H=e1oUHSH>Ht)0HHt"HHh@(H[]H1[]HHD$CHD$ff.HtSHH?HtH[D(ff.fATIUSHHdH%(H$11ƇfG GHHH=2) HHH(HDH]lHMt7I4$HtH{=lHIt$HtH{ !lHHCH8t^H1HHHH{0HD$kHtC HH$dH3%(u*HĐ[]A\fH{H5kHu1ff.@SHHHCC=P#H{HHt.HGHtHǀƀHGo usH{#Ht#H{ Hti҂#ufH[UD[fDK1H`<H=rb{=#DH`'<H=Mb1T%KHa=1H="b+xfDH= bHz`w<1H{"DH=aH`<1޿H{ DAWIAVIAUIXATEUSHdH%(HD$1H$HH@}HHCPHcHCHHcLHA|$Hc_HC Ht^IcLHIHBHHtTHHt HHHuHCHL$dH3 %(Hu*H[]A\A]A^A_DH1^@HZHff.fSHH=#Ht$uvHCHH9u;HH9t8HHu=#tCNH_g:1H=9`B$HCH@HH|$HHD$HH[fDNH^:1H=_Ht$cfHUSHHHH(HtHPHǃ(HsPHt/f.HHsPHuHsHHHtHsHHHuzH6H{9>HH{H0H{0Ht HC0H{8Ht HC8H{@Ht HC@HHtfDH/HHuHHHtH/XHHuHHt@H/8HHuHHt@H/HHuHHH[]fDH 8_H5^H=>^ATAUS6HHf HH-LHHCHC HC0HC8HCxHHHHHǃHHǃHHHC@HCHHCXHC`HChHCPHCpHEumHHreHH`HǃHHmHHhHσH[]A\H=h H=[ HILDnHHIDbH1^ff.H#UHSHHHkcHH|cHTcHlcHdcH{[cH{ RcH{0IcH{x@cH4cH(cHcH{8cHHtHbHHbH{@bH{HbH{XbH{`bH{hbH{PbH{pbHbHH[]%Dff.@AUIATAUI|$SHHHt4@ @ 1DcfCHMtH{LLDc HH[]A\A]H9wrSHHtX[HtSfDHXHHu[fDAUATUSHHHHHHW(HCH9wtW4umHDj(AADl*D;hw,D` EHJD HCH؉k H[]A\A]DHHHt DhfDH1[]A\A]H ZOH5YH=Y|ff.HCATUSHHHHHt#HPHtHǂƂH@H H{HL#I$HC@A$H9t6I$H8H1@HHH9wHXHLHHtDH/PHHuH{8HtgH/0HHuH[]A\@I$HUH^HHs@HHt@H/HHtH/HHu{U0SH HHH@1\HHH1uHC:HHP H߉k ǃHDHCZ1HǃHǃUuA1H{HfC@"]u.HHǃHHH[]H1VHH[]ff.ATIU8SHHHL` Lch(L@f4ukH軕u_1HyuM@HHt2ǃ@IHtDHHHH[]A\fDL5H訖H H1[]A\DHHD$HD$H[]A\DHtfff.@HtWSHHG G(H;HCH;+HH{HCH{ HC[ff.@hB~,)Ntt~R3Ntz4NtbH=UU=.Nt1Ðb th~d H=7Uf` }1DH=U=$Nt=&NufDH=Tt@H=TH=TH=THHN\T`H=TtH=THTHNHHt f842HfvuzH=T뱐B @H=SSH=S@1D v) 7 uH=SfDS(~Zq+ +ni+Zn+f+jH=RfDt~PL>%jH=RB(_%H=RGsFp2H=3R[fD/N.j>H=ORH=QUDG~2c0s!H=QUDH=mQ2=51@3(H=%Q@H=uQH=hQ1uD~B?n>%H=Quk&fD, H=P )@ H=UPf.DH=iP|@ HH=Ou)H=O]DH=OEH=O2DH=OBD @4H=/O@F$FJtGeH=Nfn#mjH=/Ofr-DH=NqXH=OEH=N-H=NbD H=NDH=NFCH=MDyH= NL@H=Ni1fDZ(H=zMEDH=ZM%DH=M@H=oM@H=)M@H=M@H=M@H=GM@H=[M@H=L@H=)M@H=L@H=-Mt@H=Ld@H= MT@H=LD@H=L4@ ~|h&f lH= L@;  :!(+\G'x ~.H=KQ';+H=XK#1'H=K%+| ^.7uVH=Kf.  \0H=J@;DH=JxgB|I*LDX H=cJRF'HH=>JO< \>8 B H=IffDCTH=It| VH=I[H=IC? ~b  ~4H=IhH=.IfH= IQRH=MI@\H=H +DH=Ix$H=HXH=H8!, H=AH1f9R ~RuVH=WHf.= B |2BPH=G@SDH=GxN u0 j & u*H=SGfDH=5G H=GH=3GH=G%o?DLH=Gx|P$H=FX6BH=aF8 BH=AF=H=F =<H=\FfBH=YF>x`RCH=FwH=E]H=EHEHNFfD` H={EH=E pb6H=SEf.# .: X~l H=D( ,H=DH=DfH=cD\ bH=DfD1^43H=CQ<t~Tu,H=CH=QCH=sCH=Br&H=-Cc@ y~`  H=qB<@H=gB (l*u\H=YBwH=eB7 B) H=UBf.'dH=KBB AH=BuD$H=BXH=A8mH=hAnqH=7Af~b4H=A@V|H=QAaH=@DH=@l@H=@\@xSgS0@0fVDH=@,@H=@@H=Y@ @H=a@@H=@@H=w@@H=m@@H='@@H=)@@H=@@H=?@H=?|@H=?l@H=@\@H=@L@H=?<@H=a?,@H=u?@H=? @H=U?@H=?@H=}?@H=7?@H=]?@H=G?@H=>@H=3?@H=>|@H=%?l@H=>\@H=>L@H=><@H=a>,@H=>@H=w> @H=1>@H=!>@H=>@H=g>@H=u>@H==@H=>@H= >@H==|@H==l@H==\@H==L@H==<@H==,@H==@H== @H=y=@H==@H=G=@H=m=@H=<@H==@H=7=@H=<@H=#=|@H=<l@H=<\@H=<L@H=<<@H=<,@H=<@H=< @H=<@H=<@H=<@H=I<@H=c<@H=Y<@H=7<@H=<@H=;|@H=<l@H=;\@H=;L@H=;<@H=;,@H=;@H=; @H=[;@H=i;@H=;@H=s;@H=E;@H=M;@H=:@H=:@H=;|@H=:lH=;`H=:TH=:HH=:xfA~tLD$HL$D$\YtA?|$Xɬ=K#D$XAEtA>踨LL$ AHH$p HVP w H\HH $HTIHHo I9AD|$8H=3K#H,H=,1vfD=J#:HHk, 1H=+蹈f1H,H=+蚈Ht$@J#DnHP,H=+1hlDD$,HL$01H+uH=f+<A)NdH,H=4+D1HH,1H= +߇DD$8tHHP+ 1H=*踇AHt$@FI#A 1HG+H=*{HDHD$ncATUHSx iELLît11HH#uuH;H&NHHx @HD$Lt?1H='{HL$tH߉D$D$_IH1>H={gH "H5H=YfSHHdH%(HD$1{tHD$dH3%(u9H[{HL$AD$ۛC SHHdH%(HD$1{uHD$dH3%(u9H[{HL$AD$kC谟ATAUHSHHHHt=Et9}H[]A\fDHD$ DD$ H[]A\HHHff.AWAVAUATUSL$HH $L9uHH<$IH\$0LdH%(H$@16HLv=;#A|$1ҾD$d|$H$Ll$$fDt$Åt5fDD=r;#E\A[EtVEL$MD$1HDƄ$bHx-LDt$$D$(ޛy襝8t|$=:#21H$@dH3 %(ZH@[]A\A]A^A_?1HDƒA1@$u;Lc€=w:#fD$.BƄLl$Ld$.H}LLښH<$HD$DH/|$$dDMH<$HMHY1bLL1uHHtHƹ H=7tcHHtY1LLAV 9,A;V"A~SE~fAfACED9E~ A9=M'#LǃHǃoL裌AWH;s>HL4Iv-ASALH!I~HE1eL=LEULAV M~AF u =&#1I>H)LAV AV 9rE~L迋AHHD$HHHv L;pxILHHI1fDH@xKLDEIHtsHHHunHHHuL:,D5HHLH= ^AV AF NE1fHXLEG IOEG H/dH=G^gAF LAljL$LHHD$HH4fE~Ht$Ht$L$HtFH D$,D|$$D$!<t\<tpA<|$!="#Hr H=1`AHAG=nv(A~$SXvAF&AOf9;D$(E;~ E~ A9AAF E~ H $AH H=3\L艇HHL$LH]AF Lǃ LD账IHHOH _SH5 H= 7rH +H5 H=PH H5h H= ~H H5I H= ~DAUATUHSHHG@L'fFM$LuHkxHt9 I$tj1I|$H{HLnHCxHufHCxLH71H[]A\A]fD1HHL%H{xtM=) #tH H=, 1]xLhHnH޺#NHx LN.fHu,I$Hu }DHHHuH*1SfEEfEE E EEE HXfDI$HCxHH&ff.ATUSHH dH%(HD$1G@@t$$SfD$D$D$HD$ HH;s@HfpHu ]DHHHuHE1@t!Ht$dH34%(Du?H []A\DHHHfHAf.AVAUAATUHSH H?dH%(HD$1f?vHHLDSD$AAf$E@fD$D$D$ DvHøHtuE@HKHfCAEtCNl#HEDs H|H}HHuHHHuHH61HL$dH3 %(H []A\A]A^AE1DfH$H{HHCDHtHtHHH)H)DC1҉փL1L79r(DHWAVIAUMnHATUSH/LL{AHHt+AV@f;PufDf;SHHHuHALLnuLInL#NHx mL܀Ad=G#`L詁[]A\A]A^HHHHIPLxHIC HTC AF$IVAAF,AV0SA;xI>tHH|@ AF@SfUfEfEAEEA] IHIHHu @HHHuH(H薀AF,D1LHHHL[]A\A]A^Hbt!H=1WHfHu1Dff.U1SHHHH~H;tH߾YH;HH[]ff.@AWAVAAUATUSHHLH?At$$I$H[HHS(C LmAHs9C1HCDpC(HSffBHHS ffBHC1fPHf8w@E S(IŋC4AT$ tRH1LkD{(H[]A\A]A^A_f.HuHC@@E ;I$HLHLkH;D{(tD$ ŇD$ s@)HAU I|DA~C HsC(9fATAUHSHW(;W w7C4HuHK8C4H]HMUDeEu[]A\fD1 S(@DH1[]A\ff.@HwHH@(Hu HʋN HփHH HuWH)fATIUSHoHH}tFHH|HuH;HH|HEHE HDHCAD$C(E k4uHC8[1]I$A\DAVAUIATUSWL'tGOHG0fDH8Ht'H D@ D@t8t9H vщσfIEAl$4ID$8ImDHH]Ht|HEHLI]eAƅyHHHtHHHHuI$HEHzIuI<$}I<$H{[D]A\A]A^ÐE1[]DA\A]A^ÐO1t,HHWp(HHtR HHHHu)+wfHWHHq(Htf.R HHHHuWGHHH)HHf:HGIfSAH Htc@][LGEƈH9t|@D MPI@E8uEIHD MIHHEMH9uA2H)AB[HAH9t1D8HHH9u[f.HGMAVAAUAATEUSHH0dH%(HD$(1Hf8hnHaHT1H1H&HsHfHYDH1HD1H:&H-H H@H1H1H&HH0HDH81H1H&HHH}DHHD$(dH3%(uyH0[]A\A]A^DHpHHs DH@:HHBuH)H^1H1t@SHH $HHdH<%(H$1HxH9pHH HL 0f:vrL9HHDHQfA'uA'fDLQHLHfDHL9rH)H$dH3%(uvH[L9s;HHDDHQA'u LQ'HLHDHI9w@1HH RO H5H=:nusDAVAUATAUHSHH dH%(HD$1jHF8=G#L(HIHLf8HE8HDHpzL=#uXH@AHf8uHHEHHPŅ'Hf8HL$dH3 %( H []A\A]A^fDAHE8DHHpLv=?#DHeH=*1L%f.;Hf83uH#D1@1H0f@HMfDHcH=1nLKfaqVDft@uf?vuH臍1HHуH-HcH>HH,H1HfDH1HfDH`1ff.fAVAUATIUSHH`dH%(HD$X1HHHHDHHߺHpm0HMI|$I<$Lt$ HLLl$@yHLH\It$H:LLH2I4$HLAt$uHLLNHvHfy*/KHHAI9wH@HHH[]A\A]A^A_HCHsHH9r;--;/*tHþ A[AEH9HH)بtfDHHCH9x@8su{uHCH9_K@:sutHDH D@t$EuHDH9KDjt$]Hpuxt%HHH98 uHY H HH qH5H=gH H5H=igff.AWAVL4AUATUSH8HHt$dH %(HL$(1f8HD$IHE1Hh AH}1LNHI9uG4$ McA ~@D)HcID9~1LJsj1L`cLSLIEf8LLt$AL|$[ti/tHH-uH("t'tu18tHPHpuVH8t놹]fAUATUSHHHIIH1CHHHuAD$9E1E14HLHL)I4$DHA\HIt3LHHuHL1aH[]A\A]@1H1?H[]A\A]fZE1HLH[]A\A]ûH Y H5H=<!Y][D @8tHWHGu@H8HtHHtf1ff.fE1Ht@Ht AHHuDDHcF HuHcF~H EHy HEVt@t+tDH=HGºHHD@1~cHËV@HH=@HGH9HBAUIATIUSHHdH%(HD$1Hf8@C{v D$"=H+HcH>T$H DAt9FAHL1H^1HL$dH3 %(2H[]A\A]T$H {H bHT$HE@T$H pH DKDCL1H]1lfT$H h0T$H F T$H {&IEf8T$H T$@T$H VH K@IEf8T$H \IEf8jT$H PqT$H `T$H PIEf8sHT$LHHT$@T$H MT$H IEf8asHT$LLT$HHH /IEf8T$H KT$H IET$H f8fC#H $JH ": H T$#{H \HT$HET$H T$H T$H T$H 8IEf8T$H T$fDT$H T$H pT$H `T$H dPT$H @T$H 0T$H  ="uGA$2H H5H={YSfT$H s { H":H=v1I3 H T$;Xff.AWAVAUATUSHdH%(H$1Hf8IHL,1HF@1HxLI9u1L1LcLHt$LHt$*I4$f>CHD$0LHH$DmHl$PE1IKfHvarchar(B4000H)fB HLIFM9trD$P,L}IƺEF1H HLXHcLHtCD9~HLJ4yH<$H|$1L1LcLH$LHHD$($If8VH$LHHD$0AmfnTHD$8HjIEHH@8H8H|$ʼn\$D1Ll$XID$ HL|$HMLt$P;l$ LHII98@HXuL9IDAuE'A_tOHB`IM9uLL)HcŃHHD$8L0HPrf.LH\$3HL$HHHCHHD$qMH$HPH$11L|$HD$(H$HD$HL)L<IG H9D$'H$LDuHPUE1H$H HLXSHcLM AE9L|$E 1H LSIELH[I,$L2[H fLYGELH$ [HHf8\H@` $LD$LHH0*IHHD$ 1HHH$HC1f=4f=H H1H1H<H/&H"H1H HT$LLHHT$LHAM9tL8FH<$E1H1H&HHHHǃ C1HL|$@Lt$`MLHH01H&LHfHEHHHD$=LLH5H@~$LH LLzHHAEy1HLXH;H0YH$dH3 %(DHHĨ[]A\A]A^A_@LL$H$GHE@HtwL$f7H$E.HE1HX1HXfDHߺ H5Ht$HߺH5kHAD HcpsH$HH DH@:HHBuH)HAD1HfH3FfAWAVAUATUSHdH%(HD$x1H+HHIII>CH;If?vIH߽HL$xdH3 %(HĈ[]A\A]A^A_fD1TIHD$HMt fA|$>Hf8HdVHD$HHk[HD$C1Lt$Hl$0HxfBHILH&H1HHHHD$DHHpHSHH H5H/HD$DHHpH5HDLHyHLHqtf.@.LL`8{DIF@HtH5Lt$IF8H;LtUH|$TDHDLD$LHH@`H0IHHC1f8Lt$1HLHf8EH H1HHT$LHHT$LLHM9tL_@LdE1fA|$tJI$1HN,LŅIE1LHP ŅAD$ID9ǃ HH߉Ⱥ11LH!Lt$DHD$HHP8Hp@kŅUHyH߉j9D HHt$PpHiHsH@:HHBuH)H||DLH#fD1Hƹ,Bff.AWAVAUATUSHhdH%(HD$X1HIHHHf8IILUH;LaPIHL RM&HAD$QLL)>HLD$H߉Hr`LH6IHHD$ 1HHHD$HC1f=f=4H H1H1H.H!&HH1HHT$HLHzHT$LH߉D$M9L$t L%=L$iH|$oH&f}E1+fDI1LHP x,EID9HE1HNAUATUHSHHHdH%(HD$81="H2HtEHNHHf=vaU C1f=8HU8Hu HHHоH߉HL$8dH3 %(IHH[]A\A]À}.H}@Ht :HE@C1HILl$ LHWH1H}8H@LH'HuHL~1HtLlHu8HHV1HqŅfHU8HHŅf1HHGiH=D1H߽gHILAHUHH߹MAąBDH1L!A1HAv4H }H5ݿH=}/H ^H5H=,W^/ff.="SHu u1[fHƃH:2uHHHt"7H;H,1[7="C1C(u_H[~fDHaH IH=оLDHHD1$HH=1nff.AUIATIUHSHcHy H/HIEx wz1HtL|߃A<v2G< wHu&@_t HH"HL[]A\A]铻HH9uMtHHLd6AHH[]A\A]ÐHH]UHcHSHHX;"yHHT$0/HT$HHH[]SHcHHyHHT$.HT$HHH߾'[ƺfDAVAUATUSH@dH%(HD$81HW="HHIQHf1fA<$ {1HLl$ I̱LH LHHuHۮLSH膱1H|LH輶Hu H蛮L1HILA$1HL$8dH3 %(u|H@[]A\A]A^DfMD 1HKuC1DfNHU1H=c i0fAWAVAUATUSHdH%(H$1HE=8"HHIIA} EHt HtIL3HAf=f=z$Mt AD$$L} LQ,Iv`LHLD$(H6HIHHD$01HHHD$HC1f=f=gH:H-1H#1HYHL&H?H21H($]HT$(LH1HH&HHܮHϮuPH߁>1H贮H觮&H蚮H荮H耮uTH1HkH^&HQHDH71H譭HT$(LLH1AƋ$HHD$fI$1HHL$LLL$2L$1HILP HL$HH9L$uL9} tL*E(H|$诳A}u"1Hޤ@Q"E1H$dH3%(DRH[]A\A]A^A_f.H胤Af HӬpsH$H/H DH@:HHBuH)H茩Z1H趬1H謬cH蟬t$(HH3f>5t$(HHcT$(LH)1H_HR&HEH8H+uPH蠫1HH &HHHuTHW1HͫH&H賫H覫H虫1HL;} tL'H|$7AE=;"ǃ+E1C1Lt$PHL|$p5LHu1H蛪LH[HuH:L貲1HL蠲L3AEAA}AAf1HֹH NH޺51H=T+ fDH bH=11HhHf.1H"H=")DAVAUATUSH@dH%(HD$81Ho="HHIaHf1fA<$#{1EHt HBHLt$ IHKLH苮1H豨LHqHuHPLȰH1H Hu(HYL葰A$1ED$fED1HL$8dH3 %(ubH@[]A\A]A^HӟuC1D뱐NH&%1H=}'fAWAVAUATUSHHE="AIHeH@AEHt HAHLf=f=v_C1f=wuA}PAuu A DHEE(H脰ǃH貧H߉裞 1H1蔞H[]A\A]A^A_1HV|I}E#C1HIILGAT$AvH蒦1HHDH车IuHLnDH裦4fDNH1H=T+yfDE11ɺHnHHf8CAAuEE( H:DAv Hѥ1H臥DHIuLH譢DHHXifDAWAVAUATUSHHdH%(HD$81H!=^"HIHIH MHE1EA$f8w.HL$8dH3 %(DHH[]A\A]A^A_HcAEHt H?>HC1Lf=f=H}HpHc1H虤1H菤&H肤HuHhAuHܣ1HR1HH&H;H.H!H蔣1H H&HH1H٣1HϣH£&H赣H訣1H螣HǃܣHA̚E%Lt$Ll$ @LLH_="AvEtqADDHۢHt$pHϭHsH@:HHBuH)H蜟'|$ YL>HH.fx#HHz&H@x&zxHRHH@H="UA $DEHW1H=1H6H'NHŧH=\H1H=d=}"aDD$L$ 1H H=]EAA).AH  H5*H=!DUSH8dH%(HD$(1H=="HHHMEHt H*:HHf=3f=C1f=cf=HT HGH:1Hp1Hf&HYHLH?uH负ǃ HrH߉cHL$(dH3 %('H8[]fDH裟HpH1Hsf.H@:HHBuH)H\C1HH2uH}@tY1HWH@1HnHNH.Ů1H=fDHHE@&fAUATUSHxdH%(HD$h1H=r"HHvHE1f8w)HL$hdH3 %(DHx[]A\A]H裕LEHt H7HC1Hf=f=cH辝H豝1HI褝1Hڝ1HН&HÝH趝H詝uH1H蔝1H芝&H}HpHcH֜1HL1HBH5LHuH3f>Ld$ HߺLRHuH1L蹢LH螤HuLrHǃHA"H[Ht$@pHHsH@:HHBuH)Hf1HvH&HhH fNHF1H=ܦhAjff.AWAVAUATUSHhdH%(HD$X1H%=~"HHAAMAAuMfA|$HEHt H4HHf=f=%C1f=f=LHǚH躚1H谚1H1Hܚ&HϚHšH赚uH*1H蠚1H薚&H艚H|HoDH߃ 1HW1HM&H@H3H&DH蛙AǃHOH߉@HL$XdH3 %(gHh[]A\A]A^A_ H{Ht$@pH&HsH@:HHBuH)H<}1H薨H=NH1H=fD1H&1HHEl$Et>I$HHr0H>HAUH HHHr0H>H9uIHLHf8w}Lt$ HLL\LHAHuLE[1f.I$HL4HL蔤I1LHP A9wHphH۔mfDIHnHLIHf8wiLt$ HߺL*HH L蒝LHwHuLK:C11HHphH5.ff.ATUSH7HH?HE1螥t-="HE1f=tFf=v E@v D[]A\D=ɳ"tHH=1HEHt H/HHC1萖HCuHHkH賖HA裍H*MH%1H=fDAff.fUHSHHKt EH1[]ATIUHSӉFuhHEv,E11fw[]A\ÐLH襤[]A\fDfvf.1E1[]A\fUSHHt%Ht HdH߾UH[]H 2 H5H=h]ff.fAUATUSHuJFHHIIͨu!LLHCH[]A\A]黴H5A跑CH k: H53H=(ATUS>HHIHFfwAuHU8Hu@LC[]A\3H5@/Cf.tf恁ǓCHU8Hu LCn[1]A\H F H5hH=AVIAUAATEUSHHdH%(H$1="/Hf=tKf=vD$@1H$dH3 %(hH[]A\A]A^DH+C1HAt$Hq@H襒AH虒AH荒EH̒H迉HhODA&HJcH>DA&&H DHcH>fHH=ќIcLH袎YD="foïD$P)D$@Ht$@11HhE1Hl$ Lt$f|$ tF1ҹiHHMt=9"`A&CHJcH>1ҹHH^Mu|$ uHHtHL At$A|$_H3AL$dMIT$HA8H~ NDd$fo')Hdy,'01/0D$X2/03HD$P)D$@fT$\D$^foefD$P)D$@@foxstD$RfL$P)D$@AAĉ "f.H;1H==ɬ":Hn7H=1FFD$RHl$@fof|$P)D$@11HHaHeIvforD$POFFHl$@)D$@A>L HLDHl$@H [@H1A>LϝHLDHl$@H ÜA>LHLDHl$@H ΜA>LHnLDHl$@H {A>L`HGLDHl$@H TANfonfDD$P)D$@Hl$@OND$RHl$@foRft$P)D$@A>AHjHcH>EHl$@H aH1[A>LHLDHl$@H Hl$@EH 51A"1A o"j1AT"O1A9"41A"1A@"A=HbJcH>1Aʩ"D"1A@ǃ"~ǃm"hD$1A@"‰HH=u1JP Hf8vzUSHH迂uzHC1f8wDH1HE1H;H胋H߉tH[]1H>@11H5鸴fHf8w"@HsH5HD11t@USHHHC1f8wtH71Hm@tHH[1HQ1HGH菊H߉老H[]1H@1H6뀽ff.fHf8w"@HH5YHD11鄳@USHHHC1f8wtHG1H}@tHHk1Ha1HWH蟉H߉萀H[]1H&@1HF뀽ff.f=ť"ATUSHH1f:t []A\HyDHj HǃHB u^C1H߾q荈1H胈HˈH߾H[]A\^fH:WH=!1YHDHh LSHfDH踈xC$;C,sHSHK$[@1[@o$SHS$tS$[@AUIATIUHSHU$],)L9sLHuMtHLHI HuI)Fu H yH[1H[]A\A]@MtMtHULHLo U$AԸDe$ff.HdH%(HD$1Ht$)D$HL$dH3 %(uHzf.HdH%(HD$1Ht$D$HL$dH3 %(uH+ff.HdH%(HD$1HH$HL$dH3 %(uHff.fAWIAVAUATIUHSHHHH7dH%(HD$81f>vxHMt|HN`HHHLl$ L4 LLLD MHٺLHHD$(L)HL$8dH3 %(u2HH[]A\A]A^A_HڸMu1HHff.@AWAVAUATUSHXHi(dH%(HD$H1HHHu1Ad1HL$HdH3 %(HX[]A\A]A^A_L|$LcqIIHL LD$0LLLLD$6 LD$HLL1HD$8Lt$L)CdMs1LL="TDCdDH1d H=h.H ǢH5KH=Kf.AVIAUL,ATIUSHLHHt3HLLLHHPHH[H]A\A]A^@L1LHf.@SH>HH1[@UeSHH;H߾.H߾!HH[]ЂAWAVAUATIUSHHXHdH%(HD$H1Hf~ HHHfH0HFxfQHNyHpHLciH>pHAHHHD$HD$(LAHHUHt$(11HIHD$(HCIFHHD$IIDHHD$IH!Ht$LH1Ht$LJ<(HD$HL$@HT$8LHt$0TH|$0*xIHcLL$HIeHL$(|$LHALL$LL$A6LH|$(HIcYC1HH5ޟH}HDH|HLH} HH5H}H1H趀DH+HLH]}LH݀I<$LHHǀ(HL$HdH3 %(HX[]A\A]A^A_HHHpE1HD$H9DL|$(LsLkLHfL|$(E1E1E1E1E13yfHHt8H mHtHH jHPHHHDUHSHHH9WHF_HHtH)]H[]f.fATIUSHwHoL9U(HMHHHH9Wuv} WAA)L9uFDE(9r#)Lc HHCDHK[]A\fD1HFU HME(H `H5cH=H AH5DH=H "H5%H= f.UHHSHH9UHuHFUHKH]H)]H[]f.HGH9rH)HwHGPH },H5H=%DATIUHSHW(H_ HHHW(H9v3HӸHHHHFHHAHt,H] HU(H9v&HEH)HH]DHHM[]A\fH QH5H=zf.AWAVAUATUSHH $HhT$(HL$ dH%(H$X1HD$PF4IxHD$8HD$HD$0"HD$@IHt$IH$HD$8M1HD$HD$0MHD$HD$ H)HHT$8u HHLd$HHHD$8HD$HD$0IGGH|$H=͘"IGHH|$8EIWHD$HHLAN4LHT$HATLL$LD$HL$ T$8腹HD$XL(HXZHt$@I+wAAZH$XdH3 %(Hh[]A\A]A^A_@ D$,AHH= 1DL$,Tu Ht$0@="Ht$0H;t$H\$8Hu)HD$IHD$0JHt$Nf.H|$H>HD$IH4Ht$0 H;t$H _H5FH=vH\$8변= "MAăuEtIE1ɺa LHx nuEtIE1ɺ` LHx m+zDL$81HH=n="Ht$0LD$8HHΘDH= 1HH=\1-ff.UHSHHHSHtHsHUtx HcHy۸H[]ff.@HHWHHwfF V()t%HVHHwHHWHOHG PH H5H=ӗ f.HUHwHHWfHuHwHHWfUHHSHHHHwHv)HHt.HS 1HC(HKHSH[]@H>HHHT$HT$HHEHuf.@1 fDATUHS=G"IuI$HcH[]A\TH H=1ff.ATIUS="Hul}(vZf.Hwx4E$U,)xct9LNHEHHc!]$[]A\[]A\@HvHH=ؗ1LfH5m#L1LH.HH@`H8t\HILHHHHL=Hr`H} L1ҾHYHIHEEH="@IHH=}"(IHLHLHHHhH9uHH8H1ҾdLLLLHHppH>H="(L0LHf8E<7L/LAǃ=D"^L=MtLzLL Hx*L= L#I$HeH߻IDŽ$HvHHHHHHfHMHbHu @H@HcH>fDHH\HCH.H&H HH΋HHHHmHRH6HHHHЊHHHpH{HcHH5HHHHՉHHH}HaHJH-HH7HHՈH+sAUATUSHHHt^f}tWI1L-7&DHELH4HPx4EH9v7="t։L꾕z1H=访뼸H[]A\A]@H1[]A\A]ff.Ht3USHHfH;HkHH HuH[]DAVIAUIATL$UI|$HSmLHLHHIHt"HpHH(IE1[]A\A]A^IEAWAVAUATUSHHT$HAE1E1H$DDAALH>xjAHUM)ˉ)f:GA~yIHt7H@MtIGHEuYDH$f.H<$AHD[]A\A]A^A_H$E1@HD$H4$H0fUHh!HSHHNH?H f?ft_Hs(HtVDCDC DF0u5N"8N t,AF!~A9EȉșC=F"H[]fftHG`HHC(sH~(}tHs(eF"AfHG`Hp"u肧H}HC(HufH}HC(fHG`H@HF(HLNHH=$PH12XZ ff.AWAVAUATUSHH=(~"HHHǃH/uIHiHH.HHLhH=}"fA}E1fDIUAHH,HL}8Lu@LH1HHq1HH\Hu0H}HELHgHE8H8uLLBeHHH߉‰E UX  ʉ Ƀ@ ʃ@  ˆUXH߉EH fPEP1P=i{"XZCMDMv1DEHOH=DLZHEpH=ӂ1H܂q1H=ɸ'@AUATUSHHdH%(HD$1H$1HHHACAHǃIHtVHHHH,$EtPAD$1L$HHmI9t+IEHuH<H8&bHuH<$xH,$Hd1HL$dH3 %(uH[]A\A]øff.AWE1AVIAUATUHSH(T$Ll$dH%(HD$1HDE9 ff;sH3LLMtN‰4AQX  AQXMtT$t;t$fD u>EE9LHxEGHtgT$D$]E1ɨ tHL $L $DMtmIq@HD$D$HUCf:DGG|8D$E1c1HL$dH3 %(uH([]A\A]A^A_HUCHf:DG1DD$D$ItIy0DD$ L $ `HtD$L $DD$ qfAWAVAUATUHSHJH:HHIHH{0Lk0LHfA}E1L5L=fIEHJ`HHs8HH C CXƒ ЈCXHC"fAf=u +E1D$1EHD$@Ld$ HD$HD$HHD$HH@HYHEHA9DAED$CEHl$E1E1Hl$(2fHU1HAHUNd E9HHHЍTA)GyLd$ IcHl$EtH|HuL@1f=HT$8DH_D$~Ld$8Hc|$HdHHtL$1fDI$Md$HTH9H<H1@HxH|$8>Ht$hdH34%(7Hx[]A\A]A^A_fLHHHD$Lt$(H(HD$LhD$MdIHHI>MH.HhM9t(I1sHHHD$H(EHl$D$ELd$ Ld$8fT$HH!f.HD$HD$ Ld$ L$ILd$ Hl$IcH|H4uLd$ |ff.UHAWAVAUATSH(LdH%(HE1MFAGf8HIHcHBH%pH)ƁHH9tHH$H9uLl$L1IL\fAu%A@dAGH9I=p"ALuLDAADDrILLPyHMdH3 %(udHe[A\A]A^A_]H?U|1H=wLELEf.1@H)HL ff.USHH_PHt%HHHtH{HuHH[]ff.mHHcH>@HyHxHuHxHwHwHpwHIxHJuH2uH&uHP_HmwHPwH.wHewHvH[wHwHwHjvHwHwH\wH.vHXwHvHGwHFvHvHvH*wHOvHcvHuHuHuHvHuH.vHvHuHuHGuHuHmuHuHuHtHtHuH0uHIuHtH\= l"ATAUHSH^HHs8HHЉS EHEfH.HCH fDDH$IH=9g1PfD wH੄ HD$D$ Ht$H߽?A@Ev D$( l$ l  AHD$D$ /Ht$HAHD$ H"HvHcH>HD$D$  Lt$H߽LZdAM HD$HH;HD$HD$  ADHD$D$ / H߽ A}DHD$HD$ 7AMDHHt@:HD$HD$  _=(]"Dt=HH*E D9}HAH4H*HE A9\H9u=\"f.AHbDHиHD褷HA虷A / HLl$@肷A<LH߹rAV1HD@蹷HLpPMu M6MtI~L4uLH]HHx.H<H#fDHD$HD$  Af.HH HpHH=m["vHHt@:HD$HD$ 9Ai AH` HD$HD$ A@HtHD$ D$ RAąqAH4HfDHD$HD$ W  A-DHD$HD$ g BADH舶HA]ƒ⿀tPv< HD$d$ E1=Y"ƃDDH},1H=IabnDHD$HD$ JAąHWH< 致 DHD$HD$ O :H2H߉=X"A@|tAHL0Av 9NHH4L0HAV 9,H9u@Hy1AZH=4`MHD$D$ H|Hd=-X"DHK=X"AH=W"~DHHH=W""QHL,L=W"fEu Mu0t%EIlFHI謳fAFI9ukW"[ E AT$E1L$I5W"M9T IEHJ,0$H߈E`9HHfE^jHE8H8u}`?H}8H>Hu fHAHD$D$ WDH߽AgHD$8H藲=`V"D H~HT$81HAt$AGD$,k=$V" t$,1HHHo=U"K QHL$L*D$,Lt$8fEl$ l$,E1LHIHEI6J<(H8=HIMvM9uH|$8l$,E1 D$(f@D$ d|$(EAAfHHAHD$D$  DH߽A=T" HHt!FD~@fFDu H;DHD$ADHwuH=G\1^Uf@O LH=UT" E1ErfDIHJ,9H߈E`.fE^HE8H8u}`dH}8H;H/HgH߉EH UfFMuۄF@H蜅yHD$ LL|$ MuHfDHc3H踹HxHt$ HF롐AE1AξfAfEHgAH1fEH=JAP1ހZYmLhHHD$ HpPHt$Ht^FLt$AGu LL|$LL>F/MuۄtgH/iy;D$ L۵L|$MuǐD$ gHXDHxHD$@/fL舵HD$DHrPD$ Ht$H0!ڤf.AVAUATUSHH dH%(HD$1=A"HE=HZHcH>D=qA"H1葝1HԜ@HL$dH3 %(K H []A\A]A^DAHrfH=HI17~Ht T=@"tHhfgH=H1~DH߽kffDH6O=@"jHf8(H襜H}HArHAg<<=6@"@1H߽蝛11H4DHfH8Hq1H1/Zf.HAHx1HH߉Κƒ⿀t<w=V?"ƃ1@H@DHc1H1蕚HdHDHDHDHt$Hl@HpYfHȚ=>"HH(H!HHPH=I>"H1蹚1H߉譙HHȻHf8zHh1H߉\Hu=7"+HAH BԋH=>HHhqڙHH]w1H=>tHt$HL$A1H\uH=h>tH|$H|$0AWIAVAUATUSH8dH%(HD$(1=T6"{D$fDLH=16"htpL6uIf8hPD=5"%HL$(dH3 %(D$LH8[]A\A]A^A_@ILD0ʑ؃ L薐LD$芐L耐LD$tLAiDD$@EADAA DA A A'A r<A sAtA suL~=4"QL ֏IHxJ@ILHp@5E1ÅLA荏L肏D L oL _L HL$If=I?=&4"_D$fAfD7<H(HtHPIHǀ(D$ADAq&AI=3"L(?f2f.LT$HH=-;PHsZ1E1跓HAAH(H1HLQ-IPwIWRf҉]D%=_I?=2"_@H=9پ'1H=oI?@ILAHpg0٬HXIH=c91zomDIAfDL=IL!Xf2{fIAfDL<YIALufD9ILf:fD$ D$H<H=8nhL$Hc<HW7H=Z8H ;<HE1dnIbfAWAVAUATAUSHHXdH%(HD$H1fH)D$)D$ )D$0THD蘌H߉D$0HfD$8 D$;AtwAbA5=/"Ll$#LAHL$HdH3 %(DjHX[]A\A]A^A_3?fDD$: D$=_/"AHLl$|IuHIڭH߉D$>AHLЉL$ 賭H|$D$D$Ht?uHHt>}HLHD$H:H1H耎Aƃ6H載IuHT$ T$ 2Dt$AHf9t$ Hluf%H߃ˊD$4D9&H|$(5|$E[H;A.AuL$0:B5HG Hx=-"HG LHHPH;H0L=-"HUH=R51ik@H=A@HpH UHcH>=%"AfDHt$dH34%(DH([]A\A]fDVMAD$4A$Au=$"tDHU5 LH 1HHtHt1[@USHHWdH%(HD$1H$ ȈD$G ʈT$W ȈD$G ʈT$W ȈD$GHD$ ʈT$xHH yHD$dH3%(uH[]>wff.AUATUSHH $HHHIIdH%(H$1HHHھLI|$HHMHLI|$HHMHLH$dH3%(uHĘ[]A\A]uvDUHSHH8dH%(HD$(1HH@`LAz0tsHHt$LHT$1HL$HL$HHD$(HD$(AB4PLL$ LD$(04ZYHtHD$H)HT$(dH3%(uH8[]fHXyHuff.AUIATIHUSHHxdH%(H$h1Hl$`*rHHH=LHFHHt\ILYHHL{LL耇H1Hnu1H$hdH3 %(uHx[]A\A]tAVIAUIATIzUHcSpHHt+IH}HcLHEDxSHuHHcL~[H]A\A]A^AWAVAUATUSHH $Hx fH$H$LLD$IHIDL$HD$dH%(H$h1))C)C #Mw@uwHCL$`A$LLL)HSHLDŽ$pAAGH$hdH3%(DHx[]A\A]A^A_DŽ$1LHDŽ$f$pHHFHYHL$oHL$L$H01DATAHH9rHD$@LLD$L$`HHD$HT$LH=A{LD$Ht$IxHT$IOH=A{HHLDŽ$pAG\L$`Lrf$hH$pfo$`HCHD$@H) HD$ŌHHl$HLHHl$H$ÌH|$HƎHHHD$(MH\LIFHIHD$ pLxHL)LHL$0InALH=L$HD$8LFLLMlLT$8IMt/HD$8mLD$81H0LfHH HI9wL$`LLLLHI HD$8HD$0LﺀHt$ H=HFmHLD$8L$Ht$(LLLL$0L$LHD$ LL$0LLHT$ ALyHT$ 1LpELt$HLIv`HtFoH)HPHSlT$LHL2H|$HHtA$$E1NACf.L$off.AWAVAUATUSHdH%(H$1HL$HպHLhHNTLMSSPH9$HhrHhHhHhHAhLHAg=- "/~ A/HD$ D$ )1HHcsg= "LDl$LHD$PMtXIHLpIG0L(HHHT$HL$J<*HiHHt!HT$HLHHuLHkAH|$jH$dH3 %(DHĨ[]A\A]A^A_LtHt$LHLIHtHL9rDHI9w8\uxuHHLLH)HD$0HHL$LH)HD$PHL$HL$LPHD$hHD$0PDL$0LD$AXZEH|$PL$ DHD$ C1H5J<H߉L$I9kLfHD$S0I<H)]s1LL$ L@FHVH BHH9u-PHrHHcAHH9r3fHCCHc4t&u(QHcfDHADu HcʅuD$ 1H\3E1҅udf.qAI 1ҿ DAAEiAHD‰QЅy@u"IcHIcˋD tAˍqfD#H$dH3%(uAHĸ[]A\A]A^A_MMLl$L뺸본af.USHt3H^HfDH]tDXuH1[]@H[]@USHt3H^HfDH]tDXuH1[]@H[]@UHSHH]=!rH(H5T0H[uHtEH[]fDH540H[H5&0H[H50H[H50H|[H5/He[ H5/HN[H5/H7[H5/H [H5/H [H5/HZ1 fDH5.HZH5.HZtH5.HZH5.HZH5.HiZ!H5.HRZH5.H;ZH5{.H$ZH5h.H ZH5U.HYH5B.HYH5/.HY¸ fDfDHIؾ1H-H=-`9H[aqfDafDQG= 3 )ff.1xc~'6 v'fD1~ >d>Dl>ݐAVIAUAHATIUHSDZHAt8LhLXI$Ht;LHH`[]A\A]A^f.AI<$HH9HG`ӸΐATUSH dH%(HD$1F=HHp-HcH>fDF=i';fHL$dH3 %(H []A\x|HcH;f*DHcHi'H;@f*Dwf;kWVfDA=vѐw@;S3 {HIALH V1]]HKHL=w:f.fD ω{Hf1[SH5*H VtH5*HV‰[ff.@AWfAVAUATUSHT$@HL$(dH%(H$1)D$pHDŽ$DŽ$D$xHD$ HwL|$hHH52*LXIHH$1E1LHD$HD$pD$D$HD$Wfk=,!Ht$HALH5)1WHH[=!HtVuECHt$H~.DL$Et DD$Et1AHt$H6nHH|$ 11WIŃ'H5(HA TuA 'Dl$|H5(H1SEAE A Dl$|DH@@HPUHt H(H|$ 1?WPwD$x1 HD$WHt$1ۉQD$EGHR1H=J' 3IHt$|$AąAEtEuzHTHtmH Hu] 1HvVHt$D$EEE|$0t*H&SeH=&1[2=q!H|$ SH$dH3 %(H[]A\A]A^A_Htt=!HSHwH *HcH>H|$ 1UPvD$1ۃD$A@D$xfuA@t$0St$0IH@[HA1E1E11-fA-vA.|HD Et/ADKuAL$ӀA/uHD EuB DуAA=!L\$8L$0 HdRE1AL$0H L\$811E11#DBDct!HEEtOAADCtD9u GAF\@D9u 4Aōtp9uAōDl$DA Dl$|[D$DD$|Ni@B$11HDH=#=!kHH1H=#I1H} lG=!HHC1H=p#HRW1H=O#H5 HD$|CCL$0PHCe1H=C#E\$8Dt$LDl$HDd$8L|$P\$8Dt$LDd$8MDl$\L|$PL+\$8Dt$LDl$\Dd$8L|$P\$8Dt$LDl$HDd$8L|$P\$8Dt$LDd$8MDl$XL|$PL\$8Dt$LDl$XDd$8L|$Pe\$8Dt$LDd$8MDl$DL|$PL\$8Dt$LDl$DDd$8L|$P%Gf.ATUSHH dH%(HD$1HvbF=LHHcH>Hec]FH9wAHi'H;HL$dH3 %(TH []A\DCאHyǐH3SH {HȉC芴fDHfH*fIIH 1LGHKHL/fH9J; fDHx+fH*@fDHfHH H*XDHfHH H*X$-Eff.fAAtHDE1HD9w/h@AEAA9s At;E FAHA9t;DEPA vAA@<w-A7EAHAA9u=!tH1H@uH=L$ HL$ Hff.fWсH HcH>@'f&f.{f.hf.f.of.mf.nf.ff.fAWAVAUATUSHxH|$Ht$dH4%(Ht$h1H]IH2HHy$AEŸHDCA E1D$@HD$PD$ AD$$AD$(A D$,AD$0-lD$4AD$8AD$<~?HxH>IHHSLHL4FA1L|$\AADtQHKC%Ht$hdH34%(LHx[]A\A]A^A_HVfDEH AR) H1CA)0KM ~13@1 SH@{HL)IDHD$EuL9v {.DE$ 1H LBIcEt1ƒA  D9rHHt$HAAA@Ⱥgfff))ǍB0 0 N(HKHt$HASAHA[@H ,9 H5qH=<:H 9 H5RH=an:H 8 H53H=4>:H 8 H5H=:ff.@ATUS 0ۀ=!uIu5H8HcHc8 0H8É[]A\[1]A\fAA1HjH=z<uH8HcIc H<8=-!tL EHH;LDH=1RfGAWIAVAUATUSBHB B()N(DD:% k9B4)Aiұ:BIº⻷A)AriD$2AA)AiԵҍBIº=>% AEkdA)AZED ADDDֺқ)AѺVUUUAA)BD)Ǎli )‰ȉT$躓$I< gfff)Ǎ)))D<D$EE1111A1DEj<D u;DQEAD)kdA9uD)iҐA9u Ej=DD$E AhA@D$Ex EhAxAHEXAX Ap(A@$1[]A\A]A^A_Ã=o:153L  X H6Ak9H4ׂCHHIHIHHHHi@BH)H-؂-؂-D$HHHHHH)HMrTH)LHII LHHHi HV?2I)HHHH"DqBAAiұ:BIº⻷A)AJiɠD$ AA)AiԵҍBIº=uA)ErC<Ѻқ)Di D :VUUUAA)BD)Ǎl)‰T$%I$)))ƉKfDH6AHBzՔHHHHHi)ÉA\$1ɉAAk<)؉D:% k9B4)Aiұ:BIº⻷A)AriD$2AA)AiԵҍBIº=>% A)ErG ADDDֺқ)Di AѺVUUUAA)BD)Ǎl)‰ȉT$躓$I< )Ǎ))DgfffAAD1EkdA)׺EEẺk% A)EbC<Ѻқ)D :VUUUAA)BEA)BlA׺$IA)DDD|$Di B<gfff)Ǎ)A)DAD$DD\$A)AEEfEkdDd$Ek% kdA)EzAG ADDDѺқ)AѺVUUUAA)BD)Íliɏ )D؉T$躓$IDB<gfff)Ǎ)D)lj)AfDDnNAD6DDE:% i,)ii'D$AӺk9k<)ىB )iֱ:BIº⻷A)AJiɠD$ AA)AiԵҍBIº=A>% kdA)EzAC<Ѻқ)D :VUUUAA)BDE)Ǎliɏ )DT$躓$IDB<2gfff)Ǎ)D)ljD)Ѻ'%ADѺR1AADAAAEkD^k9D$D:% D>% BDֺ⻷iƱ:A)AJiɠD$ AD)iӵҍBIº=A)EbG ADDDѺқ)Di AAA)BD)lVUUU)DT$%I$)׺gfff)D)DADA)׺EDfEkdAE11k H̋BHɖ H`HcHHHHHIH|$xdH3<%(HĈ[]A\A]A^A_f.+(&#'D=Gtg:uދB=cHžfAHHHHHfAPK/t1uBA.fDIHDLIHPA(A)u H@ HHEDEHl$0L@HAIL$LHHHHHHI@oAfDHCxqZ| HH@PHHHHAPHCxqZ| BAHH@PHHHHAPH@HHEs/AUATULSHdH%(HD$x13'I@~"HHcFHHHHH`ɖ HHHHiH¸IfH|$xdH3<%(AHĈ[]A\A]fD+s(#'t|D=Gt_:uދ=fANk)t )fAPffD/t1uAGI=LI$Ld$0LLA@HP-HMHLHHcFHHHHHHiIfAA@ AH+(u9M@EvfDFA`HIPHA@f%f  fA@HcFHHHHHHi'I)t}fDfDHA@f%_f fA@HcFHHHHHHi'I"V,fDAWAVAUATUSHdH%(H$1%IHADM̓bu rDr H*tJ~8t@t8t0F=HWHcH>%t -t"uѐ"qHHcH>AtbL&IEH}#LHH.H$dH3 %(Dr$H[]A\A]A^A_@AAUI}HL9IG.AkD=!"HcMEH H D:O!E1LHt$0MډD$0EiPFD$4ADf>AAEG$6IUD9ACă!D@HH5#EADHLBf.HHBGBH9uDAqAHHcH "D5C݋M=H,HcH>fDH}<AHH9C=KH^HcH>f.H}LAf.}LfD}L:AbfHELMHA Ht$0MHD$8fT$>HMHV?2HHH`H"HH)H)HHHD$0LrA]DHMHHt$0MHV?2HD$<H`H"Hɖ T$8H*H)HHHD$0`fD$>r@}LAf}LAf.1}L@A@1fHT$0M)D$0(L$?@ED$8fD3_ Ht$0MHD$8fL$>HcEHHHHHHHi'HT$0H){DADA{DA#kDE^A}0AFIDtfAT$DuAEu1A|$IEHDHHDAąI} IEADAAEUHHD~H|tAEAfAH*AEwfAH*AE]Hec]FHǺHH9~Hi'IEAZAHl$@I1H H%IMLHAA!I}AAUAuHHAEH AEAEL9AA!HI}AiH9A}ALȺh )‰HcHHAEAHcA=ȺhЉ )ЁHAIEȺh )HcʺH9}AMAȺh )‰HcHgfAEAlAAEfAEAoffA*^ZAmF]Hl$@HA|$(D@2d1DH 1'DA1!A1"IMLHA)Ⱥh )‰HcHMAEAMHAEH ȉHHHڄHEHtHH1ʀIEAom1ҾLAmouAuE fAE E"AE"'AątAEfft A}A}fAEA@H\$@HH(|+ 1HA`AE om1Ҿ LAmouAuE fAE E"AE"AąAEȅt A}A}AEADHT$0HHAąD$0AAEnDHT$0HH賫AąPD$0zfAEA*DHT$0HHoAą t$0AAE E9uDAFUHI}ELDH,AA!A"M{1B@u-f.y@ tЃLHB 8u-hfAu1A~ IEH_ DHHEHEA!DHT$0HH2AąD$0=ADDHT$0HHAąD$0wAEAqDHT$0HH&AąSHD$0AIE?DHDHL$(HT$0HHAą|$(HD$0tAHIEADHT$0HH蜨AąHD$0H9AEADHT$0HHAąD$0=fAEAjDHL$(HT$HHLD$0蕥HzLT$(IuE1ɀ|$t D$@-AJ EHHA)MAHr@t@HH)Ht$(H9uELD$0AqHD$(M7ODHD$(L@fDJL9tHHD$(@t@HuH|$@HT$ H4.Aą[HD$ <HH9wAEA(EuVfHAtC} tAVDIDtf.AEtAVDtAELd$@HLLBD4@ Ht$0LH}"eK4AH9D$0p;IAEAAKA@A5A*AAA -,Au1'tA#@ELd$@HDML%PEH PE PE PE PE PE PEPEPDE1 HPLIML AAE!zthA&QA@C~ zHLA9ADOMcL DK|=1D)Hc 0t't/tA#@G$6A|$Hc'IEHE~GA~1H5LGfHL  PL LPHJH9uJ@fD85A4AWf.CAfEAAEEA3A(AAAAAAAAAAAAAAAAxAmAbAWALAAA6A+A AA AAAAAAAAAAAAA{ApAeAZfAVIAUATAUSHPdH%(H$H11HfFHD$@HD$1$ $gfffH\$)ƒ'~xBHl$HDL,DH(L9tWHH1HD5uD$ uH'DuEAEfAFH$HdH3%(uHP[]A\A]A^UIH=3SHLHH H=>1Ltu H=eLH=SLH=FL€1u5H} HHE H:hHHEH[]HzGH_HEH[]HzH7HEH[]HzHHE@AVAUATUSHdH%(H$1%HHt_=!H5?H==HHt7H5EHHHAZ1Ht8u6HH$dH3 %(HHĐ[]A\A]A^@I庀HLL%L5oHLHHHRZ@tA4$@lLIHtHfHLLHZt6@HQH=31@UHSHt8~4CH\sHHcHiH )ˆUH9uH[]JAA1J?D1A?A JD1A?A JD1A?A JD1A?A JD1A?A JD1?  1փ? ff.@HwH1у11ȃ ЈGH9u@AWAE1AAVAAUIATL%UUHSHIH#HdH%(H$1HHHH$1HLJpHH)HHl$IcHHF H11D։DtB Hc@*4 LH uA||H@t&Љ ȉH HDDAI@IAt E$`Hl$E1HLL HLHDžHIB)1Hf.Mc1IHc1Ҹ:LHt @AAAE9uAyZDE A!!D D|$G7yZ AA!!D ADE yZA! !D ADDyZA! !D ADEyZA! !D ADDt$A!E6yZ !D D|$DEyZA A!!D D|$DEyZ A A!!D ADEyZA! !D D|$DE7yZA A!!D ADD yZA! !D ADDt$A! EyZ !D D|$DEyZ A !A!D ADDt$A!E6yZEn !D ADE yZA! !E4nD ADEyZA! !1ȉD D|$DDt$ 11֍nD1DEnщ 1Dt$13nD1 1An1D\$11l$En1ލ nщ 111ً\$ 1DEn11DD3n΋\$11DnDEnщ 1Dt$1E1nD1 1DEn111EnD1DEnщ 111D 1OD‰GGOw []w A\A]A^A_ÐH#EgHGHHܺvT2HGAVIAUATIUHoSHGHHHW?tP@)HALM9A"Et HLLM)I?=IFHLl@oHLH@EoKMoSU o[]0L9uA?DAr\IEHMHID$DITHTH)A.I)r1ƒItH49r[]A\A]A^f.AtAUAT$tATfT[L]A\A]A^HIHJT.HwHJT/H)I)1҉уI<H<9rfDIAUAT$ATT>BD.BD/vBD.fBD/eff.fATLgUHSGH?LHz?)ƒt19rLHfCID$0AD$AD$ HCLHߍHSPCTHto MH{H1HHCPH)KXH[]A\f.71)돋O AWDD_AVAUATUSD6^nAxj׋G3G D!3G V\$ЋW^$DD1\$!3WAʋN Fp $E‰L$A1A1DD^ !D1G;νD\$DEDVDT$A!A1EE|A 1AD!E1DD*ƇGD1D!A1A1DDN DL$E F0D!DnA1D1DGFEDf Dd$D^(A!A1EEؘiA 1AD!1DDDʋ^0D1D!A1DE [D 1!D1DDN,A1DL$G\EA!Df8A1ED"kA 1AD!1DDN4EqDD1!1DE CyD 1!D1DDV<1G!I!1DDD$ Eb%1!1DDD$E@@1!1DDD$ EQZ^&1!1DE6Ƕ1!1DD]/։ 1!1DESD1!1DE ؉ 1!1DDD$E01!1DDD$ E!1!1DE7É1!1DDD$ E 1!1DDD$A0ZEAA1A!A1AA㩉A AD1!1t$DD1!A ogD1 1D!FL*1DD$Ή1AA!B9A1DD$A AD1D$qDD11‹D$ 0"amD1G 81Ɖ11DDD$ ED꾤11DDD$AKAA1A5`KA1AЉApA 1AD1D1D1A ~(D 1G'111DDD$ A0AA1A1AЋT$A2A1D1֋T$ 9ىDD11D11C|A A1A1AD$A0eVĉA1D1AD")Dt$ D D1A *CDG# 1  1DD9Ή 1DDY[e\$  1DE Dt$ щ1DE3}D\$  1DDD$E] 1DEO~oA AD 1DE ,DT$ A1ADE6CDt$ AN 1A~SADEAA A1A5:ADA AD 1Љ3*\$D D1DFӆ[ ]A\A]A^ 1։ 1DƉA4A_ OW GOW H#EgHGHHܺvT2HGAVIAUATIUHoSHGHHHW?tP@)HALM9A"Et HLLM)I?=IFHLl@oHLH@EoKMoSU o[]0L9uA?DAr\IEHMHID$DITHTH)A.I)r1ƒItH49r[]A\A]A^f.AtAUAT$tATfT[L]A\A]A^`HIHJT.HwHJT/H)I)1҉уI<H<9rfDIAUAT$ATT>BD.BD/vBD.fBD/eff.fATLgUHSGH?LHz?)ƒt19rLHfCID$0AD$AD$ HCLHߍHSPCTHto MH{H1HHCPH)KXH[]A\f.71)2AWIAVIAUAATL%R!UH-R!SL)HoHt1LLDAHH9uH[]A\A]A^A_ff.HHconfig.cglobalportserverserver userserver passwordmax member agemax pool connmin pool connMemory error parsing options.pool.confFound conf file %s reading sections Invalid value '%s' specified for %s/opt/alt/freetds11/etc/pool.confTDSDUMPOut of memory allocating fds Out of memory l:c:dListening on port %d bindsocketpairFailed to daemonize %s Error: poll returned %d, %s Shutdown Requested main.ctdspool ShutdownNo %s specified for pool ``%s''. Usage: %s [-l ] [-c ] [-d] Could not allocate memory for pool Error initializing pool mutex Configuration for pool ``%s'' not found. Max connections less than minimum ../../include/freetds/utils/dlist.hring_item->next && ring_item->prevUser logins %lu members logins %lu members at end %d dlist_insert_afterout of memorytdspoolTDS-Libraryiso_1us_englishContext cannot be null tds cannot be null changing database failed member.cpmbr->current_user == NULLpool->num_active_members == 0pmbr->sock.tdsUh oh! member disconnected Got packet from server:writing it sock %d !pmbr->current_user!pmbr->doing_asyncerror creating thread Could not open connection to server %s Error opening a new connection to server Protocol server version not supported WHILE @@TRANCOUNT > 0 ROLLBACK SET TRANSACTION ISOLATION LEVEL READ COMMITTEDCould not open initial connection !ring_item->next && !ring_item->prevCurrent pool implementation does not support protocol versions former than 7.1 member received error while writing member is %ld seconds old...closing No idle members left, increase "max pool conn" No open connections left, opening new member pool_assign_idle_memberpool_process_memberspool_mbr_destroydlist_insert_afterpool_assign_membergot packet type %d user.ctds_alloc_login() failed. pmbr->current_user == puseraccepting connection error calling assert :%s UTF-8user disconnected Got packet from client:JDBCmasterpool_user_query puser->loginuser state %d  !"" @pool_user_querypool_process_userspool_free_userdlist_insert_afterlogin_executeMax concurrent users exceeded, increase in pool.h Unrecognized packet type, closing user Changed database context to '%s'.Changed language setting to 'us_english'.SET ANSI_DEFAULTS OFF SET CONCAT_NULL_YIELDS_NULL OFF puser->assigned_member == NULLNot enough free members...placing user in WAIT puser->login || puser->user_state == TDS_SRV_QUERYSET ANSI_DEFAULTS OFF SET CONCAT_NULL_YIELDS_NULhost %s user %s pass %s app %s srvr %s vers %d.%d lib %s lang %s char %s bsiz %d tds in_len %d in_pos %d util.cpacket_len %u in_len %d readed %d trying to send sending %d bytes packet_len <= tds->recv_packet->capacitytds->in_len < tds->recv_packet->capacitypool_packet_readserver.ctds_env_change() ignoring unsupported environment code #%d !""UacceptISO8859-1block size %s login.cerror: %s:%d: tds7_read_login: tds_iconv() failed ]:Looking for section %s. Found section %s. Got a match. Reached EOF Could not open '%s' (%s). Found conf file '%s' %s. Success: [%s] defined in %s. [%s] not found. FREETDSCONFset programmatically(from $FREETDSCONF)FREETDS(.config/freetds.conf).freetds.conf(.freetds.conf)(default).config/freetds.conferror: no such version: %s servername != NULLCouldn't open %s. Interfaces file %s opened. querytliTLI service. %d.%d.%d.%dtmp_port = %s. tmp_ip = %s. host field %s. Resolved IP as '%s'. not TDSVERTDSPORTTDSHOSTSYBASETDSDUMPCONFIGTDSQUERYLooking for server %s.... .interfacesLooking for server in %s. client_charsettds_config_login: %s is %s. database_nameFinal connection parameters: server_name %20s = %s server_host_nameip_addrinstance_name %20s = %d major_versionminor_versionblock_sizeserver_charsetconnect_timeoutclient_host_nameuse_utf16app_nameuser_namelibrarybulk_copysuppress_languageencrypt levelquery_timeoutdump_filedebug_flags %20s = %x text_sizeserver_realm_nameserver_spncafilecrlfilecheck_ssl_hostnamedb_filenamereadonly_intentopenssl_ciphers %s = '%s' tds versioninitial block sizeswap broken datesenable gssapi delegationmutual authenticationdump filedebug flagsquery timeoutconnect timeouthostFound host entry %s IP addr is %s. emulate little endiantext sizeclient charsetuse utf-16dump file appendinstanceencryptionoffrequestrequirestrictasa databaseuse ntlmv2use lanmanrealmca filecrl filecheck certificate hostnamedatabase filenameread-only intentopenssl ciphersenable tls v1systemfreetds v1.5.16/opt/alt/freetds11/etcunknownautoUNRECOGNIZED option value '%s' for boolean setting '%s'! error: cannot specify both port %d and instance %s. ... $FREETDSCONF not set. Trying $FREETDS/etc. ... $FREETDS not set. Trying $HOME. /opt/alt/freetds11/etc/freetds.conf... Error getting ~/.freetds.conf. Trying %s. Setting tds version to %s (0x%0x). servername != NULL && addr != NULLSearching interfaces file %s/%s. Found matching entry for host %s. Name resolution failed for IP '%s'. TDS version %sset to %s from $TDSVER. Setting 'dump_file' to '%s' from $TDSDUMP. Setting 'port' to %s from $TDSPORT. Name resolution failed for '%s' from $TDSHOST. Setting IP Address to %s (%s) from $TDSHOST. Getting connection information for [%s]. Attempting to read conf files. Failed in reading conf file. Trying interface files. Setting server to %s from $TDSQUERY. Looking for server in file %s. Looking for server in %s/interfaces. Setting 'ip_port' to %s from $TDSPORT. Setting 'ip_port' to %d as a guess. Failed to find [%s] in configuration files; trying '%s' instead. Found host entry %s however name resolution failed. tds_parse_conf_section: %s is %s. UNRECOGNIZED option value '%s' for '%s' setting! Valid settings are: ('%s', '%s', '%s', '%s') Setting ReadOnly Intent to '%s'. UNRECOGNIZED option '%s' ... ignoring. tds_lookup_host_settds_lookup_host0auto4.2505.0707.07.17.27.37.48.0tds_config_verstryesnoonofftruefalse/etc/freetds/tmp/freetds.log.%d(from $FREETDS/etc)etc/freetds.conf/tmp/tdsconfig.log.%d%b %e %Y %I:%M%pVWWVWWVVpWdummy textptrZZZYX[YY[]^]]]]]]x]aaa_____ta`xbPb`bahn(n(nFnFn(n(n(n(n(n(n(n(n(n(n(n(nhn(nhn(nhn(n(n(nhn(nhnhnhnhnhn(n(n(n(n(n(n(n(n(n(n(n(n(n(n(n(n(n(n(n(n(n(n(n(n(n(n(n(n(n(n(n(n(n(n(n(n(n(n(n(n(n(n(n(n(n(n(n(n(n(n(n(n(n(n(n(n(n(n(nhnp'pp'p'p'p'p'pp'pp'p'phpppqJpJpJpJpJpJpJpJpJpJpJp(qJpJpJp(qJpJpJp(qJp@q`qq@q`qJpJpJpJpJpJpJpJpJpJpJpJpJpJpJpJpJpJpJpJpJpJpJpJpJpJpJpJpJpJpJpJpJpJpJpJpqJpJpJpJp:pJpJpJpJpJpJpJpJpJpJpJpJpJpJpJpJpJpqJpJpJpJp(qJpJpJpJpJpJpJpJpJpJpJpJpJpJpJpJpJpJpJpJpJpJpJpJpJpJpJpJpJpJpJpJpJpJpJpJpJpJpJpJpJpJpJpJpJpJpJpJpJpJpJpJpJpJpJpJpJpJpJpqqtds_generic_putEED-%EE%E--%tds_get_data: type %d, varint size %d tds_get_data(): wire column size is %d tds_generic_put: colsize = %d tds_generic_put: not null param varint_size = %d data.ctds_generic_put: null param curcol->column_varint_size646iconv.ciconv_initializedISO-8859-1!conn->char_convsUCS-4US-ASCII(null)tds_iconv_open(%p, %s, %d) UCS-2LEUCS-2BEUCS-2local name for %s is %s iconv_open(%s, %s) failed iconv(%s, %s) failed res %d tds_iconv_open: done ANSI_X3.4-1968ANSI_X3.4-1986ARMSCII-8ASMO-708BIG-5BIG-FIVEBIG5-HKSCSBIG5HKSCSBIGFIVEC99CHINESECN-BIG5CN-GBCN-GB-ISOIR165CP1250CP1251CP1252CP1253CP1254CP1255CP1256CP1257CP1258CP1361CP367CP437CP65001CP819CP850CP862CP866CP874CP932CP936CP949CP950CSASCIICSBIG5CSEUCKRCSEUCPKDFMTJAPANESECSEUCTWCSGB2312CSHALFWIDTHKATAKANACSHPROMAN8CSIBM866CSISO14JISC6220ROCSISO159JISX02121990CSISO2022CNCSISO2022JPCSISO2022JP2CSISO2022KRCSISO57GB1988CSISO58GB231280CSISO87JISX0208CSISOLATIN1CSISOLATIN2CSISOLATIN3CSISOLATIN4CSISOLATIN5CSISOLATIN6CSISOLATINARABICCSISOLATINCYRILLICCSISOLATINGREEKCSISOLATINHEBREWCSKOI8RCSKSC56011987CSMACINTOSHCSPC850MULTILINGUALCSPC862LATINHEBREWCSSHIFTJISCSUNICODE11CSUNICODE11UTF7CSVISCIIECMA-114ECMA-118ELOT_928EUC-CNEUC-JPEUC-KREUC-TWEUCCNEUCJPGB18030GBKGB_1988-80GB_2312-80GEORGIAN-ACADEMYGEORGIAN-PSGREEK8HP-ROMAN8HZHZ-GB-2312IBM-CP1133IBM367IBM437IBM819IBM850IBM862ISO-2022-CNISO-2022-CN-EXTISO-2022-JPISO-2022-JP-1ISO-2022-JP-2ISO-2022-KRISO-8859-10ISO-8859-13ISO-8859-14ISO-8859-15ISO-8859-16ISO-8859-2ISO-8859-3ISO-8859-4ISO-8859-5ISO-8859-6ISO-8859-7ISO-8859-8ISO-8859-9ISO-CELTICISO-IR-100ISO-IR-101ISO-IR-109ISO-IR-110ISO-IR-126ISO-IR-127ISO-IR-138ISO-IR-14ISO-IR-144ISO-IR-148ISO-IR-149ISO-IR-157ISO-IR-159ISO-IR-165ISO-IR-166ISO-IR-179ISO-IR-199ISO-IR-203ISO-IR-226ISO-IR-57ISO-IR-58ISO-IR-6ISO-IR-87ISO646-CNISO646-JPISO646-USISO8859-10ISO8859-15ISO8859-2ISO8859-4ISO8859-5ISO8859-6ISO8859-7ISO8859-8ISO8859-9ISO_646.IRV:1991ISO_8859-1ISO_8859-10ISO_8859-10:1992ISO_8859-13ISO_8859-14ISO_8859-14:1998ISO_8859-15ISO_8859-15:1998ISO_8859-16ISO_8859-16:2000ISO_8859-1:1987ISO_8859-2ISO_8859-2:1987ISO_8859-3ISO_8859-3:1988ISO_8859-4ISO_8859-4:1988ISO_8859-5ISO_8859-5:1988ISO_8859-6ISO_8859-6:1987ISO_8859-7ISO_8859-7:1987ISO_8859-8ISO_8859-8:1988ISO_8859-9ISO_8859-9:1989JAVAJIS0208JISX0201-1976JIS_C6220-1969-ROJIS_C6226-1983JIS_X0201JIS_X0208JIS_X0208-1983JIS_X0208-1990JIS_X0212JIS_X0212-1990JIS_X0212.1990-0JOHABKOI8-RKOI8-RUKOI8-TKOI8-UKOREANKSC_5601KS_C_5601-1987KS_C_5601-1989L1L2L3L4L5L6L7L8LATIN7LATIN8MACMACARABICMACCENTRALEUROPEMACCROATIANMACCYRILLICMACGREEKMACHEBREWMACICELANDMACROMANMACROMANIAMACTHAIMACTURKISHMACUKRAINEMS-ANSIMS-ARABMS-CYRLMS-EEMS-GREEKMS-HEBRMS-TURKMS_KANJIMULELAO-1NEXTSTEPR8SHIFT-JISSHIFT_JISSJISTCVNTCVN-5712TCVN5712-1TCVN5712-1:1993TIS-620TIS620TIS620-0TIS620.2529-1TIS620.2533-0TIS620.2533-1UCS-4BEUCS-4LEUHCUNICODE-1-1UNICODE-1-1-UTF-7UNICODEBIGUNICODELITTLEUTF-16BEUTF-16LEUTF-32BEUTF-32LEUTF8VISCII1.1-1WINBALTRIMWINDOWS-1250WINDOWS-1251WINDOWS-1252WINDOWS-1253WINDOWS-1254WINDOWS-1255WINDOWS-1256WINDOWS-1257WINDOWS-1258WINDOWS-874big5cp1250cp1251cp1252cp1253cp1254cp1255cp1256cp1257cp1258cp437cp850cp862cp866cp874eucJPeucKReucTWhp15CNiso81iso815iso82iso83iso84iso85iso86iso87iso88iso88591iso885915iso88592iso88593iso88594iso88595iso88596iso88597iso88598iso88599iso89roma8roman8sjisthai8tis620utf8char_conv->to.cd == (iconv_t) -1char_conv->from.cd == (iconv_t) -1tds_iconv_info_init: client charset name "%d" invalid tds_iconv_info_init: server charset name "%d" invalid Charset %d not supported by iconv, using "%s" instead tds_iconv_info_init: cannot convert "%s"->"%s" inbuf && inbytesleft && outbuf && outbyteslefttds_iconv: unable to determine if %d means in or out. io == to_server || io == to_clientsetting server single-byte charset to "%s" iconv name for ISO-8859-1 not found iconv name for UCS-2 not found error: tds_iconv_init() failed; try using GNU libiconv library setting up conversions for client charset "%s" preparing iconv for "%s" <-> "%s" conversion tds_iconv_get: what is charset "%s"? tds_srv_charset_changed: what is charset "%s"? EXTENDED_UNIX_CODE_PACKED_FORMAT_FOR_JAPANESEeeeee0f0f0f0f0f f f f f f0f0f0f0f f0f0f0f0f0f f f f f f f f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0feee0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0fee0f0f0f0f0f0fff0f0f0f0f0ffff0ff0f0f0f0f0f0f0f0f0f0f0f0fff0f0f0f0f0f0fee0f0f0f0f0f0feeduduttuu$u4uDuTut.............................................q."Sh$ U J......2aTB I j.3 uS ..... . .... ... ......................................................................................................................................ZG Z5?# (>.64;:?@CF3IYO S6Z=agYnYq\u:x<~>;5??>6;,?>6;3"?-<65<:B3I6U`<j>ux;?84<\6 67@\:<:9B 5\ &:07<3GRZ\:g5x385?79AZ:C3$ 5\@(,:7BH%NCU8[Cb=hDpuC}4;38>8== B 4'.88U@4F9L=VI]\gCp u8=P= $? T#8)= [ 9!$9+18%>3JQD[em\u|93497:4\Z@$Y%G,3+?@I#O V!\Eah pw]|<^=]KK*" <<A A'\-48@@RY\#`=gWqx~G&;<&6&O; T-A.9:>J;Z.j?zJ]5=0 > " [% ^. < :L Y g Cu '{ F K D ' ' D   \ Z  <  ( H (  ^ (  A. !: @ P -\ d <t 1 [   \ 9 ] /  F D &; AI Q =W Rb Fp y  N  C  8 = K B Y D D 2 & C4 1A L KX Fl /x  B  , D X  B ' S 2 >  ( \& . O: \I ] h q y B M U  L  V [ P & Qtds_iconvtds_set_iconv_nametds_iconv_info_initUCS-2LEtds_iconv_allocSJISkoi8sjisL1L8L5utf8iso81big5iso88iso15iso85iso89thai8L6roma8866iso815greek8iso_1roman8R8646L4iso86iso88591iso88598LATIN1iso88595LATIN8iso88599LATIN5850ISO8859-1ISO8859-8iso885915ISO8859-5HZISO8859-9ISO-8859-1ISO-8859-8ISO8859-15ISO-8859-5iso10ISO-8859-9iso88596iso14iso84LATIN6ISO-8859-15ISO_8859-1ISO8859-6ISO_8859-8CNISO_8859-5ISO_8859-9L2L7ISO-8859-6iso646ISO_8859-15C99ISO_8859-15:1998ISO-IR-58ISO-8859-16JPUSiso88594ISO_8859-6LATIN4L3ISO-IR-159ISO-IR-199ISO-IR-6CP819ISO8859-4ISO_8859-16ISO8859-10ISO-IR-165SHIFT-JISISO-8859-4ISO_8859-14:1998ISO-8859-10ISO-IR-101ISO-8859-14ISO-IR-148ISO_8859-16:2000ISO-IR-109ISO-IR-149SHIFT_JISISO_8859-4hp15CNISO-IR-166ISO_8859-10CP949CP866ISO_8859-14ASCIIISO-IR-14862ISO-IR-110GB_1988-80CP850CP950tis620iso82TIS620iso87JIS0208UTF8TIS-620ISO-IR-100ISO-IR-179UTF-8ISO-IR-144CP65001CP1251CP1258CP1255ISO_8859-10:1992ISO646-CNiso88592ISO-IR-138LATIN2iso88597ISO-IR-126CSISO159JISX02121990LATIN7IBM819ISO8859-2macturkiso13iso83ISO8859-7KOI8-TISO646-USTIS620-0BIG5ISO-8859-2CP1256ELOT_928macgreekISO-8859-7CSISOLATIN1CP1361BIG-5cp949CSISOLATIN5cp866ascii_8macthaiCP936ISO_8859-2GB18030ISO_8859-7TCVNIBM866iso88593CP874LATIN3cp850CP1250cp950CSISOLATIN6CP1254ISO-IR-87ISO-IR-57MS-ANSICSASCIIIBM850ISO-8859-3ISO-IR-157ISO-8859-13CP862cp1251ISO_8859-3cp1258EUCCNcp1255ISO-IR-226CSISOLATIN4ISO_8859-13US-ASCIICSSHIFTJISEUC-CNCSISO14JISC6220ROUHCROMAN8KOI8-Rcp1256GEORGIAN-PSISO646-JPcp936CSBIG5cp874JAVAcp1250CN-BIG5cp1254UTF7ISO-IR-127VISCIIECMA-118UTF-7UNICODE-1-1CP1252macUCS-4LECP1257cp862CHINESEMACGEORGIAN-ACADEMYCP932ARMSCII-8CSISOLATINARABICIBM862ASMO-708KSC_5601KOREANCP367GB2312CSISOLATIN2JIS_C6220-1969-ROHP-ROMAN8GBKGREEK8MULELAO-1CP1253CP437CSKOI8REUCJPUCS-2LECYRILLICECMA-114eucJPUTF-16LEMS-CYRLISO-IR-203EUC-JPmac_cyrGB_2312-80CP1133CN-GB-ISOIR165CSISOLATINCYRILLICMACTHAIISO-2022-CNKS_C_5601-1989CSISOLATIN3ISO_8859-8:1988ISO_8859-5:1988ISO-2022-CN-EXTISO_8859-9:1989MS-EEKOI8-Ucp1252UNICODE-1-1-UTF-7ISO-CELTICcp1257CSISOLATINGREEKISO-2022-JP-1CSUNICODE11WINDOWS-1251WINDOWS-1258WINDOWS-1255CSISOLATINHEBREWcp932TCVN5712-1CSVISCIICSISO57GB1988ISO_8859-4:1988WINDOWS-1256UNICODELITTLETIS620.2529-1EUCKRX0201MACINTOSHX0208eucKREUC-KRJIS_C6226-1983WINDOWS-1250WINDOWS-1254IBM367MS_KANJIcp1253ARABICcp437EUCTWKOI8-RUeucTWIBM437VISCII1.1-1EUC-TWCN-GBKS_C_5601-1987WINDOWS-874JOHABISO_8859-1:1987CSISO2022CNUCS-4BEISO_8859-6:1987ISO-2022-JP-2TCVN-5712WINDOWS-1252WINDOWS-1257ISO_646.IRV:1991ISO_8859-3:1988CSUNICODE11UTF7CSIBM866ISO-2022-JPWINDOWS-1253JIS_X0201JIS_X0208EXTENDED_UNIX_CODE_PACKED_FORMAT_FOR_JAPANESECSKSC56011987UCS-2BEGREEKMACICELANDJISX0201-1976UTF-16BEUTF-32LEMACCROATIANUNICODEBIGTIS620.2533-1CSISO58GB231280ISO_8859-2:1987ISO_8859-7:1987MACROMANX0212CSHPROMAN8CSISO87JISX0208JIS_X0208-1990ISO-2022-KRBIG5HKSCSTIS620.2533-0CSISO2022JP2BIG5-HKSCSCSMACINTOSHCSHALFWIDTHKATAKANACSISO2022JPMS-HEBRJIS_X0212-1990CSPC862LATINHEBREWHZ-GB-2312JIS_X0208-1983NEXTSTEPCSGB2312JIS_X0212CSEUCKRBIGFIVEMACROMANIACSISO2022KRHEBREWBIG-FIVECSEUCTWANSI_X3.4-1968MS-ARABMACCYRILLICANSI_X3.4-1986CSPC850MULTILINGUALIBM-CP1133UTF-32BEMS-TURKJIS_X0212.1990-0MACCENTRALEUROPEMACTURKISHMS-GREEKMACARABICWINBALTRIMMACUKRAINETCVN5712-1:1993MACGREEKCSEUCPKDFMTJAPANESEMACHEBREWAoAoÓåAoAostdoutstderr (%s:%d)%s:%d%04x%02x%c%Y-%m-%d %H:%M:%Slog.ccolcol->column_datatype %s has value "%s" type %s has value NULL type %s has value %d type %s has value %f cannot log data for type %s Starting log file for FreeTDS %s on %s with debug flags 0x%x. no memory to log data for type %s hiiiiiiihhiii`iiiihiiiiixhtdsdump_colspidnvcuvcSQL AnywhereOpenServerSET TEXTSIZE %d MSSQLServeracceptedrejectedIP address pointer is empty Server %s not found! No server specified! invalid port number detected crypt flag %d ASA_DATABASEUnknown protocol version! login packet %s %s,%dusing NTLM authentication for '%s' account requested GSS authentication but not compiled in quietly sending TDS 7+ login packet 0 && 0x700 <= login->tds_version && login->tds_version <= 0x704NT login not supported using TDS 4.x or 5.0 Kerberos login not supported using TDS 4.x Encryption not supported using TDS 4.x    6tds7_send_loginU SELECT @@spid spSELECT CONVERT(NVARCHAR(3), 'abcEXECUTE ('SELECT CONVERT(UNIVARCHAR(3), ''xyz'')tds_dynamic_deallocated() : freeing dynamic_id %s tds_dynamic_deallocated() : cannot find id %s tds_release_cursor() : freeing cursor_id %d tds_release_cursor() : freeing cursor results tds_release_cursor() : freeing cursor name tds_release_cursor() : freeing cursor query tds_release_cursor() : cursor_id %d freed tds_cursor_deallocated() : freeing cursor_id %d tds_cursor_deallocated() : cannot find cursor_id %d tds && tds->out_buf && tds->send_packetalloc_compute_result. num_cols = %d bycols = %d alloc_compute_result. num_comp_info = %d mem.cres_infotds_free_all_results() conn->in_net_tds == NULLS1000S1T0008S0124000280004200001003080042100021S01010002200821S02220012200342S2142S1242S2242S112201842S0242S0123000250002200522012220073700042Stds_realloc_sockettds_free_connectiontds_free_rownet.caddr != NULLsocket creation error: %s Connecting to %s port %d connection established getsockopt(2) failed: %s getsockopt(2) reported: %s tds_open_socket() failed tds_open_socket() succeeded send(2) failed: %d (%s) tds != NULLtimeout_seconds >= 0tds && bufferselect(2) failed: %d (%s) tds7_get_instance_ports(%s) instance info%15s %s ServerNamedefault instance port is %d InstanceNametcpIsClusteredVersionnpviaConnecting with protocol version %d.%d tds_setup_socket: connect(2) returned "%s" error: poll(2) returned %d, "%s" rc == 0 || (rc < 0 && (sock_errno == TDSSOCK_EINTR || sock_errno == EAGAIN || sock_errno == TDSSOCK_EINPROGRESS ))tds_select: invalid interrupt handler return code: %d poll_seconds == timeout_secondstds_goodwrite(): timed out, asking client tds7_get_instance_port: timed out on try %d of 16 error: expecting '%s', found '%s' tds7_get_instance_port(%s, %s) tds_goodwritetds_selecttds_addrinfo_set_port%lu.%02u%lu.%04u ](\K7AǺmZ{c^y55aw̫& . d'@Bʚ; d'@Bʚ; TvH rNZ@z~Ƥ#oxEc] d#NJ-^kc6ŭ5@-JEHJҷR <.;<П^O a%>Crm М,tF@~" 7&K[Am-ſtM1D [8 d7aBMr菇+Η{KFՠ6L;KzĆZ@" PĬCVe_)c\a%qߵ|oʕCz PpbZ0٣r!c[ζf{Rs$o,P6\m#/H[=u&'OE",Bbِe9|Viz:>8Jb5ia"ʔ@Mn201#~WϽO?헧d8nj'FE9N 6%z~ XwiZ<dtG^vd!vwQ_LjS2u/[!%W#>>O2;MrmgmsV$@}J4 FԅʻaakKJ:FUf14$%u]]F[ 8js&1K8et,5+wxP=1*莾dy)euwqIn{o  !!!packet.cconn && packet!conn->in_net_tdstimeout Sending packetpacket->data_start == 0Received MARS headerReceived packetconn->recv_pos < packet->data_len && packet->data_len <= packet->capacityconn->recv_pos <= packet->data_len && packet->data_len <= packet->capacityReceived MARS with no session (%u) Write attempt when state is TDS_DEADRead attempt when state is TDS_DEAD tds_packet_readtds_connection_networktds_packet_cache_addsp_cursorfetchquery.clen <= stream->buf_lenSYSNAMENCHAR(%u)NVARCHAR(%u)IS_TDS7_PLUS(tds->conn)@P%dsp_execute''0xNUMERIC(%d,%d)DECIMAL(%d,%d)UNITEXTFLOATTINYINTUNIVARCHAR(%u)BITUNICHAR(%u)IMAGESMALLMONEYSMALLDATETIMEREALVARBINARY(%u)UNIQUEIDENTIFIERNTEXTNVARCHAR(MAX)SQL_VARIANTDATEDATETIME2DATETIMEOFFSETBIGTIMEBIGDATETIMEUNSIGNED SMALLINTUNSIGNED INTUNSIGNED BIGINTVARBINARY(MAX)Unknown type %d sp_executesqlsp_preparecreate proc as sp_prepexectds_submit_execute() sp_unpreparetds_submit_unprepare() %s select 1 where 0=1rpc_name DECLARE @P%d SET @P%d=@P%d OUTPUT EXEC sp_cursoropenprow_number && prow_countsp_cursorclosesp_cursoroptionsp_cursortds && multipleOFFtds_submit_optioncmd() SET ANSI_NULLS %sSET IMPLICIT_TRANSACTIONS %sSET CURSOR_CLOSE_ON_COMMIT %sSET NOCOUNT %sSET QUOTED_IDENTIFIER %sSET ANSI_WARNINGS %sSET DATEFIRST %dSET DATEFORMAT %sSET TEXTSIZE %dSELECT @@options what! optionval = %d BEGIN TRANSACTIONIF @@TRANCOUNT > 0 ROLLBACKIF @@TRANCOUNT > 0 COMMITtds_disconnect() tds_put_data_info putting param_name tds_put_data_info putting status p && start <= end && (end - start) % 2 == 0s[1] == 0 && s < end && (end - s) % 2 == 0e && query <= e && e <= query_endtds_send_cancel: %sin_cancel and %sidle tds_send_cancel: sending cancel packet tds_cursor_declare() cursor id = %d tds_cursor_open() cursor id = %d tds_cursor_open (): RPC call set up tds_cursor_open (): cursor open completed tds_cursor_setrows() cursor id = %d tds_cursor_fetch() cursor id = %d tds_cursor_get_cursor_info() cursor id = %d tds_cursor_get_cursor_info: tds_process_tokens returned %d result_type=%d, TDS_DONE_COUNT=%x, TDS_DONE_ERROR=%x ----------------> prow_number=%u, prow_count=%u tds_cursor_close() cursor id = %d tds_cursor_setname() cursor id = %d tds_cursor_update() cursor id = %d tds_cursor_dealloc() cursor id = %d tds_cursor_dealloc(): freeing cursor multiple->type == TDS_MULTIPLE_QUERYmultiple->type == TDS_MULTIPLE_EXECUTEtds_submit_optioncmd: returned option_value = %d IF @@TRANCOUNT > 0 ROLLBACK BEGIN TRANSACTIONIF @@TRANCOUNT > 0 COMMIT BEGIN TRANSACTIONP@PPPPPPPPPPPPPPPPPPPP hh00hp`@@ p`@  `p`@0Pp0%YtYY%Y%Y%Y%YUY%Y%Y%Y%Y%Y%Y%Y/Y%Y Y%Y%Y%YX%Y%Y%YXX%Y%Y%Y%Y%Y%Y%YvX:XXWY WV|V W W W WY^Y Y^Y^Y^Y^Y^Y^Y^Y^Y^Y^Y^Y^Y^Y^Y^Y^Y^Y^Y^Y^Y^Y^Y^Y^Y^YXXfXWWfXfXfXfXWfXfXfXfXfXfXfXqTfXzWfXfXfX\WfXfXfXAW&WfXfXfXfXfXfXfX WVqTXWtds_multiple_executetds_multiple_querytds_multiple_donetds_cursor_get_cursor_info tds_submit_rpctds_quoteout_stream_writetds_send_emulated_executetds_get_column_declarationtds7_write_param_def_from_querytds7_put_query_paramstds7_write_param_def_from_paramstds_skip_quoted_ucs2letds_next_placeholder_ucs2leSET ARITHABORT OSET ARITHIGNORE SELECT @@optionsSELECT @@datefirSELECT DATEPART(SELECT @@textsizread.ccurcol->char_converror: tds_get_char_data: discarded %u on wire while reading %d into client. tds_get_char_data'stream.cstream->buf_len >= lens->allocated > s->sizeib >= tempTroublesome bytes:left > 0stream->buffer == (char *) tds->out_buf + tds->out_posstream->buf_len == tds->out_buf_max - tds->out_pos + TDS_ADDITIONAL_SPACEError: tds_convert_stream: tds_iconv returned errno %d, conv_errno %d Error: tds_convert_stream: Gave up converting %u bytes due to error %d. No conversion possible: some bytes left. tds_dynamic_stream_writetds_staticout_stream_writetds_dataout_stream_writetds_dataout_stream_inittds_convert_streamin tds_push_func tls.cin tds_pull_func_login have >= 0in tds_push_func_login Got name %s xn--in tds_pull_func handshakechecking hostnamecreating bioinitializing tlsloading CA fileloading CRL fileinitializing sessionHIGH:!SSLv2:!aNULL:-DHAlt names number %d handshake succeeded!! %s failed setting custom openssl cipher to:%s setting default openssl cipher to:%s handshake failed with %d %d %d tds_pull_func_logintds_pull_functds/8.0avgvarpmaxminsumstdevpchecksum_aggvarTDS5_PARAMFMT2ORDERBY2ROWFMT2LOGOUTRETURNSTATUSPROCIDTDS7_RESULTTDS_CURINFOTDS7_COMPUTE_RESULTCOLNAMECOLFMTDYNAMIC2TABNAMECOLINFOCOMPUTE_NAMESORDERBYERRORPARAMLOGINACKCONTROL/FEATUREEXTACKNBC_ROWCMP_ROWTDS5_PARAMSCAPABILITYENVCHANGESESSIONSTATEEEDDBRPCTDS5_DYNAMICTDS5_PARAMFMTAUTHDONEDONEPROCDONEINPROCMSGtoken.ctds5_process_result2 num_cols=%d col %d: column_name=[%s] colsize=%d prec=%d scale=%d elem %d: longbinarybitbit-nullsmalldatetimedatetime-nulldecimalfloatfloat-nullimageunsigned tinyintunsigned smallintunsigned intunsigned bigintinteger-nullsmallmoneymoney-nullUCS-2 textnumericrealuniqueidentifiervariantvoidxbinaryxcharx UCS-2 charx UCS-2 varcharxvarbinaryxvarcharxmldatedatetime2datetimeoffsetuser-defined table typebigtimebigdatetime[for parameter]no meta data setting up %d columns type/wtypesize/wsize %-20s %-15s %-15s %-7s utype %-20s %15s %15s %7s %-20s %7d/%-7d %7d/%-7d %7d %d hidden return parameters stored internal cursor id %d processing compute column %d compute column_size is %d TDS_OP_CURSORCLOSE TDS_AUTH_TOKEN PDU size %u Got invalid size %u tds->conn->collation wastds->conn->collation nowtds5_process_optioncmd() received option %d value %d Eating %s token Unknown marker: %d(%x)!! 7.02000 SP12012-2019TDS_SUCCESSTDS_FAILtds_process_login_tokens() Product name for 0x%x is %s MicrosoftProduct version %lX ZZZZZ[%s]out of memory (%d), %s @nnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnPnPnnnnnnnnnnnnnnnnnnnnnnnnnn@n@n`n`npnpnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn`mooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooxooohoooooXooHooooo8oooooooooooooooooooooooo(oooonnonnnnnnxnhnooooooooooooooooooooooooooooooooooXnHn8nooo(noooooooooonnmmmmoooommmoooooooooooooomxmhm؁xxȁ( xx؀( XxxxHx8(xhxxxxxxxxx8xxxxxxxxxxxxxxxxXHxxx8(xx(xxxxxxxxxxxhxxxxXxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxHxxxxxxxxxxxxxxxxxxxhxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxXxxxxxHxxxxxxx8xhxȀ$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$Ԑ$$$$$$$$$$$$$$$$$$$$$$$4$$$$$$$t$$$$$$$$$$$$$$$$$$$$$$$$$$$$̑$$$$$̔$,$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$|$$$$$$$$$$$|$$$$$$$L$$$$$$$$$$$$$$܌|܋` 9 Ғ```` 4$Lħt ԦԦĩ td4Ԧ t̨------------------------------tds_process_row(): reading column %d adjust_character_column_size: Server charset: %s Server column_size: %d Client charset: %s Client column_size: %d flags=%x utype=%d type=%d server type %d varint=%d tds_process_nbcrow(): reading column %d tds_get_data_info(%p, %p, %d) %s processing result. type = %d(%s), varint_size %d processing result. column_size %d tds_process_param_result(%p, %p) error: tds_process_param_result() returned TDS_FAIL tds7_get_data_info: colname = %s type = %d (%s) server's type = %d (%s) column_varint_size = %d column_size = %d (%d on server) processing TDS7 result metadata. set current_results to cursor->res_info set current_results (%d column%s) to tds->res_info tds_process_tokens(%p, %p, %p, 0x%x) tds_process_tokens() state is COMPLETED processing result tokens. marker is %x(%s) tds_process_tokens::SET_RETURN stopping on current token processing parameters for op %d calling tds_process_param_result processing tds5 compute names. hdrsize = %d processing tds5 compute names. num_cols = %d processing tds5 compute names. num_comp_info = %d tds_process_compute_result(): compute_id %d for %d columns logic error: compute_id (%d) from server not found in tds->comp_info found computeid %d in tds->comp_info processing compute result. num_cols = %d processing tds compute result, by_cols = %d processing tds7 compute result. num_cols = %u processing tds7 compute result. compute_id = %u processing tds7 compute result. by_cols = %d processing tds7 compute result. num_comp_info = %d processing tds7 compute result. point 0 processing tds7 compute result. point 1 processing tds7 compute result. point 2 processing tds7 compute result. point 5 tds_process_tokens(). set current_results to cursor->res_info tds_process_compute() found compute id %d tds_process_compute() FAIL: id exceeds bound (%d) tds_process_compute() FAIL: get_data() failed tds_process_tokens: return status is %d Unrecognized TDS5_DYN type %x tds_process_end: more_results = %d was_cancelled = %d error = %d done_count_valid = %d rows_affected = %ld tds_process_end() state set to TDS_IDLE tds_process_default_tokens() marker is %x(%s) leaving tds_process_default_tokens() connection dead tds_process_env_chg(): %d bytes of collation data received changing block size from %s to %d server indicated charset change to "%s" tds_process_default_tokens: return status is %d oops: cannot process option %d of size %d 2008 (no NBCROW or fSparseColumnSet)looking for login token, got %x(%s) server reports TDS version %x.%x.%x.%x tds_process_login_tokens() returning %s tds_process_info() called with unknown marker '%d'! tds_process_info() reading message %d from server tds_process_info() calling client msg handler Msg %d, Severity %d, State %d, Server %s, Line %d %s tds_process_info() returning TDS_SUCCESS TDS_INT_CONTINUETDS_INT_CANCELTDS_INT_TIMEOUTtdserror(%p, %p, %d, %d) OpenClienttdserror: returning %s(%d) TDS server connection failedRead from the server failedUnable to open socketUnknown host machine name.Write to the server failedunrecognized msgnotdserror: client library returned %s(%d) msgno == TDSETIME || rc != TDS_INT_TIMEOUTmsgno == TDSETIME || rc != TDS_INT_CONTINUEexit: %s(%d) valid only for TDSETIME state < TDS_VECTOR_SIZE(state_names)tds->state < TDS_VECTOR_SIZE(state_names)logic error: cannot change query state from %s to %s Changed query state from %s to %s Buffer exhausted converting characters from client into server's character setCharacter set conversion is not available between client character set '%.*s' and server character set '%.*s'Error converting characters into server's character set. Some character(s) could not be convertedSome character(s) could not be converted into client's character set. Unconverted bytes were changed to question marks ('?')Some character(s) could not be converted into client's character setBoth port and instance specifiedAttempt to initiate a new TDS server operation with results pendingBad token from the server: Datastream processing out of syncDB-Library capabilities not accepted by the ServerUnexpected capability type in CAPABILITY datastreamError in closing network connectionUnable to connect: TDS server is unavailable or does not existUnsolicited event notification receivedNegotiated login attempt failedError in sending out-of-band data to the serverTDS server connection timed outUnexpected EOF from the serverServer name not found in configuration files.Read attempted while out of synchronization with TDS serverUnknown message-id in MSG datastreamUnable to set communications timerUnrecognized TDS version received from the serverLocal configuration error. Check TDSDUMPCONFIG log for details.Ȫ8xѪretnametdserrortdserror: client library not called because either tds_ctx (%p) or tds_ctx->err_handler is NULL IDLEWRITINGSENDINGPENDINGREADINGDEADtds_set_statewrite.clen >= 0client->min_bytes_per_char < 3tds_put_string.%06luTDS_AUTH_TOKEN noncechallenge.cDraining %d bytes NTLMSSPKGS!@#$%store_monthname: %ld %s convert.cjanfebmaraprmayjunjulaugsepoctnovdecjanuaryfebruarymarchapriljunejulyaugustseptemberoctobernovemberdecemberampm ,store_dd_mon_yyy_date: %s apmAPMstore_time() nanosecs = %d %lubuf%07dyestds_willconvert(%d, %d) %u.%02u%u.%04utds_convert_money() %ld%.9g%.*f%.17g00000000000p0000000(0@X000000000000000000000000000000000000p000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000HHtttttttttttttttttdecimicrosecond && dr->decimicrosecond < 10000000tds_willconvert(%d, %d) returns %s srclen >= 0 && srclen <= 2147483647u%08X-%04X-%04X-%02X%02X-%02X%02X%02X%02X%02X%02X@ ``@p@ @@?AACC(C6 C(C6 6 A6 CCGG?OO__QXQ@FQHQdate formatdate-only formattime-only format@._locale.cdefaultAttempting to read locales.conf file /opt/alt/freetds11/etc/locales.conf@                                                                                                                                     )4%/7(3-!0,1'8"5.*2$  91)! :2*" ;3+# <4,$?7/'>6.&=5-%  (08@ '/7?&.6>%- 5=$, 4<#+ 3;"* 2:!) 19:2*" <4,$ >6.&@80( 91)! ;3+# =5-% ?7/'6666666666666666\\\\\\\\\\\\\\\\;, `|+|S00P H@  P 0l @0@\Pt8`dP #$&DP&`&p'*-P1023 485pp689 9DP:;=@?dp??0A0BB<BPC| GGH pHlHJpMPSP0TpUU PVpVWW40[]_ ``\`|a b0h<jt~p ( H 0  P,!p@!@!0!"`8"pL"0""p"##4#H####0#@#p$8$L$$@$$$$%D%%%% %0%@ &` &4&H&&P& '@L''0'''(@H(t(()D)\)P))4*@t*p**0*+P0+P+d+p++`,H,p,-L-d- |---p .Pp..00/////P/p/0(0@0 X0 p0@ 0` 0 0 00 1 @1 \1 x1` 1 1 202`T22@23303333P3p3  4D4`4t4@445@5t55@56$6 @6!6"6#7$T7$h7`%70&7@7A7 A8PA8@BD8pB`8B|8C8E9G<9Gh9H9`H9H9H9I9PQD:Qp:pR:R: S:@T4;X;Y;Y;@Z;0[0<`[D< ]<]<^<^=Pbt=f=`g=Ph>lH>o>q>q?yL?{?|?~@T@@h@@@@A(ATAAAPAA0B@XBPBB BC\CВCC0DpDDМD E E 4EPEEEEE FpF@FPF`FDGGоGH 0H`HHH H@ITIP|IIPI0JtJ0J K 8KtKKK L`L LLpM`HMMMMN8N LN@hNN@NNNDOOOOP@dPPPPQPQHQQQQpQR$R@PRPdR`xRRR S@ PS S ST 8TLT`T T`TU`UU V HV"V %W%XW@)W*W +X.X0\X1X2XP3 Y04HY5Y8Z :|Z@TZT [X|[@d[Pj\p\ q\Pq\q\r\@uP]z]0{]|^0}4^p}`^}^}^0~^@~^~ _~4_P_p|__ _`L````a0T (.FLH D`  AABE 8 /FGA H(G@/ (A ABBF \ x2FBB B(A0D8G 8A0A(B BBBI ;lXA4$ 7EAG A DAE @ DAC `\ 81BEE E(A0A8D@ 8A0A(B BBBE F 8A0A(B BBBH  |9)AT K D` 9BEE E(A0D8KPs 8D0A(B BBBG J 8A0A(B BBBD D 9_HX $:]FEI D(D0^ (D BBBD J(A BEB` 8:FEE B(D0H8F@s 8C0A(B BBBE J 8A0A(B BBBD L:dFBB B(D0A8GP 8A0A(B BBBA HX=RBBL E(D0D8D` 8A0A(B BBBG L?FBA D(G0P (F ABBA  (G OBBF 8XAFBA A(D0e (A ABBA 0ATEl G I0PDy!(Ab8!$PEA D(D0Q(D ABB"x9As0"AO,L"<BAA  ABK H|"uFBB B(D0A8Dp} 8A0A(B BBBD "1NZH"zEh K A #hEG  AH 8(#SDJ mDAU SDA$d#XMEAG }AAL#FOB A(A0q (A BBBG a (A EBBA #v#l-L$FEB A(A0 (A BBBH g (A FDBA T$H h$D|$PAb$8$FBA A(G0t (A ABBE 4$ dEDD0p AAA D CAH %D)JT4%X4H%dQFDA J  AABC %E J A G H%#FEJ J(D0C8DP 8A0A(B BBBF %EG | AG 0&xJAG ~DAL ,H&tFNA  ABA (x&T1NHJ DA4&hhFED F(D0E(D ABB&(QV&)JWGL'FBA A(D0 (A ABBD d (C ABBA <d'hOAA  ABI XH 0'AMD  DAI NDAL' FIH D0  AABG \  CABF V AAB((t<(aJUAX(l(`Y`0(dEFK s DAB NDA( ( 0Hg((0 EHD  AAK ) !JL4) :Ee F 4P), EAD ^ DAC \CAH) FEB E(D0D8DP 8D0A(B BBBA 8)x FBA A(D0 (D ABBG (* FDA AB<*0hEi B \*Ef$p*/AYB FAK*XH J A * L*=FBB E(A0A8G 8A0A(B BBBF (+tFAD ^DB4D+XBAA e DBI YAB|+8+BBK I(A0f (C BBBH 8+ BED D(F@h (A ABBE L,`FBB B(A0A8D9 8A0A(B BBBK (X,EID0A AAK ,&EV E A,rH0C E @,LYED A(G@ (A ABBA u-0H-FBB B(A0A8DP 8A0A(B BBBG d- pED m AI - pED m AI @- !rFDD F0a  AABG T  AABH T-\!FBB B(A0A8H Q GH 8A0A(B BBBH PH.$`FBJ E(A0A8G  8A0A(B BBBH .( .|)Ec H tD.H*FBB A(A0G 0A(A BBBH L/-FDB B(A0A8D 8A0A(B BBBA Ll/P1 BIE A(G0r (D DBBJ l (A BBBA /2vH/2BBB B(A0A8D 8A0A(B BBBB 8 0L:$BBA D(G0 (A ABBG 0\0@<BAC G@  AABF @0 =FBH A(D0DP+ 0A(A BBBD P0>gFEF A(A0 (A BBBD : (F BBBA (1@"$<1@QECG }CAHd1AFBE B(A0A8GP 8A0A(B BBBK 41\BqFDD x ABG YAB1B>(1BFDA rCJH(24CFBE A(A0 (D BBBB D(A EBBt2D>24DW 2DAg H e K @2 E BEE D(C0G`x 0A(A BBBF $3F+EG I  AH @,3GBBB D(D0GP 0A(A BBBG p3I0dK3ID3PJgBGB D(A0G1 0A(A BBBH H3xKDBBB B(A0A8DP 8D0A(B BBBD H04|MBBF B(A0A8Dpm 8A0A(B BBBG H|4 OBEB E(D0D8G 8A0A(B BBBB 84PMBBD I(GP (A ABBF L5QlBEB B(D0A8G 8A0A(B BBBH LT5VFEB D(D0G`ihSpYhA`h 0A(A BBBF $5W3EDG `AA5W5W5hX\6X/BBA A(D0 (C ABBE U (C ABBC ` (C ABBA h6Y=|6Y6Y+6Z86ZFED F(G@ (A ABBH L6X_"BBB B(A0A8G 8A0A(B BBBF HD78a FEE E(D0A8G 8A0A(B BBBF 7|j 7xjEJ AE L7dkwFBB B(A0A8G 8A0A(B BBBE H8oFBB B(A0A8Gr 8A0A(B BBBG Ld8s?FBB B(A0A8D 8A0A(B BBBD 88vFBA D(Gp (A ABBA 8x$9x@tK<9yFBA A(D) (A ABBC L\9p{FBB E(D0D8JP 8A0A(B BBBE (9@La C G I ] K L94FED D(G0U (D ABBH e (D ABBB $(:HEGD0lFAP:́:EJ ]I@p:FBB A(A0Dp* 0A(A BBBF L:hFBB B(A0A8G6 8A0A(B BBBK @;FBB A(A0DpT 0A(A BBBD HH;DjFBB B(A0A8D@ 8C0A(B BBBD H;h{FBB B(A0A8D{ 8A0A(B BBBI (;oEADP= AAG 8 <FBA A(DT (A ABBH LH<rFBB B(A0A8D 8A0A(B BBBD ,<ĚSFAA O ABF $<-EDG XCA@<FDD } ABB N ABG a ABD (4=XSEAD e CAA 8`=}FBA A(D0l (A ABBH 8=МFAA } ABH S CBA @=dFEE D(C0Ji 0A(A BBBF 4>OFG T CAD PX (T>qHG t CAH (>LqHG t CAH <>MAA V ABH f ABG ><Ej I C ?Ч  ?̧EV8 H P TѼ\ djy\Ź˹ӹٹ߹ !"#$% \ ' &4(<EFYYd m@B-/12źӺD8 9:#?/3;<L;_=o>GAKɻZԻ]^;<= =&"')(06&'6(&<)>D#HS^*o+c={=>Y,,\f ȼ-Լ./01 2'3$405<6H7T8_9j:u;<=>?5½8ͽ9ؽ:=<>@;?$A/3:BEPC[4f5q6|7\D@¾\j̾3׾68:;< =>?(\9D3P3a4m5y56677ĿԿ8߿899 ::%;0;@<K<[=f=v>>??EDF@DFDD DB$B3BD@JGQHYI`JgAnAwAA89:?34589:(?4345KLMNOPQRKKS$T,U7VBJRZ`iqyZWXYYZZZ[[[[CCCCCC~v%-$1=]OZɾ\J\hqz I]]^^!FDB) .5<CJQX_fmsy !&'(689:;<=>689: ;<=$>-?6?<YBYIZNCTC['v~qh%z  $ 3 P TѼdjyŹٹ߹ !"#$%&"')(<)^*o+,ȼ-Լ./01 23$405<6H7T8_9j:u;<=>?@$A:BPCDEFJGQHYI`JKLMNOPQRS$T,U7VWXYZ[J\I]^ 1BN>VY` >a >b H?c ?d 0@ x@3N@4N @N (AN `AXN A)N AN B"N {<N (B6N HB$N <#NxB1N B,NB(N <!N B-N<N (CZN PCN xC&N <NC =o d $$o0h  %PT!x3 oo ooo%e e0e@ePe`epeeeeeeeeeff f0f@fPf`fpfffffffffgg g0g@gPg`gpggggggggghh h0h@hPh`hphhhhhhhhhii i0i@iPi`ipiiiiiiiiijj j0j@jPj`jpjjjjjjjjjkk k0k@kPk`kpkkkkkkkkkll l0l@lPl`lplllllllllmm m0m@mPm`mpmmmmmmmmmnn n0n@nPn`npnnnnnnnnnoo o0o@oPo`opooooooooOGA$3a1d_ GA$3p1113zMGA*GA$annobin gcc 8.5.0 20210514GA$plugin name: gcc-annobinGA$running gcc 8.5.0 20210514GA*GA*GA! GA*FORTIFYGA+GLIBCXX_ASSERTIONS GA*GOW*GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realignGA*{-GA$3a1`Ŕ GA$3p1113GA*GA$annobin gcc 8.5.0 20210514GA$plugin name: gcc-annobinGA$running gcc 8.5.0 20210514GA*GA! GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realign GA*GOW*@GA*ԭGA* GA*GOW*@ GA*FORTIFY GA+GLIBCXX_ASSERTIONS GA*FORTIFYGA+GLIBCXX_ASSERTIONStdspool-1.5.16-1.el8.x86_64.debugz27zXZִF!t/_)]?Eh=ڊ2N1=,'Gla_-8@x_O?1Ԥ4oR)1ΟQ>Y{9?@Q\v>W4?j6!EZpmᥰe\LK0~$Vw9K}}u̕%D, n.ՋIHnbYiXjZ0Qǣo sMn™ϰ\pEK+5Wn#i2wVz/-ـ~ Rs<ƷH X[M:M'*E'"?])JPG RQTd{Cck0x,ܢ!uZ4P{yږࡦyi>+~H=J̳<-E@=yug{8k7_KB2{Yw?HhIo=rq3 4N]Ls7uzĽ'a.)HDxTs,*amhww4!k񓠅j/q[疛DW^/ V0o~!WK :@ C񕆓!ݠAt]m}ӓPM%ri۲纷 i#i %DG!^^$MT}'R2np"UbBՖ>`s[061TWR3.aM w5 5 '!KN,4|h*"xf>jV~_/?h!漺ۧ,+}!s;-Zߎ(]Di㘹wZgd:L0R|zeҌü掄%-]Zgs 2r YTEW& t}2K1QL 7gɟW ЮcEz'TyxGw=:̅Q&G1R*FVݲ)X'AEAe᧼fCKNLc ABZ_{':H _j:Zh^/ho+?ъ;QP~nY4O dX@nQ uDdUe' o`\68k7/07>bZ $)״:mrr|}2C RչEÊ]Fތ;fpz8l.z1?!M+AN?f qaKW5 ]G(Q89Z "L[ 9$@ P |M睭lp2p1R څm [͍Bq3RJOsI/~25YZjI4gZ%kbq)/UU^ж恬{xUTU5j)Wjz9Ǵ[+T xWҽ i%ѳcWdEP]I* a!tzؔ)Q)7 GAy.ix::APpӚH :~FD_?9ȇz^@D镭ߓ{#T W05lcwx1]o9TRoA^6ic 3>C6;~f` gqS'(-V3dta.1ߤBA^}"WP>- \1[ķw;/) ZoS%6s &j4慘E4xT'u/RY`Dm=i瑩oCt5VעE@`GHtkaFtuaPgm\ilǧ]\P;HNƢT?-j= TEh2IٯC\7Op `+N7`zgt*8?C2\ bmLxZOgBH/g#Iw][6*23KPw63)Ku:"AdDou5>l\(I+J8)jI@:ϓP w2bB2xk h5sreot9U7h| 1[xaޟ|r56HEF19a鎓^~_jT ĉ,o}0ݩX=CȌ{ 9n3TJbռO]ZI:g1YqH(%'r FiK禺qfsYi:[9L,Wn\,48DHl+HTC]4?5/r!=b_% !ocQ-Vڷ$W[AB `}{4cMqxz /n3{aen;`c57(ng]؄ dξʓU;i찡{T π <$&ð'5K_k}LCT 9]ѧn&@ yg\}к!(X2.?) $Z[ g`.͔<^)T71x)@=^XV:;h6\nctAl1lxSA϶CP;h zF0uD|$D 9  л% 5O?-1b1 vc'dlv]3ޥv7pƂ[Yk1zُXw25`0*߸H7[?ݣB/5@n^Ԯ)N GXwIn  g7b\t 1sI.7eip|4-͂^)^3k %wO)z(M P٣WVONbBx@K;6ˍ+ME8Slir(0Xm qJ_`q !w7VKFNA10u%#5)M?T4=|"2>KB(tjvI tD2_bHuV7nJç%9Ƶ "-sΔ+%#De73l|zs>A< !ړT!Q@?x^>3"Tl1_-HIՉ"cr E`]#O}AoOFRոݦf5~ nF l?-gpo܆XO'/<.L*xYzzN59kmy=;kG*LQqɠ Pa.m{Yz_+& ʿ oZc/26ޒtF .RM/w3b)7+L:ӄ$t9Ғw̺.Ƽd+uibj\ O h<Iv!O>_ i|& ̍ A~n&`4?T/n\NXAIE|k)QίEy̡j?sI1.)񬍞%S5Dey{&jVW@h~+p]ΥAb9c7{ӀĒݗ,*"ƶpHJi~ŷ *ZsYyr*y]ٴP&%b"a1ǐ7FXS/G #19*٠辝%c#xG9s&oR0w 9J~KWul P 2)9LRҋhl}3 Z˕SZKB>{EUHn.5Y/!ahH~ǟp-*$ b{Ć L UBklJ?Fȼ|CWICiO,s կAXǶj#Dim(\,<Ԛ?R`g >"-vɑ3j{#ϭwiطMưl%tOĒsL9b9fIwԱn`O:yN6k$Ю9B{l[>:D.^餳×:q 4m[@( 0PԿ41;U,=5G*ϽRQfo3#̇xYmdoLq:+ 젪dA؄v&h}TZAF@I A܆ފd^NgQZBwHȺxnϑtҽKE;ˬ$Ɍf5N4WĿ{L*V8(()'&.Eϯw!Vh4>:C<7,R7'p} +#|'8ئؑȎ#T/C99MKZ=IeӃF*KcùЈ!%q>ᶸ.y.ZLV]0HgYZ.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.data.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata  & 4$Go004Q hh@Y aopno  }!!x3BTTPddee oo zz  xx, ^$$ $  %0 % %  % 0 Pe   ,(/Tl->PKj5]m usr/bin/tsqlnuȯELF>0@@8 @@@@hh $$ )- $$00 DDStd PtdJJJ QtdRtd$$))/lib64/ld-linux-x86-64.so.2GNUGNUGNU:ÒWm?8uɬaL}!)fUa92GLp3i,,OL/ |2# T; )?JViv4 O: , a?" [p *]# DBUm'+4 ZTjDb'% t@ke^^%6=rw.XsUd|&XwHh$ 0$>@$`$ $H$libssl.so.1.1__gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTableSSL_writeSSL_set_connect_stateSSL_shutdownSSL_CTX_newSSL_CTX_get_cert_storeSSL_readOPENSSL_init_sslSSL_CTX_set_optionsSSL_get_errorSSL_get_peer_certificateSSL_pendingTLS_client_methodSSL_set_optionsSSL_connectSSL_CTX_freeSSL_set_bioSSL_CTX_set_default_verify_pathsSSL_set_cipher_listSSL_CTX_set_verifySSL_get_stateSSL_newSSL_CTX_load_verify_locationsSSL_set_alpn_protosSSL_freelibcrypto.so.1.1BN_num_bitsGENERAL_NAME_freeX509_LOOKUP_fileOPENSSL_sk_numBIO_meth_freeBIO_meth_set_ctrlX509_STORE_set_flagsX509_NAME_ENTRY_get_dataBIO_meth_set_destroyRSA_public_encryptRSA_freeX509_get_subject_nameX509_freeBIO_freeASN1_STRING_to_UTF8BIO_new_mem_bufBIO_set_dataBIO_meth_set_readBIO_get_dataX509_load_crl_fileBIO_newOPENSSL_sk_valueRSA_get0_keyRAND_bytesPEM_read_bio_RSAPublicKeyBIO_set_initBIO_ctrlOPENSSL_sk_pop_freeX509_STORE_add_lookupERR_clear_errorBIO_meth_set_writeASN1_STRING_lengthX509_NAME_get_index_by_NIDCRYPTO_freeBIO_meth_newASN1_STRING_get0_dataX509_NAME_get_entryX509_get_ext_d2ilibpthread.so.0sendtopthread_cond_timedwaitpthread_mutex_initpthread_cond_destroypthread_cond_signalpthread_condattr_destroypthread_cond_initpthread_cond_waitpthread_mutex_lockrecvpthread_mutex_destroy__errno_locationpthread_mutex_unlockpthread_condattr_initsigactionpthread_condattr_setclocksendpthread_mutex_trylocklibc.so.6socket__xpg_basenamefflushstrcpy__printf_chkexitsetlocalefopenoptindstrrchrperror__stack_chk_failreallocstdinsocketpairmemchrgetpidkillstrdupinet_ptonstrftime__assert_failrewindlocaltime_rstrtodstrtokstrtolisattyfgetscallocstrlensigemptysetgetaddrinfomemsetstrstrtcsetattrmemcmpgetnameinfoeventfdgetsockoptgetoptpoll__fprintf_chkgetpwuid_rstdoutfputcfputsstrtok_rmemcpyfcloserand__memmove_chksetsockoptmallocstrcatstrcasecmpnl_langinfo__ctype_b_locgetenvoptargstderrioctlalarm__snprintf_chk__memset_chkgetuidstrncasecmpgethostnamefwriteiconv_closegettimeofday__memcpy_chkclock_gettimestrchr__vfprintf_chkiconviconv_opentcgetattr__ctype_toupper_loc__strcpy_chk__ctype_tolower_loc__cxa_finalizefreeaddrinfo__vasprintf_chkfcntl__sprintf_chkmemmovepthread_selfopterrstrcmpstrerror__asprintf_chk__libc_start_mainGLIBC_2.3.3GLIBC_2.2.5GLIBC_2.3.2GLIBC_2.14GLIBC_2.4GLIBC_2.8GLIBC_2.3GLIBC_2.7GLIBC_2.3.4GLIBC_2.17OPENSSL_1_1_0/opt/alt/freetds11/usr/lib64:/opt/alt/openssl11/lib64        o@si M ui Y ri e q ii | ii ii ii ti   ui Y  m m $$Ќ$P{${ $ $@$PH$pP$`X$`$@$0$$p$о$$`ȷ$0з$ط$$$P$$$P $@$ЩH$P$X$0`$@$$0$ $$@$Щȸ$0и$ظ$$$$$$ $H$X$@h$x$$$$$Pȹ$ع$Ȟ$$($h$($8$H$X$h$x$ $$P$1$Ⱥ$غ$$L$$g $($0$|8$`$pp$$%$$T$c$-л$r$ v$|$$ $0$@$P$`$p$$2$$$$м$$$$$ $0$@$ P$`$p$ $&$,$4$:$@н$F$L$R$X$^ $d0$j@$rP$y`$p$$$$$$о$$$$ $ $&0$4@$DP$T`$`p$l$x$$$$п$$$$$ $0$@$*P$5`$Ap$Q$T$Z$c$l$u$|$$$$ ${0$@$P$`$p$$$$$$$$i$$$ $0$@$ P$`$p$"$$)$5$E$Q$_$m$i$y$ $0$@$P$`$p$$$$$$$ $$#$.$9 $D0$O@$ZP$e`$op$z$$$$$$$$$$ $0$@$P$`$p$#$-$7$B$M$W$a$k$u$$ $0$@$P$`$p$$$$$$$/$?$J$Z$e $u0$@$P$`$p$$$$$$$$$$$$2 $D0$S@$]P$g`$vp$$$$$N$$$$$$ $0$@$P$`$p$ $ $$$$Y$e$q$}$$ $0$@$&P$*`$4p$E$Q$]$f$p$${$$$$ $0$@$P$`$p$$$$$$$$$ $$ $!0$+@$6P$F`$Np$U$^$l$z$$$$$$$ $0$@$*P$ v`$p$$$$$$L$$S$$ $  $ 0$- @$: P$G `$T p$a $n ${ $ $W$N$$ $ $ $  $ 0$ @$ P$ `$ p$ $ $ $ $ $ $ $ $ $ $  $ 0$ @$" P$( `$. p$4 $: $@ $F $O $Y $b $k $t $} $  $ 0$ @$ P$ `$ p$ $ $ $ $i$$$$$ $0$@$P$`$rp$$$$$2$$$$$$ $0$@$P$`$ p$$$&$:$@$F$L$R$X$^$d $|0$@$P$`$p$$$)$5$E$Q$_$m$y$$ $0$@$P$`$p$$$$$$e$$$$$ $$0$@$P$`$p$&$*$4$E$Q$]$f$p$$$ $0$@$P$`$p$$ v$$S$m<$<$<$@i$<$<$<$$j$$$"$0$9$B$$$@$`$h$ $0$H$@$H$P$X$`$h$p$x$$ $ $ $ $ $$$$$$$$$$$$$$$ $($ 0$!8$#@$$H$%P$&X$'`$(h$)p$*x$+$,$-$.$/$1$2$3$4$5$6$7$8$:$;$<$=$>$?$@$A $B($C0$D8$E@$FH$GP$HX$I`$Jh$Kp$Lx$M$N$O$P$Q$R$S$T$U$V$W$X$Y$Z$[$\$]$^$_$`$a $b($c0$d8$e@$fH$gP$hX$i`$jh$kp$lx$m$n$o$p$q$r$s$t$u$v$w$x$y$z${$|$}$~$$$ $($0$8$@$H$P$X$`$h$p$x$$$$$$$$$$$$$$$$$$$$$ $($0$8$@$H$P$X$`$h$p$x$$$$$$HH!z$HtH5t$%t$hhhhhhhhqhah Qh Ah 1h !h hhhhhhhhhhqhahQhAh1h!hhhh h!h"h#h$h%h&h'qh(ah)Qh*Ah+1h,!h-h.h/h0h1h2h3h4h5h6h7qh8ah9Qh:Ah;1h<!h=h>h?h@hAhBhChDhEhFhGqhHahIQhJAhK1hL!hMhNhOhPhQhRhShThUhVhWqhXahYQhZAh[1h\!h]h^h_h`hahbhchdhehfhgqhhahiQhjAhk1hl!hmhnhohphqhrhshthuhvhwqhxahyQhzAh{1h|!h}h~hhhhhhhhhqhahQhAh1h!hhhhhhhhhhhqhahQhAh1h!hhhhhhhhhhhqhahQhAh1h!%i$D%i$D%i$D%i$D%i$D%i$D%i$D%}i$D%ui$D%mi$D%ei$D%]i$D%Ui$D%Mi$D%Ei$D%=i$D%5i$D%-i$D%%i$D%i$D%i$D% i$D%i$D%h$D%h$D%h$D%h$D%h$D%h$D%h$D%h$D%h$D%h$D%h$D%h$D%h$D%h$D%h$D%h$D%}h$D%uh$D%mh$D%eh$D%]h$D%Uh$D%Mh$D%Eh$D%=h$D%5h$D%-h$D%%h$D%h$D%h$D% h$D%h$D%g$D%g$D%g$D%g$D%g$D%g$D%g$D%g$D%g$D%g$D%g$D%g$D%g$D%g$D%g$D%g$D%}g$D%ug$D%mg$D%eg$D%]g$D%Ug$D%Mg$D%Eg$D%=g$D%5g$D%-g$D%%g$D%g$D%g$D% g$D%g$D%f$D%f$D%f$D%f$D%f$D%f$D%f$D%f$D%f$D%f$D%f$D%f$D%f$D%f$D%f$D%f$D%}f$D%uf$D%mf$D%ef$D%]f$D%Uf$D%Mf$D%Ef$D%=f$D%5f$D%-f$D%%f$D%f$D%f$D% f$D%f$D%e$D%e$D%e$D%e$D%e$D%e$D%e$D%e$D%e$D%e$D%e$D%e$D%e$D%e$D%e$D%e$D%}e$D%ue$D%me$D%ee$D%]e$D%Ue$D%Me$D%Ee$D%=e$D%5e$D%-e$D%%e$D%e$D%e$D% e$D%e$D%d$D%d$D%d$D%d$D%d$D%d$D%d$D%d$D%d$D%d$D%d$D%d$D%d$D%d$D%d$D%d$D%}d$D%ud$D%md$D%ed$D%]d$D%Ud$DHH=ih$H=Uh$Hf.f鷂AWAVAUATA1UHSHdH%(H$1D$HHD$XHD$`D$LH5.HQ IHE1E1HD$(HyHD$D$4HD$8HD$ HD$HD$@HgHDC3e HcH> c$ Hc$Hhc$Hc$HPc$H=c$ 1D$4Hnc$HD$(|H]c$HD$8kH|$H=Bc$HD$KLH=$c$I/H|$eH=c$HD$ 0c$@H|$9H=b$}HD$H|$ H=b$]HD$ LH=b$?IHb$Hb$_L5H x(MMLLEx'LMLEx&ML@HEx*MHEڀx)LLEڀx%LLEҀx$LLEʀx#HEx"HEx!HEʀx IDAVL5AUAVL5ATAVL5UAVSHSHASSHARSHAQL SHAPSHWSHVH58SQH QH RHQH OpL1LHc-1Ld$(LMtH1HHHHxHHt)go -HxL~HH5,a$/H7a$@LL MtW|$4uP3 LiHHS HH5JfhHAĉD$4E, `$ 1H|$ H|$F H=`$ H=_$ Ht$LN Ht$8Ly H5L H5L Ht$L H|$tHt$Ls MLLW H|$ HtVhH|$ LH|$H|$LH|$1"HD$H HD$HHt H{} HD$H HHH HHH0HD$He H|$HD$LHGHqHHth1ZIHMt ^$Ha^$[HH8HL6H$dH3 %( HĘ[]A\A]A^A_MH={IHt[I1LLHHHX HHHHML|LH1H HLfHHtH=]$HaH|{1H5]$HtoHH]$uQH ]$H=]]$H1jk]$u'H5* H=)]$zH|$H ']$ H(HD$XHD$PHVHD$pLl$hHD$`Lt$PHD$L|$ D$HH|$H D@1DD$H\$?HD$hHHl$h1A@DH\$H|)HHl$h L|L HLIHHI9wILLXLHxHl$hHD$hHz|$pYHT$H5h1DAMǐAMfAMfAMfAMfHcYP$H=P$H.HL1H[1]A\A]A^H[]A\A]A^f.[1]A\A]A^H FfH58H=8vfDS@H -HPdH%(HD$H1O$HHD@1DO$XHڋ H!%tDHJHDщ@HHH)`HD$HdH3%(uHP[+ff.Ht HH:uËOHH51AWAVMAUIH5ATIUHSHH(dH%(H$1HL$H$HL$Hf.H$H|$]HHu|HLH3?HM<$HH3ITH9wI}HPHLM<$I}L HII$XHtAgH<$NH$dH3%(uVH([]A\A]A^A_t8H=M$HHI1H=_AWE1AVAUATAUHSHt$L$dH%(H$x1HD$,HD$f.Ht$i1HhAŅ D$D$`D$,=o3==uD$uHHfD$D$yH|$@1H$uHL$HHEH+L$8Ht$@HS㥛 HH+t$0H?H1HiHH)H L fHT$PHH)D$`)B HD$PHEH\$XHx DEtH5,L$H=K$hHt$1ҹH|gtD$,=t =^HAHtE1fxfDs{]7{HSHv {btHHuKdMA'H~ /x/EtH5wK$MVH$H$HPID9HJSdjEtH K$MH=H7HfD=D$HE@L$LH HLT$AAA1$CDLT$CL$fMкHLD$XHD$P1H H\$PD$hHD$xHEHHLl$XHx /@H=I$TH5J$H=I$H1H I$DH|$01E1qD$,=I$H51EI$AHDH hVH5HD1O1H$xdH3 %(HĈ[]A\A]A^A_1fxuJfH5I$H=H$=HHH5H$HHHx8HH@9H5H$H=RH$kff.USHH谦xHH[]@H aH$H=H[]f.DH Ht!HqH $HP0HP8HP@HHfSHH0#H{8H{@H[HtwHtrAUIATUHSHftF1fHEH؀xv!L`HML+eI<$Ht I$EH9HL[]A\A]ff.@SHH?dH{[H{RH{IH{ @H[7SHH?$H[ff.ATUSHGHHtHǀƀHGf{HHE1 f.HJ,HtMHHtHDžHHtWHDžH}HtHEPHtHSID9HsHtHC HtHCft5HHt-1fDH$H{HHt.HGHtHǀƀHGo usH{=$Htf=$H{ HtI=$ufH[5D[fDK1Ht<H=R[[==$DH'<H=-14[%KH=1H= [xfDH=HZw<1ZH{"DH=Hb<1ZH{ DAWIAVIAUIXATEUSHdH%(HD$1H$HH@}HHCPHcHCHHcLHA|$HcoHC Ht^IcLHIHBHHtTHHt HHHuHCHL$dH3 %(Hu*H[]A\A]A^A_DH1^@HZHff.fSHH=;$Ht$uvHCHH9u;HH9t8HHu=q;$tCNHeg:1H="Y$HCH@HH|$HHD$HH[fDNH:1H=XHt$cfHUSHHHH(HtHPHǃ(HsPHt/f.HHsPHuHsHHHtHsHHHuJGHb-H{5HqH{H0H{0Ht HC0H{8Ht HC8H{@Ht HC@HHtfDH/`HHuHHHtH/8HHuHHt@H/HHuHHt@H/HHuHHH[]fDH 8H5H='ATAUSFHHf HH-HHCHC HC0HC8HCxHHHHHǃHHǃHHHC@HCHHCXHC`HChHCPHCpHEumHHHH`HǃHHmHHhHσH[]A\H= H=HILDnHHIDbH1>ff.H#UHSHHHHHHԶHHH{۶H{ ҶH{0ɶH{xH贶H訶H蜶H{8蓶HHtbHvHjH^H{@UH{HLH{XCH{`:H{h1H{P(H{pHHH[]Dff.@AUIATAUI|$SHrHHt4@ @ 1DcfCHMtH{LLDc HH[]A\A]H9wrSHHtX[HtSfDH8HHu[fDAUATUSHHHHHHW(HCH9wtW4umHDj(AADl*D;hw,D` EHJD HCH؉k H[]A\A]DHHHt DhfDH1[]A\A]H OH5H=\ff.HCATUSHHHHHt#HPHtHǂƂH@H H{HL#I$HC@A$H9t6I$H8H1@HHH9wHHHLHHtDH/0HHuH{8HtgH/HHuH[]A\@I$HUHiHHs@HHt@H/HHtH/HHu{U0SHHHH@1\HHH1uHC:HHP H߉k ǃHDHCH1HǃHǃ5uA1H{HfC@袰u.HHǃHHH[]H1VHH[]ff.ATIU8SHHHL` Lch(L@f+ukHKu_1HYuM@HHt2ǃ@IHtDHHHH[]A\fDL`,H8H H1[]A\DHHD$HD$H[]A\DHtfff.@HtWSHHG G(HHCH; HH{HCH{HC[ff.@hB~,)Ntt~R3Ntz4NtbH=N=.Nt1Ðb th~d H=0f` }1DH==$Nt=&NufDH=@H=H=H=HHN\T`H=ztH=HHNHHt f842HfvuzH=뱐B @H=SH=@1D v) 7 uH=fDS(~Zq+ +ni+Zn+f+jH=̿fDt~PL>%jH=B(_%H={GsFp2H=,[fD/N.j>H=HH=UDG~2c0s!H=UDH=f2=51@3(H=@H=nH=a1uD~B?n>%H=uk&fD, H= )@ H=Nf.DH=b|@ HH=u)H=]DH=EH=ټ2DH=BD @4H=(@F$FJtGeH=ǻfn#mjH=(fr-DH=qXH=EH=λ-H=bD H=DH=FCH=DyH=L@H=i1fDZ(H=sEDH=S%DH=@H=h@H="@H=~@H=@H=@@H=T@H=@H="@H=@H=&t@H=ڹd@H=T@H=D@H=z4@ ~|h&f lH=@;  :!(+\G'x ~.H=ָQ';+H=Q#1'H=x%+| ^.7uVH=f.  \0H=@;DH=xgB|I*LDX H=\RF'HH=7O< \>8 B H=ffDCTH=t| VH=[H=C? ~b  ~4H=hH='fH=QRH=F@\H= +DH= x$H=XH=޵8!, H=:1f9R ~RuVH=Pf.= B |2BPH=@SDH=xN u0 j & u*H=LfDH=. H=H=,H=%o?DLH=x|P$H=X6BH=Z8 BH=:=H= =<H=UfBH=R>x`RCH= wH=Ȳ]H=H޲HNFfD` H=tH= pb6H=Lf.# .: X~l H=( ,H=H=fH=\\ bH=fD1^43H=Q<t~Tu,H=H=JH=lH=r&H=&c@ y~`  H=j<@H=` (l*u\H=RwH=^7 B) H=Nf.'dH=DB AH= uD$H= XH=8mH=anqH=0f~b4H=@V|H=JaH=íDH=l@H=\@xSgS0@0fVDH=,@H=@H=R @H=Z@H=@H=p@H=f@H= @H="@H= @H=@H=ά|@H=l@H=\@H=L@H=<@H=Z,@H=n@H= @H=N@H=@H=v@H=0@H=V@H=@@H=@H=,@H=|@H=l@H=ҫ\@H=L@H=<@H=Z,@H=«@H=p @H=*@H=@H= @H=`@H=n@H=Ϊ@H=@H=@H=|@H=l@H=\@H=L@H=<@H=ު,@H=Ȫ@H= @H=r@H=@H=@@H=f@H=@H=@H=0@H=@H=|@H=Щl@H=~\@H=L@H=Щ<@H=,@H=@H= @H=@H=@H= @H=B@H=\@H=R@H=0@H=@H=|@H=l@H=\@H=L@H=֨<@H=,@H=@H= @H=T@H=b@H=@H=l@H=>@H=F@H=ʧ@H=@H=|@H=ܧlH=`H=TH=HH=֧HH3HHHHH۟HŸHןH @H4@HcH>fDHHѠHHHH~H`HCH-HHHHǟHHH{HoHEH,HHHH؞HHHHzHaHJH2HHH֝HHHHHcHJHwAUATUSHHHt^f}tWI1L-&DHELH4HPx4EH9v7= $t։L꾕z1H= >'뼸H[]A\A]@H1[]A\A]ff.Ht3USHHfH;Hk褘HH虘HuH[]DAVIAUIATL$UI|$HSLHLHHyHt"HpHHe(IE1[]A\A]A^IEAWAVAUATUSHHT$HAE1E1H$DDAALH>xjAHUM)ˉ)f:GA~y/IHt7H@MtIGHEu艊DH$f.H<$AHD[]A\A]A^A_H$E1@HD$H4$H0fUH[HSHHNH?H f?ft_Hs(HtVDCDC DF0u5N"8N t,AF!~A9EȉșC=$H[]fftHG`HHC(sH~(}tHs(eF"AfHG`Hp"u·H}HC(Hu覷H}HC(fHG`H@HF(HLNH1H=PH1#XZ ff.AWAVAUATUSHH=$HzHHǃ跉H_%IHiHHHHLhH=c$fA}E1fDIUAHH,ԇHL}8Lu@LH趇1HH衇1HH茇Hu0H譋HuLH藋HE8H8uLLrHH豈H߉‰E UX  ʉ Ƀ@ ʃ@  ˆUXOH߉EԆH -XfEE9LH訃EGHtgT$D$]E1ɨ tHL $ L $DMtmIq@HD$D$HUCf:DGG|8D$E1c1HL$dH3 %(uH([]A\A]A^A_HUCHf:DG1DD$ނD$ItIy0DD$ L $9HtD$L $DD$ q蒒fAWAVAUATUHSHzH"HHIHH{0eLk0LH膺fA}E1L5SL=fIEHJ萁HHs8豅HH C CXƒ ЈCX͂HCRfAf=u +E1D$1EHD$@Ld$ HD$$HD$HHD$HH@HYHEHAi~DAED$CEHl$E1E1Hl$(2fHU1HAHnNd E9HHHЍTA)GyLd$ IcHl$EtH|H袊uL@1f=HT$8DH_D$~Ld$8Hc|$HHHtL$1fDI$Md$HTH9HB}<H1p}HH|$8>Ht$hdH34%(7Hx[]A\A]A^A_fLhHHHD$Lt$(H(HD$LhD$MdIHHzmI>MH.HhuM9t(I1HHHD$H(EHl$D$ELd$ Ld$8fT$HH!f.HD$HD$ Ld$ L$ILd$ Hl$IcH|HĈuLd$ @HH>HHHkHoHHHHHHHHŋHHڋHaHЋHHHߊH4H,HыHH͋HHHHQH{HHĊH؊HHnHLHHHHH]H;HHFHHWHcHSHHHHH"HGz=#ATAUHSH^H.vHs8HOzHvЉS EHEfH^wHCuH9GfHHHIHHtkL`H1fA|$u/Jf.HHr1HgrAD$9vI$1HH4y[]A\f[L]A\4@L됉ATUHSrHr脩HHIHH{0Lc0LH fA|$tO1&HHDq1HqAD$9v%I$HH4y[]A\[L]A\l@H|LufATUHSHHf8P#rEHAqHЉƉU UX  ʨ{   ˆUXcpHAfDDH$IH={1fD wH੄ HD$D$ Ht$H߽?A@Ev D$( l$ l  AHD$D$ /Ht$HAHD$ H"H5HcH>HD$D$  Lt$H߽LZdAM HD$HH;蔞HD$HD$  ADHD$D$ / H߽ A}DHD$HD$ 7AMDHHt@:HD$HD$  h=#Dt=HH*E D9}HAH4H*HE A9\H9u=p#f.AHrDHhHDfHAfA / HLl$@fA<LH߹hAV1HD@fHLpPMu M6MtI~LvuLHe)HHx.H#f<HSffDHD$HD$  Af.HH HpHHt= #vHHt@:HD$HD$ 9Ai AHe HD$HD$ A@HtHD$ D$ RAąqAH4HfDHD$HD$ W  A-DHD$HD$ g BADHeHAdƒ⿀tPv< HD$d$ E1=Y#ƃDDHe,1H=unDHD$HD$ JAąHcH< c DHD$HD$ O jdHbdH߉8c=#A@|tAHL0Av 9NHH4L0HAV 9,H9u@H1AZH=tHD$D$ H|Hc=#DH{c=#AHCb=#~DHfHH=o#"QHL,L豚=J#fEu Mu0t%EIlFHIbfAFI9u #[ E AT$E1L$I#M9T IEHJ,0TaH߈E`ibHHfE^jHE8H8u}`?H}8H_Hu fHAHD$D$ WDH߽AgHD$8Ha=#D HaHT$81HAt$AGD$,k=# t$,1HHHo=#K QHL$LژD$,Lt$8fEl$ l$,E1LHIHEI6J<(H8]HIMvM9uH|$8l$,E1 D$(f@D$ d|$(EAAfHHAHD$D$  DH߽A=# HHt!FD~@fFDu H;譠DHD$ADH)uH=p1Uf@O LH\=# E1ErfDIHJ,i^H߈E`^^fE^HE8H8u}`dH}8H(\H/H_H߉E^H u/f#MuiM HHHf8tH]1H^IE9=#DH@r[1H=qoH?r\H=To1MufDHH#D$H=(oHPLL$(1LD$ H_AX=^#yHG#H=n1ZfH|$8HH HhA=#q AV1HE1\DH`\H<=0A{\=# H%H= n1?f.H߽3\=L#Hυg/H=m1xH߽ [= #WHW4H=m18[=#0HR+H=Mm1f.H߽s[=#H4H= m1<H߽03[=L#Hτ)H=l1xZ=# ZH7&H=l1;f.H߽Z=#HO4H=Jl1|{Z=# H%H= l1?f.;Z=T#0H҃W)H=k1{f.H߽Y= #WH'0H=k18Y=#HRw.H=Mk1f.{Y=#H.H= k1?f.;Y=T#H҂.H=j1{f.HHuf}E1DEID9HEHJ4HPyڀ=#mHƆyH=Qj1AN1HgEH=*j^#EfDt$HUH=i1*f.L0cAH߽ X=$#oH3H=i1PLHYD@=#Ll$0@LHAąiH:W<=#tHz5'H= i1?DC AHD$HHH; HD$^ ALBHÀ'H=~h1V=#HJ(H=Eh1w}V=# H*H=h1AHV=]#*@1fAF8L0WAw0E1sHt$HAHHHDD$ HD$ ?U=#6Hn$H=ig1HU=#HD$0HHtYfxtRHL2Bu$HHtp uANd~ INH H HD$0Hv1HUH=fHH\1H=f6DH E1H=sfHHHx.HCT< Lt$HL AMtA&HD$D$ H9T=R#H}G.H=e1uDDHx1H=eHAH=e1H~%Z=#XDH8%[1H=YeAN H~Z1H=5ei@dIIF0H@fAF8EIlDDHIRfAD$I9u1HH=dHH<Ų1H=daH~E1H=sd'DH~1H=QdHAeH=4d1fMH*H=d1GkAHǀ21H=c$lHExH=c1A@H}]1H=cLMIFH=#AMAEDใɃB fAED9HKf0H=Ec1wHD$0HtHHe'H=c1EH;HQH|$0 baHe(H=b1AMIfAVAAUIATUS1HdH%(HD$1Ld$HDLHLu!$-wD$AEfH؉H\$dH3%(u H[]A\A]A^`fAWIAVAUATUSHH8dH%(HD$(1QH QAAAAA A=0#JHƃHt@n;f;HMtA/HHf8CQHŀ=#fEƃC1HƃfEHHDfAHЃHL$(dH3 %(H8[]A\A]A^A_1HH~ׄH=`fEuDfEyj=#1H}H=~`11HHHrHHt$ HFLt$ D$ fDAGu$LL|$ LL>FMuۄF@H,QyHD$ LȌL|$ MuHfD+OHc3HhHxHt$ HFZ롐AE1AξfAfEHB|AH1fEH=A_AP1nZYmLHHD$ HpPHt$Ht^FLt$AGu L迂L|$LL>F/MuۄtgH4y;D$ L苂L|$MuǐD$ gHXDHxHD$@/fL8HD$DHrPD$ Ht$H0!\f.AVAUATUSHH dH%(HD$1=X#HE=HnHcH>D=#H1L1HL@HL$dH3 %(K H []A\A]A^DAHzH=J]I17rHt T=#tHzgH= ]1=DH߽{ffDH6O=1#jHf8(HKHJHAJHAJ<<=#@1H߽J11H4DHfH8Hq1H1_JZf.HAHx1H(KH߉Iƒ⿀t<w=#ƃ1@HpIDHc1H1IHHDH~HDHt$Hl@HpYfHI=1#HH(H!HHPH=#H1I1H߉HHHȻHf8zHI1H߉HHHCHA3CDC$9nEujfEtdHHtXHHEfDE1HD)0BDA;1HurH=S$1HA1DHwq‹H=bS=#+HAHVԋH=4SHHh4QHHqw1H= S=Ht$HL$A1H2quH=RH|$MH|$M0AWIAVAUATUSH8dH%(HD$(1=#{D$fDLx@=ѽ#htpL6uIf8hPD=#%HL$(dH3 %(D$LH8[]A\A]A^A_@ILD0@؃ L?LD$?L?LD$?LA?DD$@EADAA DA A A'A r<A sAtA suLT=w#QL ?IHxK@ILHp@5E1ÅLA>L>D L >L >L HL$If=I?=ƻ#_D$fAfD7<H(HtHPIHǀ(D$ADAq&AI=:#LSf2f.LT$HH=OPHn1=#^_|LT$D1HSH=gOMR<f?|$DIALLfDkE1IHxH&H5&SE1GKHAAH(H1HLQ-IPwIWRf҉]D%=_I?=#_@H=8Nپ'1HrR\I?@ILAHpg0٬HmIH=M1 mDIAfDLQILlf2{fIAfDL[QYIALKfD9ILMKf:fD$ D$H QH=L+hL$HPH\l7H=LH PHE1I"KfAWAVAUATAUSHHXdH%(HD$H1fH)D$)D$ )D$0;HD;H߉D$0L:HfD$8<:D$;AtwAbA5=n#Ll$#LA蕆HL$HdH3 %(DjHX[]A\A]A^A_t?fDD$: D$=#AHLl$:IuHIڭH߉D$n9AHLЉL$ 賭H|$D$D$Ht?uHHt> FHLHD$HjOH1HFAƃ6H8IuHT$ T$ 2Dt$AHf9t$ Hluf%H߃9D$4D9&H|$(5|$E[H;A.AuL$0:B5HG Hx=#HG LHHPH;H0L萄=I#H\jH=I1@H=A@H7ff.HcHD7H9s HHHWH9wff.H(dH%(HD$1H=HL$H4ׂCi4$HH?HHH)H|$dH3<%(uH(wCAVAUAATIUHSH@dH%(HD$81=.#` a H0# fD9t PHuH0H}%PfIH@)D$H feA)F T$+fT$(H $\$ D$$HD$LHDl$,LHD$LU=#H|$>#NHD$uu#N=%#ty%H dd1AHeH=Ed=#tCH CdAH}d'1H=df=#=#uHt$8dH34%(HH@[]A\A]A^ÃL =e#tH cvHAIQHcHH=ycY^HHk1H=UcNH#uDH ZctHu)H DcAH)d1H=c:t gH bH b뻀=#H bH juH5bH=c:R@H jvH5ybH=c:AUATUSH(dH%(HD$1IA9t>H jHcH>=#AfDHt$dH34%(DH([]A\A]fDVMAD$4A$Au=>#tDH2j5 LH 1HcH=_akLL<A$P}ADŽ$Atf=#Hiؾ2H LB1HbH=`6E$fLLE$HXf H LB1H_H=]H(fR H LB1H_H=U]H *fFH58]H='_5H fEH5]H=^c5:f.@ATUSHLIX LVL9CtH[]A\h wAKdÀHtHHL$%:HL$HKdHpHt H:HKdHxhH[]A\AVAUATUSDo0A EHHJL)L4AvhoAF8oJANHoR AVXH:Ht 9IF8H{Htr9JL)HD@H{HtT9JL)HDHH{Ht69JL)HDPAEE0[]A\A]A^fDH1!1Hf.HH@ATUSW0Ht$1HHH)H<u9k0wދhC0t41H@L$I$p5I$x59hwǃh[]A\f.AT1AUHSHHt H4DHH[]A\.AWAVUUUAVE1AUAATUSHH(dH%(HD$1Ld$Hl$fLHH譼…D$=t(|-wD$t E'EEELMfAxuIH=bLIA8HHHH=bIAHH A)ʍB'HH=_bIq8HIHH A)ʍBHfD% fDHƹH=atH\$dH3%(H([]A\A]A^A_AqAyT$ L $CL $T$ 4tf8t1LfAxuIA8HDIIHLH fAxIA8HvIIHLH fAx5fDAWAVAUIATUSHHdH%(H$1HD$HD$;HHhH1L#IA$C1f=HD$f=HHH^HD$\H\4H#= # H~I$(HH(Hm Hc@H|$HHD$ H|$(L$1Ht$HLH$1!HHIE0DŽ$HPHH$$HH(IMxf8DŽ$DŽ$ HqH DŽ$PH$$IMDŽ$hHqH D$:H$$IDŽ$DŽ$HqH H$@$LIMHqH H$X$dIHqH H$p$|IMPHqH H$$|$:L$Ll$0L}M̓H|$ED$D$HD$`@|$:HD$mDHUxIGH$H9u H|$7LAGLN (I9LG1L$L$DD)AGHI9shAW ID$EDAGtIwH|$HHL$1MHH@`H0H$H$c$Ll$0HD$HL$0H+L$H΋$L$t ED)N~LD$HL+|uL1;I}H(LJHtHPI}HLJ(f^LL]D$ @ LIEfIH9A fA2 HD$HL̈́|$IEH|$HHOHH1' ]Ht$HLH=AT$3I AAAGIHxj1IfA IE1ɺ"NLޱHx ~H$dH3 %(H[]A\A]A^A_HH褓AGfEgE1 IELHx HD$A!@AE1H=TNE!H&H=7N!HM\I|$I!H IUI<$#f= O LIH;w H5MHt$ HADŽ$EH$HƄ$Ƅ$H$fD$f$fkƄ$ff$EAA} AE1H$L-IELH5Nf8HNHGAtAAtE1AAEDLHt$ HcL5L{IEf8JAL,7LtA}0iAEu,AE$EA)IEHECDAE A+H@ffD9 E1ۻYDtfA9DA BA9LDHffA9A9AtIuf>vA@@ tA A AafDIH8AHpA I}fHHHl$PlHL5LHHD$1LB MfHIHj LHD$PHGHD$`H[HD$hHIJ(fAG H߉L$OHT$LLO\IUIH݉HD$D$ILB EtNLe8E1L-fHGHtLLAI8D;$sIEHx A|$0tHGHufD$E1EtBMMt(DLH@HHHAAD;$rHfIELHx HD$`fDHCT$(HHD$ T$(Xىf{IHX#}ALT$(T$(@P!%A fA!ff$f$fD$fD$f$^DA|Af=f=f= I$$IG0LHpILHpA1ɺ1LNL$AH VL1LH!%tLDHQHDʺ@LHL)H5ILALփ1LIEf81L'1LXIGxLHpHLsIEf8AN1L H$LI LHpIEf8qH$LH5HLIGLHpAL@1LlALE 1LD1ɺLH5q NLaEGA=2L1H >pLH!%tLDHQHDʺ@LHL)IEf=f=f=LI}D$AL@@LT$(DPT$(LD$ yIUD$L$ 9B(2ޱuAx IM9u IH݉gA&A$512IH=Hc)ƒL$(HcHL$8D$41Lt$(LIHLHph HT$81LY t$4L=Ա,Nc HZD4H=C1藢=#H =CHCR+H=B1bDHcLL$NIUL$D$(1D$4HD$8=E#HCR)H=wB1L#1LILHpwf=vLHT$(;HT$(H(IEH(MOD$$fftAl$ LL@eAIDžASC$C$ILHp:AAAA =ق#Eu$5AtEt IEf0EA1L \1L H1L L L IE LHpu =.#SH @pH|$HIE1ɺ"NLHx ֱu1ɉLLk1LIELLI}D$ oD$ yHA24H=?1<LHUAu LKH@ISLfP =#DD$ CD\$(DD$ =[#H@r5H=>1 v=/#TH??6H=a>1ߝJf.H 1ɺ-NL=#uױ1H\>%H=>聝IH8t)=#tHHHK>%1H==Q뛀=x#tH<>%H==1,ױtffw ff.@wwHuÐUHSHHHHHHmHH[] @HH/HH@HH0HH@HHxHH@HuÐHHHff.HHǘHHÐHH|HHÐHH_HH@UHHSHHdH%(HD$1D$谬xHT$HHHL$dH3 %(uH[]pSHfDH蘰xC$;C,sHSHK$[@1[@o$SHS$tS$[@AUIATIUHSHU$],)L9sLHuMtHLHI2HuI)Fu HyHp1H[]A\A]@MtMtHULHLU$AԸDe$ff.HdH%(HD$1Ht$)D$HL$dH3 %(uH f.HdH%(HD$1Ht$D$HL$dH3 %(uHff.HdH%(HD$1HH$HL$dH3 %(uHmff.fAWIAVAUATIUHSHHHH7dH%(HD$81f>vxHMt|HN`HHHLl$ L4RLLLMHٺLH>HD$(L)HL$8dH3 %(u2HH[]A\A]A^A_HڸMu1HH ff.@AWAVAUATUSHXHi(dH%(HD$H1HHHu1Ad1HL$HdH3 %(HX[]A\A]A^A_L|$LcqIIHLNLD$0LLLLD$ֻLD$HLL1,HD$8Lt$L)CdMs1LL=y#TDCdDH:1d H=:3.H ';H5:H=:J f.AVIAUL,ATIUSHLHHt3HLLLHHPHH[H]A\A]A^@L1LHf.@AUIATIUHSHHt6@}(] 9sF)L9IGH}HMt!LI](I)uH1[]A\A]Ð1 1H膮@AUATUHSHhL'dH%(HD$X1A$Hcf=Af=udH\$Ld$0H貹HLGHEMH1HH@`J4(D$PHL$XdH3 %(Hh[]A\A]H@ID$`H@ <th<t<<tx<H a9H59H= 9E1DHH8uxu)HHt${Ht$fHH8uxuxuxu H 8|H58H=879ATOUHSHcID)1HHcE(;E sHUHM(D$1[]A\fD1H膬E(֐UHSHHG(;G sHSH,1C(H[]1IC(@USHHG(;G sHS,1C(H[]D1 C(@USHHG(;G sHSf,1C(H[]@1ɫC(@USHHG(;G sHSHK(@,H1[]f1艫C(@G(1fHt?t6SHG 9G(v 1KxH߾[9f[fDfIH9u_HH9K< t<+L<-HfD0u@HH9uH1HHHH9t" t: u|HH9uÐH9tčzH@ vf.:0@ wLHH9uHHH)HDAHGH9t ty8 usHH9uD 1@HH)H9 .RHzH9tqR0 Hvgf 0 w=HH9uHH)IfDD HHfE1VHH)1wH11ff.H(IHdH%(HD$1HL$LD$'HHT$Ht~LH|I0Hc$fDL9w;H40HcHrH9r%HHH)HHT$L9uI  @H|$dH3<%(uH(1ԸffDSHH dH%(HD$1HL$HT$ x&|$HD$t9HH9w:HHH\$dH3%(u&H [fHx HҐ@H(IdH%(HD$1HL$HT$LD$HHL$HtyH<1Ht D wX TJHH)HHL$H9uڀ|$t+w+AHt$dH34%(u#H(@y@1̸ fAWAVAUATUSHdH%(H$1I9kLHD$S0I<H)s1LL$ L@FHVH BHH9u-PHrHHcAHH9r3fHfCCHc4t&u(QHcfDHADu HcʅuD$ 1H\3E1҅udf.qAI 1ҿ DAAEiAHD‰QЅy@u"IcHIcˋD tAˍqfD#H$dH3%(uAHĸ[]A\A]A^A_MMLl$L뺸본f.USHt3H{HfDH]tDXuH1[]@H[]@USHt3H+HfDH]tDXuH1[]@H[]@UHSHH_=m#rH(H5+0HuHtEH[]fDH5 0HaH5/HJH5/H3H5/HH5/H H5/HH5/HH5/HH5/HH5}/H1 fDH5.HaH5.HJtH5.H7H5.H H5.H !H5x.HH5e.HH5R.HH5?.HH5,.HH5.HH5.Hh¸ fDfDHIؾ1Hc-H=u-HaqfDafDQG= 3 )ff.1xc~'6 v'fD1~ >d>Dl>ݐAVIAUAHATIUHSHAt8LhL\I$Ht;LHH[]A\A]A^f.AI<$HH9HGzӸΐATUSH dH%(HD$1F=HH@-HcH>fDF=i';fHL$dH3 %(H []A\x|HcH;f*DHcHi'H;@f*Dwf;kWVfDA=vѐw@;S3 {Hf]IALH r1-HKHL=w:f.fD ω{H\fSH5*HtH5*H‰[ff.@AWfAVAUATUSHT$@HL$(dH%(H$1)D$pHDŽ$DŽ$D$xDHD$ HwL|$hHH5 *LIHH$1E1LHD$HD$pD$D$HD$Wfk=f#Ht$HALH5)1HH[=f#HtVuECHt$H~.DL$Et DD$Et1AHt$H6nHH|$ 11IŃ'H5(HAuA 'Dl$|H5(H1EAE A Dl$|DH@@HHt H(H|$ 1PwD$x1 HD$Ht$1ۉQD$EGHgR1H=!'謂IHt$|$AąAEtEuzH*HtmH Hu] 1H&Ht$D$EEE|$0t*HReH=r&1=!d#H|$ H$dH3 %(H[]A\A]A^A_Htt=c#HOHwH *HcH>H|$ 1?PvD$1ۃD$A@D$xfuA@t$0_t$0IH@[HA1E1E11-fA-vA.|HD Et/ADKuAL$ӀA/uHD EuB DуAA=b#L\$8L$0 HE1AL$0H L\$811E11#DBDct!HEEtOAADCtD9u GAF\@D9u 4Aōtp9uAōDl$DA Dl$|[D$DD$|Ni@B$11HCH={s=U#kHHi1H=QsI1H} =eU#HHC1H=sH)W1H=drH5HD$|L$0PHXCe1H=rE\$8Dt$LDl$HDd$8L|$P\$8Dt$LDd$8MDl$\L|$PL+\$8Dt$LDl$\Dd$8L|$P\$8Dt$LDl$HDd$8L|$P\$8Dt$LDd$8MDl$XL|$PL\$8Dt$LDl$XDd$8L|$Pe\$8Dt$LDd$8MDl$DL|$PL\$8Dt$LDl$DDd$8L|$P%f.ATUSHH dH%(HD$1HvbF=LHHcH>Hec]FH9wAHi'H;HL$dH3 %(TH []A\DCאHyǐH3SH {HȉCGfDHfH*fIIH 1LoHKHL/fH9J; fDHx+fH*@fDHfHH H*XDHfHH H*X$ff.fAAtHDE1HD9w/h@AEAA9s At;E FAHA9t;DEPA vAA@<w-A7EAHAA9u=AQ#tH1He@uH=aL$ nL$ Hff.fWсH zHcH>@'f&f.{f.hf.f.of.mf.nf.ff.fAWAVAUATUSHxH|$Ht$dH4%(Ht$h1H]IH2HHy$AEŸHDCA E1D$@HD$PD$ AD$$AD$(A D$,AD$0-lD$4AD$8AD$<HxHIHHSLHLA1L|$\AADtQHKC%% AEkdA)AZED ADDDֺқ)AѺVUUUAA)BD)Ǎli )‰ȉT$躓$I< gfff)Ǎ)))D<D$EE1111A1DEj<D u;DQEAD)kdA9uD)iҐA9u Ej=DD$E AhA@D$Ex EhAxAHEXAX Ap(A@$1[]A\A]A^A_Ã=o:153L  X H6Ak9H4ׂCHHIHIHHHHi@BH)H-؂-؂-D$HHHHHH)HMrTH)LHII LHHHi HV?2I)HHHH"DqBAAiұ:BIº⻷A)AJiɠD$ AA)AiԵҍBIº=uA)ErC<Ѻқ)Di D :VUUUAA)BD)Ǎl)‰T$%I$)))ƉKfDH6AHBzՔHHHHHi)ÉA\$1ɉAAk<)؉D:% k9B4)Aiұ:BIº⻷A)AriD$2AA)AiԵҍBIº=>% A)ErG ADDDֺқ)Di AѺVUUUAA)BD)Ǎl)‰ȉT$躓$I< )Ǎ))DgfffAAD1EkdA)׺EEẺk% A)EbC<Ѻқ)D :VUUUAA)BEA)BlA׺$IA)DDD|$Di B<gfff)Ǎ)A)DAD$DD\$A)AEEfEkdDd$Ek% kdA)EzAG ADDDѺқ)AѺVUUUAA)BD)Íliɏ )D؉T$躓$IDB<gfff)Ǎ)D)lj)AfDDnNAD6DDE:% i,)ii'D$AӺk9k<)ىB )iֱ:BIº⻷A)AJiɠD$ AA)AiԵҍBIº=A>% kdA)EzAC<Ѻқ)D :VUUUAA)BDE)Ǎliɏ )DT$躓$IDB<2gfff)Ǎ)D)ljD)Ѻ'%ADѺR1AADAAAEkD^k9D$D:% D>% BDֺ⻷iƱ:A)AJiɠD$ AD)iӵҍBIº=A)EbG ADDDѺқ)Di AAA)BD)lVUUU)DT$%I$)׺gfff)D)DADA)׺EDfEkdAE11k H̋BHɖ H`HcHHHHHIH|$xdH3<%(HĈ[]A\A]A^A_f.+(&#'D=Gtg:uދB=cHžfAHHHHHfAPK/t1uBA.fDIHDLIHPA(A)u H@ HHEDEHl$0L@HAIL$LHHHHHHI@oAfDHCxqZ| HH@PHHHHAPHCxqZ| BAHH@PHHHHAPH@HHECAUATULSHdH%(HD$x13'I@~"HHcFHHHHH`ɖ HHHHiH¸IfH|$xdH3<%(AHĈ[]A\A]fD+s(#'t|D=Gt_:uދ=fANk)t )fAPffD/t1uAGI=LI$Ld$0LLA@HP-HMHLHHcFHHHHHHiIfAA@ AH+(u9M@EvfDFA`HIPHA@f%f  fA@HcFHHHHHHi'I)t}fDfDHA@f%_f fA@HcFHHHHHHi'I"&fDAWAVAUATUSHdH%(H$1%IHADM̓bu rDr H*tJ~8t@t8t0F=H'HcH>%t -t"uѐ"qHvHcH>AtbLZIEH}#LHHH$dH3 %(Dr$H[]A\A]A^A_@AAUI}HL9IGIAkD=7#"HcMEH H D:O!E1LHt$0MډD$0EiPFD$4ADf>AAEG$6IUD9ACă!D@HH5"EADHLBf.HHBGBH9uDAqAHHcH "D5C݋M=HHcH>fDH}<AHH9C=KH.HcH>f.H}LAf.}LfD}L:AbfHELMHA Ht$0MHD$8fT$>HMHV?2HHH`H"HH)H)HHHD$0LrA]DHMHHt$0MHV?2HD$<H`H"Hɖ T$8H*H)HHHD$0`fD$>r@}LAf}LAf.1}L@A@1fHT$0M)D$0(L$?@ED$8fD3_ Ht$0MHD$8fL$>HcEHHHHHHHi'HT$0H){DADA{DA#kDE^A}0AFIDtfAT$DuAEu1A|$dIEHDHHDAąI}IEADAAEUH'HD~H|tAEAfAH*AEwfAH*AE]Hec]FHǺHH9~Hi'IEAZAHl$@I1H |HIMLHAA!I}AAUAuHHAEH AEAEL$AA!HI}AiH9A}ALȺh )‰HcHHAEAHcA=ȺhЉ )ЁHAIEȺh )HcʺH9}AMAȺh )‰HcHgfAEAlAAEfAEAoffA*^ZAmF]Hl$@HA|$(D@2d1DH d1'DA1!A1IMLHA)Ⱥh )‰HcHMAEAMHAEH ȉHHHڄHEHtHH1ʀIEAom1ҾLAmouAuE fAE E"AE"wAątAEfft A}A}fAEA@H\$@HHx+ 1HAAE om1Ҿ LAmouAuE fAE E"AE"AąAEȅt A}A}AEADHT$0HHAąD$0AAEnDHT$0HH賫AąPD$0zfAEA*DHT$0HHoAą t$0AAE E9uDAFUHI}EqLDH,AA!A"M{1B@u-f.y@ tЃLHB 8u-hfAu1A~XIEH_ DHHEH藲EA!DHT$0HH2AąD$0=ADDHT$0HHAąD$0wAEAqDHT$0HH&AąSHD$0AIE?DHDHL$(HT$0HHAą|$(HD$0tAHIEADHT$0HH蜨AąHD$0H9AEADHT$0HHAąD$0=fAEAjDHL$(HT$HHLD$0蕥HzLT$(IuE1ɀ|$t D$@-AJ EHHA)MAHr@t@HH)Ht$(H9uELD$0AqHD$(M7ODHD$(L@fDJL9tHHD$(@t@HuH|$@HT$ H4.Aą[HD$ <HH9wAEA(EuVfHAtC} tAVDIDtf.AEtAVDtAELd$@HLL8BD4@}Ht$0LH臯}"eK4AH9D$0p;IAEAAKA@A5A*AAA -,Au1'tA#@ELd$@HDML%PEH PE PE PE PE PE PEPEPDE1^HPLIML AAE!zthA&QA@C~ zHLA9ADOMcLzDK|=1D)Hc襣 0t't/tA#@G$6A|$HcǤIEHE~GA~1H5LGfHL  PL LPHJH9uJ@fD85A4AWf.CAfEAAEEA3A(AAAAAAAAAAAAAAAAxAmAbAWALAAA6A+A AA AAAAAAAAAAAAA{ApAeAZfH )AЍBAFAD)EDA9v 1ƅujNHȋ A9vELAKA9sNC9 rBwAэNDH4H|@9w$H9rHH9u9ЃDËfDSLcHDGHI M y -H~IلuGLH IKY8m4IIHI Ii'A)1,H[MA2H(\(LHHHIHHIHHHHKY8m4H LHH1A)H /IHI 谣H[ff.AVAUATUSHdH%(H$1JL:Wu -HHLODA@ EXAPIADIL$@A)@HAfA9uDHACMT@tE2ID$@@II9E2EtIl$@I9TLl$@AYI8M]PfDMBAD Ai')ȉA'I9LLL)HMTfDAIAA APi'A)DM9uIA H9D3IffD0HFt-F.GLFHLHT@H@0H9uIDH$dH3%(HĠ[]A\A]A^LI9^AKIMMPE)ف=AADAAAAD9rGD9r<0.LVfWLD9DH@0wD)D9wHIPA1AA0A v"DAGAAD9t)H@ICL9t'AKIGAD9uF.HFDwIE2~$Ll$@AE1M]P E1IMT$@8AL?ff.@AWAVAUATUSHHT$t$dH%(HD$81PL|DWHD8kWL[@8RDH EED<HE) $8w EL\$AO1L fӍASHHDȉGtٿA!BD؋LtfSHЋTuÃu$D)E9؉\$ EIIE)L-L5SL=,HfA DHAN1)ELMAA fDGH HHHIHHA)I9uمHc$H z\$ LDD$AJHcED$HE9w/)HHIITH)HH9uE1~?EBCtADI|@AD)IHʉTL9uDA؍LtBTHcTHu#H\$8dH3%(QHH[]A\A]A^A_ÉLHc$H zL-3A DEA DDAINK LE1)AtAHHLȉBH AH9uEtBDLl0f.HcHD)uOD$E#DD)t H}H)Ht謙̻e^Le H)H|LtH1L@AWIAVAAUIATUSHL&A|$[Il$tI:H\HHtTH9tOH{ 1菘IAEAGK`fH5H豗HXHu\HHHtcH9t^HpIHtIAEEt9A|$[uH9wBHHLH)HH[]A\A]A^A_@1H[]A\A]A^A_{]uIl$ Hff.@S1 H萗t [f.H[AWE1AVIAUAATUHSH HH|$J4HMckt/IIu=v#u4AHD[]A\A]A^A_fDBDH[]A\A]A^A_LD$H21H H=~"ff.ƒ0 v> 1ҍJv+Oʃ0 v1 ҍJDCBOʃ0 wÐAVAAUL- ATIULS1HLgtHu[D]A\A]A^HcEt[]A\DA]A^AWIAVIAUATIUH-S S1HHtLLct0HHu=#u5AH1[]A\A]A^A_@BDH[]A\A]A^A_MLH1bH=!ff.AWAVAUATIUSH8Ht$HT$HL$dH%(H$(1=_#D$H\$ D$f.LH HDl$ Et'HL0HDmEtAADF uA;tA#tE<=AńA Dl$t1E1DfIcAD 迖UMcHBD< EUHu@<=@t)HADF uE}ADV uDEAEHIcHED uHqADF u<;wHHNH1E1fDIcHADF u/EHIcHAD~ tEH HIcH>9E@:H9H<;wIIs|$ [t^|$@HT$HHD$,@=a#H$(dH3%(D$H8[]A\A]A^A_þ]H`Ht=#u1HE$H=D$D$Lff.AWAVIH5܆AUIATIUHSH(dH%(HD$1*Hq="HHzfHHH"H5HD$A<$uED="EH HT$dH3%(DH([]A\A]A^A_fDHLt$賐HLHtEHHr"LH߉D$ A LI8tFMt?HD$H8u4D$ u,="t#IH1H=5DLH~E -"@ MLH1H=A\D=x"EMLH1H=E1MLH1H=:L}VLH1E1&H=H?ff.AUATUHSHHH=%"HtHHH5nu*H=Ht)HHH5HDtH[]A\A]À=Y"SH=׏HH5H_zIHt%HHH5HLA臌EuH=zIHt)LHH56HLANEUH=*YzIH}HHH5HhLA EHHH[H5H=#]A\A]1=Y"QHH=1 2@=)"tH HF1H=f}HQ&H=H1AUATUSHHHbHILc`HHtHL9u="uH1DC=|"fEE uIE H[]A\A]HHl5=1H=1HH<H=1H H5nH=览SHH=a"HtgHL"1Ht;u[fDH萍[HH%"ff.ATUSHPdH%(HD$H1HD$HHl$Ld$f1LHD$HHEHE$E,HD$D$ t(t=t1HT$HdH3%(uLHP[]A\@1LHH߃d$資uHD$H QH5 H=YČ@USHHt8HHt0HHtH;Ht߈H+1H[]H H5H=f.AWAVAUATUHSHHXH|$HL$dH%(H$H1="D$@Ƅ$@Ƅ$@Ƅ$@;H=`蝋IMH5tLHH="HD$8E1H\$@E1HD$H$@HD$ HHPHDt$@A#tVHBDp EtHT$H53H莈HtHƹH=uHT$1H5\H=H>="L|$1H5L1LH5 1LH5HIHE@HT$H5iHE1Ht$H脊D%4"E+A="rL苆E1H$HdH3 %(DHX[]A\A]A^A_fH8L@EtLt$H$@HI=" $@$@iHt$H$@|RHHusIsDIH5FHH=z3DI~8HvHIL%OHuYHm(HI="tHD$H޺HQLJH=H1hfDL|$1H5LH|$ Hh1LH5iDžH$@HH?=8"HHT$1H5.茅H$@HfHL$H|%HH=CnfDH$@HL$ABfDLHG1H=kI~}I~AqH$@AHL$(HH A1"I~9I~A-I~ A!I~ L$@A LASAH -1ARˈD="XZEtHL$(M%I1HH=&ENHHH=vLHuEG1H=TlHH%3K1H=2HIH=1IfATUSHH=HdH%(H$1菅HtHHH ="H=xcHt98%H荅HHt H)="HH=HHt$HHCq=c"-H=HHtOHHxfH{8HrHt+HHtIfD= "H[(HuH$dH3%(5HĐ[]A\="tHHS81H= z[H*LA*H1蕆HDLHߺIH8HH=10HHV61H=sfDHIHs57H }wHHDH=81HH51H=蹃fAWAVI1AUATIUSHHdH%(H$18HH LH聰H H=E1ɂHt8 HAH="HpH4 IHHH8lC ft+fE Mu"uE1HCH8HC H8tHH83 R HH8p HC0H8 HCxH8 HH8 HH8 HH8 ttuStUt Јt ЈCtEC(tE(tu ЈM HCPH8 HCpH8 HCHH8 oo  Ј t, ʈ ʈ@t#@ Ј߃ ЈMHHnH~E=6"PH1HLd$Y H[(H|H[(HuH]L1H BH H=I ="$DE1H HH=W ="DE 1H HH=$ =M"DE 1H H%H= ="DE1H H5H=O ="ZLE1H HEH=I ="$LE 1H RHUH=IS =|"DE(1H +HeH=! =J"LE01H HxuH=I="L1H H?H=FI="MD1H H=H= Ax="LEx1H {HH=IB=k"L1H KHH=I =2"L1H oH]H=dI="kD1H H[H=*A="1D1H H!H=AAY="D1H HH=#=L"D1H `H%H=~="L1H HBUH=II="PL1H H eH=="D1H HuH=K=t"D1H HH==?"LE@1H HmH=tI= "{LEH1H lH7H=>I="ELEX1H AHH=It="LE`1H HH=I>=g"D1H HH=AA=)"LEP1H HWH=^I="tiD1H HYH=(AA="t/LEpH k1HH=I^fDH`tT"HHHHEHHpH1HHAE`HEHHx;/HHfH_H1H$dH3 %(HHĨ[]A\A]A^A_fKtLd$,L:AL,1zLA3HHe=6"Iu ЈMHH8HHe="IMHC0H8dHs0H}0keIHHCxH8KHsxH}xDeIHeHH82HHeIH5HH8LLcLHdIHHH8HHdI ЈLHHH H IH=1T}"t=i"+HIIxy=B"H"HtLH5iHH=`IHt;="LLH5viHLD$TrD$H=tKuIH8HLD="ALHHLH?{D}H=EDDtHHHD$U=>"HL$AHLqYE= "HI1ɺ,NLIHx |1H=sTtIH8HsLD="aLHL1H=P2HH-bIC f}HsPH}PbIHE1Hs H} aIH5HH8sHsH}aIHHC H85L-r H}8HhaHHHTaHfDHsHH}H3aIVHspH}paIH,f.=9"!HLtD}H1HE H=S="tH H=21HHp@H}8LD`HfDH;LM1H=SH"H]=l"6HѾuMH1H=H" DH9 H=1fL=Yc@H}8L_HfD1HU H=&="LE1H He H=I`"LE81H Hu H=I(HJ"H#1LdH  HeH=q "HEH H H=FL@H1LH 1H5/H=I{LH |1H.H=IJHHH4%N1H=(^LHeO1H=HUQH=y1DHuQ1H=UoHHNfDAUATIUHSHHdH%(H$1="D$ H=`HH=NHH=CH7H=7HaH=2H H=*H H=HH=H1H=HH=HH=HH=HFH=H  H=H8H=H|H=}H H=nHH5HmH5IHmH5CHm"H55Hm5H5DHhm H5:HQmH5.H:mZH5"H#m/H5QH mH5HlH5HlpH5HlH5HlH5HlH5bHlH5HklH5HTlH5H=l[="t$HH,1H=/IMuK1LD 1LQjwˉEfDLHIMt|$uH$dH3%(HĨ[]A\A]@HL$LHc ЈDLHHIpf.IHH%H=",DHL$LH Јf.1 Li 1LhHfHDžA<$LiHH9f1Ht$LhA<$HT$:HHH1 LGh 1L0hE(HL=Z"LH}8VHIHLl$fDH[(H="tLHߺH(H=JH11 Lg 1LmgE@1 LVg 1L?g=}"1LHs(H=*1LH} U=@"ILE HH.1)H=vILHU="ItLHپ)1HVH=*IGgHL$LH߃ ЈLH} UILH(1H=%N"LHL$HIw5"LHTILHTIH5La!H5LaH5LaH5LauJ%HL$LH Ѓ@=T"1LL0rHH==#"]PH"H PH1L LH=EZY/%LH}HDSI2LH}@0SIHL$LH ЈHL$LH Ѓ LH}pRIHL$LH, Ј="PLH7,1H=x.LH$RILH}PRILH}hQIHL$LH ЈLH}`QILH}XQIff.H"@f w uƇfG HGXH8t 1fDHHXH5C$QHt1HøֱSAH Htc@][LGEƈH9t|@D MPI@E8uEIHD MIHHEMH9uA2H)AB[HAH9t1D8HHH9u[f.HGMAVAAUAATEUSHH0dH%(HD$(1Hf8hYHYHY1HY1HY&HYHYHYDH>Y1HY1HY&HYHYHY@HX1HmY1HcY&HVYHIY0H3YDHX1HY1HY&HYHXHXDHbXHD$(dH3%(uyH0[]A\A]A^DvXHpHHs DH@:HHBuH)H4U^1H^X1`@SHH $HHdH<%(H$1HxH9pHH HL 0f:vrL9HHDHQfA'uA'fDLQHLHfDHL9rH)uTH$dH3%(uvH[L9s;HHDDHQA'u LQ'HLHDHI9w@1HH BO H5H=:Z_DAVAUATAUHSHH dH%(HD$1jHF8=W"L(HIHLf8HE8HDHpSLr= "uXH@AUHf8uH^VHEHHPŅ'Hf8HL$dH3 %( H []A\A]A^fDkAHE8DHHp.SL=O"DHeH=61%f.UHf83uHU#D1U@1HnU0f@HUMfDHcH=1nKf]VDft@uf?vuH觎1HHуHHcH>HH8H1HfDH1HfDHl1ff.fAVAUATIUSHH`dH%(HD$X1HHnHSHSHHߺHpmPHSSMI|$I<$Lt$ HLLl$@HLSLHIt$HPL2LHI4$HPL At$uHLLHHHD$XdH3%(uH`[]A\A]A^H`RY[fAWAVAUATUSHHHH9HH)H9OAH L-8Lu]D#AD$<9IcDL>fy*/KHHAI9wH@HHH[]A\A]A^A_HCHsHH9r;--;/*tHþ A[AEH9HH)بtfDHHCH9x@8su{uHCH9_K@:sutHDH D@t$EuHDH9KDVt$]Hpuxt%HHH98 uHY H HH qH5'H=SH H5H=qSff.AWAVL4AUATUSH8HHt$dH %(HL$(1f8HD$IHE1Hh AH}1LNHI9uG4$ McA ~@D)HcID9~1LJsO1LOcLOL9OIEf8LLt$AOL|$CtN@AVIAUATIUHSLH0dH%(HD$(1HcyHJA|$0HD$A|$ AL$ 1HHHxH|$ IIHtyLt$HL$H1HD$HD$(LHPAD$4LL$ LD$(pdZYHtHHD$L)HHt$(dH34%(Lu7H0[]A\A]A^DHMHLE1I^Mff.UHSHHHtFHrHH[]ff.fH@w1f8wD11HWHЀ-t=/t*tfy/tZHPHHt;*u@O-tfD t#JHHHЄuH@HGHff.H-t%~3?t>[ti/tHH-uH("t'tu18tHPHpuVH8t놹]fAUATUSHHHIIH1CHHHuAD$9E1E14HLHL)@I4$DHA\HIt3LHHuHL1?H[]A\A]@1H1?H[]A\A]fZE1HL?H[]A\A]ûH I H5H=!E][D @8tHWHGu@H8HtHHtf1ff.fE1Ht@Ht AHHuDDHcF HuHcF~H Hy HEVt@t+tDH=HGºHHD@1~cHËV@HH=@HGH9HBAUIATIUSHHdH%(HD$1Hf8@C{v D$"=HHcH>T$H $DAt9FAHL1xJ1HL$dH3 %(2H[]A\A]T$H {H nHT$HE@T$H pH DKDCL1HI1lfT$H t0T$H R T$H ˻{&IEf8T$H T$@T$H bH K@IEf8T$H hIEf8jT$H \qT$H `T$H PIEf8sHT$LHHT$@T$H YT$H IEf8asHT$LLT$HHH ;IEf8T$H WT$H IET$H f8fC#H $JH ҹ": H T$#{H hHT$HET$H T$H ܹT$H T$H DIEf8T$H T$fDT$H T$H pT$H Ǹ`T$H pPT$H ߸@T$H 0T$H Ÿ ="uGA$2H H5ŷH=jY?fT$H s {腙H ":H=1I H T$kDff.AWAVAUATUSHdH%(H$1Hf8IHL,1HF@1HxLI9u1Lx;1Ln;cLa;Ht$LHt$I4$f>CHD$0LHH$DmHl$PE1IKfHvarchar(B4000H)fB HL8IFM9trD$P,L}IƺEF1H TLDHcLHtCD9~HLJ4yH<$H|$Bff.AWIAVIAUIATIUSH(dH%(H$1D$HtBD$MLL@>IHHf=f=v MtfA}uoAG1f=wTLL?6LG9L8H$dH3 %(H([]A\A]A^A_DLLmHB`LD$hLLH0HD$H HD$Hl$h1HH fD1HxHH9uIAG1f8HD$p1LHHD$If8L7 L71L71L71L7cL7t$hLA7If8t$hL'7HT$hHt$LU4ILd$hf8>1Lx71Ln7cLa7H$LHHD$(If8VH$LHHD$0yAmf@HD$8HjIEHH@8H8H|$ʼn\$D1Ll$XID$ HL|$HMLt$P;l$ LHII98@HXuL9IDAuE'A_t;HB`IM9uLL)HcŃHHD$8L0HPrf.LH\$3HL$HHHCHHD$q9H$HPH$11L|$HD$(H$HD$HL)L<IG H9D$'H$LDuH`AE1H$H HL?HcLM AE9L|$E 1H ܰLI?IELH1IELLH4$LLI.AEHD9~qMt,L0|@IELJHp8HHE.uHphL-7f.HphL-H|$8\$DLt$ 5Ld$0LLHhLH|$(@Lt$ H|$8g5H|$0H|$(LL)8H H5H=ث53D11cSHHHT$@HL$HLD$PLL$Xt:)D$`)L$p)$)$)$)$)$)$dH%(HD$(1HHL$H|$H$HD$HD$HD$0D$D$0HD$ x;x/H;If?vIH߽oHL$xdH3 %(HĈ[]A\A]A^A_fD1VIHD$HMt fA|$>Hf8HWHD$HH[HD$C1Lt$Hl$0Hxf.HIV)LHH9)1H/)HHHD$DHHpK&HHHS H5H%HD$DHHp &H5Hw%DLH%HqLiH(tf.@.LL`80IF@HtHLt$IF8H;LVH|$ VDHDLD$LHH@`H0IHHC1f8Lt$1HL3Hf8EHx' Hk'1Ha'HT$LHHT$LLHM9tL_,Ld/E1fA|$tJI$1HN,LŅIE1LHP ŅAD$ID9ǃ HG'H߉811LH!Lt$DHD$HHP8Hp@kŅUH&H߉9D H3&Ht$PpHuHsH@:HHBuH)H"|DLH#fD1H6\.ff.AWAVAUATUSHhdH%(HD$X1HIHHHf8IILH;LQIHL-SM&HAD$SLL)*HLD$H߉Hr`LH6IHHD$ 1HHHD$JHC1f=f=4H$ Hr$1Hh$1H$H$&H$Hw$1Hm$HT$HLHzHT$LH߉D$M9L$t L%)L$iH|$H&f}E1+fDI1LHP x,EID9HE1HNHLHUHH߹MAąBDH1~L!A1HA !H mH5H= }H NH5ʓH==^ff.="SHu u1[fHƃH*uHHHt"#H;H謈1[#=$"C1C(u_H[fDHsH }IH=ܒLDHǗHD1蔪$HٗH=1nff.AUIATIUHSHcHy HHIEx wz1HtL|߃A<v2G< wHu&@_t HH"HL[]A\A]铻HH9uMtHHLt"AHH[]A\A]ÐHH]UHcHSHHX;"yHHT$0HT$HHH[]SHcHHyHHT$HT$HHH߾'[ƺfDAVAUATUSH@dH%(HD$81HW="HHIQHf1fA<$ {1HLl$ I<LHLH|HuHKLH1HLH<Hu H L1HLA$1HL$8dH3 %(u|H@[]A\A]A^DfMD 1HuC1DfNHU1H=cfAWAVAUATUSHdH%(H$1HE=H"HHIIA} EHt HJL3HAf=f=z$Mt AD$$L} LQIv`LHLD$(H6HIHHD$01HHHD$uHC1f=f=gHH1H1HH&HH1H$]HT$(LH1HsHf&HYHLH?uPH߁1H$H&H HHuTHe1HH&HHH1HHT$(LLH1AƋ$HHD$fI$1HHL$LLL$2L$1HILP HL$HH9L$uL9} tLE(H|$/A}u"1HN@a"E1H$dH3%(DRH[]A\A]A^A_f.HAf HCpsH$H;H DH@:HHBuH)H Z1H&1HcHt$(HH3f>5t$(HiHcT$(LH 1HH&HHHuPH1HHy&HlH_HRuTH1H=H0&H#HH 1HL;} tLH|$跾AE=K"ǃ+E1C1Lt$PHL|$pLH1H LHۻHuH L21HXL L3AEAA}AAf1HֹH NH51H=`+ fDHbH==1HhHo f.1H"H=Ơ"DAVAUATUSH@dH%(HD$81Ho="HHIaHf1fA<$#{1EHt HCHLt$ IH LH 1H! LHHuH LHHk 1Ha HT u(H LA$1ED$fED1HL$8dH3 %(ubH@[]A\A]A^HCuC1D뱐NH.%1H=(})fAWAVAUATUSHHE="AIHeHAEHt HHH.fx#HHz&H@x&zxHRHH@H=+{"UA $DEHW1H=̘1H6H'NHŧH=€荘\H1H=d=z"aDD$L$ 1H(H=iEAA).AH  H56H=5 DUSH8dH%(HD$(1H==y"HHHEHt HJ;HHf=3f=C1f=cf=H HH1H1H&HHHuH$ǃ HH߉HL$(dH3 %('H8[]fDHHpH=Hsf.H@:HHBuH)HC1HHuHW}@tY1HH@1HnHNH6Ů1H=}ÕfDHkHE@&f AUATUSHxdH%(HD$h1H=w"HHvHE1f8w)HL$hdH3 %(DHx[]A\A]HLEHt H8HC1Hf=f=cH.H!1HI1HJ1H@&H3H&HuH1H1H&HHHHF1H1HHLHH3f>Ld$ HߺLҭHuHL9LHHuLHǃHAp"HHt$@pH~HsH@:HHBuH)Hf1HvH&HhHW fNHN1H=z賒hAjff.AWAVAUATUSHhdH%(HD$X1H%=t"HHAAMAAuMfA|$H0EHt H5HHf=f=%C1f=f=LH7H*1H 1HV1HL&H?H2H%uH1H1H&HHHDH߃ Q1H1H&HHHDH AǃHH߉HL$XdH3 %(gHh[]A\A]A^A_ HHt$@pH2{HsH@:HHBuH)H}1H薨H=NH1H= xfD1H1HHEl$Et>I$HHr0H>HAUH HHHr0H>H9uIHL胩Hf8w}Lt$ HLdLܩLHHuL蕪E[1f.I$HL4HL蔤I1LHP A9wHphHKmfDIHnHLɨHf8wiLt$ HߺL誨HHzLLHHuL˩:C11HXHphH^ff.ATUSH7HH?HE1螥t-=p"HE1f=tFf=v E@v D[]A\D=o"tH}H=u1荍HEHt H1HHC1HuHhHH#HAH*MH|%1H=uӌfDAff.fUHSHHKt EH1[]ATIUHSӉFmuhHEv,E11fw[]A\ÐLH襤[]A\fDfvf.1E1[]A\fUSHHt%Ht HH߾H[]H 2 H5sH=tv]ff.fAUATUSHuJFHHIIͨu!LLHCH[]A\A]黴H5kg'CH [: H5?sH=0{ATUS>HHIHFfwAuHU8Hu@LC[]A\3H5fCf.tf恁7CHU8Hu LCn[1]A\H pF H5trH=zAVIAUAATEUSHHdH%(H$1=%l"/Hf=tKf=vD$@1H$dH3 %(hH[]A\A]A^DH蛾C1H1At$H@HAH AHEH<H/H'ODA&H~JcH>DA&&H DHcH>fHsH=p計IcLHYD=j"foD$P)D$@Ht$@11HhE1Hl$ Lt$f|$ tF1ҹiHHt=Ij"`A&CH~JcH>1ҹHH΁u|$ uHHtHL At$A|$QH3AL$dMIT$HA8H~ 0Dd$fo؂')Hdy,'01/0D$X2/03HD$P)D$@fT$\D$^foefD$P)D$@@fohstD$RfL$P)D$@AAĉi"f.HCw1H=n踆=h":Hzr7H=n1艆FFD$RHl$@fof|$P)D$@11HHaHYIvfobD$POFFHl$@)D$@A>LrHpLDHl$@H gq@H1A>LqHpLDHl$@H pA>LqHpLDHl$@H pA>LqHzpLDHl$@H p{A>LlqHSpLDHl$@H pTANfo^fDD$P)D$@Hl$@OND$RHl$@foBft$P)D$@A>AHZ|HcH>EHl$@H mpH1[A>LoHpLDHl$@H pHl$@EH Ap1Af"1A f"j1Adf"O1AIf"41A+f"1A@f"A=HR{JcH>1Ae"De"1A@ǃe"~ǃ}e"hD$1A@d"‰H)nH=j1JHf8vzUSHH/uzHC1f8wDH1H1HHH߉H[]1H>@11H5m鸴fHf8w"@HmH5!rHD11t@USHH[HC1f8wtH1H@tHH1H1HHH߉H[]1H@1H6뀽ff.fHf8w"@HlH5aqHD11鄳@USHHkHC1f8wtH1H@tHH1H1HHH߉H[]1H@1HF뀽ff.f=a"ATUSHH1f:t []A\HizDHj HǃHB cu^C1H߾q1HH;H߾.H[]A\"fHFkWH=-g1~YHDHh LAUATUSH=w]"LcHN"AH=}]"LHHHHt$HU]"HJiHH[]A\A]H=]"HHuH-7"\HyfDHH]Ht;EA9uH=\"HDHuH=\"H/Hth@H\"H J `H H5JyH=Kyf.AVAUATUSHHpH(HCՅLcH?M"LcLHfoLHfo G9L%\"G0K<Kf$t)f'ff.f.f.f.f.f.f.f.fPtkffww=fZ,f 1f91ff-w+fff$Efff!Eff*f@v3fCfD1fBD@f?f,R1f/1f)fDf 1f"fN f'vr%f v0f)f1f fCf 1f,fmv;)fXfH1fff%f1fmf$wsfw6%ff1f@f f 1ff4uv.f<`f@U1f8fDf,tQf0+1f(@f-%f1f"ø@HHHHy 1f.ATUSH`HA:HHE`H8+HHE1H ifP HfpAHp8EXHHH@"@ HPHP(HsHHPHH8fxX@ZfD@@@BHPHHP`HsD[]A\fDHHE`H <H5pH=pGX~5UHS1Hf.HE`HH ixs 4qs4qs4qs4qs4qs4qs4qs4qD;A,A@A-w:L-yItfx&HH@8>uHH{uEdHD[]A\A]H wH wi@H wO@H qw5@H aw@H Qw@H Aw@H 1w@S H wQfAWAVAUATUSHHHHt$@T$ dH%(H$1H{8D$D$Ht D$HC`=kJ"HHD$f;ED$ =F"D$ -=6J"HC`L$ H8t$/HD$fx HC`T$HxI"G0T$t$I"1ۄfH$dH3 %(oHĨ[]A\A]A^A_t$[HC`H89fDHcT$H 6"HfoGHD$x #@!H5bH=H-F "IHeH HH xE"H QbH rE"H=^E"H5fbHtH TbHH KE"VH=/E"H5?bHtH -bHH $E"'HE"HGH=E"HH"2HD"1L=D"L aL55"L-aL%jauHHtHH"tMHL꾥 LMMDHHI 1eL VaHu@H$H\$H1L5*HD$ HD$`HD$0HD$pHD$8AAAAMcK4HMcKSHLHH H=F<Ltu H=ٍLH=ǍLH=L€1u5H} CHHE H:(HpHEH[]HzHOHEH[]HzH'HEH[]HzHHE@AVAUATUSHdH%(H$1HHt_=>"H5H=HHt7H5HHHA ;1pHt8u6HH$dH3 %(HHĐ[]A\A]A^@I庀HLL%9L5HLHHH:@tA4$@lLIVHtH6HLLH5:t6@HɋH=1~[@AVIAUATAUSHPdH%(H$H11HfFHD$@HD$1$h $gfffH\$)ƒ'~xBHl$HDL,DH(L9tWHH1HDuD$ uH'DuEAEfAFH$HdH3%(uHP[]A\A]A^AUIATIUSH_t=xsHcI|$L9IG)HA\$PEH[]A\A]fDHHt$*Ht$~ DAD$H[]A\A]fH1ۉ[]A\A]ÐAVIAUMATIHUHLSH@dH%(HD$81HH}x0ItGI4$Ht>ILLxHT$(UH|$8dH3<%(u H@[]A\A]A^fDHLU|Nff.vVw(txu"#FtpDt`vt6-DfDc#Df'f/tfD%dfDATUHS~Hw9FHHcH>F1҃$=w HJSHECfvH qHރv'ct"fv =1[]A\fHfv6AH0AĄtfDHHHHJAuf+Hs0H,f.HFBfDӻCHE%ۼCHE fvACH CA0f%@?CCۼCfDHHH811H9H!11H"H*11H fDLcYHLLH}LHC(HEC>ff.f(wGff.fAWAVAUATIUHSH(DFdH%(HD$1=7"FAw(H=JcH>L0<HM8A$)=b7"\}LuHEdADImdMcL92IHLLqxHUdHu(MMLLÅyHT$HT@1HL$dH3 %(H([]A\A]A^A_fI$tkH}(tdHcHLLSE=U=t=u}"wU 9Uk #fDDmA9IcLLD)*Hc1LDDEd1 f.E1ۃ$=LHH;@LP؅LXHL萹Hc؅LLmHĹHHH1HIILHUdHu(LH$Ld$D$;6@HcLL]dofI>IIbUH؈IP LD@-/U 9UUDI>EdHI@NHf,H=%RDEHg/1H=ۊQU193)Hc1HcL@H]HLLkLHsL߶I$C f8vHCHSH35H36H uC L詷Hc1L薶I}MHHjHIEJ HEfEd1hfDXfDK4@UHSHH|{w"SH HcH>H3Huf=t=f=vSHƆPupH1[]H趼Huf=uËCPރvcu1HϼHufDH赼HmHHh菹H1[]fDAWAAVAUATIUSHH8nddH%(HD$(1=1"yYC<%v+<<HL蔻1wD<L1V@HLDL$LczKE1LsHIDL$vMM6EurHs(H~0ME1tVLD$ LLDL$L\$LT$uLT$L\$IDL$HD$ MtLcKM1I$f8=0"owRHHcH>fM9MGEtCPރcDLLT$茺@LLL豷{u MM9ttx1HL$(dH3 %(H8[]A\A]A^A_HHcH>fD1L1fa1Ln1f.LH{Eu I$f8wCPރvctL裹1F@1MfDCE1$=wHL,@LLL葶@T$H9H=ɅLkdDL$r=/" H:H=1LDL$fEHLLT$ID腸DL躸-DM9LLT$MGAظ M9LLT$MGACE1$=HL,LT$ILLGD(LLT$莸LT$LIr8LT$LIr"I@@LLT$LGDSMILLT$LGD"f.1LvHуU>H=1DL$L\$LT$KKDL$L\$LT$PL蛷SHP0t L~1LoLLT$XH5LH5LLT$ F藿H pH5H=;UHSHHHCݮHCҮKCQL8H []ff.@#fDATIUHS}uEd1[]A\H]Hf1CfS C"UUSfEu 1HI9t'I1HH4HP yH[]A\A]A^A_fMvMu1H譭1fA1UAMt$HHD$#f.1HHbH9\$)IHL<AwĬAw HAwH*ILHPyH[]A\A]A^A_ff.fD1ffDfDfD$1w HHu8F[wHqHcH>fw>fu,u @t ~Hu`1D1tbf.t11D3t1.x11D@1@I1t8~Nf1øf.IvIAP6lvcH!ueH=S!A@I8LA@dA@1A@A@ A@d@bweRH5!Hy!HFILA@A@dA@u$$wHrA@A@ A@dÐjH5!H!HE뜐EH5!H!HF{H=!A@I8LA@d%A@fA9H=!vH=!I8bLA@A@dA@B>H!@SHIAf=vBۃ w HoHcH>u f=DLHH\rDB8ucA"Aw.HnJcH>hACAC [@ADLH|HqDBfHS`HIC(ChACYClAC]s@[5DA[Df;oAC[ACfDf;OAC[ACfDAC[AC fDAC&[ACACdÐACo[ACACdfACm[ACACdfACn[ACACdff;AC[ACfD[fAC@[DAWAVAUATUHSHH8dH%(HD$(1cEdAǃ8H؞HDD4$ȞDHpD PfALeHEoD$D9Et$AtcMT$H߈L$EoLֺDD$DL$L$ÞL$DL$L$DD$A HH@`HHE(A@A(^xA+nUHEE<?AC$HSC$D,I<$Ht蜪AD$ 4HHI$DuHEH}EbLeHDI<$Ht AI$AD$ ##ѮIHI$H)HAAAUAFq@L@ǃ!@@Z8RUdIvHPH1f:xHL$(dH3 %(H8[]A\A]A^A_D1H 1A$H;D $$9JH߉$f$AD$I<$A)DmdHt I$EHtH}(t1D*AD$Lt$LHLZHUdHu(MMLHIEdfD1HfH;LDD$ $DD$ $6fDAA~I~$HAF4g$Yf1AD$ 1BfH߉$$AD$DH11H }kAD$AF=v1D#n!v/{v\DfDvMh|m>DfDous=DfD&ucD3f2f.1f.~ECDt{<D0D@@D@;f:f.4f.8f.Bf.zf.Af.Ht Gt tDHGffpPH pH5lH=l蛣ff.SHwHHE1E1HjZYtH[ÐH!TdH%(HD$1HT$D$豢1҅yFHL$dH3 %(uHxHt~ ^fDHϛAWAVAUIATUSHHH|$HT$,LD$dH4%(H$1HD$@AM="A L1f.H@(HHuHHH$HHHc‰D$(H1DHHLhMm(P@MuHAiDt$(EE‰D$$HD$`HD$0t$$lD+D$(9Dl$$Dl$(E)Dl$HD$\E1D|$ HD$CH$MIN4AF+D$ L$I9L9vN|A?xIL9wRIHHEHfD1ɾHfHfpH9uT$HHE,$AubAE1HD$D(A= "A)ND$NIt$,IHD$8HD$LHt$0LﺀA}1Ҿ$AŅHL$A ǾD$\HL$ADD$\(HL$ADD$\ˠHL$ADD$\覠HL$AD艠="D$HT$HD$8DPHp董u}="LHD$@DhHD$HE1ǀDH|xHuH<$H$dH34%(DOH[]A\A]A^A_DDHD$DDDD$8="DD$8eAstCDHH $HDIHHoA-fDH$@ qE/I @D$$D$c8HD$8腡="tHH~g1H=]g?.gT$1H E$$A_E}HD$D Ak=."A)NDA*NDHD$\E1D|$8Ll$HD$HD$XHD$AMMD$ 6@|$X,AEAFusHII9NtA>xfA~tLD$HL$D$\tA?|$XI=R"D$XAEtA>8LL$ AHH$p HVP w H\HH $HTIHHo I9AD|$8H="H5fH=e1s,vfD胟=":HHe 1H=We9,f1HeH=8e,Ht$@>"DnHeH=e1+lDD$,HL$01HeuH=d+A)NdHkfH=dD1+HHjf1H=}d_+DD$8tHHd 1H=Vd8+AHt$@FQ "A 1HdH=d*HDHD$nATUHSx ELLst11HHH=KX-gH [H5.XH=.YَfSHHdH%(HD$1{tHD$dH3%(u9H[{HL$AD$[CГSHHdH%(HD$1{uHD$dH3%(u9H[{HL$AD$C`ATAUHSHHHHt=hEt9}H[]A\fDHD$ DD$ H[]A\HHHff.AWAVAUATUSL$HH $L9uHH<$IH\$0LdH%(H$@16HLv=_!A|$1Ҿ踑D$d|$H$Ll$$fDt$Åt5fDD=!E\A[EtVEL$MD$1HDƄ$"Hx-LDt$$D$(NyU8t|$臋=!21H$@dH3 %(ZH@[]A\A]A^A_?1HD膌ƒA1@$u;Lc€=!fD$.BƄLl$Ld$.H}LLJH<$HD$DH/|$$dDMH<$HMHU1LL1HHtHƹ H=UtcHHtY1LL謍HIH!LLfH5L1LH.HH@`H8t\HILH)HHHL=EMHr`H~} L؃1ҾHyHIHEEH=!PIHH=!8IHL迁HLHHHhH9uHH8H1ҾdLH=!(LPLHf8E<G~LoL7Aǃ=d!^L=KMtL躅L2L躂 H|*L=KL#I$H襅H߻IDŽ$\H|=!HL$hdH3 %(wHx[]A\A]A^A_fH=i!D!H=O!U|H1L=JVfDH=!\IHt$HE1H3 @L蠄L=J@=!SH5JO11臂H5jMƁH5HHHz!]{HH5HH5HH5H5MoH5HHH!{H5H~H5HH5H艂'!f.LH%JI1H=I 7fDH5JL蔁ZL萂lEu {()HHPXH:t =! E<L3ML"LIdž߃H1LH HLH$LڂH$LH藃fL=H@L=H@DLELA蚁EDEAH5IH=G1 dfH uHHH5D1H=Go f.H1DHHH=`GC HHppHC,LC$|H3LLLL,LHD$HfHHPhH:H@8HHD$L|$:L~HT$PHT$HHeL x$H|$E$U11҉$ՀHD$H=H=x!D$$)$E1HD$(D$$Hl$0Lt$@Ld$8D$$H$\$$Dl$$Ll$fDLwIHHx zI~H$At_uwEtrHT$(HH9ufHt$HH~uUH5^!H|$Hl$0Ld$8Lt$@H$Dl$$H|$ҀEuI~Ht$ufDAD9CHl$0Ld$8Lt$@H$Dl$$H5!H|$ZH|$~HD$HAH,$DEIHf. H1}ʼn H }yLEAH,$Ex/H|$DMxHxHtHt$HL=DHHwtHsE5GH=gD1HHBHD$vHt$Fv$U|HEU;1H=D@Hq!HtDH=EH€tIH=EH€uH!HH5XAHvfHq!HDAWAVAUIATAUHSHdH%(H$1i! AAIM wH LA1|Hc؋!L@tqEtlAMtaL/]x\HPHLELExEH DHPHLEMEHH1~|HHHC:I@LHLyH$dH3%(HĘ[]A\A]A^A_f.ILLhHHx(!$ MwfDEsLMbfDH C yff.@=!ufSHGwH=!HCG|H!H=!HH![|fSHH=! |H!Ht H9u&fH9t"HHHuH=Y![|HHy!HH=?!H[|fDH=L!t@1H=F!f.H=!Hl{H= !!HtHz!H;8tHf!H;8t zH=!H!HtuH!H=!H{DAWAVAUATUSHH $ =!dH%(H$1sd=!t[IAILH=O!%H=!zH->!HtRtu fHmHt@H9EuH=!5{DH$dH3%(gH[]A\A]A^A_H!HD$ !H|$ tL|$ DLL1LHhLqHHt1A-IH$L|$(HD$HD$0HD$DL|$Dź1H @E1LMwIxHl$ IIfAvGItKI I~ADAK/H9vFD-1IH Y@HIGxIu |M^AFMfAALL|$MLt$( @IHH$H @HB(IIDP@.HDD1IwHEL9vRItLIuHEE H=,! H|$ HHD$ H!*| Hl$@Ht$ H|$fH tHD$H9]H\$ HqHcyH=l!xMuff.fAUIATIUSHHL$8LD$@LL$Ht7)D$P)L$`)T$p)$)$)$)$)$dH%(HD$15!s]=!tTH=!H=!*wH!HtV rHHt@H9CuH={!wfDHD$dH3%(H[]A\A]fD&!Hc!uHtLHbHLH$H$HD$HD$ D$0HD$pHwH=!%w`H=! MDH}jHH!dsfDUSHH=!HdH%(H$1u?!t!HtH5!HtH^s.H=W!!HtH!H;8tH!H;8tVtH=7!H!HtJoH!H;-!H=C<HH=,<HH!HH!H=k!H\$?!uHl$HvHHD$P}`HtH|$PH@H;?u=!H=!GuH$dH3%(HĨ[]@Hq!HH!Hf.HXqH!\H!H5ovHlH!HH=j!tiD 5!LD$P1H H; H=;qfAVAUATUSHhHHH;s{H'fBH;HcH>fD=![]A\A]A^f.DcdD-t!EHH:GEtZf=I!tHCHH龇Hk:D=!!tHCHHHC:Ds=!`HCHfH H):Z[H=9]A\A]A^=!HCHH龷H9D[H=x9]1A\A]A^NfD=q!HH9w bf.A|$HcnpIHt&HsHIcHrEu^[L]A\A]A^kfHH9Ee[H=8]1A\A]A^fHCHHG H9MHH81H=8tH 9H5{8H=~8#iH 9H5\8H=[8i@AVLAUAATUHLSpLMI$HE;l$1"fHLHD9ks6IHI$HuLOqL[D]1A\A]A^UD1C LHC fCqLȤH[]A\A]A^Lp1I$LLAD$ AD$ fAT$pfDHtpHtkDAwIHHuJf.HHHuHDHHHHPH 9iH58H=8[gff.AWAVAUATUSHHdH%(HD$81HNHLHAHLoHD$ LH$IH+uq=*!kHUHHz #N(HLnHǃHD$8dH3%(HH[]A\A]A^A_ÐLMtlOLM4A~ AV 9A9Vz)ItH>AV 9,A;V"A~SE~fAfACED9E~ A9=!LǃHǃoLSmAWH;s>HL4Iv-ASALH!I~HE1dLmL腡EULAV M~AF u ="!1I>H)LAV AV 9rE~LolAHHD$HHHv L;pxILHHI1fDH@xKLDIHtsHHHunHHHuL:,D5H3LH=2AV AF NE1fHXLEG IOEG H2dH=2gAF LAljL$LHHD$HH4fE~Ht$QjHt$L$HtFH D$,D|$$D$!<t\<tpA<|$!=z!H2r H=11*AHAG=nv(A~$SXvAF&AOf9;D$(E;~ E~ A9AAF E~ H $AHe1 H=0FL9hHHL$LHhAF Lǃ LDTIHHOH /2SH5w0H=0_"eH 1H5S0H= 1_H 1H540H=0t_H 1H50H=P0U_DAUATUHSHHG@L'fFM$L%gHkxHt9 I$tj1I|$H{HLPnHCxHufHCxLgH71H[]A\A]fD1HHL%H{xtM=!tHP0H=.1mxLfHnH޺#NHx  Le.fHu,I$Hu }DHHHuH*1SfEEfEE E EEE HfDI$HCxHHƙff.ATUSHH dH%(HD$1G@@t$$SfD$D$D$HD$ 诘HH;s@HfpHu ]DHHHuHE1@t!Ht$dH34%(Du?H []A\DHHH!fHAaf.AVAUAATUHSH H?dH%(HD$1f?vHHLDSD$AAf$E@fD$D$D$ DvHøHtuE@HKHfCAEtCNl#HEDs H,cH}HHuHHHuHHc1HL$dH3 %(H []A\A]A^AE1DfH$H{HHCDHtHtHHH)H)DC1҉փL1L79r(DHW_AVIAUMnHATUSH/LL+bAHHt+AV@f;PufDf;SHHHuHALLKnuLbInL#NHx mLaAd=!`L9b[]A\A]A^HHHHIPLbHIC HTC AF$IVAAF,AV0SA;xI>tHH|@ AF@SfUfEfEAEEA] IH`IHHu @HHHuH(H&aAF,D1LHHHL蟾[]A\A]A^H2*t!H=(1'HfHu1Dff.U1SHHHH_H;tH߾YH;H8`H[]ff.@AWAVAAUATUSHHLH?At$$I$H[HHS(C LmAHs9C1HCDpC(HSffBHHS ffBHC1fPHf8w@E S(IŋC4AT$ tRH1LkD{(H[]A\A]A^A_f.HuHC@@E ;I$HLHLkH;D{(tD$ 5D$ s@)HAU I|DA^C HsC(9fATAUHSHW(;W w7C4HuHK8C4H]HMUDeEu[]A\fD1 S(@DH1[]A\Nff.@HwHH@(Hu HʋN HփHH HuWH)fATIUSHoHH}tFHH\HuH;HH}]HEHE HDHCAD$C(E k4uHC8[1]I$A\DAVAUIATUSWL'tGOHG0fDH8Ht'H D@ D@t8t9H vщσfIEAl$4ID$8ImDHH]Ht|HEHLI]eAƅyHHHtHHHHuI$HEHz[IuI<$}I<$H-\[D]A\A]A^ÐE1[]DA\A]A^ÐO1t,HHWp(HHtR HHHHu)+wfHWHHq(Htf.R HHHHuWGHHH)HHf:HGIfUHSHHH9WHF_HHGtH)]H[]f.fATIUSHwHoL9U(HMHHHH9Wuv} WAA)L9uFDE(9r#)Lc HHCDHK[]A\fD1HU HME(H P&H5I$H=$QH 1&H5*$H=$QH &H5 $H=jQf.UHHSHH9UHuHFUHZH]H)]H[]f.HGH9rH)HwHGPH m%,H5#H=#PDATIUHSHW(H_ HHHW(H9v3HӸHHHHFHH豯Ht,H] HU(H9v&HEH)HH]DHHM[]A\fH $QH5"H=":Pf.AWAVAUATUSHH $HhT$(HL$ dH%(H$X1HD$PF4IxHD$8HD$HD$0"HD$@IHt$IH$HD$8M1HD$HD$0MHD$HD$ H)HHT$8u HHLd$HHHD$8HD$HD$0IGGH|$H=!IGHH|$8EIWHD$HHLAN4LHT$HATLL$LD$HL$ T$8jHD$XSL(HXZHt$@I+wAAZH$XdH3 %(Hh[]A\A]A^A_@ D$,AH!H= 1DL$,Tu Ht$0@=!Ht$0H;t$H\$8Hu)HD$IHD$0JHt$Nf.H|$H.VHD$IH4Ht$0 H;t$H s"_H5, H=\ MH\$8변=ڿ!MAăuEtIE1ɺa LHx LuEtIE1ɺ` LHx ++zDL$81H H=.=W!Ht$0LD$8HHDH=f1H H=B1- Rff.UHSHHHSHtHsHUtx HcHy۸H[]ff.@HHWHHwfF V()t%HVHHwHHWHOHG PH H5kH=Kf.HUHwHHWfHuHwHHWfUHHSHHHHwHv)HHt.HS 1HC(HKHSH[]@H>MHHT$KHT$HHEHuf.@SH>HLHL1[@UeSHHGH߾GH߾GHH[]@GAWAVAUATIUSHHXHdH%(HD$H1Hf~ HHHfH0HFxfQHNyHpHLciH>pHAHHHD$HD$(LAMHHUHt$(11HHIHD$(HCIFHHD$KIIDHHD$IIH!Ht$LHARHt$LJ<(HD$+RHL$@HT$8LHt$0dRH|$0*JxIHcILL$HIeHL$(|$LHALL$OLL$A6LJH|$($PHIcPC1HH5HDBHwEDHDHLHB HH5JHAH0E1H&EDHDHLHALIHMEI<$ILIHHǀ(HL$HdH3 %(HX[]A\A]A^A_HHHpE1HD$H9DL|$(LsILkILNHFOfL|$(E1E1E1E1E13LfHHt8H MHtHH jHPHHHDSH>HHHH1[@USHHWdH%(HD$1H$ ȈD$G ʈT$W ȈD$G ʈT$W ȈD$GHD$ ʈT$HHHD$dH3%(uH[]nKff.AUATUSHH $HHHIIdH%(H$1HHHھLI|$HHMHLlI|$HHMHLKH$dH3%(uHĘ[]A\A]JDUHSHH8dH%(HD$(1HH@`LAz0tsHHt$LHT$1HL$HL$HHD$(HD$(AB4PLL$ LD$(`ZYHtHD$H)HT$(dH3%(uH8[]fHhMHIff.AUIATIHUSHHxdH%(H$h1Hl$`*FHHH=LHFHHt\IL%HHL&LL (H1HI1H$hdH3 %(uHx[]A\A]!IAVIAUIATIzUHcSDHHt+IH}HcLHETLSHuHHcL[H]A\A]A^AWAVAUATUSHH $Hx fH$H$LLD$IHIDL$HD$dH%(H$h1))C)C #Mw@uwHCL$`A$LLL)HSHLDŽ$pAAGH$hdH3%(DHx[]A\A]A^A_DŽ$1LHDŽ$f$DHHFHYHL$CHL$L$H01DATAHH9rHD$@LLD$L$`HHD$HT$LH=LD$Ht$IxHT$IOH=ZHHLDŽ$pAG\L$`L[ f$hH$pfo$`HCHD$@H) HD$e-HHl$H-LHHl$H$c-H|$Hf/HHHD$(MH\LIFHIHD$ ELxHL)LHL$0IBALH=L$HD$8LFLLM@LT$8IMt/HD$8ALD$81H0LfHH HI9wL$`LLLLHI HD$8HD$0LﺀHt$ H=HFmHLD$8L$Ht$(LLLL$0L$LHD$ LL$0LLHT$ ALHT$ 1LDELt$HLIv`HtFoH)HPHS@T$LHL2H|$HHtA$$E1NACf.L$Dff.AWAVAUATUSHdH%(H$1HL$HպHL3HNTLMSSPH9$H4rH24H*4Hr4HAg4LHAT3==!/~ A/HD$ D$ )1HHc3=!LDl$LHD$PMtXIHLpIG0L(HHHT$HL$J<*H=HHt!HT$HLHHuLH?AH|$>H$dH3 %(DHĨ[]A\A]A^A_LtHt$LHLIHtHL9rDHI9w8\uxuHHLLH)HD$0HHL$LH)HD$PHL$HL$LPHD$hHD$0PDL$0LD$AXZEH|$PL$ DHD$ C1H5SH߉L$<5Hf8HD$HM|L|$8H}8Iw@H18DHf8DH[8IwXH8L|$HED;8DHMg@,8@H7L|$D|$HD 8DHE7DH7DHLd$7DH7DHM71H71H7L$IHAU(H<*ID$H A|$HcID$T$ 8T$ HHI$HNTLMSSPSH{(HHHCH( fDkfDkMcfkLfkC(HC Iw0H?J|+(HcL?HL[]A\A]A^A_L8E1f.UHSH=t8~4CH\>HHcHiH )ˆUH9uH[]=&!DAWAVIAUATUS˃ HhH$Ht$pHT$xL$PdH%(H$X15;\$XHD$hML$ IFHD$`H$HD$D!L$Xb\$PH|$`C=HT$LH4H$ DŽ$9H$LHHD$08H$`LHHD$ 8H$L HHD$8H$LHHD$@8H$@LHHD$v8H$LHHD$(Y8H$LHHD$8<8H$ L'8H$fHDŽ$HD$HH$H$D$X)$)$)$)$DŽ$DŽ$)$)$HDŽ$DŽ$DŽ$D$THD$xHl$pL$LlD$PD$\$fDD$A t$A tI9L4HtIHD$hE($QH4$H|$H<9Ht$1ҿ6Ht$01ҿ6Ht$ 1ҿ6Ht$@1ҿ6Ht$1ҿ 6Ht$1ҿ6Ht$(1ҿw6Ht$81ҿf6~!t&!3lj6z!HD$hI(HED$pH$XdH3 %(Hh[]A\A]A^A_H=1U;ÃH|$`9HT$LHH$ DŽ$5H$LHHD$0w5H$`LHHD$ Z5H$L HHD$=5H$LHHD$@ 5H$@LHHD$5H$LHHD$(4H$LHHD$84H$ L4NH$HH$f5~H$fo$fo$fo$H$$)$)$)$$D$Pu$H$HHD$Hr/\$TL$Ln2|$TLH8hf./v@H$ /|$TH5e8fDT$\t AD$o2AHH$DPtED$PtM6H$H$AD$Pt91EHB$AHD}\$TH$fHDŽ$HD$HH$)$))$)$DŽ$DŽ$)@)@ H@0@8DŽ$HD$h1iHD$h1W\$XD$TPH$D$TH$904AUIHATIUSHH0HHtHLLH9HFH`7ADHH[]A\A]f.fJAA1J?D1A?A JD1A?A JD1A?A JD1A?A JD1A?A JD1?  1փ? ff.@HwH1у11ȃ ЈGH9u@AWAE1AAVAAUIATL%UHSHIHHdH%(H$1HHHH$1HLJpHH)HHl$IcHHF H11D։DtB Hc@*4 LH uA||H@t&Љ ȉH HDDAI@IAt E$`Hl$E1HLL HLHDžHIB)1Hf.Mc1IHc1Ҹ:LHt @AAAE9uAyZDE A!!D D|$G7yZ AA!!D ADE yZA! !D ADDyZA! !D ADEyZA! !D ADDt$A!E6yZ !D D|$DEyZA A!!D D|$DEyZ A A!!D ADEyZA! !D D|$DE7yZA A!!D ADD yZA! !D ADDt$A! EyZ !D D|$DEyZ A !A!D ADDt$A!E6yZEn !D ADE yZA! !E4nD ADEyZA! !1ȉD D|$DDt$ 11֍nD1DEnщ 1Dt$13nD1 1An1D\$11l$En1ލ nщ 111ً\$ 1DEn11DD3n΋\$11DnDEnщ 1Dt$1E1nD1 1DEn111EnD1DEnщ 111D 1OD‰GGOw []w A\A]A^A_ÐH#EgHGHHܺvT2HGAVIAUATIUHoSHGHHHW?tP@)HALM9A"Et HLLM)I?=IFHLl@oHLH@EoKMoSU o[]0L9uA?DAr\IEHMHID$DITHTH)A.I)r1ƒItH49r[]A\A]A^f.AtAUAT$tATfT[L]A\A]A^P%HIHJT.HwHJT/H)I)1҉уI<H<9rfDIAUAT$ATT>BD.BD/vBD.fBD/eff.fATLgUHSGH?LHz?)ƒt19rLHfCID$0AD$AD$ HCLHߍHSPCTHto MH{H1HHCPH)KXH[]A\f.71)돋O AWDD_AVAUATUSD6^nAxj׋G3G D!3G V\$ЋW^$DD1\$!3WAʋN Fp $E‰L$A1A1DD^ !D1G;νD\$DEDVDT$A!A1EE|A 1AD!E1DD*ƇGD1D!A1A1DDN DL$E F0D!DnA1D1DGFEDf Dd$D^(A!A1EEؘiA 1AD!1DDDʋ^0D1D!A1DE [D 1!D1DDN,A1DL$G\EA!Df8A1ED"kA 1AD!1DDN4EqDD1!1DE CyD 1!D1DDV<1G!I!1DDD$ Eb%1!1DDD$E@@1!1DDD$ EQZ^&1!1DE6Ƕ1!1DD]/։ 1!1DESD1!1DE ؉ 1!1DDD$E01!1DDD$ E!1!1DE7É1!1DDD$ E 1!1DDD$A0ZEAA1A!A1AA㩉A AD1!1t$DD1!A ogD1 1D!FL*1DD$Ή1AA!B9A1DD$A AD1D$qDD11‹D$ 0"amD1G 81Ɖ11DDD$ ED꾤11DDD$AKAA1A5`KA1AЉApA 1AD1D1D1A ~(D 1G'111DDD$ A0AA1A1AЋT$A2A1D1֋T$ 9ىDD11D11C|A A1A1AD$A0eVĉA1D1AD")Dt$ D D1A *CDG# 1  1DD9Ή 1DDY[e\$  1DE Dt$ щ1DE3}D\$  1DDD$E] 1DEO~oA AD 1DE ,DT$ A1ADE6CDt$ AN 1A~SADEAA A1A5:ADA AD 1Љ3*\$D D1DFӆ[ ]A\A]A^ 1։ 1DƉA4A_ OW GOW H#EgHGHHܺvT2HGAVIAUATIUHoSHGHHHW?tP@)HALM9A"Et HLLM)I?=IFHLl@oHLH@EoKMoSU o[]0L9uA?DAr\IEHMHID$DITHTH)A.I)r1ƒItH49r[]A\A]A^f.AtAUAT$tATfT[L]A\A]A^HIHJT.HwHJT/H)I)1҉уI<H<9rfDIAUAT$ATT>BD.BD/vBD.fBD/eff.fATLgUHSGH?LHz?)ƒt19rLHfCID$0AD$AD$ HCLHߍHSPCTHto MH{H1HHCPH)KXH[]A\f.71)ATUHSHMHIBI|HHt;uHHH[H]A\fLHHH/fB!UHSHHt)HHHkHHHH[]fD1HH[]@HxWUHHSH1H!HH)HHEH{HHtHHHEHHH[]@1Hf.ATIUSHdH%(HD$1H\$H$HŅt)HYHT$dH3%(uH[]A\fDHL4@AUIATIUSHcH(dH%(HD$1~EHH%HLLH$3HL$dH3 %(uH([]A\A]@H1HHxK ff.UH-SHHH?H9tH+H[]DAUATUSHHHu*H?H-H9tH+HH[]A\A]DHz IH!IHtAHxHLjH;HAD,I,$H9tLL#HH[]A\A]1@UHHSHH(HHH:HHtHHH[]UHHSHHHHH[H]@HHHpff.fHHH92rH H9tH2D2ff.UHSHH~ H Ht+H;HhH9tHD$9HD$@H(HHH[]7UHS1HxdH%(HD$h1H|$U HD$Ht$ H|$HD$sHH\$^HcHHoLD$H1 H HHdHT$hdH3%(uHx[]SfH11HPdH%(HD$H1HT$D$HB,HL$BHD$D$HD$M u&H|$ÃuHGHt Xf HL$HdH3 %(uHP[FfDHXdH%(H$H1HD$HT$@Ht$LD$u5HD$Ht Hx H$HdH3 %(uHX1AWIAVIAUAATL%dO!UH-dO!SL)HHt1LLDAHH9uH[]A\A]A^A_ff.HH, Procedure %s Line %d: "%s" Error %d (severity %d): %s OS error %d, "%s" tsql.cs && opt_flagsfhLqtv %2dtsql: (%d row%s affected) (return status = %d) tsqlusing TDS version %stds_submit_query() failed yesTSQLISO-8859-1login cannot be null freetds.conf directoryVersionMARSGnuTLSOpenSSLKerberosSSPI "trusted" loginsunixodbciODBCTDS versioniconv libraryThread safetySybase binary compatibilitya:H:S:I:J:P:U:p:Co:t:r:D:LvTDSDUMP%s.instancesMSSQLSERVERPassword: TDS-Libraryus_english%s: out of memory context cannot be null locale is "%s" locale charset is "%s" using default charset "%s" %d> gogo_line exitquitbyeusing TDS version %s reset:rMsg %d (severity %d, state %d) from %sWarning: invalid option '%s' found: "go" treated as simple SQL connecting to instance %s on port %d Unable to open input file '%s': %s Total time for processing %d rows: %ld msecs Compile-time settings (established with the "configure" script)%s %35s: %s %35s: %s %35s: %s %35s: %s %35s: %s %35s: %s %35s: %s %35s: %s %35s: %s %35s: %s %35s: %s %35s: %s %35s: %s %35s: %s MS db-lib source compatibilityUsage: %s [-a ] [-S | -H -p ] -U [-P ] [-I ] [-o ] [-t delim] [-r delim] [-D database] or: %s -C or: %s -L -H If -C is specified just print configuration and exit. If -L is specified with a host name (-H) instances found are printed. -a specify application name -S specify server entry in freetds.conf to connect -H specify hostname to connect -p specify port to connect to -U specify username to use -P specify password to use -D specify database name to use -I specify old configuration file (called interface) to use -J specify character set to use -v verbose mode -o options: f Do not print footer h Do not print header t Print time information v Print TDS version q Quiet Delimiters can be multi-char strings appropriately escaped for your shell. Default column delimitor is ; default row delimiter is %s: error: Missing argument -S or -H Missing argument -p, looking for default instance ... %s: no default port provided by host %s found default instance, port %d Could not allocate memory for username Could not allocate memory for password %s: missing delimiter for -t (check escaping) %s: missing delimiter for -r (check escaping) Setting %s as default database in login packet There was a problem connecting to the server Could not allocate memory for mybuf P`@````````0`` `(  HHH H HHH HHq HQ HHHHHHHHHHH@ HHHHHHHHHHHHH/  H H H get_opt_flagsmaintds_dynamic_deallocated() : freeing dynamic_id %s tds_dynamic_deallocated() : cannot find id %s tds_release_cursor() : freeing cursor_id %d tds_release_cursor() : freeing cursor results tds_release_cursor() : freeing cursor name tds_release_cursor() : freeing cursor query tds_release_cursor() : cursor_id %d freed tds_cursor_deallocated() : freeing cursor_id %d tds_cursor_deallocated() : cannot find cursor_id %d tds && tds->out_buf && tds->send_packetalloc_compute_result. num_cols = %d bycols = %d alloc_compute_result. num_comp_info = %d mem.cres_infotds_free_all_results() US-ASCIIconn->in_net_tds == NULLSYBASETDSQUERYS1000S1T0008S0124000280004200001003080042100021S01010002200821S02220012200342S2142S1242S2242S112201842S0242S0123000250002200522012220073700042Stds_realloc_sockettds_free_connectiontds_free_rowavgvarpmaxminsumstdevpchecksum_aggvarTDS5_PARAMFMT2ORDERBY2ROWFMT2LOGOUTRETURNSTATUSPROCIDTDS7_RESULTTDS_CURINFOTDS7_COMPUTE_RESULTCOLNAMECOLFMTDYNAMIC2TABNAMECOLINFOCOMPUTE_NAMESORDERBYERRORPARAMLOGINACKCONTROL/FEATUREEXTACKNBC_ROWCMP_ROWTDS5_PARAMSCAPABILITYENVCHANGESESSIONSTATEEEDDBRPCTDS5_DYNAMICTDS5_PARAMFMTAUTHDONEDONEPROCDONEINPROCMSGtoken.ctds5_process_result2 num_cols=%d col %d: column_name=[%s] colsize=%d prec=%d scale=%d elem %d: longbinarybitbit-nullsmalldatetimedatetime-nulldecimalfloatfloat-nullimageunsigned tinyintunsigned smallintunsigned intunsigned bigintinteger-nullsmallmoneymoney-nullUCS-2 textnumericrealuniqueidentifiervariantvoidxbinaryxcharx UCS-2 charx UCS-2 varcharxvarbinaryxvarcharxmldatedatetime2datetimeoffsetuser-defined table typebigtimebigdatetime[for parameter]no meta data setting up %d columns type/wtypesize/wsize %-20s %-15s %-15s %-7s utype %-20s %15s %15s %7s %-20s %7d/%-7d %7d/%-7d %7d %d hidden return parameters stored internal cursor id %d processing compute column %d compute column_size is %d TDS_OP_CURSORCLOSE TDS_AUTH_TOKEN PDU size %u Got invalid size %u tds->conn->collation wastds->conn->collation nowtds5_process_optioncmd() received option %d value %d Eating %s token Unknown marker: %d(%x)!! unknown7.02000 SP12012-2019TDS_SUCCESSTDS_FAILtds_process_login_tokens() Product name for 0x%x is %s MicrosoftProduct version %lX ZZZZZ[%s]out of memory (%d), %s YPZPZPZPZPZPZPZPZPZPZPZPZPZPZPZPZPZPZPZPZPZPZPZPZPZPZPZPZPZPZPZPZPZPZPZPZPZPZYY@Z0ZPZPZPZPZPZPZPZPZPZPZPZPZPZPZPZPZPZPZPZPZPZPZPZYYYYYY ZZPZPZPZPZPZPZPZPZPZPZPZPZPZPZPZPZPZPZPZPZPZPZPZPZPZPZPZPZPZPZPZZXH[8[H[H[H[H[H[H[H[H[H[H[H[H[H[H[H[H[H[H[H[H[H[H[H[H[H[H[H[H[H[H[H[H[H[H[H[H[H[H[H[H[H[H[H[H[H[H[H[H[H[H[H[H[H[H[H[H[H[H[H[H[H[H[([H[H[H[[H[H[H[H[H[H[H[H[H[H[H[[H[H[H[H[H[H[H[ZH[H[ZH[H[H[H[ZH[ZH[H[H[H[ZH[H[H[H[H[H[H[H[H[H[H[H[H[H[H[H[H[H[H[H[H[H[H[ZZH[ZxZhZH[XZHZ8Z(ZZZYYH[H[H[H[H[H[H[H[H[H[H[H[H[H[H[H[H[H[H[H[H[H[H[H[H[H[H[H[H[H[H[H[H[H[YYYH[H[H[YH[H[H[H[H[H[H[H[H[H[YYxYhYXYHYH[H[H[H[8Y(YYH[H[H[H[H[H[H[H[H[H[H[H[H[H[YXXXmmmHm8m(mxmhmkjjm(lmlmhlXlj8ljlmmmlmllllxlmmxkhkXkmmmmmmmHkmkmjm8k(kmmmmmmmmmmmmmmmmmmmmmmmmmkkkjmmmmmmmmmmjmmmmjmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmjmlmmmmmmmmlmmmmmmmmmmkkmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmkmmmmmkmmmmmmmkmlmHl|T||{d~L}L}{4{4{dyzxz4yx\xw\w~~~~~~~R~~̓D4$ tdlTTDd$TdL444------------------------------tds_process_row(): reading column %d adjust_character_column_size: Server charset: %s Server column_size: %d Client charset: %s Client column_size: %d flags=%x utype=%d type=%d server type %d varint=%d tds_process_nbcrow(): reading column %d tds_get_data_info(%p, %p, %d) %s processing result. type = %d(%s), varint_size %d processing result. column_size %d tds_process_param_result(%p, %p) error: tds_process_param_result() returned TDS_FAIL tds7_get_data_info: colname = %s type = %d (%s) server's type = %d (%s) column_varint_size = %d column_size = %d (%d on server) processing TDS7 result metadata. set current_results to cursor->res_info set current_results (%d column%s) to tds->res_info tds_process_tokens(%p, %p, %p, 0x%x) tds_process_tokens() state is COMPLETED processing result tokens. marker is %x(%s) tds_process_tokens::SET_RETURN stopping on current token processing parameters for op %d calling tds_process_param_result processing tds5 compute names. hdrsize = %d processing tds5 compute names. num_cols = %d processing tds5 compute names. num_comp_info = %d tds_process_compute_result(): compute_id %d for %d columns logic error: compute_id (%d) from server not found in tds->comp_info found computeid %d in tds->comp_info processing compute result. num_cols = %d processing tds compute result, by_cols = %d processing tds7 compute result. num_cols = %u processing tds7 compute result. compute_id = %u processing tds7 compute result. by_cols = %d processing tds7 compute result. num_comp_info = %d processing tds7 compute result. point 0 processing tds7 compute result. point 1 processing tds7 compute result. point 2 processing tds7 compute result. point 5 tds_process_tokens(). set current_results to cursor->res_info tds_process_compute() found compute id %d tds_process_compute() FAIL: id exceeds bound (%d) tds_process_compute() FAIL: get_data() failed tds_process_tokens: return status is %d Unrecognized TDS5_DYN type %x tds_process_end: more_results = %d was_cancelled = %d error = %d done_count_valid = %d rows_affected = %ld tds_process_end() state set to TDS_IDLE tds_process_default_tokens() marker is %x(%s) leaving tds_process_default_tokens() connection dead tds_process_env_chg(): %d bytes of collation data received changing block size from %s to %d server indicated charset change to "%s" tds_process_default_tokens: return status is %d oops: cannot process option %d of size %d 2008 (no NBCROW or fSparseColumnSet)looking for login token, got %x(%s) server reports TDS version %x.%x.%x.%x tds_process_login_tokens() returning %s tds_process_info() called with unknown marker '%d'! tds_process_info() reading message %d from server tds_process_info() calling client msg handler Msg %d, Severity %d, State %d, Server %s, Line %d %s tds_process_info() returning TDS_SUCCESS util.cTDS_INT_CONTINUETDS_INT_CANCELTDS_INT_TIMEOUTtdserror(%p, %p, %d, %d) OpenClienttdserror: returning %s(%d) TDS server connection failedRead from the server failedUnable to open socketUnknown host machine name.Write to the server failedunrecognized msgnotdserror: client library returned %s(%d) msgno == TDSETIME || rc != TDS_INT_TIMEOUTmsgno == TDSETIME || rc != TDS_INT_CONTINUEexit: %s(%d) valid only for TDSETIME state < TDS_VECTOR_SIZE(state_names)tds->state < TDS_VECTOR_SIZE(state_names)logic error: cannot change query state from %s to %s Changed query state from %s to %s Buffer exhausted converting characters from client into server's character setCharacter set conversion is not available between client character set '%.*s' and server character set '%.*s'Error converting characters into server's character set. Some character(s) could not be convertedSome character(s) could not be converted into client's character set. Unconverted bytes were changed to question marks ('?')Some character(s) could not be converted into client's character setBoth port and instance specifiedAttempt to initiate a new TDS server operation with results pendingBad token from the server: Datastream processing out of syncDB-Library capabilities not accepted by the ServerUnexpected capability type in CAPABILITY datastreamError in closing network connectionUnable to connect: TDS server is unavailable or does not existUnsolicited event notification receivedNegotiated login attempt failedError in sending out-of-band data to the serverTDS server connection timed outUnexpected EOF from the serverServer name not found in configuration files.Read attempted while out of synchronization with TDS serverUnknown message-id in MSG datastreamUnable to set communications timerUnrecognized TDS version received from the serverLocal configuration error. Check TDSDUMPCONFIG log for details.HpQretnametdserrortdserror: client library not called because either tds_ctx (%p) or tds_ctx->err_handler is NULL IDLEWRITINGSENDINGPENDINGREADINGDEADtds_set_statespidnvcuvclogin.cSQL AnywhereOpenServerSET TEXTSIZE %d MSSQLServeracceptedrejectedIP address pointer is empty Server %s not found! No server specified! invalid port number detected crypt flag %d ASA_DATABASEUnknown protocol version! login packet %s %s,%dusing NTLM authentication for '%s' account requested GSS authentication but not compiled in quietly sending TDS 7+ login packet 0 && 0x700 <= login->tds_version && login->tds_version <= 0x704NT login not supported using TDS 4.x or 5.0 Kerberos login not supported using TDS 4.x Encryption not supported using TDS 4.x    6tds7_send_loginU SELECT @@spid spSELECT CONVERT(NVARCHAR(3), 'abcEXECUTE ('SELECT CONVERT(UNIVARCHAR(3), ''xyz'')read.ccurcol->char_converror: tds_get_char_data: discarded %u on wire while reading %d into client. tds_get_char_datawrite.clen >= 0client->min_bytes_per_char < 3tds_put_stringstore_monthname: %ld %s convert.cjanfebmaraprmayjunjulaugsepoctnovdecjanuaryfebruarymarchapriljunejulyaugustseptemberoctobernovemberdecemberampm ,store_dd_mon_yyy_date: %s apmAPMstore_time() nanosecs = %d %lubuf%07dtds_willconvert(%d, %d) %u.%02u%u.%04utds_convert_money() %ld%.9g%.*f%.17g`````````````````(@`X`p`````````````````````````````````````````````````````````````````````````````````````````````````````@```````````````````````````````````````````````````````````````````````````````((Hxx$$$ld$$$ d<dddecimicrosecond && dr->decimicrosecond < 10000000tds_willconvert(%d, %d) returns %s srclen >= 0 && srclen <= 2147483647u%08X-%04X-%04X-%02X%02X-%02X%02X%02X%02X%02X%02X@ ``@p@ @@?AACC(C6 C(C6 6 A6 CCGG?OO__QXQ@FQHQ%lu.%02u%lu.%04u ](\K7AǺmZ{c^y55aw̫& . d'@Bʚ; d'@Bʚ; TvH rNZ@z~Ƥ#oxEc] d#NJ-^kc6ŭ5@-JEHJҷR <.;<П^O a%>Crm М,tF@~" 7&K[Am-ſtM1D [8 d7aBMr菇+Η{KFՠ6L;KzĆZ@" PĬCVe_)c\a%qߵ|oʕCz PpbZ0٣r!c[ζf{Rs$o,P6\m#/H[=u&'OE",Bbِe9|Viz:>8Jb5ia"ʔ@Mn201#~WϽO?헧d8nj'FE9N 6%z~ XwiZ<dtG^vd!vwQ_LjS2u/[!%W#>>O2;MrmgmsV$@}J4 FԅʻaakKJ:FUf14$%u]]F[ 8js&1K8et,5+wxP=1*莾dy)euwqIn{o  !!!]:config.cLooking for section %s. Found section %s. Got a match. Reached EOF Could not open '%s' (%s). Found conf file '%s' %s. globalSuccess: [%s] defined in %s. [%s] not found. FREETDSCONFset programmatically(from $FREETDSCONF)FREETDS(.config/freetds.conf).freetds.conf(.freetds.conf)(default).config/freetds.confloginerror: no such version: %s servername != NULLCouldn't open %s. Interfaces file %s opened. querytliTLI service. %d.%d.%d.%dtmp_port = %s. tmp_ip = %s. host field %s. Resolved IP as '%s'. not TDSVERTDSPORTTDSHOSTTDSDUMPCONFIGLooking for server %s.... .interfacesLooking for server in %s. client_charsettds_config_login: %s is %s. database_nameFinal connection parameters: server_name %20s = %s server_host_nameip_addrinstance_nameport %20s = %d major_versionminor_versionblock_sizeserver_charsetconnect_timeoutclient_host_nameuse_utf16app_nameuser_namebulk_copysuppress_languageencrypt levelquery_timeoutdump_filedebug_flags %20s = %x text_sizeserver_realm_nameserver_spncafilecrlfilecheck_ssl_hostnamedb_filenamereadonly_intentopenssl_ciphers %s = '%s' tds versioninitial block sizeswap broken datesenable gssapi delegationmutual authenticationdump filedebug flagsquery timeoutconnect timeouthostFound host entry %s IP addr is %s. emulate little endiantext sizeclient charsetuse utf-16dump file appendinstanceencryptionoffrequestrequirestrictasa databaseuse ntlmv2use lanmanrealmca filecrl filecheck certificate hostnamedatabase filenameread-only intentopenssl ciphersenable tls v1systemfreetds v1.5.16/opt/alt/freetds11/etcautoUNRECOGNIZED option value '%s' for boolean setting '%s'! error: cannot specify both port %d and instance %s. ... $FREETDSCONF not set. Trying $FREETDS/etc. ... $FREETDS not set. Trying $HOME. /opt/alt/freetds11/etc/freetds.conf... Error getting ~/.freetds.conf. Trying %s. Setting tds version to %s (0x%0x). servername != NULL && addr != NULLSearching interfaces file %s/%s. Found matching entry for host %s. Name resolution failed for IP '%s'. TDS version %sset to %s from $TDSVER. Setting 'dump_file' to '%s' from $TDSDUMP. Setting 'port' to %s from $TDSPORT. Name resolution failed for '%s' from $TDSHOST. Setting IP Address to %s (%s) from $TDSHOST. Getting connection information for [%s]. Attempting to read conf files. Failed in reading conf file. Trying interface files. Setting server to %s from $TDSQUERY. Looking for server in file %s. Looking for server in %s/interfaces. Setting 'ip_port' to %s from $TDSPORT. Setting 'ip_port' to %d as a guess. Failed to find [%s] in configuration files; trying '%s' instead. Found host entry %s however name resolution failed. tds_parse_conf_section: %s is %s. UNRECOGNIZED option value '%s' for '%s' setting! Valid settings are: ('%s', '%s', '%s', '%s') Setting ReadOnly Intent to '%s'. UNRECOGNIZED option '%s' ... ignoring. tds_lookup_host_settds_lookup_host0auto4.2505.0707.07.17.27.37.48.0tds_config_verstryesnoonofftruefalse/etc/freetds/tmp/freetds.log.%d(from $FREETDS/etc)etc/freetds.conf/tmp/tdsconfig.log.%d%b %e %Y %I:%M%psp_cursorfetchquery.clen <= stream->buf_lenSYSNAMENCHAR(%u)NVARCHAR(%u)IS_TDS7_PLUS(tds->conn)@P%dsp_execute''0xNUMERIC(%d,%d)DECIMAL(%d,%d)UNITEXTFLOATTINYINTUNIVARCHAR(%u)BITUNICHAR(%u)IMAGESMALLMONEYSMALLDATETIMEREALVARBINARY(%u)UNIQUEIDENTIFIERNTEXTNVARCHAR(MAX)SQL_VARIANTDATEDATETIME2DATETIMEOFFSETBIGTIMEBIGDATETIMEUNSIGNED SMALLINTUNSIGNED INTUNSIGNED BIGINTVARBINARY(MAX)Unknown type %d sp_executesqlsp_preparecreate proc as sp_prepexectds_submit_execute() sp_unpreparetds_submit_unprepare() %s select 1 where 0=1rpc_name DECLARE @P%d SET @P%d=@P%d OUTPUT EXEC sp_cursoropenprow_number && prow_countsp_cursorclosesp_cursoroptionsp_cursortds && multipleOFFtds_submit_optioncmd() SET ANSI_NULLS %sSET IMPLICIT_TRANSACTIONS %sSET CURSOR_CLOSE_ON_COMMIT %sSET NOCOUNT %sSET QUOTED_IDENTIFIER %sSET ANSI_WARNINGS %sSET DATEFIRST %dSET DATEFORMAT %sSET TEXTSIZE %dSELECT @@options what! optionval = %d BEGIN TRANSACTIONIF @@TRANCOUNT > 0 ROLLBACKIF @@TRANCOUNT > 0 COMMITtds_disconnect() tds_put_data_info putting param_name tds_put_data_info putting status p && start <= end && (end - start) % 2 == 0s[1] == 0 && s < end && (end - s) % 2 == 0e && query <= e && e <= query_endtds_send_cancel: %sin_cancel and %sidle tds_send_cancel: sending cancel packet tds_cursor_declare() cursor id = %d tds_cursor_open() cursor id = %d tds_cursor_open (): RPC call set up tds_cursor_open (): cursor open completed tds_cursor_setrows() cursor id = %d tds_cursor_fetch() cursor id = %d tds_cursor_get_cursor_info() cursor id = %d tds_cursor_get_cursor_info: tds_process_tokens returned %d result_type=%d, TDS_DONE_COUNT=%x, TDS_DONE_ERROR=%x ----------------> prow_number=%u, prow_count=%u tds_cursor_close() cursor id = %d tds_cursor_setname() cursor id = %d tds_cursor_update() cursor id = %d tds_cursor_dealloc() cursor id = %d tds_cursor_dealloc(): freeing cursor multiple->type == TDS_MULTIPLE_QUERYmultiple->type == TDS_MULTIPLE_EXECUTEtds_submit_optioncmd: returned option_value = %d IF @@TRANCOUNT > 0 ROLLBACK BEGIN TRANSACTIONIF @@TRANCOUNT > 0 COMMIT BEGIN TRANSACTION`'&P'`'`'`'`'`'`'`'`'`'`'`'`'`'`'`''`'`'`'`'`''0'x)****x)*****@)*@)***************+))**************************x)char_convsUTF-8UCS-4(null)tds_iconv_open(%p, %s, %d) UCS-2LEUCS-2BEUCS-2local name for %s is %s iconv_open(%s, %s) failed iconv(%s, %s) failed res %d len %d tds_iconv_open: done ANSI_X3.4-1968ANSI_X3.4-1986ARMSCII-8ASMO-708BIG-5BIG-FIVEBIG5-HKSCSBIG5HKSCSBIGFIVEC99CHINESECN-BIG5CN-GBCN-GB-ISOIR165CP1250CP1251CP1252CP1253CP1254CP1255CP1256CP1257CP1258CP1361CP367CP437CP65001CP819CP850CP862CP866CP874CP932CP936CP949CP950CSASCIICSBIG5CSEUCKRCSEUCPKDFMTJAPANESECSEUCTWCSGB2312CSHALFWIDTHKATAKANACSHPROMAN8CSIBM866CSISO14JISC6220ROCSISO159JISX02121990CSISO2022CNCSISO2022JPCSISO2022JP2CSISO2022KRCSISO57GB1988CSISO58GB231280CSISO87JISX0208CSISOLATIN1CSISOLATIN2CSISOLATIN3CSISOLATIN4CSISOLATIN5CSISOLATIN6CSISOLATINARABICCSISOLATINCYRILLICCSISOLATINGREEKCSISOLATINHEBREWCSKOI8RCSKSC56011987CSMACINTOSHCSPC850MULTILINGUALCSPC862LATINHEBREWCSSHIFTJISCSUNICODE11CSUNICODE11UTF7CSVISCIIECMA-114ECMA-118ELOT_928EUC-CNEUC-JPEUC-KREUC-TWEUCCNEUCJPGB18030GBKGB_1988-80GB_2312-80GEORGIAN-ACADEMYGEORGIAN-PSGREEK8HP-ROMAN8HZHZ-GB-2312IBM-CP1133IBM367IBM437IBM819IBM850IBM862ISO-2022-CNISO-2022-CN-EXTISO-2022-JPISO-2022-JP-1ISO-2022-JP-2ISO-2022-KRISO-8859-10ISO-8859-13ISO-8859-14ISO-8859-15ISO-8859-16ISO-8859-2ISO-8859-3ISO-8859-4ISO-8859-5ISO-8859-6ISO-8859-7ISO-8859-8ISO-8859-9ISO-CELTICISO-IR-100ISO-IR-101ISO-IR-109ISO-IR-110ISO-IR-126ISO-IR-127ISO-IR-138ISO-IR-14ISO-IR-144ISO-IR-148ISO-IR-149ISO-IR-157ISO-IR-159ISO-IR-165ISO-IR-166ISO-IR-179ISO-IR-199ISO-IR-203ISO-IR-226ISO-IR-57ISO-IR-58ISO-IR-6ISO-IR-87ISO646-CNISO646-JPISO646-USISO8859-1ISO8859-10ISO8859-15ISO8859-2ISO8859-4ISO8859-5ISO8859-6ISO8859-7ISO8859-8ISO8859-9ISO_646.IRV:1991ISO_8859-1ISO_8859-10ISO_8859-10:1992ISO_8859-13ISO_8859-14ISO_8859-14:1998ISO_8859-15ISO_8859-15:1998ISO_8859-16ISO_8859-16:2000ISO_8859-1:1987ISO_8859-2ISO_8859-2:1987ISO_8859-3ISO_8859-3:1988ISO_8859-4ISO_8859-4:1988ISO_8859-5ISO_8859-5:1988ISO_8859-6ISO_8859-6:1987ISO_8859-7ISO_8859-7:1987ISO_8859-8ISO_8859-8:1988ISO_8859-9ISO_8859-9:1989JAVAJIS0208JISX0201-1976JIS_C6220-1969-ROJIS_C6226-1983JIS_X0201JIS_X0208JIS_X0208-1983JIS_X0208-1990JIS_X0212JIS_X0212-1990JIS_X0212.1990-0JOHABKOI8-RKOI8-RUKOI8-TKOI8-UKOREANKSC_5601KS_C_5601-1987KS_C_5601-1989L1L2L3L4L5L6L7L8LATIN7LATIN8MACMACARABICMACCENTRALEUROPEMACCROATIANMACCYRILLICMACGREEKMACHEBREWMACICELANDMACROMANMACROMANIAMACTHAIMACTURKISHMACUKRAINEMS-ANSIMS-ARABMS-CYRLMS-EEMS-GREEKMS-HEBRMS-TURKMS_KANJIMULELAO-1NEXTSTEPR8SHIFT-JISSHIFT_JISSJISTCVNTCVN-5712TCVN5712-1TCVN5712-1:1993TIS-620TIS620TIS620-0TIS620.2529-1TIS620.2533-0TIS620.2533-1UCS-4BEUCS-4LEUHCUNICODE-1-1UNICODE-1-1-UTF-7UNICODEBIGUNICODELITTLEUTF-16BEUTF-16LEUTF-32BEUTF-32LEUTF8VISCII1.1-1WINBALTRIMWINDOWS-1250WINDOWS-1251WINDOWS-1252WINDOWS-1253WINDOWS-1254WINDOWS-1255WINDOWS-1256WINDOWS-1257WINDOWS-1258WINDOWS-874big5cp1250cp1251cp1252cp1253cp1254cp1255cp1256cp1257cp1258cp437cp850cp862cp866cp874eucJPeucKReucTWhp15CNiso81iso815iso82iso83iso84iso85iso86iso87iso88iso88591iso885915iso88592iso88593iso88594iso88595iso88596iso88597iso88598iso88599iso89roma8roman8sjisthai8tis620utf8char_conv->to.cd == (iconv_t) -1char_conv->from.cd == (iconv_t) -1tds_iconv_info_init: client charset name "%d" invalid tds_iconv_info_init: server charset name "%d" invalid Charset %d not supported by iconv, using "%s" instead tds_iconv_info_init: cannot convert "%s"->"%s" inbuf && inbytesleft && outbuf && outbyteslefttds_iconv: unable to determine if %d means in or out. io == to_server || io == to_clientsetting server single-byte charset to "%s" iconv name for ISO-8859-1 not found iconv name for UCS-2 not found error: tds_iconv_init() failed; try using GNU libiconv library setting up conversions for client charset "%s" preparing iconv for "%s" <-> "%s" conversion tds_iconv_get: what is charset "%s"? tds_srv_charset_changed: what is charset "%s"? EXTENDED_UNIX_CODE_PACKED_FORMAT_FOR_JAPANESEyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy`y`y`yyyyyyyyyyyyyyyyyyyyyyypypyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyPyPyyyyyyyyyĈԈ.............................................q."Sh$ U J......2aTB I j.3 uS ..... . .... ... ......................................................................................................................................ZG Z5?# (>.64;:?@CF3IYO S6Z=agYnYq\u:x<~>;5??>6;,?>6;3"?-<65<:B3I6U`<j>ux;?84<\6 67@\:<:9B 5\ &:07<3GRZ\:g5x385?79AZ:C3$ 5\@(,:7BH%NCU8[Cb=hDpuC}4;38>8== B 4'.88U@4F9L=VI]\gCp u8=P= $? T#8)= [ 9!$9+18%>3JQD[em\u|93497:4\Z@$Y%G,3+?@I#O V!\Eah pw]|<^=]KK*" <<A A'\-48@@RY\#`=gWqx~G&;<&6&O; T-A.9:>J;Z.j?zJ]5=0 > " [% ^. < :L Y g Cu '{ F K D ' ' D   \ Z  <  ( H (  ^ (  A. !: @ P -\ d <t 1 [   \ 9 ] /  F D &; AI Q =W Rb Fp y  N  C  8 = K B Y D D 2 & C4 1A L KX Fl /x  B  , D X  B ' S 2 >  ( \& . O: \I ] h q y B M U  L  V [ P & Qtds_iconvtds_set_iconv_nametds_iconv_info_initUCS-2LEtds_iconv_allocSJISkoi8sjisL1L8L5utf8iso81big5iso88iso15iso85iso89thai8L6roma8866iso815greek8iso_1roman8R8646L4iso86iso88591iso88598LATIN1iso88595LATIN8iso88599LATIN5850ISO8859-1ISO8859-8iso885915ISO8859-5HZISO8859-9ISO-8859-1ISO-8859-8ISO8859-15ISO-8859-5iso10ISO-8859-9iso88596iso14iso84LATIN6ISO-8859-15ISO_8859-1ISO8859-6ISO_8859-8CNISO_8859-5ISO_8859-9L2L7ISO-8859-6iso646ISO_8859-15C99ISO_8859-15:1998ISO-IR-58ISO-8859-16JPUSiso88594ISO_8859-6LATIN4L3ISO-IR-159ISO-IR-199ISO-IR-6CP819ISO8859-4ISO_8859-16ISO8859-10ISO-IR-165SHIFT-JISISO-8859-4ISO_8859-14:1998ISO-8859-10ISO-IR-101ISO-8859-14ISO-IR-148ISO_8859-16:2000ISO-IR-109ISO-IR-149SHIFT_JISISO_8859-4hp15CNISO-IR-166ISO_8859-10CP949CP866ISO_8859-14ASCIIISO-IR-14862ISO-IR-110GB_1988-80CP850CP950tis620iso82TIS620iso87JIS0208UTF8TIS-620ISO-IR-100ISO-IR-179UTF-8ISO-IR-144CP65001CP1251CP1258CP1255ISO_8859-10:1992ISO646-CNiso88592ISO-IR-138LATIN2iso88597ISO-IR-126CSISO159JISX02121990LATIN7IBM819ISO8859-2macturkiso13iso83ISO8859-7KOI8-TISO646-USTIS620-0BIG5ISO-8859-2CP1256ELOT_928macgreekISO-8859-7CSISOLATIN1CP1361BIG-5cp949CSISOLATIN5cp866ascii_8macthaiCP936ISO_8859-2GB18030ISO_8859-7TCVNIBM866iso88593CP874LATIN3cp850CP1250cp950CSISOLATIN6CP1254ISO-IR-87ISO-IR-57MS-ANSICSASCIIIBM850ISO-8859-3ISO-IR-157ISO-8859-13CP862cp1251ISO_8859-3cp1258EUCCNcp1255ISO-IR-226CSISOLATIN4ISO_8859-13US-ASCIICSSHIFTJISEUC-CNCSISO14JISC6220ROUHCROMAN8KOI8-Rcp1256GEORGIAN-PSISO646-JPcp936CSBIG5cp874JAVAcp1250CN-BIG5cp1254UTF7ISO-IR-127VISCIIECMA-118UTF-7UNICODE-1-1CP1252macUCS-4LECP1257cp862CHINESEMACGEORGIAN-ACADEMYCP932ARMSCII-8CSISOLATINARABICIBM862ASMO-708KSC_5601KOREANCP367GB2312CSISOLATIN2JIS_C6220-1969-ROHP-ROMAN8GBKGREEK8MULELAO-1CP1253CP437CSKOI8REUCJPUCS-2LECYRILLICECMA-114eucJPUTF-16LEMS-CYRLISO-IR-203EUC-JPmac_cyrGB_2312-80CP1133CN-GB-ISOIR165CSISOLATINCYRILLICMACTHAIISO-2022-CNKS_C_5601-1989CSISOLATIN3ISO_8859-8:1988ISO_8859-5:1988ISO-2022-CN-EXTISO_8859-9:1989MS-EEKOI8-Ucp1252UNICODE-1-1-UTF-7ISO-CELTICcp1257CSISOLATINGREEKISO-2022-JP-1CSUNICODE11WINDOWS-1251WINDOWS-1258WINDOWS-1255CSISOLATINHEBREWcp932TCVN5712-1CSVISCIICSISO57GB1988ISO_8859-4:1988WINDOWS-1256UNICODELITTLETIS620.2529-1EUCKRX0201MACINTOSHX0208eucKREUC-KRJIS_C6226-1983WINDOWS-1250WINDOWS-1254IBM367MS_KANJIcp1253ARABICcp437EUCTWKOI8-RUeucTWIBM437VISCII1.1-1EUC-TWCN-GBKS_C_5601-1987WINDOWS-874JOHABISO_8859-1:1987CSISO2022CNUCS-4BEISO_8859-6:1987ISO-2022-JP-2TCVN-5712WINDOWS-1252WINDOWS-1257ISO_646.IRV:1991ISO_8859-3:1988CSUNICODE11UTF7CSIBM866ISO-2022-JPWINDOWS-1253JIS_X0201JIS_X0208EXTENDED_UNIX_CODE_PACKED_FORMAT_FOR_JAPANESECSKSC56011987UCS-2BEGREEKMACICELANDJISX0201-1976UTF-16BEUTF-32LEMACCROATIANUNICODEBIGTIS620.2533-1CSISO58GB231280ISO_8859-2:1987ISO_8859-7:1987MACROMANX0212CSHPROMAN8CSISO87JISX0208JIS_X0208-1990ISO-2022-KRBIG5HKSCSTIS620.2533-0CSISO2022JP2BIG5-HKSCSCSMACINTOSHCSHALFWIDTHKATAKANACSISO2022JPMS-HEBRJIS_X0212-1990CSPC862LATINHEBREWHZ-GB-2312JIS_X0208-1983NEXTSTEPCSGB2312JIS_X0212CSEUCKRBIGFIVEMACROMANIACSISO2022KRHEBREWBIG-FIVECSEUCTWANSI_X3.4-1968MS-ARABMACCYRILLICANSI_X3.4-1986CSPC850MULTILINGUALIBM-CP1133UTF-32BEMS-TURKJIS_X0212.1990-0MACCENTRALEUROPEMACTURKISHMS-GREEKMACARABICWINBALTRIMMACUKRAINETCVN5712-1:1993MACGREEKCSEUCPKDFMTJAPANESEMACHEBREWAoAoÓåAoAodate formatdate-only formattime-only format@._locale.cdefaultAttempting to read locales.conf file /opt/alt/freetds11/etc/locales.confwhxxwxxwwPxdummy textptr{{{yy{yy{e~~~e~~~e~e~X~ĂtTX0ȂH&&HHHHHHHHHHؑȑhHБ****************** @` @*********************************************************`***************************************************************tds_generic_putEED-%EE%E--%tds_get_data: type %d, varint size %d tds_get_data(): wire column size is %d tds_generic_put: colsize = %d tds_generic_put: not null param varint_size = %d data.ctds_generic_put: null param curcol->column_varint_sizenet.caddr != NULLsocket creation error: %s Connecting to %s port %d connection established getsockopt(2) failed: %s getsockopt(2) reported: %s tds_open_socket() failed tds_open_socket() succeeded send(2) failed: %d (%s) tds != NULLtimeout_seconds >= 0tds && bufferselect(2) failed: %d (%s) tds7_get_instance_ports(%s) instance info%15s %s ServerNamedefault instance port is %d InstanceNametcpIsClusterednpviaConnecting with protocol version %d.%d tds_setup_socket: connect(2) returned "%s" error: poll(2) returned %d, "%s" rc == 0 || (rc < 0 && (sock_errno == TDSSOCK_EINTR || sock_errno == EAGAIN || sock_errno == TDSSOCK_EINPROGRESS ))tds_select: invalid interrupt handler return code: %d poll_seconds == timeout_secondstds_goodwrite(): timed out, asking client tds7_get_instance_port: timed out on try %d of 16 error: expecting '%s', found '%s' tds7_get_instance_port(%s, %s) tds_goodwritetds_selecttds_addrinfo_set_portin tds_push_func tls.cin tds_pull_func_login have >= 0in tds_push_func_login Got name %s xn--in tds_pull_func handshakechecking hostnamecreating bioinitializing tlsloading CA fileloading CRL fileinitializing sessionHIGH:!SSLv2:!aNULL:-DHAlt names number %d handshake succeeded!! %s failed setting custom openssl cipher to:%s setting default openssl cipher to:%s handshake failed with %d %d %d tds_pull_func_logintds_pull_functds/8.0stdoutstderr (%s:%d)%s:%d%04x%02x%c%Y-%m-%d %H:%M:%Slog.ccolcol->column_datatype %s has value "%s" type %s has value NULL type %s has value %d type %s has value %f cannot log data for type %s Starting log file for FreeTDS %s on %s with debug flags 0x%x. no memory to log data for type %s `xtdsdump_colpacket.cconn && packet!conn->in_net_tdstimeout Sending packetpacket->data_start == 0Received MARS headerReceived packetconn->recv_pos < packet->data_len && packet->data_len <= packet->capacityconn->recv_pos <= packet->data_len && packet->data_len <= packet->capacityReceived MARS with no session (%u) Write attempt when state is TDS_DEADRead attempt when state is TDS_DEAD tds_packet_readtds_connection_networktds_packet_cache_addstream.cstream->buf_len >= lens->allocated > s->sizeib >= tempTroublesome bytes:left > 0stream->buffer == (char *) tds->out_buf + tds->out_posstream->buf_len == tds->out_buf_max - tds->out_pos + TDS_ADDITIONAL_SPACEError: tds_convert_stream: tds_iconv returned errno %d, conv_errno %d Error: tds_convert_stream: Gave up converting %u bytes due to error %d. No conversion possible: some bytes left. tds_dynamic_stream_writetds_staticout_stream_writetds_dataout_stream_writetds_dataout_stream_inittds_convert_stream'TDS_AUTH_TOKEN noncechallenge.cDraining %d bytes NTLMSSPKGS!@#$%/dev/tty@                                                                                                                                     )4%/7(3-!0,1'8"5.*2$  91)! :2*" ;3+# <4,$?7/'>6.&=5-%  (08@ '/7?&.6>%- 5=$, 4<#+ 3;"* 2:!) 19:2*" <4,$ >6.&@80( 91)! ;3+# =5-% ?7/'6666666666666666\\\\\\\\\\\\\\\\.%06lu;  %x0Q0lR0XA HBHCHChxE8FhFGPLXMMMXNNN8OhxQQ8RRSPSxT(UXUhV@xVTVhV|WX(YXY xY4Zlh\]X^`4adbHcxccdPHfXghhh(hDiX(x؅ H<(t8(HȌhH \hȖTؗșPȜ( H\Ȩh8T`($ h (!8d!!!8"x("D"(""8#T#(l#H###($xx$$X8%%%(%8%x%&&0&H&(`&Hx&h&&&(&8 'X('d'X'''( P( (!(")#4)X#`)#)#)$)($)x$ *(&4*&P*'t*X(***++h+H+.t+.+X/+X1+1,Ed,hG,HH,H,L-ML-XZ-]-8`.؈..x.(/h/X//8P0d001d1x1h2H<2\2223T3x3X3h4(4xL44445(5p5X5H6(T6x6607HX7hl77778(8X08D88(8909T9X99H@:h|:::x: 8; d;x ; ;;@<h<8< =(l=!=$=)$>h*T>*|>8+>+>,(?,d?4?5?x6 @h78@H8x@h9@<AX<,A@@AATABAhBACAJ,BL|BLBLBxNC8WPCWChXCXCXD(Z\D[D\Dh]DE^E^E8aEXaE(f,FgdFlFHmFXmFn(GhnPGXoGhoGxoGoGoGxq$HqDy<(Ab8 <PEA D(D0Q(D ABB\P=9Asxt=AO,x=<BAA  ABK H>uFBB B(D0A8Dp} 8A0A(B BBBD ?1NZH,?zEh K A L@@EG  AH 8p@SDJ mDAU SDA$0AMEAG }AALXAFOB A(A0q (A BBBG a (A EBBA $Av8DB-LL`BFEB A(A0 (A BBBH g (A FDBA  C C(CAbdC8pCFBA A(G0t (A ABBE 4(DdEDD0p AAA D CAH `E)JT|0E4P7Ef$ >7/AYB FAKH>7XH J A d>7 Lx>7=FBB E(A0A8G 8A0A(B BBBF (>?tFAD ^DB4>(@BAA e DBI YAB,?@8@?@BBK I(A0f (C BBBH 8|?@BED D(F@h (A ABBE L?A`FBB B(A0A8D9 8A0A(B BBBK (@EEID0A AAK 4@F&EV E AT@FrH0C E @p@GYED A(G@ (A ABBA u@G0H@GFBB B(A0A8DP 8A0A(B BBBG AXIpED m AI 8AIpED m AI @\AIrFDD F0a  AABG T  AABH TA,JFBB B(A0A8H Q GH 8A0A(B BBBH PAM`FBJ E(A0A8G  8A0A(B BBBH LBQ `BQ (tBQTFAD b ABH 8BQFDA Z ABH H ABE (BpRTFDA d ABF @CRABEH A(A0D@ 0A(A BBBB (LCT{FDD ^ GBK xCT$HWCTIECLC U FBB E(A0A8G 8A0A(B BBBC C^{LD^BBB E(D0D8G! 8A0A(B BBBK `Dl`GQq|D`jEC E XD`&D a{OgD4 HD`a#FBB B(A0A8G 8A0A(B BBBA 8(EDdFED C(G (A ABBG ,dEegEAQ AAE EhFBB A(A0b (A BBBK  (H GBBL e (H DBBK W (D BBBG Y (H DBBG LF j BIE A(G0r (D DBBJ l (A BBBA lFjvHFhkBBB B(A0A8D 8A0A(B BBBB 8Fs$BBA D(G0 (A ABBG 0 GuBAC G@  AABF @@GuFBH A(D0DP+ 0A(A BBBD PGhwgFEF A(A0 (A BBBD : (F BBBA Gy"$GyQECG }CAHHyFBE B(A0A8GP 8A0A(B BBBK 4`H,{qFDD x ABG YABHt{>(H{FDA rCJHH|FBE A(A0 (D BBBB D(A EBB$I|>8I}W(LIP}GEDG c AAK ,xIt}FDA [ ABG $I4~6EGD cAAIL~;\,Ix~FDD l ABC `J~FBB B(A0A8G I!!R!k!A!z 8A0A(B BBBE $xJ4AEDG nAAJ\JhVwJJ(ĴEKG0r AAE K0EV$8K4@AHG cGAL`KLWFBB B(D0A8G 8A0A(B BBBH K\ITnKEV(KAAG0 AAA <L8BBA A(G L1 (A ABBA 4TLADGPBXS`PXAPb AAJ 8L@BEG A(J (A ABBD 8LĈ]BEE G(D0{(D BBBLMBBB B(A0A8G L7 8A0A(B BBBD \TMXnFBB B(A0A8G 8A0A(B BBBI {KSALMhEFBB B(A0A8DP  8D0A(B BBBD $NhXEDF FAA,N P@NFBE B(A0A8L 8A0A(B BBBH 4NTFHD A(G0p(D ABBNN̜<LN-FQH E(H0D8T 8A0A(B BBBA HDOؠFJJ J(D0C8FP 8A0A(B BBBA HOFBE B(E0A8D@M 8C0A(D BBBD ,OУEFT AAE L PMFBE B(D0A8J  8A0A(B BBBF @\POGHI B(E0A8"0A(E BBBP(LPFEB D(E0 (A BBBK q (D BBBE ,QhFED  ABK @4QYGJB B(A0A80F(B DBbxQ4(LQPFEB D(E0 (A BBBK q (D BBBE ,QFED  ABK ( RmFAD | DBC 08RLEDD g DAG FDA,lR fJGI |DAE0R`|FDA D0N  AABG 8R|FED A(GPJ (A ABBI  S$ S+EHG TAALHSFBA A(G0` (D ABBF K (D ABBD $ST@EGG gDA$Sl,EGG IGDStS$(TPEDK0yAAGAK*Z5A]Q^T;Z<c=l=u|&'(&{'(&)#*+==i>Y,,\ " )-5.E/Q0_1m2iy3456789:;<=>? 5#8.99:D=O<Z>e@o;z?A3BC4567\D@#\-73B6M8W:a;k<u=>?\334556677/?8J8Z9e9u::;;<<==>>??ED$F2@DDSF]DgDvDBBBN@GHIJAAAA89 : ?345Ye8q9}:?345&K*L4MENQO]PfQpRK{KSTUVZWXYYZ ZZ[![+[6[FCNCUC^ClCzC$]*\ v\ ]L]S^^   - : G T a n {  !WFNDB               ! & ' (   6 8" 9( :. ;4 <: =@ >F O 6Y 8b 9k :t ;} < = > ? ? Y Y Z C C i r    2 &:@F L!R"X#^$d%|&'()*+,)-5.E/Q0_1m2y3456789:;<=>?e@ABCDE$FGHIJ&K*L4MENQO]PfQpRSTUVWXYZ[ v\]S^m<<<@i<<<o xe g$$o0p ($8@UP!3 oo@ ooo$eeeeeff f0f@fPf`fpfffffffffgg g0g@gPg`gpggggggggghh h0h@hPh`hphhhhhhhhhii i0i@iPi`ipiiiiiiiiijj j0j@jPj`jpjjjjjjjjjkk k0k@kPk`kpkkkkkkkkkll l0l@lPl`lplllllllllmm m0m@mPm`mpmmmmmmmmmnn n0n@nPn`npnnnnnnnnnoo o0o@oPo`opooooooooopp p0p@pPp`pppjOGA$3a1xe_ GA$3p1113P{gGA*GA$annobin gcc 8.5.0 20210514GA$plugin name: gcc-annobinGA$running gcc 8.5.0 20210514GA*GA*GA! GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realign GA*GOW*P{eGA*{!GA$3a1`h GA$3p11130ygGA*GA$annobin gcc 8.5.0 20210514GA$plugin name: gcc-annobinGA$running gcc 8.5.0 20210514GA*GA! GA*FORTIFYGA+GLIBCXX_ASSERTIONS GA*GOW*GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realignGA*yg GA*GOW*gg GA*FORTIFY b GA*FORTIFY0gGA+GLIBCXX_ASSERTIONSGA+GLIBCXX_ASSERTIONS btsql-1.5.16-1.el8.x86_64.debug7zXZִF!t/W]?Eh=ڊ2NK$=_t/Ya_-8@x_O?1Ԥ4oR)1ΟQ>3YFgZq$uG#7N#}gB%B˄f`Ap^ i3 Mۼ9-+4 4kl`LvNW.%[LOV;tU8A 4aq=[v_m7y'GNΑ .]F Lsv9фT<"v$Tsj lnV\' uvm{^\K8*e`*GHH"$YiL^5*xzsq@1W2j\su!G,Ɯr ѲMJ]G\V>>dY= bB/io͑!g+9CYȩSv34_|w.+M48|+dgU|ݗMqR èEGq@k}L>tk1wYr ZPz&rl[Ā}A|zXsd׎{D|&B∶oRu1ǬƘAh۳m2!x.N )g:^ }^N/hĆ`2U`F_A_HbquAnBnJ,;|0&ցdNǧ;”{}[8Ue%nfNn$Xe"PlJPc01703l^EzNzɘх.acP?Rx6Yw[l[Z^ٟQbs} Ou *o6!8 twes~8{7o{{=2CJ+2[.߭PL殓.bp} ǺOz;$Kv9nETu6M {?V gʾ/O8Tmu6Eջ.)Ѥ/Ʀ֤>I"pלv88$xj7@AO< kpPROs؟+0%]8E ,A Jn\lqMtZ |NTՊ΄%]9.ݒn]uqOju a3ww&Zh$̂fiHT|D#0}%jc*_=>~IDʆb=wyv;QӺ<]f6 )~~iLitqkgF>=>/I%a$Lg%̊Y.6Tةot{oȠ#zlB?8n|qlhLuIo_&RD?ѯesZm{Mfm3I14dne,T%l'CU'XQ'udmJIN3k݇u7P&#OM,_܆잤2٠g_MAa78׫B>amդ>0_Tmw˧婥Ƕ4;VF֢`&@Zu~y9g,&lQ9; 9:<`@wNp>#5(.kc{xX_hU=:L$2}lG찬* SfZr96d>V\$Y0Na[va2 4d'g"=Hz<Mz78} i A)c}!*C授hVGM@Ж*"V44fxp|FXvQeM$hn1dBV"SiwjD0(I.&̞M#ZyN(=$lYCj 99?fFp{7b#sԪLC5Hs`Y$Mݙm织]ҴQ[8鋖Q#fjo৳ $G'7D^j$K8b̺p'&:<_ݾpRqSsSD.tQv *H/,V)&{ЧS8 $Mڤ91Qy7lȋHbix`Y.*[6J7r_dQ8gIz 1Y4B#Q֠)ܾ  #h |icJ:9re/.F 8v4žDbķ?řCKv^w(wg+Cki{ Ld+n^5\J)58jIu ハw1?k> G? dܺa"yCN^m1)+(@V*yɥ:?S;vՆv]6@|ٙe6<먮.q «)7JF |/0d:Z!=8Jr3Y:{Y8-ܘdvrI&SYРù]Z,XЭf$qCϝ_pXE93Rʊ(6LOQۣ_&A^xɹGehO=s(xdl.X_2`lEyw -rU9X]E#tkWÿwXԝ&= )>xn@_^b7nIj*=)輳CX_,JUWCPCoӆ"G`-"qQ*”@ UoH*ྖ#n;9e= LgˉSs]y2KrLF]ܦSf:,qSZ~LGsug)ٌ, :eoɑ19f'֖Qh{k~F^>Ǡ-<$a%H&d9ki0O8 @{D#O4HP2R(n`L^ˀi1=좼8^lH!{3dsVKJ" Fj '3@=`Мn ~v[E2H qqiFE#=v lߟב)E0x*L`MPPR> POiPӿH=J ]71aR( }sÞnGx7cLNҮOtLEN O 78*Rwq 6[3"36:b]{Aury8Ŏ3hܩѲ 3(oJ[{-*"G#\=uS|̾4SD#>S'\J1 dֆZ?,C${.W{tiHdz5kfؑH̹}!y*XjZ0 Yq(5ܔ0\Sƺ=p=4A}(7D j.G阯噟qt,.ޫDq4dTltNDw;ɦB=Ht=e eOnva;|>XjTf݂V@RT R8hn<5U2&SۖV +bd(cHU]KCyQRtyND b`l]OlD_}cJ)ܩM֙޲rp;әzH&Pv"ֻjFԳq$>+(@snMT+bMZjmH$^YeC r4? nVs8p<IPv+Vm10޶By2l(Vj?VjVRfν_5Ԉ/+ط ANG'w}hn:TX gSUVXTO;+MH5Yš>k%Q(Gqq\iI k65VGƍ=E V&R Qz7źϳ0S3M fgR3(Q|,mbͣ鎎Ohm;Lei)8.ܫʜI\,< ʪc$ U2TE۠֗9cq&AM4^?6RHNkWTCjC;&Av@{s/ u,)%gYZ.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.data.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata  & 4$Go00<Q ppXY aorno@ @ }P!P!3B@U@U8xexeee pp P{P{gg  h h JJ XXU$$ $  $0($($  $ h d   ,$/P8>PKj5]jppxpxusr/lib64/libct.so.4.0.0nuȯELF>`@0q@8 @ &&&&&()h- GG&G&00888$$ Std Ptd888QtdRtd&&&&& ) )GNU=vB%(-o9\C ЄG  Cp00D   $ *;Hrp6 B!)HF+<\h4k%Q> ުC 1eK %qgoD^sEiSFg1Ga}sap1%}-I1$z4V>}C qS_Řo@$Q[ӕfĆ,õx\HpF3'pҰ_GT3B.H0.9 Iݾۇ&ŒiIX3Bϑ`N #98' ޭh]O@nc9g۷YR'ŨMHpb$U"B;D7GMv&Z^ `q  4 Az  f{  J? e|Uj7d  U ! HC o  + S , \ N abF"<{  : B&b ] X  P] ,4 >Brg <dl   k c   _ "  S r <  w   & (  L > tJO )   ~n p [ y- mG   _?\ @ <Q p `\a B `P `X) `H T ` p= @W? ?G @R C\2 1 Ssn zz @ Sh : rd  FP @ad` 0Jx(   :c PMY #D `^ \^ 0Pr K| )  Wa $ )o PJ ?  Ej JoF PIh Wh bS  p+ `^U Id >#7 p`ds (* @ Do  `T! F\ V; Ed; Hd [^G 4  > `Z  Eh > pC5f ' Zq 0 +__gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizemalloc__asprintf_chk__stack_chk_failstrncmpstrlenct_exitct_initct_con_alloccallocct_callbackct_con_propsstrtok_rstrtolstrdupmemcpyct_connectct_cmd_allocct_commandstrncatct_results__assert_failct_bindct_cmd_dropct_closect_con_dropct_fetchct_sendct_cancelct_describect_res_infoct_configsnprintf__snprintf_chkct_cmd_propsct_compute_infoct_get_data__sprintf_chkct_send_datact_data_info__strcpy_chkct_capabilityct_dynamicct_paramct_setparamct_optionsct_pollct_cursorct_diagcs_prretcodecs_ctx_alloccs_ctx_globalcs_ctx_dropcs_configmemsetcs_convertcs_dt_crack_v2cs_dt_crackcs_loc_alloccs_loc_dropcs_localestrcpycs_dt_infocs_strbuildcs_calccs_cmpcs_conv_multcs_diagcs_manage_convertcs_objectscs_set_convertcs_setnullcs_strcmpcs_timecs_will_convertblk_allocblk_bindblk_colvalblk_defaultblk_describeblk_doneblk_dropblk_getrowblk_gettextblk_initblk_propsblk_rowallocblk_rowdropblk_rowxfer_multblk_rowxferblk_sendrowblk_sendtextblk_srvinitblk_textxferstrerrornl_langinfogethostnamepthread_mutex_destroygetenvfreeaddrinforeallocpthread_cond_destroypthread_mutex_lockpthread_mutex_unlockpthread_mutex_initstrstr__errno_locationclock_gettimepthread_mutex_trylockstrchrgetpidstrcasecmp__memcpy_chk__ctype_b_locstrftimestrtodmemmovestrrchrfgets__ctype_tolower_locfopenfcloserewindgetaddrinfo__vasprintf_chkiconv_openiconv_closeiconvmemcmpsetlocaleioctlgetnameinfosocketsetsockoptgetsockoptrecvSSL_pendingeventfdsocketpairfcntlSSL_readSSL_writesendto__fprintf_chkfputcBIO_get_dataASN1_STRING_to_UTF8CRYPTO_freestrncasecmpBIO_meth_freeSSL_freeSSL_CTX_freeTLS_client_methodSSL_CTX_newSSL_CTX_set_optionsSSL_CTX_load_verify_locationsSSL_CTX_get_cert_storeX509_LOOKUP_fileX509_STORE_add_lookupX509_load_crl_fileX509_STORE_set_flagsSSL_CTX_set_verifySSL_newBIO_newBIO_set_initBIO_set_dataBIO_ctrlSSL_set_bioSSL_set_cipher_listSSL_set_optionsERR_clear_errorSSL_set_connect_stateSSL_connectBIO_freeSSL_shutdownSSL_CTX_set_default_verify_pathsOPENSSL_init_sslBIO_meth_newBIO_meth_set_writeBIO_meth_set_readBIO_meth_set_ctrlBIO_meth_set_destroySSL_set_alpn_protosSSL_get_stateSSL_get_errorSSL_get_peer_certificateinet_ptonX509_get_ext_d2iOPENSSL_sk_numOPENSSL_sk_valueASN1_STRING_get0_dataASN1_STRING_lengthGENERAL_NAME_freeOPENSSL_sk_pop_freeX509_freeX509_get_subject_nameX509_NAME_get_index_by_NIDX509_NAME_get_entryX509_NAME_ENTRY_get_datastderrstdoutfputspthread_selffflush__vfprintf_chkstrcat__uflowfreadfeofflockfilefunlockfilepthread_cond_signal__memmove_chkRAND_bytesrandBIO_new_mem_bufPEM_read_bio_RSAPublicKeyRSA_get0_keyBN_num_bitsRSA_public_encryptRSA_free__memset_chk__ctype_toupper_locgettimeofdaysigemptysetsigactionkilltcgetattrtcsetattrstdinnanosleepmemchrpthread_condattr_initpthread_condattr_setclockpthread_condattr_destroypthread_cond_initpthread_cond_timedwaitpthread_cond_waitlocaltime_rgetuidgetpwuid_rlibssl.so.1.1libcrypto.so.1.1libpthread.so.0libc.so.6libct.so.4GLIBC_2.3.3GLIBC_2.2.5GLIBC_2.3.2GLIBC_2.14GLIBC_2.4GLIBC_2.8GLIBC_2.3GLIBC_2.7GLIBC_2.3.4GLIBC_2.17OPENSSL_1_1_0/opt/alt/freetds11/usr/lib64:/opt/alt/openssl11/lib64        S @si x ui  ri  c  ii ii ii ii ti   ui  4  m B m &&P&&&&`&&'&'& '&0('&P0'&@8'&`@'& `'&h'&`p'&Px'&'&'&@'&'&В'&'&І'&0'&'&'&0(&` (&~((&0(&8(&@(& `(&h(&p(&x(&Ѝ(& (&~(&(&(&(&І(&(&(&(&)&Ж()&8)&hH)&X)&@h)&x)&)&0)&x)&)&)&()&P)&)& *&*&(*&(8*&H*&(X*&Hh*&Dx*&x*&Z*&*&*&*&u*&@*&+&! +&1 +&+&H @+&:P+&~?`+&?p+&*=+&;+&;+&D+&;+&F+&;+&;+&;,& <,&; ,&;0,& <@,&<P,&<`,&?p,&<,&%<,&+<,&_?,&:<,&A<,&H<,&O<,&V<-&]<-&d< -&k<0-&r<@-&y<P-&<`-&<p-&<-&<-&<-&<-&<-&<-&<-&<-&<.&<.&< .&<0.&<@.&<P.&<`.&<p.&=.&=.&%=.&.=.&@=.&U=.&a=.&m=.&z=/&=/&= /&=0/&=@/&=P/&=`/&=p/&=/&=/&=/& >/& >/&0>/&A>/&I>/&W>0&c>0&w> 0&>00&>@0&>P0&>`0&Dp0&>0&>0&>0&>0&>0&>0&>0&>0&>1&<1&< 1&`K01&>@1&<P1&?`1& ?p1&?1&?1&0?1&.E1&:&D:&D:&D:&D:&E;& E;&E ;&E0;&%E@;&+EP;&4E`;&=&WF=&>=&\F=&hF=&sF>&F>&F >&F0>&F@>&FP>&F`>&Fp>&F>&F>&C>&=>&C>&F>&F>&G>&G?&G?&G ?&G0?&#G@?&*GP?&1G`?&8Gp?&>G?&DG?&JG?&PG?&VG?&\G?&bG?&hG?&oG@&uG@&|G @&G0@&G@@&GP@&G`@&Gp@&G@&G@&G@&G@&G@&G@&G@&G@&GA&GA&G A&H0A&H@A& HPA&H`A&HpA&HA&&HA&8A&;A&/;A&7;A&D&> D&>0D&>@D&?PD&0?`D&M?pD&?D&?D&?D&?D&?D&?D&?D&?D&?E&?E& @ E&@0E& @@E&+@PE&6@`E&A@pE&L@E&W@E&b@E&@E&@E&@E&AE&eAE&wCF&CF&D F&D0F&$D@F&+DPF&D`F&DpF&DF&DF&DF&DF&DF&DF&DF&DF&DG&EG&ME G&WE0G&F?@G&wEPG&|E`G&CpG&FG&>G&yG&yG&zG&zG&zG&zG&zO&O&O&/O&8O&@O&CO&O& J&(J&0J&8J&@J&HJ&PJ&XJ&`J&hJ&pJ&xJ& J& J& J& J& J&J&J&J&J&J&J&J&J&J&J&J&K&K&K&K& K& (K&!0K&"8K&#@K&$HK&%PK&&XK&'`K&(hK&)pK&*xK&+K&,K&-K&.K&0K&1K&2K&3K&4K&5K&6K&7K&9K&:K&;K&<K&=L&>L&?L&@L&A L&B(L&D0L&E8L&F@L&GHL&HPL&IXL&J`L&KhL&LpL&MxL&NL&OL&PL&QL&RL&SL&TL&UL&VL&WL&XL&YL&ZL&[L&\L&]L&^M&_M&`M&aM&b M&c(M&d0M&e8M&f@M&gHM&PM&hXM&i`M&jhM&kpM&lxM&mM&nM&oM&pM&qM&rM&sM&tM&uM&vM&wM&xM&yM&zM&{M&|M&}N&~N&N&N& N&(N&0N&8N&@N&HN&PN&XN&`N&hN&pN&xN&N&N&N&N&N&N&N&N&N&N&N&N&N&N&N&N&O&O&O&O& O&(O&0O&8O&@O&HO&PO&XO&`O&hO&pO&xO&O&O&O&O&O&O&HH%HtH5%%%hhhhhhhhqhah Qh Ah 1h !h hhhhhhhhhhqhahQhAh1h!hhhh h!h"h#h$h%h&h'qh(ah)Qh*Ah+1h,!h-h.h/h0h1h2h3h4h5h6h7qh8ah9Qh:Ah;1h<!h=h>h?h@hAhBhChDhEhFhGqhHahIQhJAhK1hL!hMhNhOhPhQhRhShThUhVhWqhXahYQhZAh[1h\!h]h^h_h`hahbhchdhehfhgqhhahiQhjAhk1hl!hmhnhohphqhrhshthuhvhwqhxahyQhzAh{1h|!h}h~hhhhhhhhhqhahQhAh1h!hhhhhhhhhhhqhahQhAh1h!hhhhhhhhhhhqhahQhAh1h!hhhhh%%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%DHH=%H=%Hf.fKH=a%HZ%H9tH%Ht H=1%H5*%H)HHH?HHtH%HtfD=%u+UH=%Ht H=Ξ%d%]w=y%SuTHRt#~&HMtHDHBHE[HH)[HEf.H1H=!Mf=%SHuSHtFH;Ht HH{C@u H[qH{8gH[^fD[fDHH1H=sM뎐=u%ATUHSHL#IL$ H1HHHuHAT$9 AL$tIT$HtHHu9~q87HHt_A|$tHHH;HU$H,HWHOHHtHtHHH)H)H[]A\D[1]A\fI\$ 15@IIHW#HcH=l1=LUHSHH=)%H3HNH1 HHHuHˋV 9 NtHV Ht HHu9~i0HHtWHH;HHUHGHHWHHHH)$H)ƉHH[]fDH1[]H^1FDIIH' HSH=41K= %SHu3HCHtHxHtt#wC[DHHם1H=J뮐UHSHH=%HHCPHPH9u2HH9t HHu1ۀ=_%H[]HÀ=F%HEHHEH} H}H}H}HH[]H[]fIHH+11H=I$Hd12H=I%HUHHERH\2H=1YI3HW2H=i1:ID"tS~1#t1(uHt@1!uHtÐ1Htыwʈ "ff.@=%ATUSHu+[]A\f?IMHHH=1_Hff.fUSHHH(=G%HC(u]H{pHt /HCp1H{\=%HkhuOHtH}H}HHChH[]ÐHHg?1H=G널HH1H=G뒐AWIEAVAAUEATIUHSH( H$h $` H $t@)$)$)$)$)$)$)$ )$ dH%(H$h1=%LH HL}LeMH$p D$(0HD$0H$pD$,0HD$8DDT$@ D D Ѐ=%D$D3o1LtL|LbAHQJcH>%L fLAtALHLEH|$ H1ARLپHY^Ll$ HD$(H$HLH|$HH\$@PAjLL$Hc$XLDXƄ$`HLDŽ$\HDŽ$`DŽ$pXZHAH$hdH3%( H( []A\A]A^A_DH$p M|$8D$(0HD$0H$pD$,0HD$8Mtl1LLfDw~5<L L tL\f1Ltf1L?f1Lf%L D%L ~D%L LD%L DHMILt$HG H=tSARDT$0AUAVL\$86CH0DT$L\$11LfLQ@L @L  @1LGfE1C1LfSELH=AR1EH L\$B=%_AXL\$1HH=TB3L\$U%Qo1fDD1L\$HIH=LT$LL$ALL$LT$L\$1D龧L\$HH=LT$AALT$L\$HJcH>m%L ]qZ%L ^fDQ~Ln LHf1L-ff.fAWAVIAUIATUSH=ý%LLcE=%I^PHtiL=/LLHu H&L9tnHHt1=R%HktHL01H=P#@HkDH11PH1AhALUXZHH[]A\A]A^A_AIH70H|H=1?LH01H=?HHL1ATAA1PH1jH e=E%u DHAH1HH=1?Hf.USHH=%u8HC`HH HPHHgCtH[]AHHB1GH=>ff.AUIATIUSH=e%u{1'HHt?H5H tfD1HL$(dH3 %(NH8[]A\A]A^A_IHHDD$HD$IC u}DAC C0f=tf=%AC bHIHD$HD$$AiLl$ HD$HT$DLL=>%AE,AAC6AC A3C HC HD$I4IHD$"IHH9PH=Z$DC lv-v3fDH{j{ uf{0uHs8H{\HC8fT$ 8SDgH HcH>IHHDD$I1D$$AC x=%S IHHDD$IC itC0f-fAD}hC AfDC CDC HD$-IdžjDC]C 1ҹLLWT$ C AYMC@>=]%7LEκLIH茻IHtAHEI>8L L=%HxID$HH#D(D$ C@AC { C AuC@A]APfDDD$ D$THH=j1;!D\$ xH6A{ t^AC ҁAC IALD$C D$AC qK 1H;7\H=j =s%K 1H9G\H=m@ =I%K0H8W\1H=B LH>'1H= A|$Et$AL$EH'IUH=1H \H5ĶH=wpAWIIAVIAUMATMUHcSH=u%H_3HH{H;L,=E%ILHCHHP9AQDAOHay9uRHHTAfBhAALrxfBjAABlMtLjpMt_LH[]A\A]A^A_HQA1RAHPHg1hH f1H[]A\A]A^A_AWHMHg1AQIAPAQHH=0HT$(HH LT$fHHD$A辧gHH=1LL$USHH=%HH{(?H{pHtH%HChHt#HxHt ^HChH8H{hH{XHSHtDHBHH9u(@HH9t HHu1=%u_H[]HBHHHHHrHH[]ÐHHög}1H=гH~H=1ff.@=u%SHu'H{H{HC[fDAHHI1H=EfD=%SHHH{0H{Ht;HCHHtBfHH@H@8HHHuHsPHCHHtDHHsPHuH{@HtijH{H{X'H[HHvǀ1H=`33ff.AUAATUHSH=%_Dgu\bu1EtH[]A\A]Dbt+D"=HHcH>fHEHXD`DGEHH=1}|vfD1if VfDFfD6fD&fD fDfDfDfD#fDE"f.fD fD fDvfDffD(VfDFfD!6fD &fDfD$fD fDfDfDfDHH11[1]A\A]hH H5H=YfAWIIAVAUATUSHH|$L$8dH%(H$1=B%fAHcD$81D$<H HHD$ HD$RHD$(HD$THD$0HD$XHD$@H$HL$HD$HHEH}HD$XvHHD$XHL$@HT$HHL\$H|$L$aL$L\$AlEdL$Ht$`MDT$`H$HD$pAD$hDT$$AD$l$AD$j$jHT$hH|$ lZYL$t=%DT$WD$<1fAAGH9I=%H,IL$EXuMD$xMtD$8AD$lHIID$pHT$H|$ HL4I$LDt$(L,8HLDl$0Mt}dfA6AGHAE9cH$dH34%(D$<@H[]A\A]A^A_fD1HL$L\$AuD$<@DMdDEپxHJH=1L$L$H1g|H=L$DT$=%L$sDT$AM|1HH=|ELD$<L$DD$<HIIwD$@H=6PHL$ 1HT$HZAXAYL$3AWAAVAAUAATMUSHH8dH%(HD$(1=%HCHELxM8k-{MHT$LD{ ZA${HayuCHk@{ %CD==L uSDuiLHL{Aƅt܋T$EC 44fKHAD;sH}1ҹHL$=]%AuXED$ =t =kHCL=uHCIDH8Hu`A$D$끐D$ 1H7uH=DT$ 끀=Ҍ%lHͶgsH=Ѧ1O5E=%6HCt11H=j H߽6M蓻UHSH=:%u0(HHcH>fD'H[]@Ho1H= f."f4f0f2f>f;sfD8cfDSfDH?HE'f8C)@:fD= fDjfDlfDzfD<fD/fDHHE@yHZHE@y\HHHE@}B.HHE@}Af$fDHHE@{< 3DHHE@| 1@fD%fD#sfDHt2HE@}DHHM@H=eHspHtwL_Hs(L1HH+3HApH{rE ="%2HYHH=!1:Hs(LT<A=р%H{C I$LC fD=%(H{轺I$C HHp0L蹜C ;Lm M<HuL7IHLSMu8LLIL@H{: DHUHuE1HM Li<=%D$HHH} H}E,}0}4|$=^%L+kL3H{D$khfD=%SH>cH11H=4fwAHTH=1HsBDL0}<E@C Ll$LHL\4|$E4E0C u},Ll$1LHLUE4C H}L=~%:HB11H==}% HuE11H=͗I$LC }=}%HJ11H=ZLl$HLLSP|$E,uC }0}4HnIH=!1HHEH} L=|%HéWJ11H=ۖHLc}@E<AtEHLAVQHH=ɄH =j%AH b1H+H=gfAD$lAEDAEAD$lDAD$pDAEAD$pDAWMAVIAUMcATAUSHH=i%HCH Hx=i%A"tuA!uW###u7=i%H$HcMtAA9LIN-DH[]A\A]A^A_@#uHܔA}Hc`HHtL= i%DIcLH›#uHSI|H1[]A\A]A^A_HH###HhH0HD9}HPHL)MAHA1ǮAQAHAUQHH=1H +AH σ1HH=$=g%#AMWAKfD@AM1A%D@DAMu@(AMuHH1H=W*HIL1HH=+HHCH=DAWIAVAAUEATLcULSHH=f%IwHt6HFHt-HAH /HcH>D1H[]A\A]A^A_J814 D9Hr0ft1 Ff CJ8H9Ht-ɸM1Ht B8DHtEH[]A\A]A^A_fD1HtB 1HtHJD@^1HtHJD@`PIwH RHcH>H%A1APHdHAVP1j諠H 1H[]A\A]A^A_fDH1HAQEAPA𾗴QHH=!H =d%DEDH1H=~fDfDfDfDfD~ff.AWMAVAUIATAUSHH(=Id%{HZHCHMH@H@L1M(AayMAF9{9kLhH{XwHHCXHIHcʼnkLCPLTH$AzMZHvL$M@L׾L\$HT$LT$'HT$LT$H{XABHCIJ0LT$H@@HGABGABdHGGHHPHIR8DFHGHH)LLIB8IEHGHHH P1RRQH HSXH Hz HT$[HT$LT$L\$H$HAx t;HH@HHCXǀoAHCXǀDABdHcsPHL)A9HcL$ٔ $KPMtAAF92 1H([]A\A]A^A_AP1IAQHH׹H={=a%XZPEH1H={d,IHcLTAzMZHMfDHSHzitKM/A'fIcLDcPM%E'4fD1Hɘ6ff.@AWAVAUIATUSHH4$T$ dH%(HD$x1=`%IEHtL`Mt A} t/1HL$xdH3 %(HĈ[]A\A]A^A_IEXHtȋtA]`"aHL$PE1Hl$-HL$I@Ic־HID1AH H D$-AGD$.AGIEXD9AH|$0Hl$-H|$IL5~HcLHD1I莐D$-AGD$.AGIEX9AE1DHHp xHL$LHT$AAE`T$ H4$LwxDAIHWH#~H=x/fHt$PHt$IfDHt$0Ht$IVAUAATAUHSHH=_^%AHCHtGH@Ht>A!t1A"tAH[]A\A]fDE~H@D9| D9kL)H1[]A\A]@w惽wH{X草.IHCXHt@EHu I|$ AD$HCH@@ID$HEID$HEID$貋HcI$HA$H&A$HcI$HHA$fDHAA1QH|HH= wXZfHsXH} H EFEHFHEFEFEFEEΊHsXHHcHƴDHsXHHcHHCX=%\%AVMAUAATIUS2ID$tXt#E1=[%K[D]A\A]A^A"&H5H5HcH>@H#H5VHcH>fDHtٽ )ىA!t[A"u%E&EAHcTHE1=&[%5HAQH=%u1HcAT[]ADA\A]A^fDAPAAHQ1HwH=tXZE1=Z%A"1HnjH=tcfDE1=^Z%mHYH=]t1.NfHcA@ l0H H H hH KH .H @@Hn HQ H4 H H HmH PH @@3H Hs HV H> H! H H rH UH 8H  H} H` HC H& H @@H rH UH 8H @@Hx H[ H>H!HHrHUH8HHxHe HH@@H+HH|DHE1=T%HH=n1H1aH=n1vAWEMAVAAUIATAUSHH=UT%HtbHkHtYA$9 wHHcH>HHsATPAAHjHno11LH H1[]A\A]A^A_DLHHC8HtfDc0H{C ߍH[]A\A]A^A_DLH蚕HC8Ht=jS%Hx[HC8H@D=AS%DLDT$[gDT$(DT$ D$fT$DT$ HIHcLDT$AgDT$HIFHUPHu HHHuL2DLDT$fDT$xyHcLfLs8IFH1AQDL$IHAPA7QHH=ll?H DT$=9R%LuPxf.HHqARfDHPHmL}AH1HV(HJmAP1j!XZf.EMH龷-HH=k1DT$xDT$CfD1HOH={kNHC8H/H=Zk1DT$&DT$ff.AUATIUHSHHXL$ fDD$dH%(H$H1=P%Ht8HCHt/H8HHT$cHŋC ==tv=t/1H$HdH3 %(nHX[]A\A]fD=WP%tH11H=Vj)H{8-PvIHkHHLHjLL$LD$XZHC8HPHu7HHHuL*DH{hPIHHH꿕LjHLL$LD$O_AXŃuuHChHPHu HHHu=.O%L*~AIIHPD$HwH= iP1AYAZf=N%KL1yz'@=N%tHH=h1P~IHHLHHjLL$LD$JY^ŃzHSpHu HHHu=&N%L*HmH="h1afD=M%LHmeH=g1-@=M%Hem11H=gHP\HP1HH=g^=gM%HH=fg17oIMHu1H=AgHSpQ|AWAVIAUMATIUHSHHHdH%(H$81=L% HtCHCHt:H8LH_=L%IC ==t{=t41H$8dH3 %(4HH[]A\A]A^A_A%=6L%tHH=9f1 H{8ePV|IHfHHHMjMLY^Ń~HC8HPHu @HHHu=K%L:I2@H{hP{IHHMH鿕jMLH#_AXŃ K%H[hAHSHu @HHHuL:I]IOHu1H=d>APIIHQHH=dAYAZDK W1HH=d\=YJ%L1u@=9J%tH@uH=Mt9HmHt0G%" #!t:Jf.1H|$dH3<%(JH([]A\A]A^A_LRcAsA"At>H5HcA9tHHm HcA9uHˉD\"EEEAV=F%D$THL$DDH;)!LfA;fDLbA#fDF%!tE1E1HL$DDH:AA"hHJcH>HAQAH}APAQHH=#`H D=E%D$FAAE@HHcH>@HHcH>@H|1H=q_DAEAE}AEkAEYAEGAE5AE#A$w$HHcH>A}v "E1E1ۀ=D%uUHL$EDDH9!Ll$PD%"E1A!tE1HEHj{1AVELѾH=$^D\$XZD\$nAE"Aƃv E-C%EA&D$D0ADD$AeLl$C%"E1A 0f.AE<<<D$E1"+C%AA\AED$ C%"rE1AkfDA}AEHHcH>A}AEHHcH>D$E1"B%AAD$D$D$D$D$D$E1"RB%AAD$D$D$D$D$D$뺃"m["uQLEH8b1'H=[LT$LT$^E1E1ADD$A{u5D$eA!uCAAA "1D$"D$pA=5A%u1AW1MAVMAUIATAHuaUHGSHH=[H=@%t1t$@EIHAWHgxW1AVH=ZAUH H1[]A\A]A^A_ff.AWEAVAAUMATIUHSH=v@%pHHEHLHM=F@%E u%H?HcH>D1H`H=ZLL$LL$ @DLLL$SLL$H)\HuPSH[A1APH`1jzH D1H[]A\A]A^A_uPHH@|$PH@0HHH8u@@H}Ky@=>%}1HwH=X1^@HHzH,Q=>%@41Hv7H=XY1fHH$==>%HvH=%HvH=X1t@dHHH,Q-==%@011HuH=Ww1=m=%1HuH=jW=1fD@=0=%1HQuuH=-W1fD$PP1AQIHtAPAQHH=VÿH Zf.DLLL$PLL$CALLL`HHD$PHC0HHC8CHHC(C@^HH}vv=%<%HsgH=$V1=;%HsH=U˾1f@=;%SHsH=U蛾16@@4!L$P@0H}H(ufH \HuQPff.=5;%ATIUS=\u*I|$ID$HtHfHHu]v []A\I|$ ID$ HtDHhfHHu[]A\fDAHH@[1G)H=TpUff.=e:%AVAAUMATAUHS s߃H|HcH>@HUBA\A]AMJfH]{MA\A]1ESt D9=9%HC Ht)A@A9sHHu1]DHU1ztLr BuB JuBBuBHoHB8HnHB@[]A\A]A^H]{M=8%hD1\uHSHtHHuA]AAE뉐H}1x[D]A\A]A^ ^fD[1]A\A]A^DAPAAHXQH1H=7R _AXfA^ AMJHS HWHHuD1ES D9} =7%HCH;At]f.A9tDHHuAMJ dMEHپw+H,XH=XQ1)pHPHpI}HIUH$II)L)A$ADH{tHpH@I}HHIEH,HLILLH)H)HMEHپw&HoH=P1rMEHپ'HoH=yP1JD=I6%SHuKH;aHH{aHCH{aHCH{aHC[HHXy71H=hy˸fUHSH=5%u>H](HE(Ht!DH;HkLaHHAaHuH[]AHHy1\H=xPff.=I5%u eH H=x1Hx H_eff.@=4%ATIUHSHU(H1@HHBHuHZE9=uO^HHt=H@$H^HHt HLH[]A\@[1]A\fH](1IHHw1XH=w6ff.AVIAUAATUHSDH L$@ t@)$)$)$)$)$)$)$)$ dH%(H$X1=3%H$H H}0D$0HD$ H$`D$0HD$(<DD$0 =(3%D$4>$5H.HcH>@1H}XL MAt#L oMAt2%L MhH|$HL1SLvHNq^Y^Ll$HD$H|$8MLH\$0H$8PjAUHc$HLDH]Ƅ$PHHDŽ$LHDŽ$PDŽ$`XZU0H$XdH3%(H []A\A]A^ÐSAH=Zu1jELHY| 觴=1%_AX1H\|H=u{1%$H (HcH>f.1Hzbf1H{Rf1H7zBf1Hy2f1HOS"fHvK@1H7zf1Hgyf1H_KfATAMHSH"{ H=6tjAU蕳H #@E11DHYtH=tcAtMA\0%L JH-t1H=sLL$LL$jf0%L JMHsJ<_ff.=/%S|4Q~7HXt6t!HUt|H1tt Htu:[DH`t1tH?t2tH!t3tAغ1H FtH=+%s`H+%[f.~UH2svH/siH sZHru[Hs0p[Hs!HsHrHr.[ÐHr[H!s[HLs1H=q4cHr[ff.@=.%SHuHH[YfDHHs71H=hq˰fUHSHH=-%H[H;Ht\HEHtUH{Ht\HEHt>H{Htp\HEHt'H{HtY\HEHtH[]@HH1[]IHHx1H=pPUHSH=,%HHt[H}Ht [HHtSH}Ht[HCHtH߈CtWLHtrH(HC`HtH}tHClI]H[]A\A]ÐH=)ZHEfDIHp17H=oia@HWfDUSHH=J+%uPH'%HtHH[]DHމ\t H1[]HHV'%H[]IH?p1H=fnɭ=*%SHu?Ht,^HmH{PTVH{`HtvKH>V[HHo1H=mS뢐AWMAVEAUIATIUSH=7*%!"ts###HH|oPUHEAALP1H5FoH 1H[]A\A]A^A_Ð##uA|$Ml$0AD$MW#tg#YID$0IEHH6pPSAfDA|$ID$0AD$HExfIcT$XMtAA9AVALHEAPH56n1X1ZEAHH+HPAVfI|$P&TID$PAD$Xf.H1AQAHNsAPAQHH=kH NfDIt$PLZ1DL<I|$PHcSHRID$PHAl$XMHLHvZ@ayLfDayLJff.AWIAVIAUMATIUHSLHhdH%(HD$X1=%'%OHMHD$,HHDMpA1։T$蘚T$A#AGD$w A$ID$$U&%$QLHD$ut$ $HGBu D$ E&%D9$w$Vu8MU L$0T$1uAOL$0uAW T$1f.L$L|$0I~`LD$DMD\$M=%%D\$AAD$]HuHcH>@=%% HcU1LAWNHL$XdH3 %(D- Hh[]A\A]A^A_HD$D$ #D9$D$DT$ D9DNAC=HGuHcH>1D\$T$ ~T$ D\$$ EHPAPHAAPAL1H5j{H E1HHAPALH5i15_AXHHAP@H$PAS[DHHsAP@Ll$ID$ f$P1AQIHnAPIg QHH=-g萦H xHHiAPA#fDHHhAPAfDE$"=HwvHcH>A$HD$IcLLDT$UDT$D\$ 9\$="%xHA$LE1AH PH5#h1AYAZf.=y"%D+KH]hG-H=eH1>fD8e~HcLLTA@="%IcLLDT$TDT$t$ D9t$=!%PDT$HGHA$PALH52g1E1A[]DT$H|$HD$fDfIcLLDT$-TDT$|$ D9|$U=@!%DT$HHA$PALH5f1E1A\A]DT$HD$Hgc= %\Hf,H=Hd1詣E11T$0HELLA,Hc[S+f=y %D+IH]f7H=cH1>foD$0AAE밋$$cLLAHcRAD9d$ }J=%HA$LE1AHNPH5Qe1XZDd$ Emu=%IcHt$0LHARDt$ I|- DD)HcDHD3HD$Ht fD H|$0JAD9d$ }J=%HA$LE1HvAPH5sd1Y^Dd$ Ht$0McLLQH|$0jJHD$D#HfD E1fHDHi$D$H=aPD$1DD$D\$(HXZD\$@HHcAPD$PH+:P@HQjW.H=a1D\$D\$HGj.1H=aaĠD\$f.|$DT$ D9DNׄH9i%1D\$H=aDT$tD\$DT$tDHc!H=`1FD}AVAA_Dt$ Hc|$ DT$AD)LHcED3DT$`EAE1Dt$ Hc|$1DT$AD)LHcED3DT$EAum=%Ht$0IcLfHL濼-HD$L$$YHCD$ CD$(C$ S ȺC,@BS(H|$8dH3<%($H@[]A\fDLH:x-1$L$$YщHD$HCHD$HC HD$HCD$ CD$(C$ S @t`fDLH1-1@LH3,1{LH⿻,`fDLH=,1Cf1fHIA9QHIdHH=Z XZTNFff.AUIATIUHSH=%u>C݃wH1[]A\A]fHLLH[]A\A]V?fDHIA1QH ]HG<H=ZhXZ@UHSHH=Y%ugHtWHtHtHHH[]@HH\HPA1AH5\XZH1[]fIHH~\1=H=]Ytff.UHSHH=%uwHt"Ht-HuH[]fH1[]HHHF\AAPH5#\1=XZ1H[]fIHH[1W>H=Xdff.AWEAVMAUIATIUSH=%MM"!  tY iImHt H:@XI}Ht$@D9H|$@t>HD$@15I]H#H?PA9H|$@tHD$@1H[]A\A]A^A_ P DL'Ņ7tA>.PIHDHA|.tHcH9u9t@I}'?HcL'IEHOA9I})>uI|Hc1MSH2UDuI]HSH>PA9zH|$@HD$@1UHYPA1ALH5YXZfDL&ÅI}">HcL&HIEGDt$@1AQIH~_APA?QHH=UH JHHXAP@DL%&ÅxWI}=HcL;&HIEfI]HEA@SH-1PH 1fDHPHL9DQHt[HL(AL=.fA IuHtHxHcL@@E]DA몺1D`~ff.f=%u DHMIDt$ T$ ALRH]ARP1QHH= TnH8@AWAVEAUMATIUSHHL$t7)D$P)L$`)T$p)$)$)$)$)$dH%(HD$1=%uqH$ LLHD$HD$ MEHD$HH$0D$0P$ P 3ZYHT$dH3%(uRH[]A\A]A^A_HHAI؋$ H\GMH=RP1AWAVAUAT9H0O{>ff.=%%u1HMLAARAH\'NP1QHH=|RߑH =%tHUGNH=WR1踑1HÐ=%u1HLIAPHU1NQHH=Rt=}%XZtHUNH=Q1O1H=E%u1H1IIQHyUHgOH=Q=%XZtHqUOH=Q11Hff.= %AVAAUAATMUHSQs߃3HcHcH>@Eu*A$U[]A\A]A^MEu }.[1]A\A]A^1}tH[HEHJHE0]A\A]A^f}uMt= %7HE(1HtDH@HuA$UfD1}C[DH]A\A]A^fH2I|$HHI$HI$I)A$$L)H[]A\A]A^@APAAHSQ1HOH=O2XZUD9}1= %umHU(1H~AMfDA94HRHu1HMHHS1'^H=>O衎MEH'[H=SH=O1yk@=u %u1HEADt$0ASt$0T$0RH7Yt$0ARP1QHH=NH@=# %tHJYSH=N11H= %u1H1IAQHRHgTH=UN踍= %XZtHRTH=2N1蓍1Hff.= %u1HLAAPHX1UQHH=MD=M %XZtHX'UH=M11H= %u1H1IIQHRHUH=uM،= %XZtHRUH=RM1賌1Hff.= %u1HMADt$ T$ IWVRHXARP1QHH=LVH0=[ %tHQVH=L1/1H=% %u1HMLIARIHWWP1QHH=|LߋH =%tHBQ'WH=WL1踋1HÐ=%ATAUSHu7D1M|1AA|D[]A\HAA1QHTWHWH=K8XZ@ATUSDVAbuHFHDPAB؃wMAHs^F$Ht/HHP^HӋNdIH`FDHU/xH]D[]A\A=%ATIUSuHH$1UI4$ASAH^P1hBH []A\DAAHG'H]H=]1-ff.AWAVAUATLcUSHH%dH%(HD$x1HD$L0HFxHDklL{pEMcIMtIcM@wfDfD1H&mŃ1@IH1EH^(H=[ HCxH+ %)@1D%*Dd$ H^H=p[·=%DD$ 0HtMH^5*H=9[1DD$ 萇DD$ fD fDfDfDfD=I%u:QD=1%tADH^1.H=ZKh1H0^+H=Z߆=%t1H])H=TZ貆2DUHSHH=%uGHtHCHt Hf8wH1[]fDOHtHHEH[]IAHHYH=Y1ff.AWMAVIAUIATMUHSHcH=%HLULI:LT$ayLT$)~UHU0J9|ILH M uvHHDH@hH@pH@xHǀFfDH YSAPHYAPhHXL11=H 1H[]A\A]A^A_fHtHD΋u(aytS9HHTfJhH@LrxfJjBlMtLzpMtLH[]A\A]A^A_M(M M L uHE0](PftHJHPH DHHH@hH@pH@xHǀHH9uzHW1AQIH[APAQHH=WH HVAAQPh=%u1HELIt$IHm[ ARP1QHH=W{H =%tHDWG H=V1T1Hff.f=E%u1HLIAPH[1 QHH=V= %XZtHV H=V1߂1HAUIATUHcSHHHdH%(H$81=$fHtbHHLH80Ią~ HC0P9}mH5VUA1PH+VAPH3HoV1h:H 1H$8dH3 %(;HH[]A\A]HLH\HC8HpL*HA$ft=$A$CSXLLA$ CA$ CA$CADŽ$A$IDŽ$(̀EA$ fIHA辧 H1UH=Ttf.DC1HY H=T/&-fDAUATIUSHHdH%(HD$1=$HLhtau8Ht$LxMtD$A$HJC C(ayC%HL$dH3 %(H[]A\A]Ht$L賠x#MtD$A$HL7¸yH3A1HsH1TAP1h;8X1ZsfIAHHSH=AS+D=$SHuHJ[HHS1H=RSҐ=U$u1HIIH1HSH=R="$tHSH=R1~1Hff.@=$u1HLIIPHW1'QHH=FR~=$XZtH0SGH=#R1~1HAUAATAUHSHH=_$1HAEwHDHcAąHGIcH{H1HttHDk HC(ayC%Hx~C(ayH[]A\A]H?AAPjH3HhR115XZH1[]A\A]HORAAPjHH3A1PH'RAPHR1j5H HIA1QHHQH=P|Y^fHgAAPh ff.fAWEAVMAUIATAUHSH=$tcSH>PH5PHu1PA1AhH.Q4H 1H[]A\A]A^A_A!tbA"uLMtpAEu_E$H}HHuM[E]LDA\A]A^A_! ATH?KfMtE$AEMtAH[]A\A]A^A_H1AQAHSAPAQHH=NT{H E$ff.@=5$u1HIH1H PWH=Nz=$tHPwH=}N1z1Hf=$u1HIH1HOH=>Nz=$tHOH=N1yz1HfAWIAVAUATUSHH(dH%(HD$1Q$D$HH+uAo(A +IHA%L`pD$E1Ll$1ҹLLo=$AE4At5I7A1HH'MAP1h1X1ZHtT$HL$dH3 %(:H([]A\A]A^A_IA%LhtRE1L5h~%@ELHLLAD9u߸xD o(롐LL赢AG%fDD$=t =r=?AA9IGH5/NLLl$HP1f.1ҹiLLn|$uAG%2fIH17HqMH=Kx $H1tLL$AL' HeMH=_K1wfDD$ 1HQP"H=2KwDD$ fDLL$AL$HLH=J1[w&fDIIW0DI$H8^uD$45_#ff.@=$SHuH1["@HHLw1H=eJvҐ=$u1HIH1HyLH=.Jv=$tHmLH= J1iv1Hf=e$u1H1IIQHJLH'H=I(v=1$XZtHBLGH=I1v1Hff.=$u1HIH1HLH=^Iu=$tH LH==I1u1Hf=$u1H1AIQHKHGH=HXu=a$XZtHKgH=H13u1Hf.fAVAUATIUHSHH0dH%(H$(1=$HtH[I1LHE D$E+ w HvNMuHu$L;L H!%t},DHJHDщ@HL)$Ƅ$DŽ$HHCH;HtFLHЁ} #NutBH$(dH3%(H0[]A\A]A^@HG8Hu} #NuIHpIL$5HZI|$HG8HtL1TfIIHHLH=M?sVDHG(HtHH@HHuff.AWAVAUIATUHSHHHdH%(H$81=$BHtLeMt M,$ fDMmE1H1HsHLu HC $L L H!%tDHJHDщ@C(HD$C+L)A}tL3$ D$Mt#LHL$L{LMt#LHL$eHsAFM~Ht LFL^AFC$AMID$ HHLLЃH$8dH3%(HH[]A\A]A^A_fDMt#LHL$L{L M7LHL$y@IM@1HZH1L@fIM@1H:HLLIIH HJH=#J_pDLt$~10t:fDpÐ1ff.fHt'tHu fH1ff.fUSHHHtttHH[]fDHպHHH`ooHHH$HH[]ÐHHt tHE1DH9tWUHSHHHooH$HH[]ff.@t@HwHfUHSH"t!ty1ۃ#tZH[]fEy!1AuHHL$&HL$AxHIcH1jHH[]HfH6MtHAIcHHϻH[]DH=Ht!H'H ʿ$HP0HP8HP@HHfSHH0H{8H{@H[8HtwHtrAUIATUHSHftF1fHEH؀xv!L`HML+eI<$Ht I$EH9HL[]A\A]ff.@SHH?H{H{H{yH{ pH[gSHH?TH[Kff.ATUSHGHHtHǀƀHGf{HHE1 f.HJ,HtMHHtHDžHHtWHDžH}HtHEPHtHSID9HsHtHC HtHCft5HHt-1fDH)H=>1boUHSH^Ht)0HHt"HHh@(H[]H1[]HHD$CHD$ff.HtSHH?HtH[ D(=ff.fATIUSHHdH%(H$11ƇfG G*HHH== HHH=HDHMHMt7I4$HtH{-HIt$HtH{ HHCH8t^H1HHH H{0HD$HtC HH$dH3%(u*HĐ[]A\fH{H5=Hu1 ff.@SHHHCC=@$H{HHt.HGHtHǀƀHGo usH{$Ht$H{ Hty$ufH[eD[fDK1H9<H=;{_=$DH9'<H=;1T_%KH^:=1H=z;+_xfDH=c;H9w<1_H{"DH=;;H9<1^H{ DAWIAVIAUIXATEUSHdH%(HD$1 H$HH@}HHCPHc HCHHcLH!A|$Hc HC Ht^IcLH IHBHHtTHHt HHHuHCHL$dH3 %(Hu*H[]A\A]A^A_DH1^@HZH ff.fSHH=$Ht$uvHCHH9u;HH9t8HHu=q$tCNH8g:1H=9B]$HCH@HH|$HHD$HH[fDNHV8:1H=B9\Ht$cfHUSHHHH(HtHPHǃ(HsPHt/f.HHsPHuHsHHHtHsHHHujKH1H{9HqH{H0H{0Ht HC0H{8Ht HC8H{@Ht HC@HHtfDH/HHuH, HHtH/hHHuHHt@H/HHHuHHt@H/(HHuHHH[]fDH 8H5v7H=7ATAUSvHHf H:H-7HHCHC HC0HC8HCxHHHHHǃHHǃHHHC@HCHHCXHC`HChHCPHCpHEumHHbHH`HǃHHmHHhHσH[]A\H=6H=6HILDHHIDbH1nff.H#UHSHHH[HHlHDH\HTH{KH{ BH{09H{x0H$HH H{8HHtHHHH{@H{HH{XH{`H{hH{PH{pHHH[]5Dff.@AUIATAUI|$SHHHt4@ @ 1DcfCHMtH{LLDc HH[]A\A]H9wrSHHtX[HtSfDHhHHu[fDAUATUSHHHHHHW(HCH9wtW4umHDj(AADl*D;hw,D` EHJD HCH؉k H[]A\A]DHH Ht DhfDH1[]A\A]H $4OH53H=q2ff.HCATUSHHHHHt#HPHtHǂƂH@H H{HL#I$H1C@A$H9t6I$H8H1@HHH9wHHLHHtDH/`HHuH{8HtgH/@HHuH[]A\,@I$HUHЕHHs@HHt@H/HHtH/HHu{U0SHIHHH@1\HHH1uHC:HHP H߉k ǃHDHCH1HǃHǃeuA1H{HfC@u.HHǃHHH[]H1VHH[]ff.ATIU8SH0HHL` Lch(L@f0ukHKu_1HuM@HHt2ǃ@IHtDHHHH[]A\fDL0H8H H1[]A\DHHD$HD$H[]A\DHtfff.@HtWSHHG G(HKHCH;;HH{+HCH{HC[ff.@hB~,)Ntt~R3Ntz4NtbH=.=.Nt1Ðb th~d H=.f` }1DH=.=$Nt=&NufDH=e.@H=[.H=9.H=/.HHN\T`H=-tH=,.H.HNHHt f842HfvuzH=-뱐B @H=s-SH=$-@1D v) 7 uH=-fDS(~Zq+ +ni+Zn+f+jH=Q,fDt~PL>%jH=,B(_%H=,GsFp2H=+[fD/N.j>H=+H=x+UDG~2c0s!H=t+UDH=*2=51@3(H=*@H=*H=*1uD~B?n>%H=*uk&fD, H=g* )@ H=)f.DH=)|@ HH=e)u)H=j)]DH=5)EH=^)2DH=;)BD @4H=(@F$FJtGeH=L(fn#mjH=(fr-DH=(qXH=(EH=S(-H=(bD H=(DH='FCH=h'DyH='L@H='i1fDZ(H=&EDH=&%DH=-'@H=&@H=&@H='@H= '@H=&@H=&@H=u&@H=&@H=C&@H=&t@H=_&d@H=&T@H=i&D@H=%4@ ~|h&f lH=%@;  :!(+\G'x ~.H=[%Q';+H=$#1'H=$%+| ^.7uVH=$f.  \0H=w$@;DH=+$xgB|I*LDX H=#RF'HH=#O< \>8 B H=q#ffDCTH=;#t| VH=#[H=z#C? ~b  ~4H=1#hH="fH="QRH="@\H=y" +DH="x$H="XH=c"8!, H=!1f9R ~RuVH=!f.= B |2BPH=;!@SDH=g!xN u0 j & u*H= fDH=  H= H= H= %o?DLH= x|P$H= X6BH=8 BH==H=  =<H=fBH=>x`RCH=wH=M]H=vHcHNFfD` H=H= pb6H=f.# .: X~l H=A( ,H=!H=fH=\ bH=fD1^43H=FQ<t~Tu,H=)H=H=H=wr&H=c@ y~`  H=<@H= (l*u\H=wH=7 B) H=f.'dH=B AH=uD$H=XH=o8mH=nqH=f~b4H=@V|H=aH=HDH=yl@H=\@xSgS0@0fVDH=E,@H=@H= @H=@H=@H=@H=@H=@H=@H=@H=3@H=S|@H=Cl@H=\@H=L@H=s<@H=,@H=@H=% @H=@H= @H=@H=@H=@H=@H=s@H=@H=k|@H=l@H=W\@H=qL@H=%<@H=,@H=G@H= @H=@H=@H=@H=@H=@H=S@H=@H=@H=/|@H=l@H=3\@H=qL@H=s<@H=c,@H=M@H= @H=@H= @H=@H=@H=o@H=@H=@H=3@H=|@H=Ul@H=\@H=5L@H=U<@H=,@H=@H=C @H=!@H=@H=@H=@H=@H=@H=@H=@H=w|@H=l@H=\@H=5L@H=[<@H=E,@H=)@H=C @H=@H=@H=@H=@H=@H=@H=O@H=u@H=|@H=alH=`H=sTH=gHH=[H<H H H~ Hw Hz H[ HB HW H @H@HcH>fDH HG H. H H H H H H HHv H\ HA H% H H H H H H He H4HX H H* H H H H H H Hr HV H? H" H HH H HgAUATUSHHHt^f}tWI1L-'&DHELH4HPx4EH9v7=$t։L꾕z1H=| ^+뼸H[]A\A]@H1[]A\A]ff.Ht3USHHfH;HkHHHuH[]DAVIAUIATL$UI|$HSLHLHHyHt"HpHH(IE1[]A\A]A^IEAWAVAUATUSHHT$HAE1E1H$DDAALH>xjAHUM)ˉ)f:GA~yOIHt7H@MtIGHEu艊DH$f.H<$AHD[]A\A]A^A_H$E1@HD$H4$H0fUH(HSHHNH?H f?ft_Hs(HtVDCDC DF0u5N"8N t,AF!~A9EȉșC=$H[]fftHG`HHC(sH~(}tHs(eF"AfHG`Hp"u·H}HC(Hu覷H}HC(fHG`H@HF(HLNHH= PH1'XZ ff.AWAVAUATUSHH=Ȥ$HzHHǃ跉H_%IHiHHHHLhH=c$fA}E1fDIUAHH,ԇHL}8Lu@LH趇1HH衇1HH茇Hu0H譋HuLH藋HE8H8uLLHH豈H߉‰E UX  ʉ Ƀ@ ʃ@  ˆUXOH߉EԆH fEE9LH訃EGHtgT$D$]E1ɨ tHL $ L $DMtmIq@HD$D$HUCf:DGG|8D$E1c1HL$dH3 %(uH([]A\A]A^A_HUCHf:DG1DD$ނD$ItIy0DD$ L $詵HtD$L $DD$ qfAWAVAUATUHSHzH"HHIHH{0eLk0LH膺fA}E1L5L=wfIEHJ萁HHs8豅HH C CXƒ ЈCX͂HCRfAf=u +E1D$1EHD$@Ld$ HD$DHD$HHD$HH@HYHEHAi~DAED$CEHl$E1E1Hl$(2fHU1HAHnNd E9HHHЍTA)GyLd$ IcHl$EtH|HuL@1f=HT$8DH_D$~Ld$8Hc|$HHHtL$1fDI$Md$HTH9HB}<H1p}H8H|$8>Ht$hdH34%(7Hx[]A\A]A^A_fLHHHD$Lt$(H(HD$LhD$MdIHHzmI>MH.HhM9t(I1#HHHD$H(EHl$D$ELd$ Ld$8fT$HH!f.HD$HD$ Ld$ L$ILd$ Hl$IcH|HuLd$ lff.UHAWAVAUATSH(LdH%(HE1MFAGf8HIHcHBH%pH)ƁHH9tHH$H9uLl$L1IL{fAu%A@dAGH9I=E$ALuLDAADDrILLPyHMdH3 %(udHe[A\A]A^A_]H/U|1H=LELEf.1@H)HL ff.USHH_PHt%HHHtH{HuHH[]ff.mHHcH>@HHHHxHHHWH0H?H'HHkHTH7HHLHHBHkHhHQHHHCHH?HH.H-HHHH6HJHHHHlHHHHHH.HHTHHHHHzHH0HH7i=$ATAUHSH^H.vHs8HOzHvЉS EHEfH^wHCuHٳfHHHIHHtkL`H1fA|$u/Jf.HHr1HgrAD$9vI$1HH4y[]A\f[L]A\4@L됉ATUHSrHr脩HHIHH{0Lc0LH fA|$tO1&HHDq1HqAD$9v%I$HH4y[]A\[L]A\l@H|LufATUHSHHf8P#rEHAqHЉƉU UX  ʨ{   ˆUXcpHYfDDH$IH= 1 fD wH੄ HD$D$ Ht$H߽?A@Ev D$( l$ l  AHD$D$ /Ht$HAHD$ H"HHcH>HD$D$  Lt$H߽LZdAM HD$HH;蔞HD$HD$  ADHD$D$ / H߽ A}DHD$HD$ 7AMDHHt@:HD$HD$  h=ȃ$Dt=HH*E D9}HAH4H*HE A9\H9u=p$f.AHDHhHDfHAfA / HLl$@fA<LH߹hAV1HD@fHLpPMu M6MtI~L$uLHe)HHx.H#f<HSffDHD$HD$  Af.HH HpHHt= $vHHt@:HD$HD$ 9Ai AHe HD$HD$ A@HtHD$ D$ RAąqAH4HfDHD$HD$ W  A-DHD$HD$ g BADHeHAdƒ⿀tPv< HD$d$ E1=Y$ƃDDH,1H=0nDHD$HD$ JAąHcH< c DHD$HD$ O jdHbdH߉8c=$A@|tAHL0Av 9NHH4L0HAV 9,H9u@H1AZH=HD$D$ H|Hc=~$DH{c=~$AHCb=~$~DHfHH=o~$"QHL,L豚=J~$fEu Mu0t%EIlFHIbfAFI9u ~$[ E AT$E1L$I}$M9T IEHJ,0TaH߈E`ibHHfE^jHE8H8u}`?H}8HsHu fHAHD$D$ WDH߽AgHD$8Ha=}$D HaHT$81HAt$AGD$,k=|$ t$,1HHHo=|$K QHL$LژD$,Lt$8fEl$ l$,E1LHIHEI6J<(H8<HIMvM9uH|$8l$,E1 D$(f@D$ d|$(EAAfHHAHD$D$  DH߽A={$ HHt!FD~@fFDu H;譠DHD$ADHuH=.1Uf@O LH\=z$ E1ErfDIHJ,i^H߈E`^^fE^HE8H8u}`dH}8H蘑H/H_H߉E^H fz$MuiM HHHf8tH]1H^IE9=y$DH[1H=H\H=1MufDHH#D$H=HPLL$(1LD$ h_AX=^y$yHG#H=N1.ZfH|$8HH HhA=x$q AV1HE1\DH`\H<=0A{\=x$ H%H=1_f.H߽3\=Lx$H?g/H=<1xH߽ [= x$WHW4H=18[=w$0H+H=1f.H߽s[=w$H4H=|1\H߽03[=Lw$H?)H=<1xZ=w$ ZH7&H=1;f.H߽Z=v$H4H=1{Z=v$ H%H=1_f.;Z=Tv$0HBW)H=?1{f.H߽Y= v$WH'0H=18Y=u$Hw.H=1f.{Y=u$H.H=1_f.;Y=Tu$HB.H=?1{f.HHuf}E1DEID9HEHJ4HPyڀ=t$mH6yH=1AN1HEH=~t$EfDt$HUH=j1Jf.L0cAH߽ X=$t$oH3H=1PLHYD@=s$Ll$0@LHAąiH:W<=s$tH5'H=1_DC AHD$HHH; HD$^ ALBH3'H=1V=r$H(H=1}V=r$ H*H=1aHV=]r$*@1fAF8L0WAw0E1sHt$HAHHHDD$ HD$ ?U=q$6H$H=1HU=q$HD$0HHtYfxtRHL2Bu$HHtp uANd~ INH H HD$0Hv1H(UH=5HH1H=6DHzE1H=HHHx.HCT< Lt$HL AMtA&HD$D$ H9T=Rp$HEG.H=B1"uDDH&x1H=HAH=1H%Z=o$XDH%[1H=AN H\Z1H=@IIF0H@fAF8EIlDDHIRfAD$I9u1HH=5HHŲ1H=aHRE1H='DH1H=HeH=1MHR*H=1gkAH721H=bDlHExH=E1%A@H']1H=LMIFH=m$AMAEDใɃB fAED9H0H=1HD$0HtHH'H=1eH;HQH|$0 蒜H(H=H1(AMIfAVAAUIATUS1HdH%(HD$1Ld$HDLHLu!$-wD$AEfH؉H\$dH3%(u H[]A\A]A^ɛfAWIAVAUATUSHH8dH%(HD$(1QH QAAAAA A=0l$JHƃHt@n;f;HMtA/HHf8CQHŀ=k$fEƃC1HƃfEHHDfAHЃHL$(dH3 %(H8[]A\A]A^A_1HHׄH=9fEuDfEyj=k$1HkH=11HHHrHHt$ HFLt$ D$ fDAGu$LL|$ LL>FMuۄF@H,QyHD$ LȌL|$ MuHfD+OHc3HhHxHt$ HFZ롐AE1AξfAfEHAH1fEH=AP1ZYmLHHD$ HpPHt$Ht^FLt$AGu L迂L|$LL>F/MuۄtgH4y;D$ L苂L|$MuǐD$ gHXDHxHD$@/fL8HD$DHrPD$ Ht$H0!ʗf.AVAUATUSHH dH%(HD$1=Xh$HE=HHcH>D=h$H1L1HL@HL$dH3 %(K H []A\A]A^DAHbH=I17Ht T=g$tHXgH=}1]DH߽ffDH6O=1g$jHf8(HKHJHAJHAJ<<=f$@1H߽J11H4DHfH8Hq1H1_JZf.HAHx1H(KH߉Iƒ⿀t<w=e$ƃ1@HpIDHc1H1IHHDH~HDHt$Hl@HpYfHI=1e$HH(H!HHPH=d$H1I1H߉HHHȻHf8zHI1H߉HHHCHA3CDC$9nEujfEtdHHtXHHEfDE1HD)0BDA;1HH=$1HA1DH‹H=Կ=]$+HAHԋH=HHhTʌHHw1H={]Ht$HL$A1HuH=O1H|$߈H|$Ո0AWIAVAUATUSH8dH%(HD$(1=\${D$fDLx@=\$htpL6uIf8hPD=\$%HL$(dH3 %(D$LH8[]A\A]A^A_@ILD0@؃ L?LD$?L?LD$?LA?DD$@EADAA DA A A'A r<A sAtA suLZ=w[$QL ?IHx @ILHp@5E1ÅLA>L>D L >L >L HL$If=I?=Z$_D$fAfD7<H(HtHPIHǀ(D$ADAq&AI=:Z$Lf2f.LT$HH=PHc1=Y$^_|LT$D1HH=ٻMR<f?|$DIAL@fDkE1IHxH&H5E1wHAAH(H1HLQ-IPwIWRf҉]D%=_I?=X$_@H=پ'1H|I?@ILAHpg0٬HIH=J1*mDIAfDLILf2{fIAfDLͽYIALfD9ILҷf:fD$ D$H|H=iKhL$HRH7H=AH *HE1IRfAWAVAUATAUSHHXdH%(HD$H1fH)D$)D$ )D$0;HD;H߉D$0L:HfD$8<:D$;AtwAbA5=nV$Ll$#LA蕆HL$HdH3 %(DjHX[]A\A]A^A_t?fDD$: D$=U$AHLl$:IuHIڭH߉D$n9AHLЉL$ 賭H|$D$D$Ht?uHHt>=HLHD$HܻH1H@Aƃ6H8IuHT$ T$ 2Dt$AHf9t$ Hluf%H߃9D$4D9&H|$(5|$E[H;A.AuL$0:B5HG Hx=T$HG LHHPH;H0L萄=IT$HH=91@H=A@H7H HcH>=K$AfDHt$dH34%(DH([]A\A]fDVMAD$4A$Au=>K$tDH5 LH 1H,H=ƧkLLwA$P}ADŽ$Atf=J$H ؾ2H LB1HJH=VE$fLL1wuEA$ADŽ$Af.I$|fDE$KI$A|ADŽ$yfDHPM=I$LHgb1IH(H=.hE$&L |=YI$A$fDL{=1I$I$1ɺ3NLHx E$ADŽ$I${E$f.ID$8HL$$AD$4HD$HD$I<$迠E$MfLH{=H$JI$1ɺ&NLHx E$LgI$IDŽ$jI$aADŽ$DLfI$IDŽ$jI$RaADŽ$HJؾBH LB1HH=\E$THؾH LB 1HRH=$^E$H H LB1HH=&HR H LB1HH=H FH5H=pH EH5H=Hpuf.@ATUSHLIX LVL9CtH[]A\h wAKdÀHtHHL$UuHL$HKdHpHt H4uHKdHxhH[]A\AVAUATUSDo0A EHHJL)L4AvhoAF8oJANHoR AVXH:Ht tIF8H{HttJL)HD@H{HttJL)HDHH{HtftJL)HDPAEE0[]A\A]A^fDH1!1Hf.HH@ATUSW0Ht$1HHH)H<u9k0wދhC0t41H@L$I$pNpI$xAp9hwǃh[]A\f.AT1AUHSHHt HpDHH[]A\.AWAVUUUAVE1AUAATUSHH(dH%(HD$1Ld$Hl$fLHH譼…D$=t(|-wD$t E'EEELMfAxuIH=GLIA8HHHH=IAHH A)ʍB'HH=Iq8HIHH A)ʍBHfD% fDHƹH=ptH\$dH3%(H([]A\A]A^A_AqAyT$ L $cL $T$ 4tf8t1LfAxuIA8HDIIHLH fAxIA8HvIIHLH fAxpfDAWAVAUIATUSHHdH%(H$1HD$HD$;HHhHmL#IA$C1f=HD$f=HHH^HD$\H|oH#= A$ H$I$(HH(Hm Hc@H|$HHD$ H|$(L$1Ht$HLH$1!HHIE0DŽ$HPHH$$HH(IMxf8DŽ$DŽ$ HqH DŽ$PH$$IMDŽ$hHqH D$:H$$IDŽ$DŽ$HqH H$@$LIMHqH H$X$dIHqH H$p$|IMPHqH H$$|$:L$Ll$0L}M̓H|$ED$D$HD$`@|$:HD$mDHUxIGH$H9u H|$7LAGLN (I9LG1L$L$DD)AGHI9shAW ID$EDAGtIwH|$@HHL$1MHH@`H0 H$H$c$Ll$0HD$HL$0H+L$H΋$L$t ED)N~LD$HLKuL1;I}H(LJHtHPI}HLJ(f^LL]D$ @ LIEfIH9A fA2 HD$HL|$IEH|$HHPHH1W[]Ht$HL"FH=AT$3I AAAGIHxj1IfAD IE1ɺ"NLޱHx ~H$dH3 %(H[]A\A]A^A_HHėAGfEgE1 IELHx HD$A!@AE1H=ԺE]H&H=\HM\I|$i\H IUI<$-$f= O L IH;w H5Ht$ HADŽ$EH$HƄ$Ƅ$H$fD$f$fkƄ$ff$EAA} AE1H$L-IELH5:f8H4HGAtAAtE1AAEDLHt$ HcLeWL{IEf8JAL,7LLtA}0iAEu,AE$EA)IEHECDAE A+H@ffD9 E1ۻYDtfA9DA BA9LDHffA9A9AtIuf>vA@@ tA A AafDIH8AHpA I}fHHHl$PlHL5.HHD$1LB MfHIHj LHD$PHGHD$`H[HD$hHIJ(fAG H߉L$OHT$LLO\IUIH݉HD$D$ILB EtNLe8E1L-fHGHtLLAI8D;$sIEHx A|$0tHGHufD$E1EtBMMt(DLH@HHHAAD;$rHfIELHx HD$`fDHCT$(HHD$ TT$(Xىf{IHX%$}ALT$(%T$(@P!%A fA!ff$f$fD$fD$f$^DA|Af=f=f= n$$IG0LHpILHpA1ɺ1LNRL$AH DL1XLH!%tLDHQHDʺ@LHL)H5LALփ1LIEf81L'1LXIGxLHpHLsIEf8AN1L H$LI LHpIEf8qH$LH5LIGLHpAL@1LlALE 1LD1ɺLH5aNLaEGA=2L1H BVLH!%tLDHQHDʺ@LHL)IEf=f=f=LI}D$AL@@LT$(DPT$(LD$ ~IUD$L$ 9B(2ޱuAx IM9u IH݉gA&A$512IH=Hc)ƒL$(HcHL$8D$41Lt$(LIHLHph HT$81LY t$4L=Ա,Nc Hڰ4H=1跦=#$H H]R+H=d1肦DHcLL$NIUL$D$(1D$4HD$8=E#$HR)H=1L#1LILHpwf=vLHT$([HT$(H(IEH(Mϰ$$fftAl$ LL@eAIDžAS`$N$ILHp:AAAA =!$Eu$5AtEt IEf0EA1L \1L H1L L L IE LHpu =.!$SH )pH|$HLIE1ɺ"NLHx ֱu1ɉLLk1LIELLI}D$ 菒D$ yHO24H=>1\LUAu LKH@ISLfP = $vxHMt|HN`HHHLl$ L4LLLMHٺLHHD$(L)HL$8dH3 %(u2HH[]A\A]A^A_HڸMu1HHHff.@AWAVAUATUSHXHi(dH%(HD$H1HHHu1Ad1HL$HdH3 %(HX[]A\A]A^A_L|$LcqIIHLLD$0LLLLD$LD$HLL1HD$8Lt$L)CdMs1LL=$TDCdDHv1d H=HS.H H5+H=+BzGf.AVIAUL,ATIUSHLH/Ht3HLLLHHPHH0/[H]A\A]A^@L1LHf.@AUIATIUHSHHt6@}(] 9sF)L9IGH}HMt!LI6J](I)uH1[]A\A]Ð19@1HF@AUATUHSHhL'dH%(HD$X1A$Hcf=Af=udH\$Ld$0HrHLHEMH1HH@`J4(D$PHL$XdH3 %(Hh[]A\A]H@ID$`H@ <th<t<<tx<H H5H=@E1DHH8uxu)HHt$AHt$fHH8uxuxuxuDH G|H5H=g?9ATOUHSHcID)1HHcE(;E sHUHM(D$1[]A\fD1HFE(֐UHSHHG(;G sHSH,1C(H[]1 C(@USHHG(;G sHS,1C(H[]D1C(@USHHG(;G sHSf,1C(H[]@1C(@USHHG(;G sHSHK(@,H1[]f1IC(@G(1fHt?t6SHG 9G(v 1 xH߾[f[fDfIH9u_HH9K< t<+L<-HfD0u@HH9uH1HHHH9t" t: u|HH9uÐH9tčzH@ vf.:0@ wLHH9uHHH)HDAHGH9t ty8 usHH9uD 1@HH)H9 .RHzH9tqR0 Hvgf 0 w=HH9uHH)IfDD HHfE1VHH)1wH11ff.H(IHdH%(HD$1HL$LD$'HHT$Ht~LH|I0Hc$fDL9w;H40HcHrH9r%HHH)HHT$L9uI  @H|$dH3<%(uH(1Ը@fDSHH dH%(HD$1HL$HT$ x&|$HD$t9HH9w:HHH\$dH3%(u&H [fHx HҐ@@H(IdH%(HD$1HL$HT$LD$HHL$HtyH<1Ht D wX TJHH)HHL$H9uڀ|$t+w+AHt$dH34%(u#H(@y@1̸9?fAWAVAUATUSHdH%(H$1I9kLAHD$S0I<H)7s1LL$ L@FHVH BHH9u-PHrHHcAHH9r3fHBCCHc4t&u(QHcfDHADu HcʅuD$ 1H\3E1҅udf.qAI 1ҿ DAAEiAHD‰QЅy@u"IcHIcˋD tAˍqfD#H$dH3%(uAHĸ[]A\A]A^A_MMLl$L뺸본d>Dl>ݐAVIAUAHATIUHS5HAt8LhL|3I$Ht;LHH;[]A\A]A^f.AI<$HH9HG;ӸΐATUSH dH%(HD$1F=HHHcH>fDF=i';fHL$dH3 %(H []A\x|HcH;f*DHcHi'H;@f*Dwf;kWVfDA=vѐw@;S3 {Hf]IALH c$18HKHL=w:f.fD ω{H\f16SH54H0tH5H0‰[ff.@AWfAVAUATUSHT$@HL$(dH%(H$1)D$pHDŽ$DŽ$D$xHD$ HwL|$hHH5L2IHH$1E1LHD$HD$pD$D$HD$Wfk=$Ht$HALH5172HH[=$HtVuECHt$H~.DL$Et DD$Et1AHt$H6nHH|$ 112IŃ'H5$HA.uA 'Dl$|H5H1.EAE A Dl$|DH@@H 0Ht H(H|$ 12PwD$x1 HD$1Ht$1ۉQD$EGH1H=̆IHt$|$AąAEtEuzHZ/HtmH Hu] 1HV1Ht$D$EEE|$0t*HveH=1=!$H|$ .H$dH3 %(H[]A\A]A^A_Htt=$H.HwH *HcH>H|$ 1o0PvD$1ۃD$A@D$xfuA@t$0.t$0IH@[HA1E1E11-fA-vA.|HD Et/ADKuAL$ӀA/uHD EuB DуAA=$L\$8L$0 H4-E1AL$0H L\$811E11#DBDct!HEEtOAADCtD9u GAF\@D9u 4Aōtp9uAōDl$DA Dl$|[D$DD$|Ni@B$11HTH=pw=#kHH1H=FqwI1H} L"=e#HHC1H=0wHW1H=wH5bHD$|L$0PHدe1H=vE\$8Dt$LDl$HDd$8L|$P\$8Dt$LDd$8MDl$\L|$PL+\$8Dt$LDl$\Dd$8L|$P\$8Dt$LDl$HDd$8L|$P\$8Dt$LDd$8MDl$XL|$PL\$8Dt$LDl$XDd$8L|$Pe\$8Dt$LDd$8MDl$DL|$PL\$8Dt$LDl$DDd$8L|$P%"f.ATUSHH dH%(HD$1HvbF=LH!HcH>Hec]FH9wAHi'H;HL$dH3 %(TH []A\DCאHyǐH3SH {HȉCGfDHfH*fIIH F1L"HKHL/fH9J; fDHx+fH*@fDHfHH H*XDHfHH H*X$- ff.fAAtHDE1HD9w/h@AEAA9s At;E FAHA9t;DEPA vAA@<w-A7EAHAA9u=A#tH1HuH=L$ sL$ Hff.fWсH HcH>@'f&f.{f.hf.f.of.mf.nf.ff.fAWAVAUATUSHxH|$Ht$dH4%(Ht$h1H]IH2HHy$AEŸHDCA E1D$@HD$PD$ AD$$AD$(A D$,AD$0-lD$4AD$8AD$ H5{H=(H  H5k{H=;|off.@ATUS 0ۀ={#uIu5HNHcHc8 0HÉ[]A\[1]A\fAA1H{H=zmuHHcIc H=#tL p{EHnH LDH=mz1mRfGAWIAVAUATUSBHB B()N(DD:% k9B4)Aiұ:BIº⻷A)AriD$2AA)AiԵҍBIº=>% AEkdA)AZED ADDDֺқ)AѺVUUUAA)BD)Ǎli )‰ȉT$躓$I< gfff)Ǎ)))D<D$EE1111A1DEj<D u;DQEAD)kdA9uD)iҐA9u Ej=DD$E AhA@D$Ex EhAxAHEXAX Ap(A@$1[]A\A]A^A_Ã=o:153L  X H6Ak9H4ׂCHHIHIHHHHi@BH)H-؂-؂-D$HHHHHH)HMrTH)LHII LHHHi HV?2I)HHHH"DqBAAiұ:BIº⻷A)AJiɠD$ AA)AiԵҍBIº=uA)ErC<Ѻқ)Di D :VUUUAA)BD)Ǎl)‰T$%I$)))ƉKfDH6AHBzՔHHHHHi)ÉA\$1ɉAAk<)؉D:% k9B4)Aiұ:BIº⻷A)AriD$2AA)AiԵҍBIº=>% A)ErG ADDDֺқ)Di AѺVUUUAA)BD)Ǎl)‰ȉT$躓$I< )Ǎ))DgfffAAD1EkdA)׺EEẺk% A)EbC<Ѻқ)D :VUUUAA)BEA)BlA׺$IA)DDD|$Di B<gfff)Ǎ)A)DAD$DD\$A)AEEfEkdDd$Ek% kdA)EzAG ADDDѺқ)AѺVUUUAA)BD)Íliɏ )D؉T$躓$IDB<gfff)Ǎ)D)lj)AfDDnNAD6DDE:% i,)ii'D$AӺk9k<)ىB )iֱ:BIº⻷A)AJiɠD$ AA)AiԵҍBIº=A>% kdA)EzAC<Ѻқ)D :VUUUAA)BDE)Ǎliɏ )DT$躓$IDB<2gfff)Ǎ)D)ljD)Ѻ'%ADѺR1AADAAAEkD^k9D$D:% D>% BDֺ⻷iƱ:A)AJiɠD$ AD)iӵҍBIº=A)EbG ADDDѺқ)Di AAA)BD)lVUUU)DT$%I$)׺gfff)D)DADA)׺EDfEkdAE11k H̋BHɖ H`HcHHHHHIH|$xdH3<%(HĈ[]A\A]A^A_f.+(&#'D=Gtg:uދB=cHžfAHHHHHfAPK/t1uBA.fDIHDLIHPA(A)u H@ HHEDEHl$0L@HAIL$LHHHHHHI@oAfDHCxqZ| HH@PHHHHAPHCxqZ| BAHH@PHHHHAPH@HHEs AUATULSHdH%(HD$x13'I@~"HHcFHHHHH`ɖ HHHHiH¸IfH|$xdH3<%(AHĈ[]A\A]fD+s(#'t|D=Gt_:uދ=fANk)t )fAPffD/t1uAGI=LI$Ld$0LLA@HP-HMHLHHcFHHHHHHiIfAA@ AH+(u9M@EvfDFA`HIPHA@f%f  fA@HcFHHHHHHi'I)t}fDfDHA@f%_f fA@HcFHHHHHHi'I"VfDAWAVAUATUSHdH%(H$1%IHADM̓bu rDr H*tJ~8t@t8t0F=HqHcH>%t -t"uѐ"qHtHcH>AtbLzIEH}#LHH H$dH3 %(Dr$H[]A\A]A^A_@AAUI}HL9IG AkD=#"HcMEH H D:O!E1LHt$0MډD$0EiPFD$4ADf>AAEG$6IUD9ACă!D@HH5hEADHLBf.HHBGBH9uDAqAHHcH D5C݋M=H|HcH>fDH}<AHH9C=KHHcH>f.H}LAf.}LfD}L:AbfHELMHA Ht$0MHD$8fT$>HMHV?2HHH`H"HH)H)HHHD$0LrA]DHMHHt$0MHV?2HD$<H`H"Hɖ T$8H*H)HHHD$0`fD$>r@}LAf}LAf.1}L@A@1fHT$0M)D$0(L$?@ED$8fD3_ Ht$0MHD$8fL$>HcEHHHHHHHi'HT$0H){DADA{DA#kDE^A}0AFIDtfAT$DuAEu1A|$IEHDHHDAąI}IEADAAEUHuHD~H|tAEAfAH*AEwfAH*AE]Hec]FHǺHH9~Hi'IEAZAHl$@I1H `HQIMLHAA!I}AAUAuHHAEH AEAEL$AA!HI}AiH9A}ALȺh )‰HcHHAEAHcA=ȺhЉ )ЁHAIEȺh )HcʺH9}AMAȺh )‰HcHgfAEAlAAEfAEAoffA*^EZAmF]Hl$@HA|$(D@2d1DH \1'DA1!A1BIMLHA)Ⱥh )‰HcHMAEAMHAEH ȉHHHڄHEHtHH1ʀIEAom1ҾLAmouAuE fAE E"AE"wAątAEfft A}A}fAEA@H\$@HHx+ 1HA`AE om1Ҿ LAmouAuE fAE E"AE"AąAEȅt A}A}AEADHT$0HHAąD$0AAEnDHT$0HH賫AąPD$0zfAEA*DHT$0HHoAą t$0AAE E9uDAFUHI}ELDH,AA!A"M{1B@u-f.y@ tЃLHB 8u-hfAu1A~xIEH_ DHHEHEA!DHT$0HH2AąD$0=ADDHT$0HHAąD$0wAEAqDHT$0HH&AąSHD$0AIE?DHDHL$(HT$0HHAą|$(HD$0tAHIEADHT$0HH蜨AąHD$0H9AEADHT$0HHAąD$0=fAEAjDHL$(HT$HHLD$0蕥HzLT$(IuE1ɀ|$t D$@-AJ EHHA)MAHr@t@HH)Ht$(H9uELD$0AqHD$(M7ODHD$(L@fDJL9tHHD$(@t@HuH|$@HT$ H4.Aą[HD$ <HH9wAEA(EuVfHAtC} tAVDIDtf.AEtAVDtAELd$@HLLhBD4@Ht$0LH}"eK4AH9D$0p;IAEAAKA@A5A*AAA -,Au1'tA#@ELd$@HDML%PEH ]tPE PE PE PE PE PEPEPDE1HPLIML AAE!zthA&QA@C~ zHLA9ADOMcLDK|=1D)Hc 0t't/tA#@G$6A|$HcIEHE~GA~1H5hpLGfHL  PL LPHJH9uJ@fD85A4AWf.CAfEAAEEA3A(AAAAAAAAAAAAAAAAxAmAbAWALAAA6A+A AA AAAAAAAAAAAAA{ApAeAZfH sAЍBAFAD)EDA9v 1ƅujNHȋ A9vELnKA9sNC9 rBwAэNDH4H|@9w$H9rHH9u9ЃDËfDSLcHDGHI M y -H~IلuGLH RmIKY8m4IIHI Ii'A)1H[MA2H(\(LHHHIHHIHHHHKY8m4H LHH1A)H lIHI H[ff.AVAUATUSHdH%(H$1JL:Wu -HHrLODA@ EXAPIADIL$@A)@HAfA9uDHACMT@tE2ID$@@II9E2EtIl$@I9TLl$@AYI8M]PfDMBAD Ai')ȉA'I9LLL)HMTfDAIAA APi'A)DM9uIA H9D3IffD0HFt-F.GLFHLHT@H@0H9uIDH$dH3%(HĠ[]A\A]A^LI9^AKIMMPE)ف=AADAAAAD9rGD9r<0.LVfWLD9DH@0wD)D9wHIPA1AA0A v"DAGAAD9t)H@ICL9t'AKIGAD9uF.HFDwIE2~$Ll$@AE1M]P E1IMT$@8ALoff.@AWAVAUATUSHHT$t$dH%(HD$81PL|DWHD8kWL[@8RDH MnEED<HE) $8w EL\$AO1L fӍASHHDȉGtٿA!BD؋LtfSHЋTuÃu$D)E9؉\$ EIIE)L-:hL5gL=gHfA DHAN1)ELMAA fDGH HHHIHHA)I9uمHc$H l\$ LDD$AJHcED$HE9w/)HHIITH)HH9uE1~?EBCtADI|@AD)IHʉTL9uDA؍LtBTHcTHu#H\$8dH3%(QHH[]A\A]A^A_ÉLHc$H kL-fA DEA DDAINK LE1)AtAHHLȉBH AH9uEtBDLl0f.HcHVkD)uOD$E#DD)t H}H)Ht̻e^Le H)H|LH1L'pAWIAVAAUIATUSHL&A|$[Il$tI:H|HHtTH9tOH{ 1IAEAG軻`fH5kHHXHu\HHHtcH9t^HpIvHtIAEEt9A|$[uH9wBHHLH)aHH[]A\A]A^A_@1H[]A\A]A^A_{]uIl$ Hff.@S1 Ht [f.H[WAWE1AVIAUAATUHSHcwHH|$J4HMct/IIu=v#u4AHD[]A\A]A^A_fDBDH[]A\A]A^A_LD$H21HpH=i'ff.ƒ0 v> 1ҍJv+Oʃ0 v1 ҍJDCBOʃ0 wÐAVAAUL-^vATIULS1HLtHu[D]A\A]A^HcEt[]A\DA]A^AWIAVIAUATIUH-uS1HHtLLct0HHu=#u5AH1[]A\A]A^A_@BDH[]A\A]A^A_MLH3o1bH=h%ff.AWAVAUATIUSH8Ht$HT$HL$dH%(H$(1=_#D$H\$ D$f.LHPHDl$ EtGHL0HDmEtAADF uA;tA#tE<=AńA Dl$t1E1DfIcAD UMcHBD< EUHu@<=@t)HADF uE}ADV uDEAEHIcHED uHqADF u<;wHHNH1E1fDIcHADF u/EHIcHAD~ tEH HIcH>9E@:H9H<;wIIs|$ [t^|$@HT$HHD$,@=a#H$(dH3%(D$H8[]A\A]A^A_þ]HHt=#u=ǖ#L|$1H5@^L;1LH5,^*1LH5^HI>HE@HT$H5]HE1Ht$HD%4#E+A=#rLE1H$HdH3 %(DHX[]A\A]A^A_fHxLpEtLt$H$@HI=# $@$@iHt$H$@|RHHEIsDIH5FHcH=Z 3DI~8HHIL%\HuYHm(HI=̔#tHD$H޺HqLJH=}ZH1fDL|$1H5\L H|$ H1LH5[H$@HHo=8#HHT$1H5[H$@H7fHL$H b%HH=YnfDH$@HL$ABfDLH[G1H={YI~}I~AqH$@AHL$(HH VA1I~9I~A-I~ A!I~ L$@A LASAH Z1AR;D=#XZEtHL$(M%I1HZH=XENHRZHH=XLHYEG1H=dXtlHH`3K1H=BXRH(ZIH=%X13yfATUSHH=ZHdH%(H$1HtHHH =#H=YHt98%HHHt HY=#HH=YYHHt$HHCZ=c#-H=jY!HHtOHHxfH{8H*Ht+HHtIfD= #H[(HuH$dH3%(5HĐ[]A\=ɐ#tHH_S81H=V苻H*LcA*H1HDLHߺIHf_8HH=V1(0HH^61H=UfDHIHW57H mfHP^HDH=U1HHV^51H=UfAWAVI1AUATIUSHHdH%(H$18HH LH聰H H=]WE1 Ht8 HAH=#HpH4 IHHH8lC ft+fE Mu"uE1HCH8HC H8tHH83 R HH8p HC0H8 HCxH8 HH8 HH8 HH8 ttuStUt Јt ЈCtEC(tE(tu ЈM HCPH8 HCpH8 HCHH8 oo  Ј t, ʈ ʈ@t#@ Ј߃ ЈMHHH~E=6#PH1HLd$Y H[(H|H[(HuH]L1H THT H=QI=#$DE1H THTH=gQw=#DE 1H THmTH=4QD=M#DE 1H [TH:T%H=Q=#DE1H 7THT5H=P =#ZLE1H xTHSEH=PI =#$LE 1H SHhSUH=gPIs =|#DE(1H SHjSeH=1PA =J#LE01H SHSuH=OI =#L1H jRHRH=OI =ۉ#MD1H /SHRH=OA =#LEx1H SHWRH=VOIb =k#L1H RHRH=OI) =2#L1H RHQH=NI =#kD1H rRHQH=NA =#1D1H BRHQH=pNAAy =#D1H RHlQH=3NC =L#D1H QH7Q%H=M =#L1H SHPUH=MI =އ#PL1H QHPeH=M =#D1H eQHjQuH=[Mk =t#D1H HQH_PH=&M6 =?#LE@1H QHOH=LI = #{LEH1H PHOH=LI =ӆ#ELEX1H PHOH=LI =#LE`1H PHSOH=RLI^ =g#D1H pPHQOH=LAA =)#LEP1H IPHNH=KI=#tiD1H PHNH=KAA=#t/LEpH O1HsNH=rKI~fDHt|#H HHHEHHpH1HHAE`HEHHx;/HHH_H1H$dH3 %(HHĨ[]A\A]A^A_f{Ld$,LWAL,1L A3HHm=6#Iu ЈMHH8HH=؃#IMHC0H8dHs0H}0ۚIHHCxH8KHsxH}x贚IHeHH82HH脚IH5HH8LLLHIIHHH8HHI ЈLHhH KHjK IH=fH1t}#t=i#+HIIxy=B#H~#HtLH5XHH=TJzIHt;=#LLH5fXHLD$脭D$H=P苰IH8HTLD=#ALHILH?{D}H=sIEDD+HHHD$U=>#HL$AHLqYE= #HI1ɺ,NLIHx |1H=`蔯IH8H>LD=#aLHcPL1H=`Fp2HH蝗IC f}HsPH}PsIHE1Hs H} CIH5HH8sHsH}IHHC H85L-I H}8HؖHHHĖHfDHsHH}H裖IVHspH}p苖IH,f.=9#!HLtD}H1HLNE H=D=~#tH[N H=D1HHp@H}8L贕HfDHFLM1H=cDsHz#H]=l~#6HѾuMHON1H=)D9Hz# DHM H=D1fL=Pc@H}8LHfD1H}FU H=C=}#LE1H pFHuFe H=tCI}#LE81H PFH=Fu H=CHFH=GEH  H=?EH8H=2EH|H= EH H=DHH5/CHH5DHݨH5DHƨ"H5DH诨5H5DH蘨 H5DH聨H5DHjZH5DHS/H5BH<H5DH%H5{DHpH5mDHH5\DHH5ZDHɧH5CH貧H5>DH蛧H58DH脧H51DHm[=w#t$HHI,1H==IMuK1LD 1L聥wˉEfDLHIMt|$uH$dH3%(HĨ[]A\A]@HL$LHc ЈDLHHIpf.IHH2A%H=<,DHL$LH Јf.1 LA 1L*HܡHDžA<$LHH9f1Ht$LA<$HT$:HHH1 Lw 1L`E(HL=Zu#LH}8HHIHLl$fDH[(H=u#tLHߺH@(H=:H11 L财 1L蝢E@1 L膢 1Lo=}t#1LHCEs(H=::J1LH} G=@t#ILE HH<1)H=9ILH=s#ItLHپ)1HDH=9IGHL$LH߃ ЈLH}zILHl>(1H=59ENs#LHL$HIw5s#LHILH IH5>L!H5q>LܜH5b>LŜH5S>L讜uJ%HL$LH Ѓ@=Tr#1LL=rHnCH= 8=#r#]PH=H =PHqC1L =L~=H=7ZY/%LH}H贈I2LH}@蠈IHL$LH ЈHL$LH Ѓ LH}pIHL$LH, Ј=p#PLH[B7,1H=6.LH蔇ILH}P耇ILH}hlIHL$LH ЈLH}`ILH}XIff.HG#@f w uƇfG HGXH8t 1fDHHXH5;蔆Ht1HøֱSAH Htc@][LGEƈH9t|@D MPI@E8uEIHD MIHHEMH9uA2H)AB[HAH9t1D8HHH9u[f.HGMAVAAUAATEUSHH0dH%(HD$(1Hf8hYHYHY1HY1HY&HYHYHYDH>Y1HY1HY&HYHYHY@HX1HmY1HcY&HVYHIY0H3YDHX1HY1HY&HYHXHXDHbXHD$(dH3%(uyH0[]A\A]A^DvXHpH@Hs DH@:HHBuH)H4U^1H^X1@SHH $HHdH<%(H$1HxH9pHH HL 0f:vrL9HHDHQfA'uA'fDLQHLHfDHL9rH)uTH$dH3%(uvH[L9s;HHDDHQA'u LQ'HLHDHI9w@1HH PO H5F?H=G?j՚DAVAUATAUHSHH dH%(HD$1jHF8=Wk#L(HIHLf80HE8HDHpSL23= k#uXH@AUHf8uH^VHEHHPŅ'Hf8HL$dH3 %( H []A\A]A^fD+0AHE8DHHp.SL2=Oj#DH*BeH==1%f.UHf83uHU#D1U@1HnU0f@HUMfDHqAcH=E=1KfVDft@uf?vuH觎1HHуHEHcH>H=H<H1H<fDH1H<fDH =1ff.fAVAUATIUSHH`dH%(HD$X1HH..HSHSHHߺHpmPHSSMI|$I<$Lt$ HLLl$@-HLSLH-It$HPL/LHr-I4$HPL/At$uHL-L.H-H|.HD$XdH3%(uH`[]A\A]A^H`R艖fAWAVAUATUSHHHH9HH)H9OAH L-CLu]D#AD$<9IcDL>fy*/KHHAI9wH@HHH[]A\A]A^A_HCHsHH9r;--;/*tHþ A[AEH9HH)بtfDHHCH9x@8su{uHCH9_K@:sutHDH D@t$EuHDH9KDÑt$]Hpuxt%HHH98 uHY H HH CKqH58H=`=H DKH58H==̎ff.AWAVL4AUATUSH8HHt$dH %(HL$(1f8HD$IHE1Hh AH}1LNHI9uG4$ McA ~@D)HcID9~1LJsO1LOcLOL9OIEf8LLt$AOL|$C褉@AVIAUATIUHSLH0dH%(HD$(1HcyHA|$0HD$A|$ AL$ 1HHHxH|$ 1IHtyLt$HL$H1HD$HD$(LHPAD$4LL$ LD$(pdZYHtHHD$L)HHt$(dH34%(Lu7H0[]A\A]A^DHMHLE1莈ff.UHSHHHtFHrHH[]ff.fH@w1f8wD11HWHЀ-t=/t*tfy/tZHPHHt;*u@O-tfD t#JHHHЄuH@HGHff.H-t%~3?t>[ti/tHH-uH("t'tu18tHPHpuVH8t놹]fAUATUSHHHIIH1CHHHuAD$9E1E14HLHL)@I4$DHA\HIt3LHHuHL1?H[]A\A]@1H1?H[]A\A]fZE1HL?H[]A\A]ûH ; H5-*H=Q][D @8tHWHGu@H8HtHHtf1ff.fE1Ht@Ht AHHuDDHcF HuHcF~H uwHy HEVt@t+tDH=HGºHHD@1~cHËV@HH=@HGH9HBAUIATIUSHHdH%(HD$1Hf8@C{v D$"=H2HcH>T$H )DAt9FAHL11HL$dH3 %(2H[]A\A]T$H 7){H )H(T$HE@T$H (pH T(DKDCL1HY1lfT$H )0T$H ( T$H k({&IEf8T$H 'T$@T$H (H 'K@IEf8T$H (IEf8jT$H 'qT$H H(`T$H +(PIEf8sHT$LHHT$@T$H 'T$H 'IEf8asHT$LLT$HHH &IEf8T$H &T$H &IET$H &f8fC#H M&$JH r&": H O&T$#{H 'Ha&T$HET$H &T$H |&T$H &T$H %IEf8T$H 8%T$fDT$H %T$H 9&pT$H g%`T$H &PT$H %@T$H %0T$H e% =P#uGA$2H A6H5e$H=ǂzfT$H M%s {襝H%":H="$1i H $T$ff.AWAVAUATUSHdH%(H$1Hf8IHL,1HF@1HxLI9u1Lx;1Ln;cLa;Ht$LHt$jI4$f>CHD$0LHH$BDmHl$PE1IKfHvarchar(B4000H)fB HL8IFM9trD$P,L}IƺEF1H $LOHcLHtCD9~HLJ4yH<$OH|$E1Lx71Ln7cLa7H$LHHD$(dIf8VH$LHHD$09Amf{HD$8HjIEHH@8H8H|$ʼn\$D1Ll$XID$ HL|$HMLt$P;l$ LHII98@HXuL9IDAuE'A_tvHB`IM9uLL)HcŃHHD$8L0HPrf.LH\$3HL$HHHCHHD$tH$HPH$11L|$HD$(H$HD$HL)L<IG H9D$'H$LDuH|E1H$H HLzHcLM AE9L|$E 1H |LzIELH1IELLH4$LLI.AEHD9~qMt,L0|@IELJHp8HHE.uHphL-7f.HphL-H|$8\$DLt$ pLd$0LJ LHh H|$( Lt$ H|$8pH|$0M H|$(C LL)sH *H5AH=xenD11cSHHHT$@HL$HLD$PLL$Xt:)D$`)L$p)$)$)$)$)$)$dH%(HD$(1HHL$H|$H$HD$HD$HD$0D$D$0HD$ vxHf8HWHD$HH[HD$C1Lt$Hl$0HxiHIV)LHfH9)1H/)HH?HD$DHHpK&HHH H5H%HD$DHHp &H5Hw%DLH%H1L)H(tf.@.LL`8kIF@HtHLt$IF8H;LVH|$ VDHDLD$LHH@`H0IHHC1f8Lt$1HLHf8EHx' Hk'1Ha'HT$LHHT$LLHM9tLgLdE1fA|$tJI$1HN,LŅIE1LHP ŅAD$ID9ǃ HG'H߉811LH!Lt$DHD$HHP8Hp@kŅUH&H߉9D H3&Ht$PpHHsH@:HHBuH)H"|DLH#fD1H6iff.AWAVAUATUSHhdH%(HD$X1HIHHHf8IILH;LQIHL-SM&HAD$SLLYeHLD$H߉Hr`LH6IHHD$ 1HHHD$ HC1f=f=4H$ Hr$1Hh$1H$H$&H$Hw$1Hm$HT$HLHzHT$LH߉D$M9L$t LUdL$iH|$H&f}E1+fDI1LHP x,EID9HE1HNHLHUHH߹MAąBDH1~LF!A1HA<\H H5H=VH H5jH=^Vff.=,#SHu u1[fHƃHZYuHHHt" _H;Ȟ1[^=$,#C1C(u_H[fDHH mIH=|LDHgHD1贮$HyH=E1莮ff.AUIATIUHSHcHy H*WHIEx wz1HtL|߃A<v2G< wHu&@_t HH"HL[]A\A]铻HH9uMtHHL]AHH[]A\A]ÐHH]UHcHSHHX;"yHHT$`VHT$HHH[]SHcHHyHHT$ VHT$HHH߾'[ƺfDAVAUATUSH@dH%(HD$81HW=*#HHIQHf1fA<$ {1HLl$ I<LHLLH<HuHKLH1HLHHu H LS1HLAA$1HL$8dH3 %(u|H@[]A\A]A^DfMD 1HuC1DfNHU1H=8胫WfAWAVAUATUSHdH%(H$1HE=H(#HHIIA} EHt HJL3HAf=f=z$Mt AD$$L} LSIv`LHLD$(H6HIHHD$01HHHD$5HC1f=f=gHH1H1HH&HH1H$]HT$(LH1HsHf&HYHLH?uPH߁1H$H&H HHuTHe1HH&HHH1HHT$(LLH1AƋ$HHD$fI$1HHL$LLL$2L$1HILP HL$HH9L$uL9} tLBQE(H|$A}u"1HN@a%#E1H$dH3%(DRH[]A\A]A^A_f.HAf HCpsH$HH DH@:HHBuH)H Z1H&1HcHt$(HH3f>5t$(HiHcT$(LH 1HH&HHHuPH1HHy&HlH_HRuTH1H=H0&H#HH 1HL;} tLOH|$wAE=K##ǃ+E1C1Lt$PHL|$pLH1H LHHuH L1HXLL3AEAA}AAf1HֹH NH51H=K fDHbH=1&HhHo f.1HG"H=!#%QDAVAUATUSH@dH%(HD$81Ho=!#HHIaHf1fA<$#{1EHt HCHLt$ IH LH1H! LHHuH LHk 1Ha HT u(H LA$1ED$fED1HL$8dH3 %(ubH@[]A\A]A^HCuC1D뱐NH%1H=}YOfAWAVAUATUSHHE=#AIHeHAEHt HHH.fx#HHz&H@x&zxHRHH@H=+#UA $DEHW1H=1H6H'NHŧH=b譜\H1H=9脜=#aDD$L$ 1HH= EAAI.AH 2 H5H=>BeHDUSH8dH%(HD$(1H==#HHHEHt HJ;HHf=3f=C1f=cf=H HH1H1H&HHHuH$ǃ HH߉HL$(dH3 %('H8[]fDHHpHHsf.H@:HHBuH)HC1HHuHW}@tY1HH@1HnHNHŮ1H=fDHkHE@&fEAUATUSHxdH%(HD$h1H=#HHvHE1f8w)HL$hdH3 %(DHx[]A\A]HLEHt H8HC1Hf=f=cH.H!1HI1HJ1H@&H3H&HuH1H1H&HHHHF1H1HHLHH3f>Ld$ HߺLHuHLLHHuLHǃHAp"HHt$@pHHsH@:HHBuH)Hf1HvH&HhHW fNH1H=ӖhAjCff.AWAVAUATUSHhdH%(HD$X1H%=#HHAAMAAuMfA|$H0EHt H5HHf=f=%C1f=f=LH7H*1H 1HV1HL&H?H2H%uH1H1H&HHHDH߃ Q1H1H&HHHDH AǃHH߉HL$XdH3 %(gHh[]A\A]A^A_ HHt$@pHHsH@:HHBuH)H}1H薨H=NHN1H= fD1H1HHEl$Et>I$HHr0H>HAUH HHHr0H>H9uIHLCHf8w}Lt$ HL$LLHHuLUE[1f.I$HL4HL蔤I1LHP A9wHphHKmfDIHnHLHf8wiLt$ HߺLjHHzLLHHuL:C11HXHphH>ff.ATUSH7HH?HE1螥t-=#HE1f=tFf=v E@v D[]A\D=#tH@H=d1譑HEHt H1HHC1HuHhHH#HAH*MH^%1H=fDAff.fUHSHHKt EH1[]ATIUHSӉFmuhHEv,E11fw[]A\ÐLH襤[]A\fDfvf.1E1[]A\fUSHHt%Ht HH߾H[]H 2 H5iH=6ff.fAUATUSHuJFHHIIͨu!LLHCH[]A\A]黴H5'CH : H5H=6ATUS>HHIHFfwAuHU8Hu@LC[]A\3H5cCf.tf恁7CHU8Hu LCn[1]A\H F H5H=-85AVIAUAATEUSHHdH%(H$1=% #/Hf=tKf=vD$@1H$dH3 %(hH[]A\A]A^DH蛾C1H1At$H@HAH AHEH<H/H'ODA&H'JcH>DA&&H DHcH>fHOH=}ȌIcLHYD= #foSD$P)D$@Ht$@11HhE1Hl$ Lt$f|$ tF1ҹiHHt=I #`A&CHrJcH>1ҹHH΁u|$ uHHtHL At$A|$UH3AL$dMIT$HA8H~ 0Dd$fox')Hdy,'01/0D$X2/03HD$P)D$@fT$\D$^foHefD$P)D$@@fostD$RfL$P)D$@AAĉ#f.H1H=؊=#:H7H=`1詊FFD$RHl$@fo-f|$P)D$@11HHaHYIvfoD$POFFHl$@)D$@A>LHLDHl$@H @H1T8A>L{HbLDHl$@H oA>LWH>LDHl$@H zA>L3HLDHl$@H 9{A>L HLDHl$@H MTANfofDD$P)D$@Hl$@OND$RHl$@foft$P)D$@A>AHHcH>EHl$@H H107[A>LBHMLDHl$@H Hl$@EH 1A#1A #j1Ad#O1AI#41A+#1A@#A=HJcH>1A#D#1A@ǃ#~ǃ}#hD$1A@#‰HH=!1j2Hf8vzUSHH/uzHC1f8wDH1H1HHH߉H[]1H>@11H5B鸴fHf8w"@HH5HD11t@USHH[HC1f8wtH1H@tHH1H1HHH߉H[]1H@1H6뀽ff.fHf8w"@HKH5HD11鄳@USHHkHC1f8wtH1H@tHH1H1HHH߉H[]1H@1HF뀽ff.f=#ATUSHH1f:t []A\H DHj HǃHB cu^C1H߾q1HH;H߾.H[]A\"fHWH=1YHDHh LAUATUSH=w"LcH"AH=}"LHHH*Ht$HU"HJ2HH[]A\A]H="H*HuH-"\H`fDHH]Ht;EA9uH="Ht*HuH="H_*Hth@H"H j^J `H H5H=(f.AVAUATUSHHpH(HCՅLcH_"LcLHfoLHfo G9L%"G0K<Kf$t)f'ff.f.f.f.f.f.f.f.fPtkffww=fZ,f 1f91ff-w+fff$Efff!Eff*f@v3fCfD1fBD@f?f,R1f/1f)fDf 1f"fN f'vr%f v0f)f1f fCf 1f,fmv;)fXfH1fff%f1fmf$wsfw6%ff1f@f f 1ff4uv.f<`f@U1f8fDf,tQf0+1f(@f-%f1f"ø@HHHHy 1f.ATUSH`HAZ!HHE`H8['HHE1H YfP HfpAHp8EXHHH@"@ HPHP(HsHHPHH8fxX@ZfD@@@BHPHHP`HsD[]A\fDH"HE`H ?<H57H=J GX~5UHS1Hf.HE`HH s 4qs4qs4qs4qs4qs4qs4qs4qD;A,A@A-w:L-Itfx&HH@8>uHH{uEdHD[]A\A]H AH 1i@H !O@H 5@H @H @H @H @S H QfAWAVAUATUSHHHHt$@T$ dH%(H$1H{8D$D$Ht D$HC`=k"HHD$f;ED$ ="D$ -=6"HC`L$ H8t$/HD$fx HC`T$Hx"G0T$t$"1ۄfH$dH3 %(oHĨ[]A\A]A^A_t$[HC`H89fDHcT$H "HfoGHD$x #@!H5)H=ZG-H-f"IHeH :GHH x"H H r"H=^"H5HtH HH K"H=/"H5HtH HH $"wH"HGH="H"2H"1L="L WL5"L-L% uHHtH"tMHL꾥 LMMDHHI 1iL Hu@H$H\$H1L5HD$ HD$`HD$0HD$pHD$8AAAAMcK4HMcKF1҃$=w HSHECfvH kqHރv'ct"fv =1[]A\fHfv6!H0AĄtfDH(HH*Auf Hs0H f.HFBfD賷CHE%軸CHE fvACH wCA0f%@?CC軸CfDH(H11HH11HH 11HfDLcYHL,H}L`HC(HEC>ff.f(wGff.fAWAVAUATIUHSH(DFdH%(HD$1="FAw(HJcH>L<HM8A$)=B"\}LuHEdADImdMcL92IHLLHUdHu(MMLLÅyHT$HT@1HL$dH3 %(H([]A\A]A^A_fI$tkH}(tdHcHLLSE=U=t=u}"wU 9Uk #fDDmA9IcLLD) Hc1LDDEd1 f.E1ۃ$=LHH;@L0؅L8HLpHc؅LLmH褵HHH1HIILHUdHu(LH$Ld$D$;6@HcLL]dofI>IIrUHXIP LD@-/U 9UUDI>EdHI@NH,H=%RDEH/1H=[QU193)Hc1HcL@H]HLLkLвHsL迲I$C f8vHCHSH3H3H uC L艳Hc1LvI}MHHHIEJ HEfEd1hfDXfDKD@UHSHHw{w"SH 2HcH>HHuf=t=f=vSHFPupH1[]H薸Huf=uËCPރvcu1H诸HufDH蕸HŸmHHhoH1[]fDAWAAVAUATIUSHH8nddH%(HD$(1="yYC<%v+<<HLt1wD<Lӷ1V@HLDL$LcuvKE1LsHIDL$vMM6EurHs(H~0ME1tVLD$ LLDL$L\$LT$qLT$L\$IDL$HD$ MtLcKM1I$f8="owRHHcH>fM9MGEtCPރcDLLT$l@LLL葳{u MM9ttx1HL$(dH3 %(H8[]A\A]A^A_HHcH>fD1L1fa1LN1f.LX{Eu I$f8wCPރvctL胵1F@1MfDCE1$=wH!L,@LLLq@T$H9H=ILkdDL$r=" H':H=1LDL$fEHLLT$IDeDL蚴-DM9LLT$MGA踴 M9LLT$MGAشCE1$=HL,LT$ILLGDLLT$nLT$LIrLT$LIrI@@LLT$LGDSMILLT$LGD"f.1LVHQU>H=w1DL$L\$LT$KKDL$L\$LT$PL{SHP0t L^1LOLLT$8H5LH5LЯLT$ FH H5H=UHSHH˪HC轪HC貪KCQL8H []ff.@#fDATIUHS]uEd1[]A\H]Hf1CfS C"UUSfEu 1HI9t'I1HH4HP yH[]A\A]A^A_fMvMu1H荩1fA15AMt$HHD$#f.1HHBH9\$)IHL<Aw褨Aw HרAwH ILHPyH[]A\A]A^A_ff.fD1ffDfDfD$1w H8F[wHHcH>fw>fu,u @t ~Hu`1D1tbf.t11D3t1.x11D@1@I1t8~Nf1øf.IvIAP6lvcH"ueH=S"A@I8LA@dA@1A@A@ A@d@bweRH5Î"Hy"HFILA@A@dA@u$$wHbA@A@ A@dÐjH5"H׎"HE뜐EH5Í"H"HF{H="A@I8LA@d%A@fA9H="vH="I8bLA@A@dA@B>H"@SHIAf=vBۃ w HHcH>u f=DLHHDB8ucA"Aw.H}JcH>hACAC [@ADLH|HuDBfHS`HIC(ChACYClAC]s@[5DA[Df;oAC[ACfDf;OAC[ACfDAC[AC fDAC&[ACACdÐACo[ACACdfACm[ACACdfACn[ACACdff;AC[ACfD[fAC@[DAWAVAUATUHSHH8dH%(HD$(1CEdAǃ8H踚HDD4$訚DHD PfALeHEoD$D9Et$AtcMT$H߈L$EoLֺDD$DL$L$裚L$DL$L$DD$A HH@`HHE(A@A(^xA+nUH͙EE<?AC$HSC$D,I<$HtAD$ DHHI$DuHEH}EbLeHDI<$Ht QI$AD$ ##IHI$H HAAAUAFq@L@ǃ!@@Z8RUdIvH0H1f:xHL$(dH3 %(H8[]A\A]A^A_D1H1A$H;D $$9JH߉$F$AD$I<$A)DmdHt I$EHtH}(t1D*AD$Lt$LHLBHUdHu(MMLHIEdfD1HfH;LDD$ $DD$ $6fDAA~I~$H!xAF4ac$Yf1AD$ 1BfH߉$$AD$DH11H AD$AF=v1D3n!v/{v\DfDvMh|m>DfDous=DfD&ucD3f2f.1f.~ECDt{<D0D@@D@;f:f.4f.8f.Bf.zf.Af.Ht Gt tDHGffpPH cH5pH=off.SHwHHE1E1HjZYtH[ÐH!TdH%(HD$1HT$D$1҅yVHL$dH3 %(uHHt~ ^fDHAWAVAUIATUSHHH|$HT$,LD$dH4%(H$1HD$@AM=ȯ"A L1f.H@(HHuHHH$HHH_‰D$(H1DHHLhMm(P@MuHAiDt$(EE‰D$$HD$`HD$0t$$lD+D$(9Dl$$Dl$(E)Dl$HD$\E1D|$ HD$CH$MIN4AF+D$ L$I9L9vN|A?xIL9wbIHHEHfD1ɾHfHfpH9uT$HHE,$AU^AE1HD$D(A="A)ND$NIt$,IHD$8HD$LHt$0LﺀA}1Ҿ$AŅHL$A ǾD$\%HL$ADD$\(HL$ADD$\HL$ADD$\HL$AD=Ҭ"D$HT$HD$8DPHpu}="LHD$@DhHD$HE1ǀDH|xHuH<$H$dH34%(DOH[]A\A]A^A_D DHD$DDDD$8#="DD$8eAstCD#HH $HDIHHoA-fDH$@ qE/I @D$$D$s8HD$8=n"tHH1H=?.gT$1HE$$A`[E}HD$D Ak="A)NDA*NDHD$\E1D|$8Ll$HD$HD$XHD$AMMD$ 6@|$X,AEAFusHII9NtA>xfA~tLD$HL$D$\tA?|$XY=2"D$XAEtA>XLL$ AHH$p HVP w H\HH $HTIHHo I9AD|$8H="HH=1s,vfD=l":HH_ 1H=9,f1HH=,Ht$@"DnHDH=1+lDD$,HL$01HuH=Z+A)NdHH=(D1+HH1H=_+DD$8tHHD 1H=8+AHt$@F1"A 1H;H=*HDHD$n#ATUHSx ELLt11HHff.HAUAATIUSHHHHŅDtY tH;L$ HL$ H޺$NHx OfH;DLHtH[]A\A]H#NHHx NftHLIHt HDHHL0AWAVAUATUSHH}IHqHIE11L=/HuKDsH=q"H #NHHx MM9vGHDŅ~DH;K&HD) txHIM9wfDH[]A\A]A^A_fD( t=Ӝ"uuH;H&NHHx SM@HD$Lt?1H=}HL$tH߉D$D$_IH1>H=-gH H5H=fSHHdH%(HD$1{tHD$dH3%(u9H[{HL$AD$kCSHHdH%(HD$1{uHD$dH3%(u9H[{HL$AD$CpATAUHSHHHHt=hEt9}H[]A\fDHD$ DD$ H[]A\HHHff.AWAVAUATUSL$HH $L9uHH<$IH\$0LdH%(H$@16HLv=?"A|$1ҾD$d|$H$Ll$$fDt$Åt5fDD="E\A[EtVEL$MD$1HDƄ$rHx-LDt$$D$(^ye8t|$=`"21H$@dH3 %(ZH@[]A\A]A^A_?1HDƒA1@$u;Lc€="fD$.BƄLl$Ld$.H}LLJH<$HD$DH/|$$dDMH<$HMHM1LL1HHtHƹ H=+tcHHtY1LLHIHNj"LLfH55YL1LH.HH@`H8t\HILH)HHHL=յHr`H͵} Lغ1ҾH詿HIHEEH=݋"PIHH="8IHLϸHLDHHHhH9uHH8H1ҾdL茽LLLHHppH>H="(L`L3Hf8E<GL迼LGAǃ=D"^L=3MtL LBLڹ Hx*L=.L#I$HH߻IDŽ$茽H="HL$hdH3 %(wHx[]A\A]A^A_fH=I"脼f"H=/"*eH1L=xVfDH="\IHt$HE1H3 @LL=!@="SH5XO11藹H5ָH5HHHZ"=HH5HH5/HH5H5PH5HHH"H5H践H5HضH5H虹"f.LHI1H= 7fDH54L褸ZLйlEu {()HHPXH:t =" E<L3MLbLIdžH1LH HLH$LH$LHǺfL=P@L=/@DLuLAڸEDEAHűH=F1 dfH Hz5D1H=o f.H1DHH=C HHppHC,LC$H3LjLLLfD=yx"[]A\A]A^f.DcdD-Tx"EHH GEtZf=)x"tHCHH龇HD=x"tHCHHH΢Ds=w"`HCHfH HZ[H=G]A\A]A^=w"HCHH龷HZD[H=]1A\A]A^NfD=Qw"HHOw bf.A|$Hc~IHt&HsHIcHשEu^[L]A\A]A^颢fHHVEe[H=g]1A\A]A^fHCHHG HMHHI1H= tH sH5H= 3H TH5H=@SHG(HءHC[ff.AUHMcATUHSHHHHLA|$ t3HU8Ht*KqރvctKDmH,€}uCXЃH[]A\A]Hcu LTHt#I<$HcU HuNE AD$ AD$1뾸DAWAVAUATUSHHH$Ht$HT$(L$LD$DL$HD$ dH%(H$81HH|$ t"IHW0fz1L5xH-L=jL- BH9wD$DPEfDT$0fzL1E1HAAH,A9\$@It$8H[HfxL$H|$EHLD$HP EXD$UJރcjDH|$@UH'uR9MNMH0H~A s"AFIfD|D0\IT$0BHA9CE&EFDlD0FdD0LfA9JDD0 @s(HDdt0fD9u1&HD$ ۉ(D$AEH$8dH34%(HH[]A\A]A^A_@EH=fGlEX+bD$H1EjH/EDg*H=mXZD$*fdEPރv cDDAHL$EH͞,H= r"x@HHI龗(H=HHz HIE@X@IEQAGIRMEL1AYIT$0 q"AZH0H .6HHLA@ A@YDHD$AEfAN,EfAfE9AfEtRLT$0DMK|BLй9HH9uIAIuAGMl=p"NKTMD)DlD0IAjI9uEDkD+|$ yp"^CIAECHL$(HT$T$DLы$=HxH ɚ'(PHlHFPL -1LH=IT$0A[ o"[fz0HHdLFG)PH Z1H6H=L IT$0_ o"AXfztG1EE1-H1111H=fE1J So"8fDD$fD$0HD$ D$+DEE-H՛H=1 n"E1fD1EADH0H=Κ=n"HL$EH$0H=XDMپ.HMH={1`;LHG1L$/H=S:L$|H H5-H=5H ~H5H=Ηff.AWAVAUATUSHH $HdH%(H$x1HHf81IHV0H|$pE1D$<AHHD$pD$8HD$0fz~HD$@H$HD$0HD${fIL9D$Lt$0Lm8LLIMIUI4ALl$0LϘ H4$fATH|$0膚HS0E1BID9HJ,EX@u{$uuքxҀ=l"H$HLUD$8H|$0HD$JHU81LIH H@H $1H! tM€DHqHDΉ@HH+ $IEIL9D$Ll$0LǗ, IfAMAEHKH9H=YB֚HD$(IMHCLD$0H|$ HHH1耗H|$(D|$<HD$ HC1H$xdH3%(HĈ[]A\A]A^A_DD$8<|$xIHHT$0HHHT$|$<HT$D$D$<Lt$0D$8EH1H|$(HǗ褖|LL$(fHFH|$ HHH1pfDH|$0HD$0HD$8D$BfHD$(|$<tH|$0֕@HILAULD$(H=1H^_:٘I$LHz Or=i"MH1H=莘I$LHz *N'轘ff.fHAWIAVIAUATL$USHHHOHo(HT$NfHPHWAT-IAWHS(HK HrHs(HC(1HKHHHS(M9tCLk HsHH)L%tAH{HGH;Gr>tLk Hk(D$H[]A\A]A^A_DHD[D)]A\A]A^A_1AWHAVAUIATUSH8Ht$dH%(HD$(1~ HH5HDHAHD$HP1#HD$$HD$Ht$1ҹiLtMMA~_IHAF(1fA|$AD$(uEf.#vAwIH@0AWPAD$H9I$H,LT$ t$L,f.D$H"$H=H1H C{H5H=؉[ƋfDUHSHH=i\"uW{1uyH4ugH'HH߾Hx1Ht HUH[]fDIHHh1w7H=fDĐAWIAVIAUATUSHdH%(H$1=["If8WIvLAąxNIAƇf8trLJAEx,AG1L0If8YE1H$dH3%(DHĸ[]A\A]A^A_f.HD$8D$E1HD$HD$4HD$@HT$Ht$L D$4="=uMMt|$1HD$@Dd$ 1H$MLt$(IH|$ADIcTI$H,Ћu}XI7MdA8HUHLL$H~ x!ٸA Ƌ$D`HHuDDd$ Lt$( \$`C=l$d9D$@-D$8DEID$HDPEL1E1HH-yL-IAHH8HAIcwEH=>Hc H>HƹH@@@u @DL@A HA9AD$fHƹH=e@@@tfDHƹH=Ou f.HƹH߸@@@PSHH=ÅHɅ}HƹH=@@@@HƹL@@@@DHHIcF@I^8fA}H@H,E1Dd$MMI$JPHHHrރvctzH9weHH9{tHcPdH{HL$(S HHT$ HtHL$(H{HT$ H݉AD$IHD9xDd$ @H =V"A1L yL5BIF0PfdHJA~$1HPH DHH@X@uu<HH9uL1Ld$8AIF0fxfDL0As LdAsLAHHHLPCPރcIHS8MLH@`H HH0[IH_Ht$8LH@+AHT$8LL=HC8HI9tL&IF0PH9HA~$HSXuuفuIsf8 Lw@fIIVMLH@`H HH0IHHt$8LH1@HT$8LL!=IFHI9LhDd$D$fDIHH79H={bDL;fDI?h AD1fMLH1g1H= (IF8HA;n@HcDD$ht$xHRL$tDL$lHDT$pDS"PfHDH@1EQ5FH=RHgXZ\$Hc迃IF8HrA^@eH FH5:H=ڀ|eD=S"ATIUHSUHL ÅxHL Åx I$f8t1ۉ[]A\H}0Wf/HJE111LCtL%<HPLfAXuJDHI9tNHHAD@AcD@ADAGABtADHI9uT3HD2A\=R"O(9&HHc貟HHE0H=X(1Hx ADApIHH;1JH=}hfD1H(GNH=g}N=WQ"tHWN1H=B})H}0O('=#Q"GH΁NH=}*AWMAVAUMATIUHSHHH$H|$K<@H$dH%(HD$x1H;HT$HD$LD$(HD$8HD$0H`J 8HLIH;HLHLH'HLLHD$ ~HI9tWH|$0{HH謀AH\$xdH3%(DHĈ[]A\A]A^A_DHl$@L1HAŅH蛀MtfH|$HL$I1LAHĀH|$0:{EsHD$hH$H|$PHtMHD$HHT$@F@H|$HAfDH|$0zfAP~UH%DL |SHHEIHLDHH51T xBƃHx/C1Hu'H9Hp1H[]f1uVATIUSH0u+LH6H1[]A\f.ff.1uFSHu#H9H߾1[f.[ff.AVLAUAATUHLSLMI$HE;l$1"fHLHD9ks6IHI$HuLLGx[D]1A\A]A^wD1C LHC fCLxH[]A\A]A^L1I$LLAD$ AD$ fAT$XfDHtpHtkDAwIHHuJf.HHHuHDHHHXwHPH iH5}H=}uff.AWAVAUATUSHHdH%(HD$81HNHLHAHLe~HD$ LH$IH苦uq=jK"OzHUHHz #NHwL/}HǃHD$8dH3%(HH[]A\A]A^A_ÐLMtlOLM4A~ AV 9A9Vz)ItH螬AV 9,A;V"A~SE~fAfACED9E~ A9=J"LǃHǃoL{AWH;s>HL4Iv-ASALH!I~HE1esL]|LtEULAV M~AF u =bI"1I>H)L AV AV 9rE~L{AHHD$HHHv L;pxILHHI1fDH@xKLD%rIHtsHHHunHHHuL:,D5HxLH=tx~AV AF NE1fH踞LEG IOEG HxdH=x'gAF LAljL$LHHD$HH4fE~Ht$xHt$L$HtFH D$,D|$$D$!<t\<tpA<|$!=E"H}xr H=Rw1AHAG=nv(A~$SXvAF&AOf9;D$(E;~ E~ A9AAF E~ H $AHw H=vLvHHL$LH}wAF Lǃ LDoIHHOH wSH5vH=%v'nsH wH5uH=vnH |wH5uH=IvmH ]wH5uH=umDAUATUHSHHG@L'fFM$LuHkxHt9 I$tj1I|$H{HLXnHCxHufHCxLvH71H[]A\A]fD1HHL%H{xtM=B"tHuH=t1xLuHnH޺#NHx OLt.fHu,I$Hu }DHHHuH*1SfEEfEE E EEE H8mfDI$HCxHHmff.ATUSHH dH%(HD$1G@@t$$SfD$D$D$HD$ kHH;s@HfpHu ]DHHHuHE1@t!Ht$dH34%(Du?H []A\DHHHfHA pf.AVAUAATUHSH H?dH%(HD$1f?vHHLDSD$AAf$E@fD$D$D$ DvHøHtuE@HKHfCAEtCNl#HEDs HqH}HHuHHHuHHVr1HL$dH3 %(H []A\A]A^AE1DfH$H{HHCDHtHtHHH)H)DC1҉փL1L79r(DHW7nAVIAUMnHATUSH/LLpAHHt+AV@f;PufDf;SHHHuHALLSnuLqInL#NHx mL,pAd=>"`Lp[]A\A]A^HHHHIPLpHIC HTC AF$IVAAF,AV0SA;xI>tHH|@ AF@SfUfEfEAEEA] IH(oIHHu @HHHuH(HoAF,D1LHHHL[]A\A]A^Hot!H=On1臿HfHu1Dff.U1SHHHH2nH;tH߾YH;HnH[]ff.@AWAVAAUATUSHHLH?At$$I$H[HHS(C LmAHs9C1HCDpC(HSffBHHS ffBHC1fPHf8w@E S(IŋC4AT$ tRH1LkD{(H[]A\A]A^A_f.HuHC@@E ;I$HLHLkH;D{(tD$ 蕬D$ s@)HAU I|DA;mC HsC(9fATAUHSHW(;W w7C4HuHK8C4H]HMUDeEu[]A\fD1 S(@DH1[]A\/"ff.@HwHH@(Hu HʋN HփHH HuWH)fATIUSHoHH}tFHHhkHuH;HH lHEHE HDHCAD$C(E k4uHC8[1]I$A\DAVAUIATUSWL'tGOHG0fDH8Ht'H D@ D@t8t9H vщσfIEAl$4ID$8ImDHH]Ht|HEHLI]eAƅyHHHtHHHHuI$HEHjIuI<$}I<$Hj[D]A\A]A^ÐE1[]DA\A]A^ÐO1t,HHWp(HHtR HHHHu)+wfHWHHq(Htf.R HHHHuWGHHH)HHf:HGIfUHSHHH9WHF_HH+tH)]H[]f.fATIUSHwHoL9U(HMHHHH9Wuv} WAA)L9uFDE(9r#)Lc HHCDHK[]A\fD1HU HME(H kH5iH=}j`H kH5iH=&j_H kH5iH= _f.UHHSHH9UHuHFUHhH]H)]H[]f.HGH9rH)HwHGPH k,H5&iH=(iU_DATIUHSHW(H_ HHHW(H9v3HӸHHHHFHHHt,H] HU(H9v&HEH)HH]DHHM[]A\fH BjQH5{hH=h^f.AWAVAUATUSHH $HhT$(HL$ dH%(H$X1HD$PF4IxHD$8HD$HD$0"HD$@IHt$IH$HD$8M1HD$HD$0MHD$HD$ H)HHT$8u HHLd$HHHD$8HD$HD$0IGGH|$H=3"IGHH|$8EIWHD$HHLAN4LHT$HATLL$LD$HL$ T$85>HD$X[bL(HXZHt$@I+wAAZH$XdH3 %(Hh[]A\A]A^A_@ D$,AHgH=f1DL$,Tu Ht$0@=2"Ht$0H;t$H\$8Hu)HD$IHD$0JHt$Nf.H|$HdHD$IH4Ht$0 H;t$H h_H5eH=e[H\$8변=2"MAăuEtIE1ɺa LHx uEtIE1ɺ` LHx k+zDL$81HrfH=8e莴=1"Ht$0LD$8HHTeDH=e,1HqfH=d16-|`ff.UHSHHHSHtHsHUtx HcHy۸H[]ff.@HHWHHwfF V()t%HVHHwHHWHOHG PH 2fH5 dH=Yd:Zf.HUHwHHWfHuHwHHWfUHHSHHHHwHv)HHt.HS 1HC(HKHSH[]@H>x[HHT$YHT$HHEHuf.@UHSH<`t8~4CH\aHHcHiH )ˆUH9uH[]SH>HZHZ1[@UeSHHH߾~H߾qHH[] AWAVAUATIUSHHXHdH%(HD$H1Hf~ HHHfH0HFxfQHNyHpHLciH>pHAHHHD$HD$(LQ[HHUHt$(11HVIHD$(HCIFHHD$YIIDHHD$WIH!Ht$LHq`Ht$LJ<(HD$[`HL$@HT$8LHt$0`H|$0:XxIHcWLL$HIeHL$(|$LHALL$]LL$A6LXH|$(t^HIc^C1HH5bH$HWDHHLH HH5bHH1HDH{HLHLXH-I<$WLWHHǀ(HL$HdH3 %(HX[]A\A]A^A_HHHpE1HD$H9DL|$(LWL{WL3]H]fL|$(E1E1E1E1E13ZfHHt8H [HtHH jHPHHHDSH>HVHV1[@USHHWdH%(HD$1H$ ȈD$G ʈT$W ȈD$G ʈT$W ȈD$GHD$ ʈT$HH HD$dH3%(uH[]~Yff.AUATUSHH $HHHIIdH%(H$1HHHھLI|$HHMHLI|$HHMHLH$dH3%(uHĘ[]A\A]XDUHSHH8dH%(HD$(1HH@`LAz0tsHHt$LHT$1HL$HL$HHD$(HD$(AB4PLL$ LD$(3ZYHtHD$H)HT$(dH3%(uH8[]fH[HWff.AUIATIHUSHHxdH%(H$h1Hl$`:THHH=LHFHHt\IL9&HHL[&LL`(H1HW1H$hdH3 %(uHx[]A\A]1WAVIAUIATIzUHcSRHHt+IH}HcLHEZSHuHHcL[H]A\A]A^AWAVAUATUSHH $Hx fH$H$LLD$IHIDL$HD$dH%(H$h1))C)C #Mw@uwHCL$`A$LLL)HSHLDŽ$pAAGH$hdH3%(DHx[]A\A]A^A_DŽ$1LHDŽ$f$RHHFHYHL$QHL$L$H01DATAHH9rHD$@LLD$L$`HHD$HT$LH=,\LD$Ht$IxHT$IOH=[HHLDŽ$pAG\L$`Lf$hH$pfo$`HCHD$@H) HD$-HHl$H-LHHl$H$-H|$H/HHHD$(MH\LIFHIHD$ SLxHL)LHL$0YPALH=L$HD$8LFLLMOLT$8IMt/HD$8OLD$81H0LfHH HI9wL$`LLLLHI HD$8HD$0LﺀHt$ H=HFmHLD$8L$Ht$(LLLL$0L$LHD$ LL$0LLHT$ ALHT$ 1LSELt$HLIv`HtFoH)HPHSNT$LHL2H|$HHtA$$E1NACf.L$Rff.AWAVAUATUSHdH%(H$1HL$HպHLHNTLMSSPH9$HsrHH HRHAGLHA4=""/~ A/HD$ D$ )1HHc=!"LDl$LHD$PMtXIHLpIG0L(HHHT$HL$J<*HKHHt!HT$HLHHuLHMAH|$MH$dH3 %(DHĨ[]A\A]A^A_LtHt$LHLIHtHL9rDHI9w8\uxuHHLLH)HD$0HHL$LH)HD$PHL$HL$LPHD$hHD$0PDL$0LD$AXZEH|$PL$ DHD$ C1H5VH߉L$<HF HD$HM|L|$j H] Iw@H DHF DH; IwXH L|$HED DHMg@ @H L|$D|$HD DHE DH DHLd$ DH DHMf 1H 1H L$JHf A fD1HyH!HHfD$DXA7~ 70E9E4D$ HD$A9)1HHcAG HcD$ ?NIHD$HH|$P1GHT$XIHHD$PIHiHHPIGAGIwHHT$|Dr@HD$D$ Xf.ALH@S(H=ISߜf.H8S%,1H=SADHt$(HT$ HHDHD$ A@H@H-1H߉D$8L$5KfAWAVAUATUSHLMI\LpIG0LL(JHL) HaLIHAU(H<*ID$H A|$HcID$T$ FT$ HHI$HNTLMSSPSH{(HHHCH( fDkfDkMcfkLfkC(HC Iw0H%NJ|+(HcLNHL[]A\A]A^A_LFE1f.=f"DAWAVIAUATUS˃ HhH$Ht$pHT$xL$PdH%(H$X1I\$XHD$hML$ IFHD$`H$HD$D"L$Xb\$PH|$`KHT$LH4H$ DŽ$wGH$LHHD$0ZGH$`LHHD$ =GH$L HHD$ GH$LHHD$@GH$@LHHD$FH$LHHD$(FH$LHHD$8FH$ LFH$fHDŽ$HD$HH$H$D$X)$)$)$)$DŽ$DŽ$)$)$HDŽ$DŽ$DŽ$D$THD$xHl$pL$LlD$PD$\$fDD$A t$A tI9LkBHtIHD$hE($QH4$H|$H<fHHt$1ҿMEHt$01ҿv@H$`=|$TH5E3GfDT$\t AD$@AHH$DPtED$PtDH$H$AD$Pt?EHB$AHD}\$TH$fHDŽ$HD$HH$)$))$)$DŽ$DŽ$)@)@ H@0@8DŽ$HD$h1iHD$h1W\$XD$TPH$D$TH$9BAUIHATIUSHH?HHtHLLH9HFHEADHH[]A\A]f.fAVIAUATIUHS>LH>L,MtIT$L9sH9r3[L]A\A]A^H|LHPoE[L]A\A]A^H|H)LPEBD%L[]A\A]A^f.@JAA1J?D1A?A JD1A?A JD1A?A JD1A?A JD1A?A JD1?  1փ? ff.@HwH1у11ȃ ЈGH9u@AWAE1AAVAAUIATL%IUHSHIHSIHdH%(H$1HHHH$1HLJpHH)HHl$IcHIHF H11D։DtB Hc@*4 LH uA||H@t&Љ ȉH HDDAI@IAt E$`Hl$E1HHL(HL !KHLHDžHIB)1Hf.Mc1IHc1Ҹ:LHt @AAAE9uAyZDE A!!D D|$G7yZ AA!!D ADE yZA! !D ADDyZA! !D ADEyZA! !D ADDt$A!E6yZ !D D|$DEyZA A!!D D|$DEyZ A A!!D ADEyZA! !D D|$DE7yZA A!!D ADD yZA! !D ADDt$A! EyZ !D D|$DEyZ A !A!D ADDt$A!E6yZEn !D ADE yZA! !E4nD ADEyZA! !1ȉD D|$DDt$ 11֍nD1DEnщ 1Dt$13nD1 1An1D\$11l$En1ލ nщ 111ً\$ 1DEn11DD3n΋\$11DnDEnщ 1Dt$1E1nD1 1DEn111EnD1DEnщ 111D 1OD‰GGOw []w A\A]A^A_ÐH#EgHGHHܺvT2HGAVIAUATIUHoSHGHHHW?tP@)HALM9A"Et HLLM)I?=IFHLl@oHLH@EoKMoSU o[]0L9uA?DAr\IEHMHID$DITHTH)A.I)r1ƒItH49r[]A\A]A^f.AtAUAT$tATfT[L]A\A]A^@3HIHJT.HwHJT/H)I)1҉уI<H<9rfDIAUAT$ATT>BD.BD/vBD.fBD/eff.fATLgUHSGH?LHz?)ƒt19rLHfCID$0AD$AD$ HCLHߍHSPCTHto MH{H1HHCPH)KXH[]A\f.71)'돋O AWDD_AVAUATUSD6^nAxj׋G3G D!3G V\$ЋW^$DD1\$!3WAʋN Fp $E‰L$A1A1DD^ !D1G;νD\$DEDVDT$A!A1EE|A 1AD!E1DD*ƇGD1D!A1A1DDN DL$E F0D!DnA1D1DGFEDf Dd$D^(A!A1EEؘiA 1AD!1DDDʋ^0D1D!A1DE [D 1!D1DDN,A1DL$G\EA!Df8A1ED"kA 1AD!1DDN4EqDD1!1DE CyD 1!D1DDV<1G!I!1DDD$ Eb%1!1DDD$E@@1!1DDD$ EQZ^&1!1DE6Ƕ1!1DD]/։ 1!1DESD1!1DE ؉ 1!1DDD$E01!1DDD$ E!1!1DE7É1!1DDD$ E 1!1DDD$A0ZEAA1A!A1AA㩉A AD1!1t$DD1!A ogD1 1D!FL*1DD$Ή1AA!B9A1DD$A AD1D$qDD11‹D$ 0"amD1G 81Ɖ11DDD$ ED꾤11DDD$AKAA1A5`KA1AЉApA 1AD1D1D1A ~(D 1G'111DDD$ A0AA1A1AЋT$A2A1D1֋T$ 9ىDD11D11C|A A1A1AD$A0eVĉA1D1AD")Dt$ D D1A *CDG# 1  1DD9Ή 1DDY[e\$  1DE Dt$ щ1DE3}D\$  1DDD$E] 1DEO~oA AD 1DE ,DT$ A1ADE6CDt$ AN 1A~SADEAA A1A5:ADA AD 1Љ3*\$D D1DFӆ[ ]A\A]A^ 1։ 1DƉA4A_ OW GOW H#EgHGHHܺvT2HGAVIAUATIUHoSHGHHHW?tP@)HALM9A"Et HLLM)I?=IFHLl@oHLH@EoKMoSU o[]0L9uA?DAr\IEHMHID$DITHTH)A.I)r1ƒItH49r[]A\A]A^f.AtAUAT$tATfT[L]A\A]A^(HIHJT.HwHJT/H)I)1҉уI<H<9rfDIAUAT$ATT>BD.BD/vBD.fBD/eff.fATLgUHSGH?LHz?)ƒt19rLHfCID$0AD$AD$ HCLHߍHSPCTHto MH{H1HHCPH)KXH[]A\f.71)bЃ_ÐHAdH%(HD$1HL$D$t #HT$dH3%(uHA#ATUHSHHII|HHt;uHHM!H[H]A\fLHHr&H/fB!UHSH Ht)HHHkHHHH[]fD1HH[]@UMbSH8dH%(HD$(1Hl$HiH$)Hi@BH|$fD!8ufoD$)$HH"uHD$(dH3%(uH8[]!H8Ht$HL$H<$HdH%(HD$(1H@HHfQH9uH|$(dH3<%(HD$HT$uH8v!fDH|$Ht$foD$fffSH@H|$LL$IH|$ H$1Ht$HL$dH%(HD$81DA AA4@fGHHuH|$Ht$rH<$Ht$b8t&H\$8dH3%(HD$ HT$(uOH@[fDH|$Ht$)H|$ Ht$(8tH =-4H5,H=,` HdH%(HD$1cHL$dH3 %(uHH,HHJHH H(dH%(HD$1HH?HH1H)HHHfHHH9uHx#H$HT$Ht$dH34%(uH(DH<$Ht$:H|$HD$HL$1Ht$fDf HH9ufff.fUHHSHHHdH%(HD$1H|$dH3<%(uHHHHH[]fUHSHH8dH%(HD$(1H|$Ht$QHT$HL$ fkfH*YYXH9uHHD$D$tfWE+HD$(dH3%(u+H8[]fDH|$Ht$HD$HT$aDUSHdH%(HD$1HHHHpuHH<HL$dH3 %(uH[]AWAVAUATIUSHHXdH%(HD$H1ńL$$H\$D$DL|$DHLt$AH1qH։AЍfA)։I9u׃0H<$Ht$MoAWfu MD@t AE-MoLH|$HdH3<%(u(HX[]A\A]A^A_LHHH$HT$:DATfIU1SH dH%(HD$1)$+t -uAL$I 0tzf't_H1HzfHfBH9uA< wg0HcH<$Ht$HHH$HT$IA $u@~H$HT$H\$dH3%(H []A\ÍA<wWHcfDA1<w7HcsAL$ȃ'f.@HxWUHHSH1HHH)HHEH{HHtHHH%HHH[]@1Hf.ATIUSHdH%(HD$1H\$HHwŅt)HHT$dH3%(uH[]A\fDHL@AUIATIUSHcH(dH%(HD$1~EHHHLLH$HL$dH3 %(uH([]A\A]Kt@H1HHx ff.UH-D&SHHH?H9tH+H[]DAUATUSHHHu*H?H-&H9tfH+HH[]A\A]DHz IHIHtAHxHLJH;H%AD,I,$H9t L#HH[]A\A]1@UHHSHHHHH:HHtHHH[]UHHSHHHHH[H]@HHHpff.fHHH92rH $H9tH2D2ff.UHSHH~ HHt+H;H$H9tHD$HD$@H(HHH[]UHS1HxdH%(HD$h1H|$HD$Ht$ H|$HD$sHH\$^HcHHROLD$H1 H #HH$HT$hdH3%(uHx[]SfH11HPdH%(HD$H1HT$D$HB,HL$BHD$D$HD$u&H|$ÃuHGHt XfsHL$HdH3 %(uHP[fDHXdH%(H$H1HD$HT$@Ht$LD$u5HD$Ht Hx bH$HdH3 %(uHX1wHHIDLEBUILDINGREADYSENT???ct_describe_cmd_state(%d) ct.cparam_clear(%p) _ct_cancel_cleanup(%p) _ct_initialise_cmd(%p) rpc_clear(%p) Memory allocation failure.unrecognized errorexternal errorinternal CT-Library errorcommon library errorintl library erroruser errorinternal BLK-Library errorunrecognized originblk layerunrecognized layer_ct_get_origin(%d) _ct_get_layer(%d) %s: %s: %s: %sct_dynamic%d, idlenct_exit(%p, %d) ct_init(%p, %d) ct_con_alloc(%p, %p) CT-LibraryCS_GETct_callback() action = %s ct_callback()%d, %sfuncCS_SETct_con_props(SET,APPNAME)Unknown property %d fetching userdata %p ct_connect(%p, %s, %d) ct_connect()snamelenct_cmd_alloc(%p, %p) ct_command(LANG)ct_command(RPC)ct_results(%p, %p) curcol->column_data != NULLct_bind%d, %dct_cmd_drop(%p) ct_close(%p, %d) ct_con_drop(%p) cs_convert-result = %d ct_fetch(%p, %d, %d, %d, %p) ct_fetch_ct_get_server_type(%d) paraminfoalloc(%p, %p) out of memory for rpc!paraminfoallocct_send(%p) ct_send() command_type = %d ct_sendct_send(CS_DESCRIBE_INPUT) ct_send(CS_DESCRIBE_OUTPUT) ct_send() failed ct_send() succeeded ct_send() : CS_CUR_CMD ct_cancel(%p, %p, %d) CS_CANCEL_CURRENT _ct_fetchable_results(%p) CS_CANCEL_ATTN with cmd CS_CANCEL_ALL with cmd ct_describe(%p, %d, %p) ct_describecolumn type%s, %sct_res_infooperationnon-threadsafect_compute_info%*.*s.%*.*sct_send_data(%p, %p, %d) %02xct_data_info(%p, %d, %d, %p) %d, buflen%d, typeRPC is NULL in ct_param ct_param() added input value cmd->dyn is NULL ct_param RPC is NULL in ct_setparam ct_setparam() reached here CS_CLEARct_options: %s, option = %d UNIMPLEMENTED ct_poll() ct_cursor() : type = %d ct_cursor(DECLARE)tlen_ct_diag_clearmsg(%p, %d) ct_diag(%p, %d, %d, %d, %p) ct_diag_countmsg(%p, %d, %p) ct_diag_storeservermsg(%p, %p, %p) ct_diag_storeclientmsg(%p, %p, %p) _ct_deallocate_dynamic(%p, %p) ct_deallocate_dynamic() : cannot find entry in list ct_deallocate_dynamic() : relinking list ct_deallocate_dynamic() : relinked list setting command state to %s (from %s) The parameter %1! cannot be NULL.Parameter %1! has an illegal value of %2!.An illegal value of %1! given for parameter %2!.Use direction CS_BLK_IN or CS_BLK_OUT for a bulk copy operation.Exactly one of context and connection must be non-NULL.The specified id does not exist on this connection.A bind count of %1! is not consistent with the count supplied for existing binds. The current bind count is %2!.Failed when processing results from server.Parameter %1! has an illegal value of %2!No value or default value available and NULL not allowed. col = %1! row = %2! .parameter name(s) must be supplied for LANGUAGE command.This routine cannot be called when the command structure is idle._ctclient_msg(%p, %p, %s, %d, %d, %d, %d, %s) _ct_get_msgstr(%s, %d, %d, %d, %d) _ct_get_user_api_layer_error(%d) _ct_locate_dynamic(%p, %p, %d) _ct_locate_dynamic() looking for %s _ct_locate_dynamic() matching with %s ct_callback(%p, %p, %d, %d, %p) ct_con_props(%p, %d, %d, %p, %d, %p) ct_con_props() action = %s property = %d setting userdata orig %p new %p leaving ct_connect() returning %d ct_cmd_alloc() : allocating command list to head ct_command(%p, %d, %p, %d, %d) ct_command() added rpcname "%s" ct_results() process_result_tokens returned %d (type %d) ct_results() results state = %d ct_results() command type = %d ct_results() dynamic cmd = %d _ct_process_return_status(%p) generating return status row. type = %d(%s), varint_size %d ct_bind(%p, %d, %p, %p, %p, %p) ct_bind() datafmt count = %d column_number = %d ct_cmd_drop() : cannot find command entry in list _ct_get_client_type(type %d, user %d, size %d) _ct_bind_data(%p, %p, %p, %d) _ct_bind_data(): column %d is type %d and has length %d error: converted only %d bytes for type %d _ct_fetch_cursor(%p, %d, %d, %d, %p) ct_fetch_cursor() : cursor not present _ct_fetch_cursor(): bind count must equal cursor rows ct_fetch(): cursor fetch failed _ct_fetch_cursor() tds_process_tokens returned %d inside ct_fetch() process_row_tokens returned %d paraminfoalloc: status = %d, maxlen %d paraminfoalloc: name = %s, varint size %d column_type %d size %d, %d column_cur_size %d column_output = %d paramrowalloc, size = %d, data = %p, row_size = %d paramrowalloc(): RESIZE %d to %d blob parameter supported, size %d textvalue pointer is %p paramrowalloc(): setting parameter #%d to NULL ct_send() command_state = IDLE ct_send(CS_EXECUTE) no tdsdyn! ct_send(CS_DEALLOC) no tdsdyn! ct_send() : cursor not present ct_send() : cursor->query is null ct_send() : cursor->name is null ct_send(): cursor declare failed ct_send(): cursor set rows failed ct_send(): cursor open failed ct_send(): sending cursor commands _ct_fill_param(%d, %p, %p, %p, %p, %p, %x) _ct_fill_param() status = %d _ct_fill_param() about to strdup string %u bytes long ct_cancel() no fetchable results - return() ct_cancel() - fetching results() ct_cancel() command state READY/IDLE ct_cancel() command state SENT results_state %d ct_cancel() sending a cancel CS_CANCEL_ATTN with connection ct_cancel() command state SENT CS_CANCEL_ALL with connection ct_cancel() cancelling a command for a connection ct_describe() datafmt->datatype = %d server type %d ct_res_info(%p, %d, %p, %d, %p) ct_res_info(): Number of columns is %d ct_res_info(): Number of rows is %d ct_config(%p, %d, %d, %p, %d, %p) ct_config() action = %s property = %d %s (%s, default tds version=%s)ct_cmd_props(%p, %d, %d, %p, %d, %p) ct_cmd_props() action = %s property = %d ct_cmd_props() : cannot find cursor ct_compute_info(%p, %d, %d, %p, %d, %p) ct_compute_info() type = %d, colnum = %d ct_get_data(%p, %d, %p, %d, %p) ct_get_data() item = %d buflen = %d ct_capability(%p, %d, %d, %d, %p) ct_capability -- attempt to set a read-only capability (type %d, action %d) ct_capability -- unknown capability type ct_capability -- attempt to set/get a non-existant capability ct_capability -- unknown value ct_capability -- unknown action ct_dynamic(%p, %d, %p, %d, %p, %d) _ct_allocate_dynamic(%p, %p, %d) _ct_allocate_dynamic() attaching dynamic command to head ct_dynamic() calling param_clear ct_param(%p, %p, %p, %d, %hd) ct_param() failed to add rpc param ct_param() failed to add input value ct_param() added rpc parameter %s illegal datafmt->status(%d) passed to ct_param() ct_param() failed to add CS_DYNAMIC param ct_setparam(%p, %p, %p, %p, %p) ct_setparam() command type = %d, data type = %d ct_setparam() failed to add rpc param ct_setparam() failed to add input value ct_setparam() added parameter %s cmd->dyn is NULL in ct_setparam ct_setparam() failed to add dynamic param ct_setparam() added dynamic parameter illegal datafmt->status(%d) passed to ct_setparam() ct_setparam() failed to add language param ct_setparam() added language parameter ct_options(%p, %d, %d, %p, %d, %p) ct_options: invalid action = %d tds_submit_optioncmd will be action(%s) option(%d) arg(%x) arglen(%d) ct_poll(%p, %p, %d, %p, %p, %p, %p) ct_cursor(%p, %d, %p, %d, %p, %d, %d) ct_cursor() : cursor not present ct_cursor() : cursor not declared CS_IMPLICIT_CURSOR: Option not implemented CS_CURSOR_OPTION: Option not implemented CS_CURSOR_UPDATE: Option not implemented CS_CURSOR_DELETE: Option not implemented ct_diag_getclientmsg(%p, %d, %p) ct_diag_getservermsg(%p, %d, %p) ((?,$$$$$##$$'''&'&'''l&D&&%%Y#0///x0.`0`0`0`0`0/`0....P0@0`0`0`000`0 0/.//`0.///x0`0`0`0`0`0`0`0`0`0`0`0`0`0`0`0`0`0`0`0`0`0`0`0`0`0`0`0`0`0.`0`0`0`0`0x0`00/`0 /x0x0x0`0`0`0`0`0`0`0`0`0`0/x0`0`0`0p/`0`0`0`0`0`0`0`0`0`0`0`0`0`0`0`0`0`0`0x0`0`0`0`0`0`0`0`0`0`0`0`0`0`0`0`0`0`0`0`0`0`0`0`0`0`0`0.`0`0`0`0`0`0`0`0`0`0`0@/0`0`0x0`0`0`0`0`0`0`0`0`0`0`0`0`0`0`0`0`0`0`0`0`0`0`0`0`0`0`0`0`0`0`0`0`0P/H89779@7`7P7777p77788(888799999979H9 99p988998X89999??????B,B?AA\x\\[@\t]<\<\<\<\<\<\<\<\<\<\<\<\<\<\<\<\<\<\<\<\<\<\<\<\<\<\<\<\<\<\<\<\<\<\<\<\<\<\<\<\<\<\<\<\<\<\<\<\<\<\<\<\<\<\<\<\<\<\<\<\<\<\<\<\<\t]t]]]]]]] destlen error: unrecognized type cs_convert() returning %s cs_convert() FMT_NULLTERM cs_convert() FMT_PADBLANK cs_convert() FMT_PADNULL cs_convert() FMT_UNUSED cs_dt_crack(%p, %d, %p, %p) cs_loc_alloc(%p, %p) cs_loc_allocloc_pointercs_loc_drop(%p, %p) cs_loc_dropcs_locale%d, actionUNIMPLEMENTED cs_calc() cs_cmp(%p, %d, %p, %p, %p) UNIMPLEMENTED cs_cmp() cs_conv_mult(%p, %p, %p, %p) UNIMPLEMENTED cs_conv_mult() cs_diag(%p, %d, %d, %d, %p) cs_diag_getmsg(%p, %d, %p) cs_diag_countmsg(%p, %p) cs_objects(%p, %d, %p, %p) UNIMPLEMENTED cs_objects() cs_setnull(%p, %p, %p, %d) UNIMPLEMENTED cs_setnull() UNIMPLEMENTED cs_strcmp() UNIMPLEMENTED cs_time() The information being retrieved will not fit in a buffer of %1! bytes.An illegal value of %1! was given for parameter %2!.Conversion between %1! and %2! datatypes is not supported.An illegal value of %1! was placed in the %2! field of the CS_DATAFMT structure.The conversion/operation resulted in overflow.The conversion/operation was stopped due to a syntax error in the source field.The result is truncated because the conversion/operation resulted in overflow._csclient_msg(%p, %s, %d, %d, %d, %d, %s) _cs_get_msgstr(%s, %d, %d, %d, %d) _cs_get_user_api_layer_error(%d) _cs_locale_copy_inplace(%p, %p) cs_config(%p, %d, %d, %p, %d, %p) cs_convert(%p, %p, %p, %p, %p, %p, %d) converting type %d (%d bytes) to type = %d (%d bytes) cs_convert() srctype == desttype cs_convert() desttype = character error: no room for null terminator no destination format specified! cs_convert() calling tds_convert cs_convert() tds_convert returned %d error_handler: Data-conversion resulted in overflow Data-conversion resulted in overflow not enough room for data + a null terminator - error cs_dt_crack_v2(%p, %d, %p, %p) cs_locale(%p, %d, %p, %d, %p, %d, %p) cs_dt_info(%p, %d, %p, %d, %d, %p, %d, %p) cs_strbuild(%p, %p, %d, %p, %p, %d, %p, %d) cs_calc(%p, %d, %d, %p, %p, %p) cs_manage_convert(%p, %d, %d, %p, %d, %d, %p, %d, %p, %p) UNIMPLEMENTED cs_manage_convert() cs_set_convert(%p, %d, %d, %d, %p) UNIMPLEMENTED cs_set_convert() cs_strcmp(%p, %p, %d, %p, %d, %p, %d, %p) cs_time(%p, %p, %p, %d, %p, %p) cs_will_convert(%p, %d, %d, %p) }nn^?.nnnnnnnnnnnNn~nnn~nnnnnnnnnnnN}PA44ĎĎĎĎĎĎ4ĎdddddĎĎĎdĎdddddĎddddĎĎĎĎĎĎĎĎĎĎĎĎĎĎĎĎĎĎĎĎĎĎĎĎĎĎĎĎĎĎĎĎĎĎĎĎĎĎĎĎĎĎĎĎĎĎĎĎĎĎĎdĎĎĎĎdĎĎĎĎĎĎĎĎĎĎĎĎĎĎĎĎĎĎĎĎĎĎĎĎĎĎĎĎĎĎĎĎĎĎĎĎĎĎĎĎĎĎĎĎĎĎĎĎĎĎĎĎĎĎĎĎĎĎĎddĎĎĎĎĎĎĎĎĎĎĎĎĎĎĎĎĎĎĎĎĎĎĎĎĎĎĎĎĎĎĎĎĎĎĎĎ4vtv [[[[ v ttttt t ttttt tttt t t t ttȒxTZ|<1$##_blk_null_error(%p, %d, %d) blk.cblk_rowxferblk_alloc(%p, %d, %p) blk_bindcolnum%s, %dUNIMPLEMENTED blk_colval() UNIMPLEMENTED blk_default() blk_describe(%p, %d, %p) blk_describeblk_done(%p, %d, %p) blk_doneblk_drop(%p) blk_getrow(%p, %p, %p) UNIMPLEMENTED blk_getrow() UNIMPLEMENTED blk_gettext() blk_init(%p, %d, %p, %d) blk_inittblnametblnamelen, %dblk_propsblk_rowalloc(%p, %p) UNIMPLEMENTED blk_rowalloc() blk_rowdrop(%p, %p) UNIMPLEMENTED blk_rowdrop() blk_rowxfer_mult(%p, %p) _blk_rowxfer_in(%p, %d, %p) _blk_rowxfer_out(%p, %d, %p) select * from %sblk_rowxfer(%p) blk_sendrow(%p, %p) UNIMPLEMENTED blk_sendrow() blk_sendtext(%p, %p, %p, %d) UNIMPLEMENTED blk_sendtext() blk_srvinit(%p, %p) UNIMPLEMENTED blk_srvinit() blk_textxfer(%p, %p, %d, %p) UNIMPLEMENTED blk_textxfer() _blk_get_col_data(%p, %p, %d) error source field not addressable blk_get_col_data srctype = %d blk_get_col_data datalen = %d Not fixed length type (%d) and datalen not specified conversion from srctype %d to desttype %d failed blk_bind(%p, %d, %p, %p, %p, %p) blk_colval(%p, %p, %p, %d, %p, %d, %p) blk_default(%p, %d, %p, %d, %p) blk_describe() datafmt->datatype = %d server type %d blk_gettext(%p, %p, %p, %d, %p) blk_props(%p, %d, %d, %p, %d, %p) blk_rowxfer_out() process_row_tokens returned %d ܟܟܟܟܟܟܟܟܟܟܟܟܟܟܟܟܟܟܟ̟_ct_handle_client_message(%p, %p, %p) _ct_handle_server_message(%p, %p, %p) ctutil.ctds_dynamic_deallocated() : freeing dynamic_id %s tds_dynamic_deallocated() : cannot find id %s tds_release_cursor() : freeing cursor_id %d tds_release_cursor() : freeing cursor results tds_release_cursor() : freeing cursor name tds_release_cursor() : freeing cursor query tds_release_cursor() : cursor_id %d freed tds_cursor_deallocated() : freeing cursor_id %d tds_cursor_deallocated() : cannot find cursor_id %d tds && tds->out_buf && tds->send_packetalloc_compute_result. num_cols = %d bycols = %d alloc_compute_result. num_comp_info = %d mem.ctds_free_all_results() ISO-8859-1US-ASCIIus_englishconn->in_net_tds == NULLSYBASETDSQUERYS1000S1T0008S0124000280004200001003080042100021S01010002200821S02220012200342S2142S1242S2242S112201842S0242S0123000250002200522012220073700042Stds_realloc_sockettds_free_connectiontds_free_rowavgvarpmaxminsumstdevpchecksum_aggvarTDS5_PARAMFMT2ORDERBY2ROWFMT2LOGOUTRETURNSTATUSPROCIDTDS7_RESULTTDS_CURINFOTDS7_COMPUTE_RESULTCOLNAMECOLFMTDYNAMIC2TABNAMECOLINFOCOMPUTE_NAMESORDERBYPARAMLOGINACKCONTROL/FEATUREEXTACKNBC_ROWCMP_ROWTDS5_PARAMSCAPABILITYENVCHANGESESSIONSTATEDBRPCTDS5_DYNAMICTDS5_PARAMFMTAUTHDONEDONEPROCDONEINPROCtoken.ctds5_process_result2 num_cols=%d col %d: column_name=[%s] colsize=%d prec=%d scale=%d elem %d: longbinarybitbit-nullsmalldatetimedatetime-nulldecimalfloatfloat-nullimageunsigned tinyintunsigned smallintunsigned intunsigned bigintinteger-nullsmallmoneymoney-nullUCS-2 textnumericrealuniqueidentifiervariantvoidxbinaryxcharx UCS-2 charx UCS-2 varcharxvarbinaryxvarcharxmldatedatetime2datetimeoffsetuser-defined table typebigtimebigdatetime[for parameter]no meta data setting up %d columns type/wtypesize/wsize %-20s %-15s %-15s %-7s utype %-20s %15s %15s %7s %-20s %7d/%-7d %7d/%-7d %7d %d hidden return parameters stored internal cursor id %d processing compute column %d compute column_size is %d TDS_OP_CURSORCLOSE TDS_AUTH_TOKEN PDU size %u Got invalid size %u tds->conn->collation wastds->conn->collation nowtds5_process_optioncmd() received option %d value %d Eating %s token Unknown marker: %d(%x)!! unknown7.02000 SP12012-2019TDS_SUCCESSTDS_FAILtds_process_login_tokens() Product name for 0x%x is %s MicrosoftProduct version %lX ZZZZZ[%s]out of memory (%d), %s P``PPpppxhXH8(xhXH8(x8080hXH8(xHhXH8(8(xhXxhXHx444444444444444444444444444444444444444444444444444444444444444444444444444444444444444D44444444444444444444444444444444444$44444,4<444444444444444444444444444444444444 44444444444444 44 4444 4\ 44444444444444 pIpppp'+D(++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++4(+++\'+++++++++++++++++++'++&++++&+&++++++++++++++++++++++++++++&'++&&%++%%%(%(++++++++++++++++++++++++++++++++++(t(++++)++++++++++()D(%+%++++'''++++++++++++++'''------------------------------tds_process_row(): reading column %d adjust_character_column_size: Server charset: %s Server column_size: %d Client charset: %s Client column_size: %d flags=%x utype=%d type=%d server type %d varint=%d tds_process_nbcrow(): reading column %d tds_get_data_info(%p, %p, %d) %s processing result. type = %d(%s), varint_size %d processing result. column_size %d tds_process_param_result(%p, %p) error: tds_process_param_result() returned TDS_FAIL tds7_get_data_info: colname = %s type = %d (%s) server's type = %d (%s) column_varint_size = %d column_size = %d (%d on server) processing TDS7 result metadata. set current_results to cursor->res_info set current_results (%d column%s) to tds->res_info tds_process_tokens(%p, %p, %p, 0x%x) tds_process_tokens() state is COMPLETED processing result tokens. marker is %x(%s) tds_process_tokens::SET_RETURN stopping on current token processing parameters for op %d calling tds_process_param_result processing tds5 compute names. hdrsize = %d processing tds5 compute names. num_cols = %d processing tds5 compute names. num_comp_info = %d tds_process_compute_result(): compute_id %d for %d columns logic error: compute_id (%d) from server not found in tds->comp_info found computeid %d in tds->comp_info processing compute result. num_cols = %d processing tds compute result, by_cols = %d processing tds7 compute result. num_cols = %u processing tds7 compute result. compute_id = %u processing tds7 compute result. by_cols = %d processing tds7 compute result. num_comp_info = %d processing tds7 compute result. point 0 processing tds7 compute result. point 1 processing tds7 compute result. point 2 processing tds7 compute result. point 5 tds_process_tokens(). set current_results to cursor->res_info tds_process_compute() found compute id %d tds_process_compute() FAIL: id exceeds bound (%d) tds_process_compute() FAIL: get_data() failed tds_process_tokens: return status is %d Unrecognized TDS5_DYN type %x tds_process_end: more_results = %d was_cancelled = %d error = %d done_count_valid = %d rows_affected = %ld tds_process_end() state set to TDS_IDLE tds_process_default_tokens() marker is %x(%s) leaving tds_process_default_tokens() connection dead tds_process_env_chg(): %d bytes of collation data received changing block size from %s to %d server indicated charset change to "%s" tds_process_default_tokens: return status is %d oops: cannot process option %d of size %d 2008 (no NBCROW or fSparseColumnSet)looking for login token, got %x(%s) server reports TDS version %x.%x.%x.%x tds_process_login_tokens() returning %s tds_process_info() called with unknown marker '%d'! tds_process_info() reading message %d from server tds_process_info() calling client msg handler Msg %d, Severity %d, State %d, Server %s, Line %d %s tds_process_info() returning TDS_SUCCESS TDS_INT_CONTINUETDS_INT_CANCELTDS_INT_TIMEOUTtdserror(%p, %p, %d, %d) OpenClienttdserror: returning %s(%d) TDS server connection failedRead from the server failedUnable to open socketUnknown host machine name.Write to the server failedunrecognized msgnotdserror: client library returned %s(%d) msgno == TDSETIME || rc != TDS_INT_TIMEOUTmsgno == TDSETIME || rc != TDS_INT_CONTINUEexit: %s(%d) valid only for TDSETIME state < TDS_VECTOR_SIZE(state_names)tds->state < TDS_VECTOR_SIZE(state_names)logic error: cannot change query state from %s to %s Changed query state from %s to %s Buffer exhausted converting characters from client into server's character setCharacter set conversion is not available between client character set '%.*s' and server character set '%.*s'Error converting characters into server's character set. Some character(s) could not be convertedSome character(s) could not be converted into client's character set. Unconverted bytes were changed to question marks ('?')Some character(s) could not be converted into client's character setBoth port and instance specifiedAttempt to initiate a new TDS server operation with results pendingBad token from the server: Datastream processing out of syncDB-Library capabilities not accepted by the ServerUnexpected capability type in CAPABILITY datastreamError in closing network connectionUnable to connect: TDS server is unavailable or does not existUnsolicited event notification receivedNegotiated login attempt failedError in sending out-of-band data to the serverTDS server connection timed outUnexpected EOF from the serverServer name not found in configuration files.Read attempted while out of synchronization with TDS serverUnknown message-id in MSG datastreamUnable to set communications timerUnrecognized TDS version received from the serverLocal configuration error. Check TDSDUMPCONFIG log for details.)8*x)**)retnametdserrortdserror: client library not called because either tds_ctx (%p) or tds_ctx->err_handler is NULL IDLEWRITINGSENDINGPENDINGREADINGDEADtds_set_statespidnvcuvclogin.cSQL AnywhereOpenServerSET TEXTSIZE %d MSSQLServeracceptedrejectedIP address pointer is empty Server %s not found! No server specified! invalid port number detected crypt flag %d ASA_DATABASEUnknown protocol version! login packet %s %s,%dusing NTLM authentication for '%s' account requested GSS authentication but not compiled in quietly sending TDS 7+ login packet 0 && 0x700 <= login->tds_version && login->tds_version <= 0x704NT login not supported using TDS 4.x or 5.0 Kerberos login not supported using TDS 4.x Encryption not supported using TDS 4.x    6tds7_send_loginU SELECT @@spid spSELECT CONVERT(NVARCHAR(3), 'abcEXECUTE ('SELECT CONVERT(UNIVARCHAR(3), ''xyz'')read.ccurcol->char_converror: tds_get_char_data: discarded %u on wire while reading %d into client. tds_get_char_datawrite.clen >= 0client->min_bytes_per_char < 3tds_put_stringstore_monthname: %ld %s convert.cjanfebmaraprmayjunjulaugsepoctnovdecjanuaryfebruarymarchapriljunejulyaugustseptemberoctobernovemberdecemberampm ,store_dd_mon_yyy_date: %s apmAPMstore_time() nanosecs = %d %lubuf%07dyestds_willconvert(%d, %d) %u.%02u%u.%04utds_convert_money() %ld%.9g%.*f%.17gggggggggggggg@gg gg0gggggfggffgfg@gfgfgggggggggggggggggggggggggggggggggggg ggXggXggggggggggggggPfggggfggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggg`hll`hl`hl`hly$z$z$zy$z$z$z$z$z$z$zydecimicrosecond && dr->decimicrosecond < 10000000tds_willconvert(%d, %d) returns %s srclen >= 0 && srclen <= 2147483647u%08X-%04X-%04X-%02X%02X-%02X%02X%02X%02X%02X%02X@ ``@p@ @@?AACC(C6 C(C6 6 A6 CCGG?OO__QXQ@FQHQ%lu.%02u%lu.%04u ](\K7AǺmZ{c^y55aw̫& . d'@Bʚ; d'@Bʚ; TvH rNZ@z~Ƥ#oxEc] d#NJ-^kc6ŭ5@-JEHJҷR <.;<П^O a%>Crm М,tF@~" 7&K[Am-ſtM1D [8 d7aBMr菇+Η{KFՠ6L;KzĆZ@" PĬCVe_)c\a%qߵ|oʕCz PpbZ0٣r!c[ζf{Rs$o,P6\m#/H[=u&'OE",Bbِe9|Viz:>8Jb5ia"ʔ@Mn201#~WϽO?헧d8nj'FE9N 6%z~ XwiZ<dtG^vd!vwQ_LjS2u/[!%W#>>O2;MrmgmsV$@}J4 FԅʻaakKJ:FUf14$%u]]F[ 8js&1K8et,5+wxP=1*莾dy)euwqIn{o  !!!]:config.cLooking for section %s. Found section %s. Got a match. Reached EOF Could not open '%s' (%s). Found conf file '%s' %s. globalSuccess: [%s] defined in %s. [%s] not found. FREETDSCONFset programmatically(from $FREETDSCONF)FREETDS(.config/freetds.conf).freetds.conf(.freetds.conf)(default).config/freetds.confloginerror: no such version: %s servername != NULLCouldn't open %s. Interfaces file %s opened. querytliTLI service. %d.%d.%d.%dtmp_port = %s. tmp_ip = %s. host field %s. Resolved IP as '%s'. not TDSVERTDSDUMPTDSPORTTDSHOSTTDSDUMPCONFIGLooking for server %s.... .interfacesLooking for server in %s. client_charsettds_config_login: %s is %s. database_nameFinal connection parameters: server_name %20s = %s server_host_nameip_addrinstance_nameport %20s = %d major_versionminor_versionblock_sizeserver_charsetconnect_timeoutclient_host_nameuse_utf16app_nameuser_namelibrarybulk_copysuppress_languageencrypt levelquery_timeoutdump_filedebug_flags %20s = %x text_sizeserver_realm_nameserver_spncafilecrlfilecheck_ssl_hostnamedb_filenamereadonly_intentopenssl_ciphers %s = '%s' tds versioninitial block sizeswap broken datesenable gssapi delegationmutual authenticationdump filedebug flagsquery timeoutconnect timeouthostFound host entry %s IP addr is %s. emulate little endiantext sizeclient charsetuse utf-16dump file appendinstanceencryptionoffrequestrequirestrictasa databaseuse ntlmv2use lanmanrealmca filecrl filecheck certificate hostnamedatabase filenameread-only intentopenssl ciphersenable tls v1systemfreetds v1.5.16/opt/alt/freetds11/etcautoUNRECOGNIZED option value '%s' for boolean setting '%s'! error: cannot specify both port %d and instance %s. ... $FREETDSCONF not set. Trying $FREETDS/etc. ... $FREETDS not set. Trying $HOME. /opt/alt/freetds11/etc/freetds.conf... Error getting ~/.freetds.conf. Trying %s. Setting tds version to %s (0x%0x). servername != NULL && addr != NULLSearching interfaces file %s/%s. Found matching entry for host %s. Name resolution failed for IP '%s'. TDS version %sset to %s from $TDSVER. Setting 'dump_file' to '%s' from $TDSDUMP. Setting 'port' to %s from $TDSPORT. Name resolution failed for '%s' from $TDSHOST. Setting IP Address to %s (%s) from $TDSHOST. Getting connection information for [%s]. Attempting to read conf files. Failed in reading conf file. Trying interface files. Setting server to %s from $TDSQUERY. Looking for server in file %s. Looking for server in %s/interfaces. Setting 'ip_port' to %s from $TDSPORT. Setting 'ip_port' to %d as a guess. Failed to find [%s] in configuration files; trying '%s' instead. Found host entry %s however name resolution failed. tds_parse_conf_section: %s is %s. UNRECOGNIZED option value '%s' for '%s' setting! Valid settings are: ('%s', '%s', '%s', '%s') Setting ReadOnly Intent to '%s'. UNRECOGNIZED option '%s' ... ignoring. tds_lookup_host_settds_lookup_host0auto4.2505.0707.07.17.27.37.48.0tds_config_verstryesnoonofftruefalse/etc/freetds/tmp/freetds.log.%d(from $FREETDS/etc)etc/freetds.conf/tmp/tdsconfig.log.%d%b %e %Y %I:%M%psp_cursorfetchquery.clen <= stream->buf_lenSYSNAMENCHAR(%u)NVARCHAR(%u)IS_TDS7_PLUS(tds->conn)@P%dsp_execute''0xNUMERIC(%d,%d)DECIMAL(%d,%d)UNITEXTFLOATTINYINTUNIVARCHAR(%u)BITUNICHAR(%u)IMAGESMALLMONEYSMALLDATETIMEREALVARBINARY(%u)UNIQUEIDENTIFIERNTEXTNVARCHAR(MAX)SQL_VARIANTDATEDATETIME2DATETIMEOFFSETBIGTIMEBIGDATETIMEUNSIGNED SMALLINTUNSIGNED INTUNSIGNED BIGINTVARBINARY(MAX)Unknown type %d sp_executesqlsp_preparecreate proc as sp_prepexectds_submit_execute() sp_unpreparetds_submit_unprepare() %s select 1 where 0=1rpc_name DECLARE @P%d SET @P%d=@P%d OUTPUT EXEC sp_cursoropenprow_number && prow_countsp_cursorclosesp_cursoroptionsp_cursortds && multipleOFFtds_submit_optioncmd() SET ANSI_NULLS %sSET IMPLICIT_TRANSACTIONS %sSET CURSOR_CLOSE_ON_COMMIT %sSET NOCOUNT %sSET QUOTED_IDENTIFIER %sSET ANSI_WARNINGS %sSET DATEFIRST %dSET DATEFORMAT %sSET TEXTSIZE %dSELECT @@options what! optionval = %d BEGIN TRANSACTIONIF @@TRANCOUNT > 0 ROLLBACKIF @@TRANCOUNT > 0 COMMITtds_disconnect() tds_put_data_info putting param_name tds_put_data_info putting status p && start <= end && (end - start) % 2 == 0s[1] == 0 && s < end && (end - s) % 2 == 0e && query <= e && e <= query_endtds_send_cancel: %sin_cancel and %sidle tds_send_cancel: sending cancel packet tds_cursor_declare() cursor id = %d tds_cursor_open() cursor id = %d tds_cursor_open (): RPC call set up tds_cursor_open (): cursor open completed tds_cursor_setrows() cursor id = %d tds_cursor_fetch() cursor id = %d tds_cursor_get_cursor_info() cursor id = %d tds_cursor_get_cursor_info: tds_process_tokens returned %d result_type=%d, TDS_DONE_COUNT=%x, TDS_DONE_ERROR=%x ----------------> prow_number=%u, prow_count=%u tds_cursor_close() cursor id = %d tds_cursor_setname() cursor id = %d tds_cursor_update() cursor id = %d tds_cursor_dealloc() cursor id = %d tds_cursor_dealloc(): freeing cursor multiple->type == TDS_MULTIPLE_QUERYmultiple->type == TDS_MULTIPLE_EXECUTEtds_submit_optioncmd: returned option_value = %d IF @@TRANCOUNT > 0 ROLLBACK BEGIN TRANSACTIONIF @@TRANCOUNT > 0 COMMIT BEGIN TRANSACTIONP`pؼbbbbؼbbbbbbbbbbbbbbbbbbbbbXbbbbbbbbbbbbbbbbbbbbbbbbbbؼ@XPp`@@@P0@@@ @0 @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@PX@@XXX@@@@@@@@@@@@@@H@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@p@@@@@@@@@@@`@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@P@@@@@@@4|U. D | ||||||||||||||||||||||||||aF+ *4  zdd;;{]a tds_multiple_executetds_multiple_querytds_multiple_donetds_cursor_get_cursor_info tds_submit_rpctds_quoteout_stream_writetds_send_emulated_executetds_get_column_declarationtds7_write_param_def_from_querytds7_put_query_paramstds7_write_param_def_from_paramstds_skip_quoted_ucs2letds_next_placeholder_ucs2leSET ARITHABORT OSET ARITHIGNORE SELECT @@optionsSELECT @@datefirSELECT DATEPART(SELECT @@textsiz646iconv.ciconv_initialized!conn->char_convsUTF-8UCS-4(null)tds_iconv_open(%p, %s, %d) UCS-2LEUCS-2BEUCS-2local name for %s is %s iconv_open(%s, %s) failed iconv(%s, %s) failed res %d len %d tds_iconv_open: done ANSI_X3.4-1968ANSI_X3.4-1986ARMSCII-8ASMO-708BIG-5BIG-FIVEBIG5-HKSCSBIG5HKSCSBIGFIVEC99CHINESECN-BIG5CN-GBCN-GB-ISOIR165CP1250CP1251CP1252CP1253CP1254CP1255CP1256CP1257CP1258CP1361CP367CP437CP65001CP819CP850CP862CP866CP874CP932CP936CP949CP950CSASCIICSBIG5CSEUCKRCSEUCPKDFMTJAPANESECSEUCTWCSGB2312CSHALFWIDTHKATAKANACSHPROMAN8CSIBM866CSISO14JISC6220ROCSISO159JISX02121990CSISO2022CNCSISO2022JPCSISO2022JP2CSISO2022KRCSISO57GB1988CSISO58GB231280CSISO87JISX0208CSISOLATIN1CSISOLATIN2CSISOLATIN3CSISOLATIN4CSISOLATIN5CSISOLATIN6CSISOLATINARABICCSISOLATINCYRILLICCSISOLATINGREEKCSISOLATINHEBREWCSKOI8RCSKSC56011987CSMACINTOSHCSPC850MULTILINGUALCSPC862LATINHEBREWCSSHIFTJISCSUNICODE11CSUNICODE11UTF7CSVISCIIECMA-114ECMA-118ELOT_928EUC-CNEUC-JPEUC-KREUC-TWEUCCNEUCJPGB18030GBKGB_1988-80GB_2312-80GEORGIAN-ACADEMYGEORGIAN-PSGREEK8HP-ROMAN8HZHZ-GB-2312IBM-CP1133IBM367IBM437IBM819IBM850IBM862ISO-2022-CNISO-2022-CN-EXTISO-2022-JPISO-2022-JP-1ISO-2022-JP-2ISO-2022-KRISO-8859-10ISO-8859-13ISO-8859-14ISO-8859-15ISO-8859-16ISO-8859-2ISO-8859-3ISO-8859-4ISO-8859-5ISO-8859-6ISO-8859-7ISO-8859-8ISO-8859-9ISO-CELTICISO-IR-100ISO-IR-101ISO-IR-109ISO-IR-110ISO-IR-126ISO-IR-127ISO-IR-138ISO-IR-14ISO-IR-144ISO-IR-148ISO-IR-149ISO-IR-157ISO-IR-159ISO-IR-165ISO-IR-166ISO-IR-179ISO-IR-199ISO-IR-203ISO-IR-226ISO-IR-57ISO-IR-58ISO-IR-6ISO-IR-87ISO646-CNISO646-JPISO646-USISO8859-1ISO8859-10ISO8859-15ISO8859-2ISO8859-4ISO8859-5ISO8859-6ISO8859-7ISO8859-8ISO8859-9ISO_646.IRV:1991ISO_8859-1ISO_8859-10ISO_8859-10:1992ISO_8859-13ISO_8859-14ISO_8859-14:1998ISO_8859-15ISO_8859-15:1998ISO_8859-16ISO_8859-16:2000ISO_8859-1:1987ISO_8859-2ISO_8859-2:1987ISO_8859-3ISO_8859-3:1988ISO_8859-4ISO_8859-4:1988ISO_8859-5ISO_8859-5:1988ISO_8859-6ISO_8859-6:1987ISO_8859-7ISO_8859-7:1987ISO_8859-8ISO_8859-8:1988ISO_8859-9ISO_8859-9:1989JAVAJIS0208JISX0201-1976JIS_C6220-1969-ROJIS_C6226-1983JIS_X0201JIS_X0208JIS_X0208-1983JIS_X0208-1990JIS_X0212JIS_X0212-1990JIS_X0212.1990-0JOHABKOI8-RKOI8-RUKOI8-TKOI8-UKOREANKSC_5601KS_C_5601-1987KS_C_5601-1989L1L2L3L4L5L6L7L8LATIN7LATIN8MACMACARABICMACCENTRALEUROPEMACCROATIANMACCYRILLICMACGREEKMACHEBREWMACICELANDMACROMANMACROMANIAMACTHAIMACTURKISHMACUKRAINEMS-ANSIMS-ARABMS-CYRLMS-EEMS-GREEKMS-HEBRMS-TURKMS_KANJIMULELAO-1NEXTSTEPR8SHIFT-JISSHIFT_JISSJISTCVNTCVN-5712TCVN5712-1TCVN5712-1:1993TIS-620TIS620TIS620-0TIS620.2529-1TIS620.2533-0TIS620.2533-1UCS-4BEUCS-4LEUHCUNICODE-1-1UNICODE-1-1-UTF-7UNICODEBIGUNICODELITTLEUTF-16BEUTF-16LEUTF-32BEUTF-32LEUTF8VISCII1.1-1WINBALTRIMWINDOWS-1250WINDOWS-1251WINDOWS-1252WINDOWS-1253WINDOWS-1254WINDOWS-1255WINDOWS-1256WINDOWS-1257WINDOWS-1258WINDOWS-874big5cp1250cp1251cp1252cp1253cp1254cp1255cp1256cp1257cp1258cp437cp850cp862cp866cp874eucJPeucKReucTWhp15CNiso81iso815iso82iso83iso84iso85iso86iso87iso88iso88591iso885915iso88592iso88593iso88594iso88595iso88596iso88597iso88598iso88599iso89roma8roman8sjisthai8tis620utf8char_conv->to.cd == (iconv_t) -1char_conv->from.cd == (iconv_t) -1tds_iconv_info_init: client charset name "%d" invalid tds_iconv_info_init: server charset name "%d" invalid Charset %d not supported by iconv, using "%s" instead tds_iconv_info_init: cannot convert "%s"->"%s" inbuf && inbytesleft && outbuf && outbyteslefttds_iconv: unable to determine if %d means in or out. io == to_server || io == to_clientsetting server single-byte charset to "%s" iconv name for ISO-8859-1 not found iconv name for UCS-2 not found error: tds_iconv_init() failed; try using GNU libiconv library setting up conversions for client charset "%s" preparing iconv for "%s" <-> "%s" conversion tds_iconv_get: what is charset "%s"? tds_srv_charset_changed: what is charset "%s"? EXTENDED_UNIX_CODE_PACKED_FORMAT_FOR_JAPANESE 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0   0 0 0 0 0 0 0 0 0 0 0 0 dd$4DT.............................................q."Sh$ U J......2aTB I j.3 uS ..... . .... ... ......................................................................................................................................ZG Z5?# (>.64;:?@CF3IYO S6Z=agYnYq\u:x<~>;5??>6;,?>6;3"?-<65<:B3I6U`<j>ux;?84<\6 67@\:<:9B 5\ &:07<3GRZ\:g5x385?79AZ:C3$ 5\@(,:7BH%NCU8[Cb=hDpuC}4;38>8== B 4'.88U@4F9L=VI]\gCp u8=P= $? T#8)= [ 9!$9+18%>3JQD[em\u|93497:4\Z@$Y%G,3+?@I#O V!\Eah pw]|<^=]KK*" <<A A'\-48@@RY\#`=gWqx~G&;<&6&O; T-A.9:>J;Z.j?zJ]5=0 > " [% ^. < :L Y g Cu '{ F K D ' ' D   \ Z  <  ( H (  ^ (  A. !: @ P -\ d <t 1 [   \ 9 ] /  F D &; AI Q =W Rb Fp y  N  C  8 = K B Y D D 2 & C4 1A L KX Fl /x  B  , D X  B ' S 2 >  ( \& . O: \I ] h q y B M U  L  V [ P & Qtds_iconvtds_set_iconv_nametds_iconv_info_initUCS-2LEtds_iconv_allocSJISkoi8sjisL1L8L5utf8iso81big5iso88iso15iso85iso89thai8L6roma8866iso815greek8iso_1roman8R8646L4iso86iso88591iso88598LATIN1iso88595LATIN8iso88599LATIN5850ISO8859-1ISO8859-8iso885915ISO8859-5HZISO8859-9ISO-8859-1ISO-8859-8ISO8859-15ISO-8859-5iso10ISO-8859-9iso88596iso14iso84LATIN6ISO-8859-15ISO_8859-1ISO8859-6ISO_8859-8CNISO_8859-5ISO_8859-9L2L7ISO-8859-6iso646ISO_8859-15C99ISO_8859-15:1998ISO-IR-58ISO-8859-16JPUSiso88594ISO_8859-6LATIN4L3ISO-IR-159ISO-IR-199ISO-IR-6CP819ISO8859-4ISO_8859-16ISO8859-10ISO-IR-165SHIFT-JISISO-8859-4ISO_8859-14:1998ISO-8859-10ISO-IR-101ISO-8859-14ISO-IR-148ISO_8859-16:2000ISO-IR-109ISO-IR-149SHIFT_JISISO_8859-4hp15CNISO-IR-166ISO_8859-10CP949CP866ISO_8859-14ASCIIISO-IR-14862ISO-IR-110GB_1988-80CP850CP950tis620iso82TIS620iso87JIS0208UTF8TIS-620ISO-IR-100ISO-IR-179UTF-8ISO-IR-144CP65001CP1251CP1258CP1255ISO_8859-10:1992ISO646-CNiso88592ISO-IR-138LATIN2iso88597ISO-IR-126CSISO159JISX02121990LATIN7IBM819ISO8859-2macturkiso13iso83ISO8859-7KOI8-TISO646-USTIS620-0BIG5ISO-8859-2CP1256ELOT_928macgreekISO-8859-7CSISOLATIN1CP1361BIG-5cp949CSISOLATIN5cp866ascii_8macthaiCP936ISO_8859-2GB18030ISO_8859-7TCVNIBM866iso88593CP874LATIN3cp850CP1250cp950CSISOLATIN6CP1254ISO-IR-87ISO-IR-57MS-ANSICSASCIIIBM850ISO-8859-3ISO-IR-157ISO-8859-13CP862cp1251ISO_8859-3cp1258EUCCNcp1255ISO-IR-226CSISOLATIN4ISO_8859-13US-ASCIICSSHIFTJISEUC-CNCSISO14JISC6220ROUHCROMAN8KOI8-Rcp1256GEORGIAN-PSISO646-JPcp936CSBIG5cp874JAVAcp1250CN-BIG5cp1254UTF7ISO-IR-127VISCIIECMA-118UTF-7UNICODE-1-1CP1252macUCS-4LECP1257cp862CHINESEMACGEORGIAN-ACADEMYCP932ARMSCII-8CSISOLATINARABICIBM862ASMO-708KSC_5601KOREANCP367GB2312CSISOLATIN2JIS_C6220-1969-ROHP-ROMAN8GBKGREEK8MULELAO-1CP1253CP437CSKOI8REUCJPUCS-2LECYRILLICECMA-114eucJPUTF-16LEMS-CYRLISO-IR-203EUC-JPmac_cyrGB_2312-80CP1133CN-GB-ISOIR165CSISOLATINCYRILLICMACTHAIISO-2022-CNKS_C_5601-1989CSISOLATIN3ISO_8859-8:1988ISO_8859-5:1988ISO-2022-CN-EXTISO_8859-9:1989MS-EEKOI8-Ucp1252UNICODE-1-1-UTF-7ISO-CELTICcp1257CSISOLATINGREEKISO-2022-JP-1CSUNICODE11WINDOWS-1251WINDOWS-1258WINDOWS-1255CSISOLATINHEBREWcp932TCVN5712-1CSVISCIICSISO57GB1988ISO_8859-4:1988WINDOWS-1256UNICODELITTLETIS620.2529-1EUCKRX0201MACINTOSHX0208eucKREUC-KRJIS_C6226-1983WINDOWS-1250WINDOWS-1254IBM367MS_KANJIcp1253ARABICcp437EUCTWKOI8-RUeucTWIBM437VISCII1.1-1EUC-TWCN-GBKS_C_5601-1987WINDOWS-874JOHABISO_8859-1:1987CSISO2022CNUCS-4BEISO_8859-6:1987ISO-2022-JP-2TCVN-5712WINDOWS-1252WINDOWS-1257ISO_646.IRV:1991ISO_8859-3:1988CSUNICODE11UTF7CSIBM866ISO-2022-JPWINDOWS-1253JIS_X0201JIS_X0208EXTENDED_UNIX_CODE_PACKED_FORMAT_FOR_JAPANESECSKSC56011987UCS-2BEGREEKMACICELANDJISX0201-1976UTF-16BEUTF-32LEMACCROATIANUNICODEBIGTIS620.2533-1CSISO58GB231280ISO_8859-2:1987ISO_8859-7:1987MACROMANX0212CSHPROMAN8CSISO87JISX0208JIS_X0208-1990ISO-2022-KRBIG5HKSCSTIS620.2533-0CSISO2022JP2BIG5-HKSCSCSMACINTOSHCSHALFWIDTHKATAKANACSISO2022JPMS-HEBRJIS_X0212-1990CSPC862LATINHEBREWHZ-GB-2312JIS_X0208-1983NEXTSTEPCSGB2312JIS_X0212CSEUCKRBIGFIVEMACROMANIACSISO2022KRHEBREWBIG-FIVECSEUCTWANSI_X3.4-1968MS-ARABMACCYRILLICANSI_X3.4-1986CSPC850MULTILINGUALIBM-CP1133UTF-32BEMS-TURKJIS_X0212.1990-0MACCENTRALEUROPEMACTURKISHMS-GREEKMACARABICWINBALTRIMMACUKRAINETCVN5712-1:1993MACGREEKCSEUCPKDFMTJAPANESEMACHEBREWAoAoÓåAoAodate formatdate-only formattime-only format@._locale.cdefaultAttempting to read locales.conf file /opt/alt/freetds11/etc/locales.confPPdummy textptr 4LdTddd|hXD$,,,,(pH&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&X)(H)(((((8)(((((0)P)p)((((((((((()((()((()()))))((((((((((((((((((((((((((((((((((((*(((((((((((((((((((((()(((()((((((((((((((((((((((((((((((((((((((((((((((((((((((((((( * *tds_generic_putEED-%EE%E--%tds_get_data: type %d, varint size %d tds_get_data(): wire column size is %d tds_generic_put: colsize = %d tds_generic_put: not null param varint_size = %d data.ctds_generic_put: null param curcol->column_varint_sizenet.caddr != NULLsocket creation error: %s Connecting to %s port %d connection established getsockopt(2) failed: %s getsockopt(2) reported: %s tds_open_socket() failed tds_open_socket() succeeded send(2) failed: %d (%s) tds != NULLtimeout_seconds >= 0tds && bufferselect(2) failed: %d (%s) tds7_get_instance_ports(%s) instance info%15s %s ServerNamedefault instance port is %d InstanceNametcpIsClusteredVersionnpviaConnecting with protocol version %d.%d tds_setup_socket: connect(2) returned "%s" error: poll(2) returned %d, "%s" rc == 0 || (rc < 0 && (sock_errno == TDSSOCK_EINTR || sock_errno == EAGAIN || sock_errno == TDSSOCK_EINPROGRESS ))tds_select: invalid interrupt handler return code: %d poll_seconds == timeout_secondstds_goodwrite(): timed out, asking client tds7_get_instance_port: timed out on try %d of 16 error: expecting '%s', found '%s' tds7_get_instance_port(%s, %s) tds_goodwritetds_selecttds_addrinfo_set_portin tds_push_func tls.cin tds_pull_func_login have >= 0in tds_push_func_login Got name %s xn--in tds_pull_func handshakechecking hostnamecreating bioinitializing tlsloading CA fileloading CRL fileinitializing sessionHIGH:!SSLv2:!aNULL:-DHAlt names number %d handshake succeeded!! %s failed setting custom openssl cipher to:%s setting default openssl cipher to:%s handshake failed with %d %d %d tds_pull_func_logintds_pull_functds/8.0stdoutstderr (%s:%d)%s:%d%04x%c%Y-%m-%d %H:%M:%Slog.ccolcol->column_datatype %s has value "%s" type %s has value NULL type %s has value %d type %s has value %f cannot log data for type %s Starting log file for FreeTDS %s on %s with debug flags 0x%x. no memory to log data for type %s \]]]]]]]\8\]]]\]]]`\]]\]][tdsdump_colbulk.cbcpinforowbufferis_nullable_type%4s %8s %18s %18s %8s is nullcolumn_nullable%4d %8d %18s %18s %8s row_posncols%4s %8s %8s %8s cpbytes%4d %8d %8d %8d BCP row buffer so far%4d %8d %8d ncols=%u poff=%p [%u] poff=%p BCP row buffer with (%s)insert bulk %s (%s)%sinsert bulk %sset identity_insert %s onbindcol->column_data == NULLtds_bcp_done(%p, %p) tds_bcp_start(%p, %p) colcntcoliddfltstatusbcpcol->funcscurrent_record_size = %d bcp_record_size = %d with logtds7_build_bulk_insert_stmt(%p, %p, %p, %d) error: cannot build bulk insert statement. unrecognized server datatype %d SET FMTONLY ON select * from %s SET FMTONLY OFFSET FMTONLY ON %s SET FMTONLY OFFtds_bcp_send_bcp_record(%p, %p, %p, %p, %d) get_col_data (column %d) failed gotten column %d length %d null %d tds5_bcp_add_fixed_columns(%p, %p, %p, %d, %p, %d) tds5_bcp_add_fixed_columns column %d (%s) is a fixed column tds5_bcp_add_fixed_columns column %d is a null column old_record_size = %d new size = %d gotten row information %d type %d length %d status %d offset %d tds7_bcp_send_colmetadata(%p, %p) tds_bcp_start_copy_in(%p, %p) could not realloc current_row writetext bulk %s 0x%s timestamp = 0x%s%svwvvvvvvvvvvPvvvv vutds7_bcp_send_colmetadatatds5_bcp_add_variable_columnstds7_send_recordpacket.cconn && packet!conn->in_net_tdstimeout Sending packetpacket->data_start == 0Received MARS headerReceived packetconn->recv_pos < packet->data_len && packet->data_len <= packet->capacityconn->recv_pos <= packet->data_len && packet->data_len <= packet->capacityReceived MARS with no session (%u) Write attempt when state is TDS_DEADRead attempt when state is TDS_DEAD tds_packet_readtds_connection_networktds_packet_cache_addstream.cstream->buf_len >= lens->allocated > s->sizeib >= tempTroublesome bytes:left > 0stream->buffer == (char *) tds->out_buf + tds->out_posstream->buf_len == tds->out_buf_max - tds->out_pos + TDS_ADDITIONAL_SPACEError: tds_convert_stream: tds_iconv returned errno %d, conv_errno %d Error: tds_convert_stream: Gave up converting %u bytes due to error %d. No conversion possible: some bytes left. tds_dynamic_stream_writetds_staticout_stream_writetds_dataout_stream_writetds_dataout_stream_inittds_convert_stream'TDS_AUTH_TOKEN noncechallenge.cDraining %d bytes NTLMSSPKGS!@#$%/dev/tty    $<`T 0H       $ $ $ $ $ $ @                                                                                                                                     )4%/7(3-!0,1'8"5.*2$  91)! :2*" ;3+# <4,$?7/'>6.&=5-%  (08@ '/7?&.6>%- 5=$, 4<#+ 3;"* 2:!) 19:2*" <4,$ >6.&@80( 91)! ;3+# =5-% ?7/'6666666666666666\\\\\\\\\\\\\\\\smp.ccarry == 0smp_is_negative(a) != smp_is_negative(b) || smp_is_negative(a) == smp_is_negative(res)mul_smallsmp_add.%06lu;8(sX4u((L(thhH\HTX(P hPt'(D(*|*x+(.1xX7:@HKdRU VpY \8_0b(exgD(orD v x{T!h!"h"8"X8#؍X#X###d$$ؕ$%x8%Ht%ؘ%H%Hd&H''0(8(()ز)8)xD*h*X*ȵ*(@+p++++x,$,h\,,x,(-`--X.<...H./(,//hP0h0(0008 1,1D1xh1h11H2(2<2Hp2h2223 3(<3x333X3,4H4h4X4484@5T5h5555H5h6D6|666867T7x7x7788@8\8x889<999X9(99$:8:HP:8|:h:::x8;t;;;h;( < <hl<<< =X=("=8#>(%T>h'>((?+h?-?h-?0?3@(4`@4@5@x6A7LA:Ah<DyT!Х(Ab8p!PEA D(D0Q(D ABB!89As!\AO,!`<BAA  ABK H"puFBB B(D0A8Dp} 8A0A(B BBBD `"1NZH|"ȨzEh K A "(EG  AH 8"ĩSDJ mDAU SDA$"MEAG }AAL$#@FOB A(A0q (A BBBG a (A EBBA t#v#,-L#HFEB A(A0 (A BBBH g (A FDBA # $$Ab($L8<$XFBA A(G0t (A ABBE 4x$̭dEDD0p AAA D CAH $)JT$4$$QFDA J  AABC %LE J A G H<%#FEJ J(D0C8DP 8A0A(B BBBF %EG | AG 0%8JAG ~DAL ,%ijtFNA  ABA (&1NHJ DA4<&(hFED F(D0E(D ABBt&`(QV&t)JWGL&FBA A(D0 (A ABBD d (C ABBA <&(OAA  ABI XH 0<'AMD  DAI NDALp't FIH D0  AABG \  CABF V AAB'4'@aJUA'(P`Y`0$(dEFK s DAB NDAX(l(0Hg((EHD  AAK (!JL(:Ee F 4(EAD ^ DAC \CAH )FEB E(D0D8DP 8D0A(B BBBA 8l)8FBA A(D0 (D ABBG ()|FDA AB)hEi B 4)@^BAA ~ ABK A CBA ,*h@*HT*BBA A(D0s (A ABBE D(C ABB(*9FAG bAAF8*mBEE I(I0x (A BBBA H+<BBB B(A0A8DP 8D0A(B BBBA 4T+AKG  AAJ (S0P(A p+h\BBB B(A0A8G@ 8A0A(B BBBE ] 8D0A(B BBBN uHDPOHA@8,TBBA A(G@ (A ABBA H<,(BEE B(A0D8D`W 8A0A(B BBBH p,8BBB B(A0D8D@ 8A0A(B BBBA ` 8D0A(B BBBK pHDPOHA@L,BBA A(G0Q (C ABBJ L (C ABBD LL-TBBB B(A0A8G  8A0A(B BBBJ ,-AC M I $-xBEAD rDA-D.IDD  ABC A FBG (O0H(A @P.BDD D0  AABC U  AABG ,.BHA ] ABA 8.0BAD  ABC A DBI 8/BAD  ABH A DBI @BBB B(D0D8G 8A0A(B BBBK 8>BBA D(G (A ABBG x>(FBB B(A0A8G 8A0A(B BBBE  SLEEEEEEEOD? X?Ec H tD|?FBB A(A0G 0A(A BBBH L?FDB B(A0A8D 8A0A(B BBBA `@1BEE E(A0A8D@ 8A0A(B BBBE F 8A0A(B BBBH x@l)AT K D`@|BEE E(A0D8KPs 8D0A(B BBBG J 8A0A(B BBBD @_HA]FEI D(D0^ (D BBBD J(A BEB`\A(FEE B(D0H8F@s 8C0A(B BBBE J 8A0A(B BBBD LAtdFBB B(D0A8GP 8A0A(B BBBA HBRBBL E(D0D8D` 8A0A(B BBBG L\BFBA D(G0P (F ABBA  (G OBBF 8BHFBA A(D0e (A ABBA BTEl G I0C,FAA Dp  AABE ((\k FDA rCJHkL FBE A(A0 (D BBBB D(A EBBk >kLW(kGEDG c AAK ,(lFDA [ ABG $Xl|6EGD cAAl;\,lFDD l ABC `l@FBB B(A0A8G I!!R!k!A!z 8A0A(B BBBE $(m|AEDG nAAPmdmVwxmm(mEKG0r AAE $mxXEDF FAAmEV$n@AHG cGAL8nWFBB B(D0A8G 8A0A(B BBBH nITnnEV(nAAG0 AAA <nBBA A(G L1 (A ABBA 4,o8ADGPBXS`PXAPb AAJ 8doBEG A(J (A ABBD 8oD]BEE G(D0{(D BBBLohBBB B(A0A8G L7 8A0A(B BBBD \,pnFBB B(A0A8G 8A0A(B BBBI {KSALp$EFBB B(A0A8DP  8D0A(B BBBD p% Pp%FBE B(A0A8L 8A0A(B BBBH 4Dq0-TFHD A(G0p(D ABB\|qX-FEB D(D0i (D BBBH R (D BBBD Z(A BBBq-qT.<Lr.-FQH E(H0D8T 8A0A(B BBBA HTr`2FJJ J(D0C8FP 8A0A(B BBBA Hr$5FBE B(E0A8D@M 8C0A(D BBBD ,rX5EFT AAE Ls6MFBE B(D0A8J  8A0A(B BBBF @ls7OGHI B(E0A8"0A(E BBBs<(Ls0<FEB D(E0 (A BBBK q (D BBBE ,t=FED  ABK @Dt>YGJB B(A0A80F(B DBbtE(LtEFEB D(E0 (A BBBK q (D BBBE ,tGFED  ABK uHH0uDH_H Q A (LuHmFAD | DBC 0xuHLEDD g DAG FDAuH (uHEFDPx AAA uHIjH@\ A vI vIEDP AG @vtJOH } E \vJ}H0Z F xv K3(v8KWEGJ0i MAE (vlKEDGP AAG (v LhEAD0V AAA HwdL FBB B(D0A8G 8A0A(B BBBA 4\w(MFHC D@  AABA ,wNfJGI |DAE0wN|FDA D0N  AABG 8w,O|FED A(GPJ (A ABBI 4xpO$Hx|O+EHG TAALpxOFBA A(G0` (D ABBF K (D ABBD $xO@EGG gDA$xO,EGG IGDyO$yP$(8yPPEDK0yAAdy@P (xy; >=0>>A>GI>AW>Kc>w>>Z>>]>^D;><>=>=>>&>'>(>>&<'<(`K&>)<?# ???*0?+.E=C?YM?,P?,[?f?\m?t?{??'= ?-?.?/?0?1?28?3?4?5?6 @7@8 @9+@:6@;A@<L@=W@>b@?m@5x@@8@9@:@=@<@>@@@;@?@A@3@BAACA4'A52A6=A7HARA\A\eADoAyA@A\AA3A6A8A:A;A<A=A>A?A\BB3B3,B48B5DB5UB6aB6rB7~B7BB8B8B9B9B:B:B;B; C<C<&C=1C=AC>LC>\C?gC?wCE|CDCFC@CDCFCDCDCDCBCBCBD?@DGDH$DI+DJ2DA9DABDAQDA`DcD8fD9iD:lD?oD3rD4uD5==8=9=:=?=3xD4D5DKDLDMDNDODPDQDRY>KDKDSDTDUEV EEE%E+E4E]WF>^\F^hFsFFFFFFFFFF!CF=DCBF FGGGGG#G*G1G8G>GDGJG PG!VG&\G'bG(hGoGuG6|G8G9G:G;G<G=G>GG6G8G9G:G;G<G=G>G?H?HY HYHZHCHC&H8;/;7;&>'>(>)?*0?+M?,?-?.?/?0?1?2?3?4?5?6 @7@8 @9+@:6@;A@<L@=W@>b@?@@@A@BACeADwCECFDGDH$DI+DJDKDLDMDNDODPDQDRDSDTDUEVMEWWEXF?YwEZ|E[C\F]>^yyzzzzz4 B S c m  p m&&&&o` * J&@`(-3 oo,oo*oG& q0q@qPq`qpqqqqqqqqqrr r0r@rPr`rprrrrrrrrrss s0s@sPs`spssssssssstt t0t@tPt`tptttttttttuu u0u@uPu`upuuuuuuuuuvv v0v@vPv`vpvvvvvvvvvww w0w@wPw`wpwwwwwwwwwxx x0x@xPx`xpxxxxxxxxxyy y0y@yPy`ypyyyyyyyyyzz z0z@zPz`zpzzzzzzzzz{{ {0{@{P{`{p{{{{{{{{{|| |0|OGA$3a1pm GA$3p1113`iGA*GA$annobin gcc 8.5.0 20210514GA$plugin name: gcc-annobinGA$running gcc 8.5.0 20210514GA*GA*GA! GA*FORTIFYGA+GLIBCXX_ASSERTIONS GA*GOW*GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realign GA$3p1113mGA*GA$annobin gcc 8.5.0 20210514GA$plugin name: gcc-annobinGA$running gcc 8.5.0 20210514GA*GA*GA! GA*FORTIFYGA+GLIBCXX_ASSERTIONS GA*GOW*GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realign GA*FORTIFY`iGA+GLIBCXX_ASSERTIONS GA*FORTIFYkGA+GLIBCXX_ASSERTIONSlibct.so.4.0.0-1.5.16-1.el8.x86_64.debugl`{7zXZִF!t/lO#]?Eh=ڊ2N§s@9 ŖLrfCAK1"`6.g.ShLv9ڶnӹ$~p$h @U^S6 Zo O5# 9Ռ4/d,Q]scãCtj 0[.+mLV'kR 4vMPe@)풌2x~be\e߯3 v$h(.Q||6a-v<:mUYHPIB+=Ş>M)MpHý~hL؛#+)8\+ [͕;n]ݜ0q⣰ xY8nՁ!kSuzgs5ٵRrBB~Df]%-y&sǏ,hJ|`-D,HfEw[Z @9;0!@l,}wv^Ϭ,95B qϘ=DLjEϭSWk7&Җ:-gLպ~ 5\%H`.N'oKʟʠ|ƷkK)MTAXKhf+F{U@X/郛}/ThH3ƥI:cwoʨ)#ᣤ@cGd(uzz~YTviDk]TconНPQOP*TBUԫrb8 )#} 6Y\vz"*٘xts8q=,K/U#撚LRn 25j93n>[w{jxK$UOum95GK֩=4_Ƀaݿ.aOP D)c:Tv5WQ†rGaݦ&RWópP.ԧ~8$҃sۭ1(^ 4J&;͙pԩJ+D?l"VW9B]DO%Ř<^4f9 /zϑKŢq;kԶΧ>?&-Tʒl? !` =rdtŚ/O=WI GT=ӹ J ?(Uf h93FeD@/F 3@!&yĨo–CgEK968s5W5[MGnHSk#™Qh({}fhG[+Q3>=] 3˲u3$%-ܮDFj9: bMtU|<&ȸpY2e0duUnͫB}Tm`K&tDL%MҺvx] *ؐ[;DDXBj.ےFT h#妮1}r ӞNT{/A@Vdήݚ?z§~IF =E׋T~9K"7^$Z1$1{TKI2dz@hh\F=gI&ߟ ЕAb-e*BeM|U4HL{6gR0tj6?+o۔ O;Q$ӜrJ+JF`|DYXBqP@;WJgh~N<ҮybeBe#H^Y VIyV TbOxHE@ $/Q~Ũ5f &!!tG*N&5x˘*jG^.Xsx}0AKb{͙ 7Yj^Nt^UIAӏk[+9g"gB3+$tJ-% 9i(wd{}Up5s:"5xqĶdljQt/G(㷈[;Ff_=.QE._sa т:G e-)zjjcO#7J gNV !;B"j5R9ـ;c^Mm)F6#tM(Gp1VWoP"Ŏ {Ү } F_ xaBi\ZZP?"{/tm7p|\7BK\@M'k`$LuF'[J֞ )ʀ 4n7ĝ*ͤp*IQ|WW:aeck@WBXKbNnwWɱ^: U`tDp 8/Ql6ROAV`_( bC%&rl4O`"jRtq%ȕPtdX%:l㉔NjFof~u%G!wvz^ ;Ph0VmoCܘ&lޱL<$>iXY ~A8]dPI'A/>)zRpяUց3 )[56#$6L1+=|B*Ap A`jEv_fvU[VϢJV%ROHx|c^IԦ*2\,j&Y5ve!GNtfK׵Y X[ L.tq[`E2(FK|xp>#f{(F ؽ:AQT3j8 8A(˨,uSUIΏ5XSOsF>]# җ<K ݭh'@6t4@ q2oi͐ĀYBV( d#*vgHHYs(o2F5?IzȀ}.Rkh~yCHD k>b-U\#cVw[ZOѴ K4VT)1RNZ l~&ٶW)@Fk u5P&TT}!Ftz5L0ZP;;kMO6bEV-Մl 9Xʮ$0W噪cB(уF洒kuyD`(n8p c4# `MGo~>ZPcNRPin9(g@{~B'}ǚpxNk1ߘKq}10Cm=RhȳA" yirERh$};Tmńe 吵RL9GUSީ1 A^expˁ{<=_"*)oѨW.YwHȫ<ރӹZ^; ZmEb8"zU᭮Ȥѹ{m8qҬT(Gdձ#8^у] Jg1iG/yꢌԵM1 kF'Oh3OXJ/cG^b+0WW>B g4~QG) z5/ d6 }gYZ.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 88$o``( 0* 8o**Eo,,T(-(-3^B@`@`hppcqq0 n@|@| w``I}mm mmw" 88y &&&&&&'&' G&G0J&JP&P P&P( HTfPl tT0Tdp(PKj5]2uusr/lib64/libsybdb.so.5.1.0nuȯELF>@@8 @99 BB'B'p?HD vv'v'00888$$888 Std888 PtdXXXQtdRtdBB'B'`=`=GNU"ɖ/Ԉ "IXXH@A: u% $h!"!\  aD1!@ Fq K9"6 eu`0   #$%&'(*,-./01235;<>@ADFGIJKNQRTVWXY]6Ai!C]޳IOyH_^=kd1 %VU "PM3UEIANjC,M>޽bP-|rjƊUyjQuiu/Bݙ*ўEQ/TIb1+\7?8(Ye:G7U2ÁݽK7#G4ݑ%χp+fw3s'<%Akm'vi/$++ȇL"bFճ_lMIC,>HجłgW>Q7P͚ཙ iųI28#Jk!g6e6.JjW^C$#q%JHPH&.$SwJH7$HوRJ4'5/.U|',$7…VK//_9%]߽:,vܽ0tA ө,xJ.PTny#-ㅌBcl>W[뱵謿eխQ0,S-wu0=+,5N=Y6ʜ~D ]'shG*,?Cm =HMo` DW7خCkU%LV"GW]),`-}\LJ)K# % d {r    ?  7 @ 9W] [  9 D [zI  D   ' 2  @ 4    Z z  , ` \@  Q F"  'w p  1     m E k /          [ h + R )   f>}W n  T /F  -  x 9  4 N[y#  -N   o    S   U fMM  _   hk: u( hg J { @q  (d E' 04 ` V lZ zm `g #  g8 pI! GO 0lT^ 6 PX n J ] g rQ q  PrT @," [T sx o! 0 0\ ]  p/r 8q ox `p )3 3* Х q^7 %%  0Eq  ;Wd lF kd @dQ & O Y @B p>C En o = ^ @D .@ } 9G @ E q^ ^ PO E Bo `h  ZU `L;  gd `L e w XV2 p>5 Pj Pp `R S 0 И 't PW4 i p ( : jy   !   `m p4 p b @ g 7 *\ MD `?, a.   `B <, 0W| J "fI 4 @Y t P  a>   W 0 u ? Cn s  V lT; Bh @z l  ! + ``U CT p(d b  `r d b  T7* 02  @0^v w `| F `GU 5p eH 0 c m= 3 u ` CV A  2* h P?G @ __gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizepthread_mutex_lockpthread_mutex_unlockstrdup__assert_failcallocgmtimeasctimestpcpy__stack_chk_faildbinitdbloginfreedbsetifiledbwillconvertdbgetmaxprocsdbgettimedbsetlogintimedbdeaddberrhandledbmsghandledbprtypedbversionstrerror__sprintf_chk__asprintf_chkmemcpymemsetdblogin__errno_locationdbsetlnamedbsetllongdbsetlshortdbsetlbooldbsetlversionmallocdbresultsdbnumcolsdbcolnamedbnullbinddbcoltypedbcolutypedbcoltypeinfodbcolsourcedbcollendbprcollendbvarylendbdatlendbdatadbtxtimestampdbtxptrdbacolnamedbanullbinddbaltcoliddbadlendbalttypedbadatadbaltopdbaltutypedbaltlendbsetnulldbsetrowdbconvert_psdbconvertdbbinddbiscountdbcountdbclrbufdbcolinfodbcanceldbspr1rowlendbspr1rowdbsprlinedbsprheaddbprhead__printf_chkstdoutdbrowsdbgetpacketdbsetmaxprocsdbcmdrowdbaltbinddbsetoptstrtoldbsetinterruptdbhasretstatdbretstatusdbnumretsdbretnamedbretdatadbretlendbsqlokdbnumaltsdbnumcomputedbbylistdbmnycmpdbmnyzerodbmnymaxposdbmnymaxnegdbmnyincdbmnydecdbmnyminusdbmny4zerodbmny4adddbmny4subdbmny4minusdbmny4cmpdbmny4copydbdatecmpdbdatecrackdbanydatecrackdbspiddbsetuserdatadbgetuserdatadbsetversiondbmnycopydbfreebufdbcmddbfcmd__vasprintf_chkdbclose__fprintf_chkfclosedbexittdsdbopengetenvtdsdump_openfopenfflushdbclroptdbisoptdbsettimedbcurrowdbrowtypedbcurcmddbmorecmdsdbrettypedbstrlendbgetchardbstrcpydbsafestrdbtablecolinfodbwritetextdbreadtextdbmoretextdbrecftosdbtdsdbmonthnamedbchangedbnamedbservcharsetdbsqlsenddbsqlexecdbfirstrowdblastrowdbiordescdbiowdescdbisavaildbsetavaildbstrbuilddbgetrowdbnextrowdbrows_pivoteddbnextrow_pivoteddbprrowdbcanquerydbusedbrpcinitstrcmpdbrpcparamdbrpcsendfeofmemcmpfgetsbcp_collenbcp_columnsbcp_colfmtbcp_initbcp_colfmt_psbcp_controlbcp_getbatchsizebcp_optionsstrncasecmpbcp_colptrbcp_getlbcp_sendrowbcp_execftellofreadfseekofwritebcp_readfmtstrtodstrtok_rferrorbcp_batchbcp_donebcp_binddbpivot_sumdbpivot_mindbpivot_maxstrncmpdbpivot_countdbpivotstrncpydbpivot_lookup_namenl_langinfogethostnamepthread_mutex_destroyfreeaddrinforeallocpthread_cond_destroypthread_mutex_initstrstrclock_gettimepthread_mutex_trylockstrchrgetpidstrcasecmp__memcpy_chk__ctype_b_locstrftimememmovestrrchr__ctype_tolower_locrewindgetaddrinfo__strcpy_chk__snprintf_chkiconv_openiconv_closeiconvsetlocaleioctlgetnameinfopollsocketsetsockoptgetsockoptrecvSSL_pendingeventfdsocketpairfcntlSSL_readSSL_writesendtofputcBIO_get_dataASN1_STRING_to_UTF8CRYPTO_freeBIO_meth_freeSSL_freeSSL_CTX_freeTLS_client_methodSSL_CTX_newSSL_CTX_set_optionsSSL_CTX_load_verify_locationsSSL_CTX_get_cert_storeX509_LOOKUP_fileX509_STORE_add_lookupX509_load_crl_fileX509_STORE_set_flagsSSL_CTX_set_verifySSL_newBIO_newBIO_set_initBIO_set_dataBIO_ctrlSSL_set_bioSSL_set_cipher_listSSL_set_optionsERR_clear_errorSSL_set_connect_stateSSL_connectBIO_freeSSL_shutdownSSL_CTX_set_default_verify_pathsOPENSSL_init_sslBIO_meth_newBIO_meth_set_writeBIO_meth_set_readBIO_meth_set_ctrlBIO_meth_set_destroySSL_set_alpn_protosSSL_get_stateSSL_get_errorSSL_get_peer_certificateinet_ptonX509_get_ext_d2iOPENSSL_sk_numOPENSSL_sk_valueASN1_STRING_get0_dataASN1_STRING_lengthGENERAL_NAME_freeOPENSSL_sk_pop_freeX509_freeX509_get_subject_nameX509_NAME_get_index_by_NIDX509_NAME_get_entryX509_NAME_ENTRY_get_datastderrfputspthread_self__vfprintf_chkstrcat__uflowflockfilefunlockfilepthread_cond_signal__memmove_chkRAND_bytesrandBIO_new_mem_bufPEM_read_bio_RSAPublicKeyRSA_get0_keyBN_num_bitsRSA_public_encryptRSA_free__memset_chk__ctype_toupper_locgettimeofdaysigemptysetsigactionkilltcgetattrtcsetattrstdinnanosleepmemchrpthread_condattr_initpthread_condattr_setclockpthread_condattr_destroypthread_cond_initpthread_cond_timedwaitpthread_cond_waitlocaltime_rgetuidgetpwuid_rlibssl.so.1.1libcrypto.so.1.1libpthread.so.0libc.so.6libsybdb.so.5GLIBC_2.3.3GLIBC_2.2.5GLIBC_2.3.2GLIBC_2.14GLIBC_2.4GLIBC_2.8GLIBC_2.3GLIBC_2.7GLIBC_2.3.4GLIBC_2.17OPENSSL_1_1_0/opt/alt/freetds11/usr/lib64:/opt/alt/openssl11/lib64        @si 'ui 3ri ?Kii Vii `ii jii tti ~ui 3 mmB'B'PB'B'B'B'B'C'LC'L(C'M8C'MHC'MXC'pNhC'NxC'NC'OC'HOC'OC'OC'OC'PC'XPC'PD'QD'`Q(D'Q8D'RHD' RXD'RhD'RxD'SD'HSD'pSD'SD'SD'0TD'`TD'TD'TE'0UE'U(E'(V8E'`VHE'VXE'VhE'XWxE'WE'WE' XE'PXE'XE'XE'(YE'YE'YF'ZF'Z(F'Z8F'([HF'P[XF'[hF' \xF'H\F'\F']F']F']F'^F'h^F'^F'^G'^G'(_(G'`_8G'_HG'`XG'@`hG'`xG'`G'`G'@aG'aG'aG' bG'hbG'bG'bH'`cH'c(H'c8H'cHH'(dXH'`dhH'dxH'dH'dH'eH'@eH'xeH'eH'eH'eH'fI'PfI'f(I'f8I'%gHI'@gXI'hghI'gxI'gI'gI'hI'XhI'hI'iI'`iI'iI'iJ'XjJ'j(J'j8J'!kHJ'5kXJ'OkhJ'pkxJ'kJ'lJ'`lJ'lJ'mJ';mJ'RmJ'hmJ'mK'mK'm(K'n8K'@nHK'nXK'nhK'oxK'PoK'oK'oK'pK'hpK'pK'0qK'qK'qL'qL' r(L'Xr8L'rHL'rXL'(shL'HsxL'psL'sL'sL' tL'PtL'tL'tL'tL'uM'8uM'xu(M'u8M'vHM'HvXM'vhM'vxM'PwM'wM'wM'xM'@xM'xM'xM'xM' yN'HyN'iy(N'y8N'yHN'yXN'(zhN'hzxN'zN'zN'zN'0{N'h{N'{N'{N'{N'H|O'x|O'|(O'|8O'(}HO'X}XO'}hO'}xO'}O'(~O'H~O'x~O' O'xO'O'O'P'P'J(P'h8P'HP'XP'phP'ЁxP'P'hP'P'P'P'`P'P'P' Q'@Q'(Q'…8Q'HQ'XQ'HhQ'xxQ'Q'Q' Q'PQ'Q'ȇQ'Q'8Q'hR'R'0(R'h8R'HR'XR'hR'HxR'sR'R'R'R'R'HR'R'R'pS'S'H(S'p8S'HS'XS'hS'xxS'S'؎S'pS'S'8S'S'S'*S'h/S'q/S'z/T'/T'/T'/T'/ T'/(T'/0T'/8T'/@T'/HT'/PT'XT'/`T'/hT'/pT'&xT'/T'0T'0T'0T'0T'#0T'-0T'70T'?0T'K0T'g0T'l0T'|0T'0T'0T'0T'0U'AU' AU'AU'0A U'A@U'?HU'0@PU' @XU'@`U'@U'?U'-U'?U'?U'3U'<U'`<U'P<U'>U'0>V'+V'PIV'-V'; V';@V'p9HV'9PV'9XV':`V':V'+V'-V'-V'2V'3V'`CV'CV'pCV'CV'CW'W'W'W'  W'(W''0W'5@W'HW'ghW'xW'W'xW'W'`W'W'W'W'XW'X'X'(X'08X'HX'XXX'xhX'xX'X'X'X'X'X'X'XX'X'Y'-Y'(Y'@Y'HY')PY'DXY')Y'CY'HY'HY'JFY'DY'DY'MY'DZ'FZ'D Z'E0Z' E@Z'@EPZ'E`Z'EpZ')EZ'1EZ'5EZ'HZ'=EZ'EEZ'KEZ'HZ'ZE['aE['hE ['oE0['vE@['}EP['E`['Ep['E['E['E['E['E['E['E['E['E\'E\'E \'E0\'E@\'EP\'E`\'Ep\'E\'F\'F\'F\'&F\':F\'EF\'NF\'`F]'uF]'F ]'F0]'F@]'FP]'F`]'Fp]'F]'F]'F]'F]'G]'G]'G]'-G]'@G^'PG^'aG ^'iG0^'wG@^'GP^'G`^'Gp^'G^'G^'G^'M^'G^'G^'G^'G^'G_'H_' H _'H0_'H@_'EP_'F`_'Tp_'H_'F_'%H_')H_'4H_'?H_'PH_'NN_'\H`'M`'cH `'mH0`'pH@`'{HP`'H``'Hp`'H`'H`'H`'GF`'H`'H`'H`'H`'Ha'Ha'8 a'H0a'I@a'IPa'I`a')Ipa'5Ia'@Ia'KIa'VIa'aIa'lIa'wIa'Ia'Ib'Ib'I b'I0b'I@b'IPb'I`b'Ipb'Ib'Ib'Ib'Jb'Jb'Jb'&Jb'1Jb'{'Z{'? {'@({'A0{'B8{'C@{'DH{'EP{'X{'F`{'4h{'Hp{'Ix{'J{'K{'L{'M{'N{'O{'{'P{'Q{'R{'S{'T{'U{'V{'W{'X{'Y|'Z|'[|'\|'] |'(|'^0|'_8|'`@|'H|'aP|'bX|'c`|'dh|'ep|'x|'|'f|'g|'h|'i|'j|'k|'l|'m|'n|'o|'p|'q|'r|'W|'9|'}'s}'}'t}'u }'v(}';0}'w8}'K@}'xH}'yP}'zX}'{`}'|h}'p}'}x}'~}'}'}'}'}'}'}'[}'}'}'}'}'}'}'}'}'~'~'~'~' ~'(~'0~'8~'@~'H~'P~'X~'`~'h~'p~'x~'~'~'~'~'!~'~'~'~'~'~'~'~'~'~'~'~''''' '('0'8'@'H''P'X'`'h'p'x''''''''HH&HtH5&%&hhhhhhhhqhah Qh Ah 1h !h hhhhhhhhhhqhahQhAh1h!hhhh h!h"h#h$h%h&h'qh(ah)Qh*Ah+1h,!h-h.h/h0h1h2h3h4h5h6h7qh8ah9Qh:Ah;1h<!h=h>h?h@hAhBhChDhEhFhGqhHahIQhJAhK1hL!hMhNhOhPhQhRhShThUhVhWqhXahYQhZAh[1h\!h]h^h_h`hahbhchdhehfhgqhhahiQhjAhk1hl!hmhnhohphqhrhshthuhvhwqhxahyQhzAh{1h|!h}h~hhhhhhhhhqhahQhAh1h!hhhhhhhhhhhqhahQhAh1h!hhhhhhhhhhhqhahQhAh1h!hhhhhhhhhhhqhahQhAh1h!hhhhhhhhhhhqhahQhAh1h!hhhhhhhhhhhqhahQhAh1h!h%&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%&DHH=y&|H=e&Hlf.fH=)&H"&H9tHν&Ht H=&H5&H)HHH?HHtH&HtfD=ſ&u+UH=r&Ht H=N&9d&]wH*nHcH>HXHYHXH*YH YHXHXHiWHOXHXH|WH}WHWHYHNXHXHWHWHWHXHMXH.XHWH2WHZXHLWH WHWH%XHWHVHWH6VHVHlVHTVH.VH)VHVHHVHUHVH1WH`VHGVH.VHVHUH UH0UH6UHUHTHTHVHTHUHQTH UHGV=&SH=˻&&H=&tH=&H&[H=ٻ&TZH HHH5H&HHHPHp HtH{uH=vHCHUH=U1nWfHtCUSHHHHt"fDH;HkHHyHuH[]DAUATUSHHIHIH׉H=Hu;HUHD؀=&upMtKI|$HtAMf t;u&HHL[]A\A](%H[]A\A]DHǚHHT1IAUALH=mT'XZ`H у+H5NTH=&SHHHt >HCHsH;Ht5VHCH;uVHC[D=&Su\H=]&&)؉&~H=?&[fH=q&TXH=&[HY&\@HS1H=rS,f.SHw1"=cHjHcH>f [f[f[f [f[f[f[fC[[f[f [f$[fC[[ÐC[f[f[f[f[f[f![f[f1[ff.W ~)GJH9~HHHG(H8HtHxtfHHWHP_RHD= &SHuHB1[fD1HQ H=QH=ĺ&tȋKC9)HmQ1H=OQ踷=&tK1HXQH=)Q蒷=k&kK1H9QH=Ph=A&AK 1HQH=P>=&K1HPH=P=& HP1H=PfDKH !wH5WPH=\Pfx;w}HcHHG@HW@Hff.@AVAUATUHS_9_tEAE1E1fED9~G9ANA9]t%H|D9u׉[]A\A]A^@Gu/[]A\A]A^H b~H5OH=OH C~H5aOH=OUSHHt@o HH(uiHc HC(Ht4kkHCH[]H }H5NH=N5H }H5NH=OH }H5NH=POH }H5NH=OHHtPATIUHS~%1fDHHHHA9$HEHHE[]A\fDUHw(SHH HfCC t~k H[]@C H[]H |H5MH=N ff.SH1HdH%(HD$1HH$HMHH"@HT$dH3%(u HH[ws.%t9/'ufDt}#f.-f.SHH= &H&Q=&.&X%&tH=Ա&[)H &Ht5HH=&H&H&[@=&u?1H=f&[DHL'*H=K1~EfHL*H=KXfD=%&SHu'HtH;XH[yf[fDHHL.1H=AKf=Ŵ&SHuH[fDHH VLǪHEHKLH=J1許fDUSH=k&uCH[]@iI_HKǴH=JH1B=&Su"H=&6D&H=ٯ&$[HKH=>J1@=ų&u &@H1HK H=J躰&Hff.@=u&Su(H=I&H==&&[H=K 1H=ILf.=&SHu/HtHHt[fD[fLJHt!HLJHtHJLEHHJ>H=H1趯@USHH=z&uXHtHt?EH[]Ht uV1#NH[]D1@H1AQAHvAPAAQHH=ZHH s@UHSH=̱&HE&u;H,Ht'H9øH-(&HDHH[]f.HHHIC1H=G苮fUSHH=L&H-&uH&HH[]fHHkI7D1H=yG3ΐ=&Su[H=IǕ1H=:Gf=Ű&u H1IH1HIwH=G躭HIHff.AWAVAUATAUHSHH8H$L$L$t@)$)$)$)$)$)$)$)$ dH%(HD$x1H HD$8HD$0'=Я&IMHBHLDH=1&AdvH:l&` fD= HA9uHL=k&HIIOMHHL$HL$LLAyA9MVE1Ht!HHtHHt HH8=&mMAvMDHL-S&Ńt'L-tL-HVGLE=&<LA#Nt(JH=R&t ELHq1AH=DPfDwHt$xdH34%(kH8[]A\A]A^A_L-FHFLE*=&HtO느=&tEA1H VHpH=C荪DHL$IcLL$D\$IH,H$pHT$(LD$HHD$PH$AHD$XHD$HD$L0PjD\$LL$ HL$(DLT$hJHcT$8LT$A_AXAGLT$8MLt$0D$4@Ll$`1AH 4ZL=v&EAH jE1HzoH=BiH$RLxMWE1L@H|$(1LHDHD$(MVE1LJDL5h&IEHپHMDH=A1誨MDH1H=A腨MVjHMFDGAUAH(1H=ARY^L5g&EA!1H H!nH=[ALXLT$(AFLt$0LT$8M׉D$4ǃH >n H5AH=gCH n H5@H=^Crf=e&AVAUAATIUHS\MHcHLHHtvI6IVHEIcH9 ک&H91EIFA)EIăH QZHcH>1Ҿ7NH11ۉ[]A\A]A^fL5&I?I6IVL[]A\A]A^ÐLIVIcEGHcKIŃ5DjIc)f.yfDHAA1QHAH!H=.?XZu1ҾNH1/1+1ۄIELg&HH=>1蓥fDIc1LA$Mc LLCD,fIcվ LfDIELᾷ&H!AH=E>1H mH5&>H=AH mnH5>H=@f.=&SuJHHtSaIHHH5@HVtBH[DH@,H==1>@s*N1Hc1[*N1Hc1jH;bJH1HfD+*N1Hc1:H1 iff.ATHIUH-HE=&S8M_HH=b~Pog|I$HH=?yf[]A\g~%t`7I<$HfI<$H[f I<$HfI<$HoI<$HHH6HMD1ҾJN11[1]A\ÐAIHW0H>H=;1=1ҾIN111fI<$H4I<$HH5Hf.1ҾKN11 1fI<$Hoff.@=e&ATIUSHuoH t1ۀ=@&[]A\H;I?Bv$DGD11ҾN11[]A\@D[]A\@AIHw4H=H=-:1i1ҾIN110qH51H=9謠M=u&ATAUSHuGHtjt1ۀ=Q&uo[]A\H;D@[]A\fAAH6H<H=e911ҾIN11hfDH71H=*9pff.@=&ATAUHSsHE@Ɓ-etpft{1=Y&{[]A\@uHU Ɖ@[]A\@u[]A\HU Ɖ@[]A\f.H}@[]A\HU Ɖ@[]A\DHU Ɖ@[]A\fHU Ɖ @[]A\AAH9H:H=e71e1ҾIN11`HG;1H="7ܝd=&ATIUS@2MYI<$Hc@H_QHcH>1[]A\11[]A\D1Ҿ[]A\f[]A\1Ҿ[]A\f.[]A\[]A\a[]A\1fDHHM91'<H=5_f.1ҾIN111H dH5g5H=9f.AUIATIUSHHHu fDHHBHuLjFHIEHtZL"HcCH$HHt,HLHIEH@H[]A\A]fHIE*N1Hc1H1[]A\A]ff.fAWAVAUATUSHHdH%(HD$1=&$HH+H=&K8tL|$IL-28iLLHl=u&AEAt%E=M&C8un@1@C8=*&Ht$dH34%(jH[]A\A]A^A_f.1ҾON1H_=؜&t1L7H8Wk1H=3љ=&C8lkf.1Ҿ3N$-HpMHcH>fDHH!8kH=2MA1ҾN11= &-1@L6wH59MHcH>L5fHGlH=21֘K8fDD $A8HLHcH>=y&K8`-C8D$=<$H(4=1&LJHs(H{ 3H[C8`=&C8@fC8|C8!L$5L5L4L4L 5H6DL6At!EL5tAL5MEHHODPm1H=~08XZH5Hq5HX5H4H4yH4mH5aH4UH4IH4=H41H4%Hm4HR4 LDL&5AL&5ME~H ^H5/H=B0fMwHJHcH>Li3HWGoH=BXu(B"=w&H ;EHcH>DH[]@H1[]1zH[]AHH/1wH=v)0cff.USHH=&u8HHtsPdIXd=Ē&u:H[]fAHH/1GH=(谏fDHAؾ1HH=(舏뤻ff.@USHH=:&uPH>Ht1Pdx*xHPHwHHVHDH[]HHH1H[]@AHH.1H=.(fDUSHH=&u@HHtxvH@Hx tHH[]fDH1[]AHHf.1H='hfDUSHH=*&u@H.HtxvH@Hx tHH[]fDH1[]AHH-1לH=.'fDSHHHDEt?HLEP D9t=HEANLHEH A9tL9u1ۄu,H[~LA@9|CIHcH\H[1Ҿ8N1H[D11ҾON1xH[111@NWH[1ҾN11Bqff.f=&ATAUSHu'DHHtH@8H[]A\AAHxH,H=%1mff.AUIATAUSHH= &u>DHLHtLhpH[]A\A]H1[]A\A]HAA1QH,HǮH=%؋XZ@=&ATAUSHu'1DHHt8@^[]A\f.AAHH+H=$1m봸@=5&ATAUSHu71DHXHtmPdIXd=&u4[]A\DAAHgH[+H=5$1HAؾ1HtH=$Ȋ못ff.@=&ATAUSHu'1DHHt8px[]A\@AAH7H*H=#1M[]A\Ð=&ATAUSHu/1DH8HtPH@HvH[]A\fDAAHHo*H=#1Չ=&ATAUSHu'1DHHt8@`[]A\f.AAHH*H="1m봸@=5&ATAUSHu1DHXHt0@[]A\AAHH)H=M"1뼸ff.=ŋ&ATAUSHu1DHHt0@[]A\AAH'Hq)H=!1蕈뼸ff.AVAUIATLcUSHH=>&xHHHt7t.M4H @HcH>f1ҾONH1_1H[]A\A]A^MeLSIHgHcH-&HHHH;<(tLLL=&LLtMLD$ Hs(H= 8D$ bL谻Lc]HcH&HLcd=E,1ҾNH1f11Ҿ7NH1G1HAH'1QEH|H=踆XZY1ҾN111f1ҾNH11{諾*NHHc11UfATAUSHH=&uNHtqHHt!ttk[]A\H1ҾON1O[1]A\EHH&1GH=fD1ҾN111@AWIAVMAUATAUSDHXH|$L$dH%(HD$H1=<&MU wL->HcfA|EuBfH|$1Ҿ\N1}E1HL$HdH3 %(D HX[]A\A]A^A_@wHcfA|EtCuMAD$ AGD$!D$EtMEAuL߉T$L\$T$L\$A9ADE0uf=?&)L|$ ADLH=L&M:)=&A*EPC=#Ht<HcH>fADE0tE~D;$IcLLEIcLLD=&$|Y$$t@$D9$H|$11QN=2&@H\$ A>D9$Z$KH|$1ҾQN1AbH\$ HE=Ʌ&AHԕš1H=@@=&C=UHb=HcH>@DHT$sHiHH.AWI$H=P1AQQATL\$@HL$8M,H0L\$fDEu0AfD$ HfC=H+?HcH>fD$ H\$ IcLHHD9$$I<.1D)Hc4H\$ f.AoAAR@L\$lAL\$LHcLIvA"H I H5jH=p"DAuLL\$eL\$Aă$$E_IcA| fAT$HcA| HBHAՅuL1LL辽@fDD;$%D$EH|$1ҾQN1A)A>@D$EADO$@@EH|$LDg?AD$EDI$E2?A묿1?A똿0?A넉?Ap}?AYf?ABO?A+z8?Al!?Aj ?A>> A=> A<> A;> A:> As8>A\4i>AE3R>A.DHQH=^1L\$~L\$HG՛1H=*}IcHt$ LHAH\$ fDAMHt$ t8HcIcՀ< #HH)H< AH9uL1E1L芺H\$ PIcLLEHiD;$$I<1D)Hc賭D$D1HuH=/|9HݎeH=1L\$|L\$H\$ IcLHHչD9$$I<. D)HcH\$ uIcIIcIE$D;$IcLLEHVD;$$I< D)Hc蝬H|$1ҾN1A?I8H|$DA萖AU$AAHmD᾵APH=1{H\$0XZIAE1SH 6CH5H=}.H 'C} H5|H=vff.@AUAATIUSHH(dH%(HD$1=}&Av91Ҿ\NH101HL$dH3 %(H([]A\A]IcHuf4@虩1LmxfDuhDelD1Ҿ@NH1g1[]A\A]A^@H1ҾON1G[1]A\A]A^@AV={&;1DHH=xHHDH1Ҿ7N1[1]A\A]A^@APA1HQAH7H=JxXZk1ҾN111$f1ҾNNH1o11ҾANHQ1f.=z&SHuHt:H1Ht 1H[ÐHH(g1H=w1ҾN11[f=Ez&SHu'HtHHHt9H[HDDHH1H=aw뺸[1ҾN11b[ff.AUATAUSHH=y&HEHCp`C{9)‹C )A9|AADHE~^C E11@9N{;{t3AE9~79~HcHH{(C{C 9N{;{uCCCH[]A\A]D)A9|D`}AHH1H=&u H1ҾN1[1]A\A]ff.AWAVAAUAATAULSHH=hx&DHgIHtHAAuEu1H[]A\A]A^A_HtHHr A9HQH4HHJ D9H9uDAPAAH9Q1H׿H=tXZ9DH=H}HLDH!HH-IG0HHpDHiDHf 藩DH߉ VHHHHHEJ1A9HIcHD@XDH4DH߉胯Ht@AGX H[]A\A]A^A_A1ҾNHH 111EJD9HIcH}LtIF8HpIF8HHpIF0HHpDDHWDDHf BDDH߉ .AFXt6ƅDžAVAV1ƅANHWmDžJtH 9H5s H=fDUHSH=t&uZHtuH]Ht,t#HKH3H[]H1ҾON1H1[]fDHH}1H= q뇐1ҾN111ff.AWAVIAUATUSH=4t&MI.HHfxHAHHHS8H9ЉOE1fHAPD9~LHN<(L轶IW8H9NIFpHHt1JHRHuIfCH[]A\A]A^A_HHi71H= qp1ҾN1111ҾONL11릸ff.AWAVAUATIUSHHhdH%(HD$X1=r&MM<$MAHIHt$ E1Ht$PD9HN4AvdNULLCLHÉT$)щL$ DIv8T$L$ H69N)IT$pHHt+z1fDz9HR)Hu P~A)t4HS9uIAMP9GIfD1H\$XdH3%(Hh[]A\A]A^A_A~Av8H=iAUAÉGLD\$ 2D\$ HT$HDHL$HcHH[AƒeHcDHcH2f1ҾONL1O1*LD\$T$mT$LD$ 苞HILUD\$,HA/L$DfXY_D1fDID$pHHt!H9} ,@H9!H@)HuIPofDHHcfHCAIHHH=<l1ҾN11A1A1ҾNLH 111]ff.fAWAVAUIATAUHSH=L8C\=@1ҾONH1臨1H{ Hs(#HKC8=X&RHg3H= 1U3HHi/H=U1ҾN111fHYi1H=1vU=IX&uQC8DX&J@= X&D$zff.Iй=H1Jf.IȉH*f.=C&SHu'HtYHHt9t0H[fDHHt1H=@H1ҾON1[1ҾN11[f.UHSHH=YC&uHt:Hk@H[]IHHS1vH=@@fDH1ҾN1[1]邒f=B&SHuHt*HC@[@HH 7w1H=)?Ґ1ҾN1101[ff.=B&Su(w[Ð1ҾN111[@HWx1H=l?f.=5B&ATIUHSHHHHt9t0AHtCMt8EAD$EA$[]A\H1ҾON1G[1]A\AHH #11N"[1]A\IIHwzHH=1>N1ҾN111uf=EA&SHu'HtJH{HHt rHCHCP[HH}1H=a>f1ҾN11[_ff.@AWAVAUATUHSHH=@&+HJHHH@=y@&ChW{T{PE1tLcHqN4 IMnIwQH{HLHt@H{HLHLfzHCHB0DkPCTH[]A\A]A^A_fDCuH߾*NHc1QH1[]A\A]A^A_H1ҾON1/H1[]A\A]A^A_fDC0(HusIHH1GWH=<1ҾN11Ȏ1DA1ҾNHH 1袎1KPHW1H=a<fDUHSHHHT$@HL$HLD$PLL$Xt:)D$`)L$p)$)$)$)$)$)$dH%(HD$(1=t>&H-HHHH$HL$HHD$H|$HD$0D$D$0HD$ xxYHt$H$rH|$XoHT$(dH3%(H[]H1ҾON1/1sH߾*N1Hc1DHA1ҾNH ;11{IHHUH=b:D1ҾN11訌;sff.AUATIUSHdH%(H$1=<&4MKI,$HH=8&u=<&M,$8&LH 8&L;)HA1HHL;h9uH=A8&vHH~It$(I|$ cI$t3H I$HH1jI$sI$I$HtwH8CmI$Hx2mI$Hx HtM@~A1HHxmI$H@ HYH H5$H=Y=*&SHuHt*CP[DHH1H='Ґ1ҾN11y1[ff.UHSHcH=9*&u?HMPx~19~HEHHH[]@H1[]H1Aؾ7HnH=>&Ht3=)&MPtAHm=W1H=&wD1ҾN11y1vfAUIATAUSHH=`)&HHHtAt8M'xSAAESP9PH[]A\A]DH1ҾON1wxH1[]A\A]f.1ҾMNH1Ox1ABL%)9DLMcHcLHsHLbCD%H[]A\A]@HAA1QH H7H=x%XZ1ҾN11w1!f1ҾNH1w1A1ҾNHH 1rw1)A/ff.AWEAVAAUIATIUDSHH='&GAHMAAŃAu$AEAAAv!Et"@1H[]A\A]A^A_A11EtA~H1HBEt>"uHc҃A"f9sPHA H9taH9vEu>'uBHcA'f.H(XA6AH S1ҾN1Lv-D9 HcҸAfDH1AQAH:API'QHH=L#H =&&ATAUHSHHHEHwH=$t%=,t1ҾUH15u1[]A\fDDH譍I1MtID$8H{HpLID$8HHp2ID$0HHpAt$A|$yf AD$ AD$AD$XƃAL$HǃJt ǃAT$AT$;+ AD$H}H,Lf$AD$ (UIH1ҾON1s[1]A\ƃY@IAHHH=1=!1ҾN11s1FfA1ҾNHH 1Rs1ff.AWIAVEAUMATIUSHHxdH%(HD$h1=#&L$HHHtotfAMeMVAMM$@vB1HL$hdH3 %('Hx[]A\A]A^A_D1ҾONH1gr1LL$@H@LLL$A/-HjSXZHl$ HHLj-IA/{SH;YC8^2AHT$HLAD$EnM$M=$H;LMH;SNC\HXHYDAH 1ҾN1HRq1HAIPHH=APIGP1HT$(H5H L\$ 1ҾN11p1If1ҾNH1p1(1Ht$*(u H;f1Ҿ3NH1pCT$C\CXVAUIATUHSHdH%(HD$1= &MvHEIEH.HHHL MIc$tcAD$d9HH)9NID$HHcH0ZA$HL$dH3 %( H[]A\A]fLdI}1Ht$t1ۃÃfADŽ$1떋D$=t =AD$dIc$BAIHH|H=յf.,A1ҾNLH X1n1ҾN11nTD=&ATIUSHHH;HtRtIMCXS\9x)9|uD[]A\f.[1]A\fH1ҾON1m[1]A\LJxk\k\;kXuH;oJC\fDIAHH?H=u1-%1ҾN11pm1JfA1ҾNHH 1Bm1H d}H5 H=1Lff.=&SHuHtJHRHHtRH=C&VH=&NH&[H=#&&dW@1ҾN11[l1Ҿ*N11[lHH=1H=I_ff.=&SHHHHHfv3 ft% r ftf E[øftv"ft1f[1f[ÐHHl1H=i#CfD [ø[1ҾN11Zk[AUAATIUHSH=&unHMS wDHcEuHRHaHH[]A\A]fHH[H]A\A]f.H1[]A\A]HAIPHH1WH={5XZ`fD1ҾN11xj1tA1ҾNHH W1Rj1Nff.=&SHuHt:H[HDÐHH1H=ٰ1ҾN11i1[ff.=E&SHuHHt#[ÐHH1H=y3Ґ1ҾN11i1[ff.=&SHuHHt#[ÐHHj1H=Ґ1ҾN11 i1[ff.AUATUHSH(dH%(H$1=b&H3LeMA$H]xHH1f.xH@HuHcHIHHf.HcSH3H!SHHcCH[HHuH}LONLJH}x\Y1EhH\$ fE81ҹiHLV tHHuHE4HtMHH]1FH|$"aHHվH1FHRHuHH}MxHEh1E8ETfH$dH3 %(H([]A\A]1@1ҾONH1g1H\$ 1ҹ*(LHY 41Ҿ3NH1fET1yHHH=E1ҾN11f1AdL*N1Hc1sf1Ҿ{NH1bf1LfD=&SHuWHtzHHt"tHAKt$[f.H1ҾON1e1[H[LHH1'Z1H=kf1ҾN11e1[ff.=&SHu?HtZHHttsH{[\\@1ҾONH1We1[HHw1H=뢐1ҾN11 eff.=&SHuOHtjs9stx H{[[C pyH _H5H==7DHH1H=y3뒐1ҾN11d1[ff.=&SHuHt1H[H@HHȻ1H=1ҾN11d[f=&SHuHt1H[H@HHw1H=k1ҾN11c[f=%&SHuHt*Ch[@HH.w1H=YҐ1ҾN11`c1[ff.=&SHuHt*Ch[@HHݺ1H=Ґ1ҾN11[bff.@AVIAUAATMUHSHHLL$Xt:)D$`)L$p)$)$)$)$)$)$dH%(HD$(1=&AHAHMt{HT$ HMDH$AHD$(HD$HD$0HD$ HD$D$0PjHcT$ZYHL$(dH3 %(ucH[]A\A]A^AH 1ҾN1La1fDATwEIUH=tLHY&$^_GAWAEAVAUAATMUHS1HXH|$D$L$dH%(HD$H1AwDH8=&AH~MoEj ED$lA9H] DP0H=Q &HADLL$ DD\$LL$)=&D\$} C=HpHcH>fDHt$HcLKE1MtE>HD$HdH3%(HX[]A\A]A^A_f.AG{HD$HABH;fD$ P0=-&C=aHHcH>=&AYAA~ |$HcE1H\$ I|$HIfA,$=DAtA9EH|$1ҾQN1E1^H\$ DH@E1=F&H$1H=D jLfD$ AH|$H @11N`^.D\$DT$JDT$HDJHEH!#D\$I1'H=ASD\$$QSDT$0D H D\$DT$f.E_EA9H\$ LcLD\$LHzHD\$A9A)K<, Ic;H\$ fDABHIEDH|$%"oEE1A$fDE1HLHcGAyAAE9~ |$;E1I|$IcHGfE,$AE9EH|$1ҾQN1E1\LH\$ LcLD\$LE1H2GD\$A9tA)K<,1Ic:H\$ YH|$1ҾQN1D\$A\D\$DH\$ HcLHFfDHW!1H=¢| D\$]ft,HT$ Hcŀ| uEHfDH< uŅuD9| |$HcHt$ LHMFA,H\$ E1E*EE9IcHLD\$H FD\$E9DI< D)HcU9EA9HcHt$ LD\$HED\$DI< D\$)Hc9Lc\$CDE1H\$ HH=v1D\$)D\$E؉H 1H=FD\$D\$D]HcHt$ LD\$HELc\$A9iAfA~ |$IcE1I|$HDfE,$IcHLD\$HDD\$E9E)I<1E1Ic7}H|$1ҾQN1AYWE6E9IcHLD\$HE12DD\$DI< D\$D)Hc~7Lc\$CDEt+Icŀ| u!AEHH| uAŅuE9| |$#E1McHLLCC,H|$1ҾQN1D\$EXD\$EIcHLoCeH|$1ҾQN1D\$XD\$AkH|$1ҾQN1D\$\XD\$AkE]E1IcHLD\$HCLc\$E9fDH|$1ҾQN1EAWH|$1ҾQN1D\$E}WD\$EkH|$1ҾQN1D\$E}WD\$EkH|$1ҾQN1D\$EWD\$E=H :H5BH=B6DAWIAVIAUATUIcSH=&AFAV9@9@t9~8x9~89| A;nH ;H5H=Ԯ[6hA;n^HInHEHE1fxfDF,DkdHSpHKxHtEHtYEs{HUHHMHSHH+Q{vHKhDKlLLCxspQDXHEZPID9~4HJHUH]Dkd\@PID9AF A9FNAF H[]A\A]A^A_tHuSlshL[HEsfHSH5LJHfDUAAHjQH1H=bY^H >H5CH=4DAUAATLgUSHLHL=Y&uuHHHtDt;tkAH1ҾLIH[]A\A]fH1ҾON1oTH1[]A\A]fEHHq1'zH=&f1ҾN11(T1@AWAVAUATUSHH(dH%(HD$1=t&HH+H=E&LMW{8MC SCDCD9A9ED9C9}xA9A9CD$AH{H|$=&DH'1H=ԙ@A9A9~H wH5H=?2t$C8AADEtLTH=&]HL$dH3 %(DRH([]A\A]A^A_1ҾONH1/RE1f.HHnwH=1ҾN11QE1{K8Lw!H5HcH>Lb1H׃H=|6Mt {8=&t&H'1H=ECALLIL(xLlL`AD$L'wHHcH>LDHG1H=cQLLLDLިf.sA׉))A)9AMA9A H6IHt$=&LH1A@HILd$,E1ҹLHztfEE1=s&H'H=1safD=A&D$A@Lt$tStKEuLAMfH:H=.1LuAT$ C sK9)ω9u h9wLcIL{(I?HtIwT$͗I?T$CICAGAD$ M'IGHt T$0T$A|$T$ |$E6L$T$ IGtM$1I<ȋdH=,H H5H=a,AWAVAUATUSHH $HH $HdH%(H$ 1=%I M& IHD$(Ht u@1ҾONL1`LE1H$ dH3<%(D*HĘ []A\A]A^A_H$H$HD$HD$PHD$@L2D$ DL$E |$HD$(H<$LA_ E1fIJAED$DCdEDs{UH=.AuHGL6)Ld$@HLrH|$LAH  裆HL$H5U1*H>D$IFpHHt)HF 1@H9H@)HuAG;D$#H<$t$fB4oID91IFpH0HH9|fH@)HoH9~H c%HHc҃<H1/HD$NULL@~0AuLA(HLh LL$DHA/{+^_HcHK8|$HH D$9Oω)H-%@HuD/uAG;D$1fDIFpHHt H9~!DH9H@)HuAGH U%HHc҃<H1.H<$" HD$(tf.1H1H=3H<$A) H<$D|$ E1$@SHHdH%(HD$1=m%usHH;HtJtA1Ht$01x C8HL$dH3 %(u`H[fD1ҾONH1=1HH{H=Cm1ҾN11@=1#=%ATUHSHEHdH;HHH1;HxIH}[use @uH|]H;It$H;LH3!u71Le[]A\fDH11۾ON1U<[]A\fDHtH#tH1&"!H߾*N1Hc1;DHA11H FN1;[]A\ÐIHH1[H=P1ҾN11;I|$HPHO&f.U1SHHHtHn=%uoH%K+Ht {$S(s L WLCHsK+XZ v(H%HtE1LaH2NH1[]fIH1IHVH=k]=6%aK LCHT1H==/;f.UHSHHHtH^H=_%HHHcU,u 1jE1E11H1:} #NZYt tAtt ~tuFH[]Åu;H )H5H=aHt^tTH[]ÿ+H H5QH=cH H52H=WH H5H=ff.SHLHMtSLMtG=%HAЅt0HÃtXt+=l%fD[=I%tH' H=]1M=!%tHW H=51%HH& 1H=L=H 1H=OH (H5H==%u mH H=1ڐtt2t@1ҾD@ DfCt7~t`uC1ҾUN1m7Du+1ҾQN1U7D *N1?71ҾN1*7f.1ҾRN17fHtkAUATUHSHfDH]LmHtH{L#HLMuH}HLMuH[]A\A]ff.@AUATIUHSH=%mMI$Ht~HfI$HH{Hu *fDHHHxHtHHu1ۀ=c%H[]A\A]L1ҾON151H[]A\A]I$IDŽ$H[]A\A]I$D 9IHHHBIEH1=%IEfAEGHH1H=%fDIHHH=1|j1ҾN1141fL `1LLN114A1ҾNLH #11`4~LCH'*NL1Hc134QHH\e1H=/ff.AWIAAVEAUEATUSHH=V%`HHHLMH)HcfuA fDT$7D9u{F{kA fDL$DDHHHTH9s\f;2tUDf;ruHHBE1fD@H9rH)ʉWHQf9@GHH% DAWAVIAUATUSH(=%HH2HH M*AInx~AhOI@@ 1H([]A\A]A^A_E~lEktAvA~贜EfhD$HfEDDDDd$PEE~TIIHD$IcE1HD$AIHT$Ht$LF uE~E9}EE6@MDHHDD$t$ LH(1[]A\A]A^A_fD}HEAFlA9DOD}HfDD}HDDxEAEEHA5DE1IHH1gH=1ҾONH1Z#.1ҾN11@#A1ҾNHH 1#ff.UHSH=p%HHHHx Hth@~F1HHxHH@ H<HHx HH9XfHH@ @H[]fHH1H={DH 9 H5^H=ff.@=y%SHHHHtMH8HHHxHHH@HHǃHHǃ[@HH1H=_H 7Q H5~H=}ff.@SHHOHtbHڋ H!%tDHJHDщ@HHBH9wz t H[fDHB[1@=%ATAUHcSHH HHtQtHHHt\B utHuJHR0J9|vHHTDbl[]A\D1ҾONH1 1[]A\H1ҾlN1[1]A\H1ҾmN1[1]A\H1Ҿ:N1[1]A\AHAH6H=11ҾN11`1Lf=%AVAUATUHS*HIHEHHAHSHLHcIIF HtwA^Dk1 Hþ(nIHt=HCL9u[]A\A]A^fD1ҾONH1g1[]A\A]A^@A^HLH *N18[1]A\A]A^DH1ҾrN1[1]A\A]A^@AHH1H=01ҾN111df1ҾlNH11C1ҾpNH11#AWMEAVAAUAATAUSHH(=%l$`H*HHHcHHt At ADI͋h`E7D9AFv AT$h ED$h~[AvA1Ҿ\NH11@1ҾONH1o1H([]A\A]A^A_@IcHffD=Ѹ%WAGH HAkH|$McGHD$HE_HDŽ$IO1HtHs(HI}t$ LL$HHT$_AX = H$H=9 HAƸ'%DDSL$09L$(| HtEsH@ @H$HPI9h=ɷ%l$@H@ L蓦CL$@AоgI1HH=j1ҾbNL1uNLHc1Ht$DTTH$cDTH|$fTH$DH H5H=~H H5_H=iAWAVAUATUHSHHdH%(H$1=[%H HEHrHHsfH5PHHD$P)D$0)D$@IHIL$HL6HE1LLLHo 1LD$|HzjL|$`Lt$0D$ D)D$@fLLIF A)A)FH=0% H\$(LH5eHHH 1D$0HH5/1~HHHƹH=;TD$4/1HH5;Hz1 H1HH5D$8HM1 Hv1HH5D$D$4>1ҾNH1H|$@HHD$@JH=4Hu D$4;jH=f4Hu D$42CHH54HT$HT$uD$4lHH5v4HT$HT$u D$4jHH54HT$HT$u D$4<HH53HT$HT$u D$4zHH53HT$nHT$u D$4=lH53HIu D$4:L1ҾNH1gfSHHdH%(HD$1=%D$ucHH;HtytpHt~Ht$5xQHH;¼D$HL$dH3 %(uH[HH'~H=U1ҾONH11ҾlNH11ҾN11iqf.SHHdH%(HD$1=%u[HH;HtqthHtWHt$-xIHD$HL$dH3 %(ucH[HHH=U1ҾONH11ҾN11DAWIAVEAUAATAULSHH=Ŝ%DT$PHaHHHHEt3AwIcHfHGHG1PH H5oH=rff.f[wxHHcH>f.f.f.f. f. f.1PH H5H=ֺ ff.fSHHN~ HOt9AЃwHHcH>f=%uoC8C[GXFG[FG[FfG[fDFG[GXFG[Hq%KH=˹1>rH H5H=߹H H5H=ff.SHHN~ HOt=AЃwHHcH>f=y%C8C[G]FG[WF8GˆG[fDGf9FfNFfG[DG9FNFG[fG]FG[H!NH={1VH H5\H=H cH5=H=eff.SHHN~ HOt=AЃwHHcH>f=)%C8C[G_FG[WF8BˆG[fDGf9FfMFfG[DG9FMFG[fG_FG[H%RH=+1螐VH "H5 H=?ZH H5H=;ff.HHHG;F=HqHcH>Gf.FEHfDH1H;uHvH1f.F8GHÐFf9GHËF9GHfG.FEH1vH H5ܵH=;*H H5H= H H5H=۵ff.SH]FH[H HcH>fDG;HcHCHH[fDG/HcHCH/|#'uH1H[G8G0G4k@G>{@C1H[f=t~9ctDo@HYHCHHDH[@:t fDHcH H5+H=ByH `H5 H=~Zf.ATUSHHHH>Huf~ ooNOH~t,L&L蒿HCHu [1]A\fHuLH1{ H[]A\oo^_H~tLeL5HHCHtHuLH[]A\H FWH5H=fH 'XH5H=GH cH5ڲH=(SHHfC[fDSHHH{Zf[ÐPXH WH5qH=H軽ff.HHt"HtFt5~ G8tGHH ZxH5H=<bH ;yH5H=(CATUSHtoHHtgIHc> HlID$Ht;A$U1ۅ3H9]~'ID$HHuHHHHu[1]A\L[]A\H 8H5[H=ұ詼fHHtGH%H%Hu&fDH0HtHtH;8uH1HlH udH5߰H=-ff.fAWAVAUATUSHH|$0Ht$PdH<%(H$1HHD$0HHHHHH8HD$PHHH@ H$HHHL$(H9s$HyHT$(t fHzuYH@H9rHT$(H;D$(uIHD$0@8H$dH3<%(H[]A\A]A^A_f.HT$(Ht$(H\$pfH)D$p)$)$)$HD$0H0HfxHL0MHCH$HD$hfH$HH\$x{ sH+HAndHIFHXAVhsENlMFxAvpRHH\$@HQyH3XZHT$H9"H$HH<$L4MH$IVpljD$Ht AFdINxHpIH0H|$hHD$PHp HHt$HHhH+l$(HHl$H|$(VD$pLd$xLt$X$H$D$Hl$(H|$IHD$ ID IHD$@GHHD$HHD HD$`MIWHD$A;MI_HuD$A;Gt$AD$J$9uq1H|$ )At(L(H 9u?H9uH\$8LHLl$@H H L9t{HH(u@I@Hl$MH H5ʬH=vINxH\$0AvhAVlHH3fDH\$8L$CA9Fz1HL$HAT(H ;T]H9uLLl$`fDH H I9tkHHPu'=i%'9Hu1H=gHD$0H0f.Lt$XINxfHD$(Lt$XI_ H@xDfDfx4H ޹sH5xH=ƶfDH H5SH=衶H H54H=肶H cH5H=غcH DH5H=DH %H5תH=r%H H5H=*H pH5H=%H rH5zH= ȵH qH5[H=%詵蔼@AWIAVAUIATUSHt$(L$0LD$LL$HdH%(H$1=Y%m1H$Ll$@HHcD$(HL$MLH-̪HD$IHcD$0HD$ HH V%HD$8H$IHD$PIH$HD$LH uH1HII9=L@EMLH @1HIӽIHII9rL;t$DIH0V%L9tM$Ll$H\$8j=9%Ll$@$H%fL5%)$)$)$)$Ht/MDM;.tiH@M-M;.tRI0HuHtRH=$%HLHbH%HJHRHH %L41f.I^HtH{kH{ BI~YfH|$ AAFAF 舻H$HD$(1H|$$Lt$(kL$ILDHD$0IA4LLD$t~H$A4LHH {t_HH9\$tA4LA4LAEHH$DHHtHK1H$dH3 %(' H[]A\A]A^A_Lt$(H|$ YH$HtD$01H|$ $JLt$(Lt$L|$0rfL$ILDHD$IA4LLD$躸JH$A4LHH G'HH9\$ A4L脰A4LA腼E  HH$DHH8H?HL$PH#.w>1H= $0IHg=HH=lPt$Pt$(D$HPDD$H1~H PLt$(L|$0$0L躯$0L蹻+ # H$L$‰HLd$PhHH'H}$IL$02$0IT$,LƲIFLt$0E1HD$`Ll$XL|$hH|$XYHL$0AHD$0HH(HhHL$HHi H$HT$H HMH D$D9muiAELd$HH\ E~sILt$I I L9t[LLuHIH HMHD9mtH !H5H=ɤۮHD$0H@ HD$@H1HD$0L`M H$HD$ HH$HD$8HIL$HrI\$Hd$D$A9$D$$H|$ T$HHl BHT$8HLl HD$@HD$(D$A;D$t$ILt$ @I I L9t{LLuI@Hl$(,M IL$HI\$HD$A9$yH "H5H=jf.L$~8IH\$8fDH I I9tLHu[I\$ HD$PHHp HD$H0Ht$H|$`HHEHH\$0HD$PHK(HpHHL$HH{|H{H Z,H5DH=蒬fHt$@HD$0HHxHeEH$HL$0Hc$ HA HPHHAHQ I莴ID$HH\$PLHHc$ ^ID$HHsI|$I\$ $$HHH rH5\H=y誫Ll$XHY(0IL|$hAE8L)A 1L9aLc$AE8IHHD$謳HD$HI~u HMtpH|$HD$1HhH0H9\$A4L赩HmHEHHHEHH$HLc$I9wI~(HT$H\$KdDŽ$>HDŽ$HHRH HDŽ$HHL$HHT$@H95 InH,HL$Ll$8HD$(HD$ HD0HD$0HD$xHD$HUNL}M"LcLRHHDLIHLI9IH\$HAGIHD$x'7H HcH>AGHޟH߸K1ɅxHL$xHcUI IL$HHHEI9rLIN$I9"1IH\$PHI?I跫HM9wHپH\$PJ|)hIIHLH!%tIuDHWHDHI%M9L9t/LfAOHH'H1OAOfAZGAOIHzHT$P訰HHD$xHIwHT$PHHI}pIHcEIHH9sI<$IpHcEHI9rH[HD$LxMIFHHL$HD$ H$I~ HtIFHp HD$HxJHD$(HD$(I9F(yDŽ$>HL$0HDŽ$HDŽ$HD$0H9L$@HD$ HD$ HD$00IFHH wNH5H=&H eH5H=H 9PH5H=ѦH OH5dH=貦 Ll$8*NHc1LHD$H@H=UHLE1o=r%L$H՗21H= ozH H5H=QH zH5H=z2H ۣaH5ŕH=+Hde2H=1oTHE3H=HHH8DH D@RPHRPR@LP1nH HMAPL U3PL1H HH="n=pq%AYAZHQe3H=PLHHH1MHXn^_RATUHSH`%Lc`f.Ht,HH@tHL9u[1]A\@HC[]A\H x6H5rH=HHt!HaH @%HP0HP8HP@HHfSHH0H{8H{@H[ȡHtwHtrAUIATUHSHftF1fHEH؀xv!L`HML+eI<$Ht iI$EH9HL[]A\A]Cff.@SHH?$H{H{H{ H{ H[SHH?H[۠ff.ATUSHGHHtHǀƀHGf{HHE1 f.HJ,HtMHHtcHDžHHtWHDžH}HtHEPHtHSID9HsHtHC HtHCft5HHt-1fDH%jH=9B(_%H= GsFp2H=щ[fD/N.j>H=H=UDG~2c0s!H=UDH= 2=51@3(H=È@H=H=1uD~B?n>%H=uk&fD, H= )@ H=f.DH=|@ HH=u)H=]DH=UEH=~2DH=[BD @4H=͆@F$FJtGeH=lfn#mjH=͆fr-DH=/qXH=EH=s-H=6bD H=.DH=FCH=DyH=L@H=i1fDZ(H=EDH=%DH=M@H= @H=DŽ@H=#@H=+@H=@H=@H=@H=DŽ@H=c@H=˄t@H=d@H=T@H=D@H=4@ ~|h&f lH=@;  :!(+\G'x ~.H={Q';+H=#1'H=%+| ^.7uVH=f.  \0H=@;DH=KxgB|I*LDX H=RF'HH=܁O< \>8 B H=ffDCTH=[t| VH=5[H=C? ~b  ~4H=QhH=̀fH=QRH=@\H= +DH=x$H=1XH=8!, H=1f9R ~RuVH=f.= B |2BPH=[@SDH=xN u0 j & u*H=~fDH=~ H=~H=~H=~%o?DLH=~x|P$H=+~X6BH=}8 BH=}=H=7~ =<H=}fBH=}>x`RCH=}wH=m}]H=}H}HNFfD` H=}H=<} pb6H=|f.# .: X~l H=a|( ,H=A|H={fH=|\ bH={fD1^43H=f{Q<t~Tu,H=I{H=zH={H=zr&H=zc@ y~`  H=z<@H=z (l*u\H=ywH=z7 B) H=yf.'dH=yB AH=yuD$H=yXH=y8mH=ynqH=xf~b4H=x@V|H=xaH=hxDH=xl@H=/x\@xSgS0@0fVDH=ex,@H=%x@H=w @H=w@H=%x@H=x@H= x@H=w@H=w@H=w@H=Sw@H=sw|@H=cwl@H=w\@H=wL@H=w<@H=v,@H=w@H=Ew @H=v@H=+w@H=w@H=v@H=v@H=v@H=v@H=v@H=v|@H=vl@H=wv\@H=vL@H=Ev<@H=u,@H=gv@H=v @H=u@H=u@H=u@H=v@H=v@H=su@H=u@H=u@H=Ou|@H=?ul@H=Su\@H=uL@H=u<@H=u,@H=mu@H=3u @H=u@H=+u@H=t@H= u@H=t@H=t@H=t@H=St@H=t|@H=utl@H=#t\@H=UtL@H=ut<@H=5t,@H=1t@H=ct @H=At@H==t@H=s@H=s@H=t@H=s@H=s@H=s@H=s|@H=sl@H=/s\@H=UsL@H={s<@H=es,@H=Is@H=cs @H=r@H=s@H=r@H=s@H=r@H=r@H=or@H=r@H=r|@H=rlH=r`H=rTH=rHH={rH}HjHjHjHjHjH{jHbjHHO @HDq@HcH>fDH/jHdkHKkHH7jHkHjHjHjHMHjH~jHcjHGjH/jHjH jHiHiHiHiHiHtiHiHFiH.iHiHhHhHhHhHhHrhH[hH>hH'hH?iHgHgHMAUATUSHHHt^f}tWI1L-|&DHELH4HPx4EH9v7=X.%t։L꾕z1H=h^+뼸H[]A\A]@H1[]A\A]ff.Ht3USHHfH;Hkd_HHY_HuH[]DAVIAUIATL$UI|$HS=]LHLHHyHt"HpHHf(IE1[]A\A]A^IEAWAVAUATUSHHT$HAE1E1H$DDAALH>xjAHUM)ˉ)f:GA~yo\IHt7H@MtIGHEu艊DH$f.H<$AHD[]A\A]A^A_H$E1@HD$H4$H0fUHx$HSHHNH?H f?ft_Hs(HtVDCDC DF0u5N"8N t,AF!~A9EȉșC=+%H[]fftHG`HHC(sH~(}tHs(eF"AfHG`Hp"u·H}HC(Hu覷H}HC(fHG`H@HF(HLNHAyH=,ePH1'XZ ff.AWAVAUATUSHH=*%HzHHǃ跉H_%IHiHHHHLhH=3*%fA}E1fDIUAHH,ԇHL}8Lu@LH趇1HH衇1HH茇Hu0H譋HuLH藋HE8H8uLLHH豈H߉‰E UX  ʉ Ƀ@ ʃ@  ˆUXOH߉EԆH !fEE9LH訃EGHtgT$D$]E1ɨ tHL $ L $DMtmIq@HD$D$HUCf:DGG|8D$E1c1HL$dH3 %(uH([]A\A]A^A_HUCHf:DG1DD$ނD$ItIy0DD$ L $詵HtD$L $DD$ qBZfAWAVAUATUHSHzH"HHIHH{0eLk0LH膺fA}E1L5L=^fIEHJ萁HHs8豅HH C CXƒ ЈCX͂HCRfAf=u +E1D$1EHD$@Ld$ HD$dPHD$HHD$HH@HYHEHAi~DAED$CEHl$E1E1Hl$(2fHU1HAHnNd E9HHHЍTA)GyLd$ IcHl$EtH|HbQuL@1f=HT$8DH_D$~Ld$8Hc|$H4OHHtL$1fDI$Md$HTH9HB}<H1p}HPH|$8>Ht$hdH34%(7Hx[]A\A]A^A_fLNHHHD$Lt$(H(HD$LhD$MdIHHzmI>MH.Hh5PM9t(I1CNHHHD$H(EHl$D$ELd$ Ld$8fT$HH!f.HD$HD$ Ld$ L$ILd$ Hl$IcH|HOuLd$ Sff.UHAWAVAUATSH(LdH%(HE1MFAGf8HIHcHBH%pH)ƁHH9tHH$H9uLl$L1IL{fAu%A@dAGH9I=%ALuLDAADDrILLPyHMdH3 %(udHe[A\A]A^A_]HkU|1H=WLELEf.1@H)HL ^Rff.USHH_PHt%HHHtH{HlRuHH[]ff.mH~_HcH>@HHWHTHWHVHWHxVHQWH_THGTH;THHuVHXVH6VHmVHUHcVHVHVHrUHVHVHdVH6UH`VHUHOVHNUHUHUH2VHWUHkUHTHUHTHUHTH6UHUHTHTHOTHTHuTHTHTHSHSHTH8THQTHSH6=y%ATAUHSH^H.vHs8HOzHvЉS EHEfH^wHCuH)f5EᾕgHDHH#fH=.QP1XZ_DKDKHfukIH=P1H)fkH=P1KfDATIUHSH=K%H-uI<$dHPI$HHH\HxHHHIHHtkL`H1fA|$u/Jf.HHr1HgrAD$9vI$1HH4y[]A\f[L]A\4@L됉ATUHSrHr脩HHIHH{0Lc0LH fA|$tO1&HHDq1HqAD$9v%I$HH4y[]A\[L]A\l@H|LufATUHSHHf8P#rEHAqHЉƉU UX  ʨ{   ˆUXcpH fHD$D$  Lt$H߽LZdAM HD$HH;蔞HD$HD$  ADHD$D$ / H߽ A}DHD$HD$ 7AMDHHt@:HD$HD$  h= %Dt=HH*E D9}HAH4H*HE A9\H9u=@ %f.AHDHhHDfHAfA / HLl$@fA<LH߹hAV1HD@fHLpPMu M6MtI~L>uLHe)HHx.H#f<HSffDHD$HD$  Af.HH HpHHt=%vHHt@:HD$HD$ 9Ai AHe HD$HD$ A@HtHD$ D$ RAąqAH4HfDHD$HD$ W  A-DHD$HD$ g BADHeHAdƒ⿀tPv< HD$d$ E1=)%ƃDDH[,1H=Q@nDHD$HD$ JAąHcH< c DHD$HD$ O jdHbdH߉8c=a%A@|tAHL0Av 9NHH4L0HAV 9,H9u@HtW1AZH=FMuۄF@H,QyHD$ LȌL|$ MuHfD+OHc3HhHxHt$ HFZ롐AE1AξfAfEHEAH1fEH=)AP1ZYmLHHD$ HpPHt$Ht^FLt$AGu L迂L|$LL>F/MuۄtgH4y;D$ L苂L|$MuǐD$ gHXDHxHD$@/fL8HD$DHrPD$ Ht$H0!J$f.AVAUATUSHH dH%(HD$1=($HE=H8HcH>D=$H1L1HL@HL$dH3 %(K H []A\A]A^DAHJDH='I17Ht T=Y$tH@DgH='1]DH߽ffDH6O=$jHf8(HKHJHAJHAJ<<=$@1H߽J11H4DHfH8Hq1H1_JZf.HAHx1H(KH߉Iƒ⿀t<w=$ƃ1@HpIDHc1H1IHHDH~HDHt$Hl@HpYfHI=$HH(H!HHPH=$H1I1H߉HHHȻHf8zHI1H߉HHHCHA3CDC$9nEujfEtdHHtXHHEfDE1HD)0BDA;1H;H=($1HA1DH:‹H==$+HAH ԋH=HHhTJHH:w1H=]Ht$HL$A1H:uH=p1H|$oH|$e0AWIAVAUATUSH8dH%(HD$(1=${D$fDLx@=$htpL6uIf8hPD=Q$%HL$(dH3 %(D$LH8[]A\A]A^A_@ILD0@؃ L?LD$?L?LD$?LA?DD$@EADAA DA A A'A r<A sAtA suL=G$QL ?IHx@ILHp@5E1ÅLA>L>D L >L >L HL$If=I?=$_D$fAfD7<H(HtHPIHǀ(D$ADAq&AI= $Lf2f.LT$HH=5PHK81=$^_|LT$D1HH=MR<f?|$DIAL`fDkE1IHxH&H5;E1wHAAH(H1HLQ-IPwIWRf҉]D%=_I?=$_@H=پ'1H|I?@ILAHpg0٬Hp6IH=k1*mDIAfDLIL5f2{fIAfDLYIALfD9ILf:fD$ D$HH=KhL$HxH57H=bH xHE1IfAWAVAUATAUSHHXdH%(HD$H1fH)D$)D$ )D$0;HD;H߉D$0L:HfD$8<:D$;AtwAbA5=>$Ll$#LA蕆HL$HdH3 %(DjHX[]A\A]A^A_t?fDD$: D$=$AHLl$:IuHIڭH߉D$n9AHLЉL$ 賭H|$D$D$Ht?uHHt> HLHD$HH1H Aƃ6H8IuHT$ T$ 2Dt$AHf9t$ Hluf%H߃9D$4D9&H|$(5|$E[H;A.AuL$0:B5HG Hx=O$HG LHHPH;H0L萄=$H3H=Z1@H=A@H7H g3HcH>=$AfDHt$dH34%(DH([]A\A]fDVMAD$4A$Au=$tDH35 LH 1H,H=kLLA$P}ADŽ$Atf=g$H2ؾ2H LB1H,H=fVE$fLL1uEA$ADŽ$Af.I$ fDE$KI$A ADŽ$yfDHPM=s$L1H7+b1IH(H=xhE$&L` =)$A$fDL8 =$I$1ɺ3NLHx E$ADŽ$I$E$f.ID$8HL$$AD$4HD$HD$I<$迠E$MfL=Q$JI$1ɺ&NLHx E$LgI$IDŽ$jI$aADŽ$DLfI$IDŽ$jI$RaADŽ$H0ؾBH LB1HZ)H=E$TH/ؾH LB 1H")H=n^E$H/ H LB1H(H=6&Hx/R H LB1H(H=H z/FH5H=_(H [/EH5H=(~f.@ATUSHLIX LVL9CtH[]A\h wAKdÀHtHHL$HL$HKdHpHt HtHKdHxhH[]A\AVAUATUSDo0A EHHJL)L4AvhoAF8oJANHoR AVXH:Ht IF8H{HtJL)HD@H{HtJL)HDHH{HtJL)HDPAEE0[]A\A]A^fDH1!1Hf.HH@ATUSW0Ht$1HHH)H<u9k0wދhC0t41H@L$I$pI$x9hwǃh[]A\f.AT1AUHSHHt HDHH[]A\.AWAVUUUAVE1AUAATUSHH(dH%(HD$1Ld$Hl$fLHH譼…D$=t(|-wD$t E'EEELMfAxuIH=rLIA8HHHH=+IAHH A)ʍB'HH=+Iq8HIHH A)ʍBHfD% fDHƹH=;+tH\$dH3%(H([]A\A]A^A_AqAyT$ L $cL $T$ 4tf8t1LfAxuIA8HDIIHLH fAxIA8HvIIHLH fAxvfDAWAVAUIATUSHHdH%(H$1HD$HD$;HHhHL#IA$C1f=HD$f=HHH^HD$\HH#=$ H$I$(HH(Hm Hc@H|$HHD$ H|$(L$1Ht$HLH$1!HHIE0DŽ$HPHH$$HH(IMxf8DŽ$DŽ$ HqH DŽ$PH$$IMDŽ$hHqH D$:H$$IDŽ$DŽ$HqH H$@$LIMHqH H$X$dIHqH H$p$|IMPHqH H$$|$:L$Ll$0L}M̓H|$ED$D$HD$`@|$:HD$mDHUxIGH$H9u H|$7LAGLN (I9LG1L$L$DD)AGHI9shAW ID$EDAGtIwH|$@HHL$1MHH@`H0 H$H$c$Ll$0HD$HL$0H+L$H΋$L$t ED)N~LD$HLKuL1;I}H(LJHtHPI}HLJ(f^LL]D$ @ LIEfIH9A fA2 HD$HL|$IEH|$HHHH1]Ht$HL"FH=AT$3I AAAGIHxj1IfAD IE1ɺ"NLޱHx ~H$dH3 %(H[]A\A]A^A_HHėAGfEgE1 IELHx HD$A!@AE1H=EGH&H=2HM\I|$H IUI<$$f= O L IH;w H5`Ht$ HADŽ$EH$HƄ$Ƅ$H$fD$f$fkƄ$ff$EAA} AE1H$L-IELH5 f8HHGAtAAtE1AAEDLHt$ HcLL{IEf8JAL,7LLtA}0iAEu,AE$EA)IEHECDAE A+H@ffD9 E1ۻYDtfA9DA BA9LDHffA9A9AtIuf>vA@@ tA A AafDIH8AHpA I}fHHHl$PlHL5HHD$1LB MfHIHj LHD$PHGHD$`H[HD$hHIJ(fAG H߉L$OHT$LLO\IUIH݉HD$D$ILB EtNLe8E1L-fHGHtLLAI8D;$sIEHx A|$0tHGHufD$E1EtBMMt(DLH@HHHAAD;$rHfIELHx HD$`fDHCT$(HHD$ sT$(Xىf{IHXR$}ALT$(%T$(@P!%A fA!ff$f$fD$fD$f$^DA|Af=f=f= >$$IG0LHpILHpA1ɺ1LN9L$AH 7[L1LH!%tLDHQHDʺ@LHL)H5nLALփ1LIEf81L'1LXIGxLHpHLsIEf8AN1L H$LI LHpIEf8qH$LH5mLIGLHpAL@1LlALE 1LD1ɺLH5NLaEGA=2L1H YLH!%tLDHQHDʺ@LHL)IEf=f=f=LI}D$AL@@LT$(DPT$(LD$ ~IUD$L$ 9B(2ޱuAx IM9u IH݉gA&A$512IH=Hc)ƒL$(HcHL$8D$41Lt$(LIHLHph HT$81LY t$4L=Ա,Nc H 4H=d 1跦=$H H( R+H=/ 1肦DHcLL$NIUL$D$(1D$4HD$8=$Hf R)H= 1L#1LILHpwf=vLHT$([HT$(H(IEH(M $$fftAl$ LL@eAIDžAS0 $ $ILHp:AAAA =$Eu$5AtEt IEf0EA1L \1L H1L L L IE LHpu =$SH pH|$HRIE1ɺ"NLHx ֱu1ɉLLk1LIELLI}D$ 菒D$ yH 24H= 1\LUAu LKH@ISLfP =$vxHMt|HN`HHHLl$ L4LLLMHٺLHHD$(L)HL$8dH3 %(u2HH[]A\A]A^A_HڸMu1HH?ff.@AWAVAUATUSHXHi(dH%(HD$H1HHHu1Ad1HL$HdH3 %(HX[]A\A]A^A_L|$LcqIIHLLD$0LLLLD$LD$HLL1HD$8Lt$L)CdMs1LL=Z$TDCdDHF1d H=S.H wH5H=f.AVIAUL,ATIUSHLH/Ht3HLLLHHPHH0/[H]A\A]A^@L1LHf.@AUIATIUHSHHt6@}(] 9sF)L9IGH}HMt!LI](I)uH1[]A\A]Ð11HF@AUATUHSHhL'dH%(HD$X1A$Hcf=Af=udH\$Ld$0HrHLHEMH1HH@`J4(D$PHL$XdH3 %(Hh[]A\A]H@ID$`H@ <th<t<<tx<H H5oH=qCE1DHH8uxu)HHt$;Ht$fHH8uxuxuxuvH |H5H=g9ATOUHSHcID)1HHcE(;E sHUHM(D$1[]A\fD1HFE(֐UHSHHG(;G sHSH,1C(H[]1 C(@USHHG(;G sHS,1C(H[]D1C(@USHHG(;G sHSf,1C(H[]@1C(@USHHG(;G sHSHK(@,H1[]f1IC(@G(1fHt?t6SHG 9G(v 1 xH߾[f[fDfIH9u_HH9K< t<+L<-HfD0u@HH9uH1HHHH9t" t: u|HH9uÐH9tčzH@ vf.:0@ wLHH9uHHH)HDAHGH9t ty8 usHH9uD 1@HH)H9 .RHzH9tqR0 Hvgf 0 w=HH9uHH)IfDD HHfE1VHH)1wH11ff.H(IHdH%(HD$1HL$LD$'HHT$Ht~LH|I0Hc$fDL9w;H40HcHrH9r%HHH)HHT$L9uI  @H|$dH3<%(uH(1ԸfDSHH dH%(HD$1HL$HT$ x&|$HD$t9HH9w:HHH\$dH3%(u&H [fHx HҐ@H(IdH%(HD$1HL$HT$LD$HHL$HtyH<1Ht D wX TJHH)HHL$H9uڀ|$t+w+AHt$dH34%(u#H(@y@1̸fAWAVAUATUSHdH%(H$1I9kL4HD$S0I<H)s1LL$ L@FHVH BHH9u-PHrHHcAHH9r3fH/CCHc4t&u(QHcfDHADu HcʅuD$ 1H\3E1҅udf.qAI 1ҿ DAAEiAHD‰QЅy@u"IcHIcˋD tAˍqfD#H$dH3%(uAHĸ[]A\A]A^A_MMLl$L뺸본Jf.USHt3H[HfDH]tDXuH1[]@H[]@USHt3H HfDH]tDXuH1[]@H[]@UHSHH=$rH(H5kHuHtEH[]fDH5KHH5=HzH5,HcH5HLH5 H5 H5HH5HH5HH5HH5H1 fDH5HH5HztH5HgH5HPH5H9!H5H"H5H H5HH5D:HݿH5pHƿH5]H诿H5N2H蘿¸ fDfDHIؾ1HH= HxaqfDafDQG= 3 )ff.1xc~'6 v'fD1~ >d>Dl>ݐAVIAUAHATIUHSHAt8LhL蜾I$Ht;LHHE[]A\A]A^f.AI<$HH9HGӸΐATUSH dH%(HD$1F=HHpHcH>fDF=i';fHL$dH3 %(H []A\x|HcH;f*DHcHi'H;@f*Dwf;kWVfDA=vѐw@;S3 {Hf]IALH :1}HKHL=w:f.fD ω{H\fSH5HtH5Hػ‰[ff.@AWfAVAUATUSHT$@HL$(dH%(H$1)D$pHDŽ$DŽ$D$xHD$ HwL|$hHH5FL蟾IHH$1E1LHD$HD$pD$D$HD$Wfk=$Ht$HALH51HH[=d$HtVuECHt$H~.DL$Et DD$Et1AHt$H6nHH|$ 11۾IŃ'H5HAݹuA 'Dl$|H5H1蹹EAE A Dl$|DH@@H谻Ht H(H|$ 1/PwD$x1 HD$Ht$1ۉQD$EGH1H=ĭIHt$|$AąAEtEuzHHtmH Hu] 1HfHt$D$EEE|$0t*H&eH=1=$H|$ QH$dH3 %(H[]A\A]A^A_Htt=$HHwH HcH>H|$ 1PvD$1ۃD$A@D$xfuA@t$0?t$0IH@[HA1E1E11-fA-vA.|HD Et/ADKuAL$ӀA/uHD EuB DуAA=[$L\$8L$0 HĸE1AL$0H L\$811E11#DBDct!HEEtOAADCtD9u GAF\@D9u 4Aōtp9uAōDl$DA Dl$|[D$DD$|Ni@B$11H H=8w=tz$kHH1H=qwI1H} \=5z$HH 1H=0wHfW1H=wH5HD$|L$0PH e1H=bvE\$8Dt$LDl$HDd$8L|$P\$8Dt$LDd$8MDl$\L|$PL+\$8Dt$LDl$\Dd$8L|$P\$8Dt$LDl$HDd$8L|$P\$8Dt$LDd$8MDl$XL|$PL\$8Dt$LDl$XDd$8L|$Pe\$8Dt$LDd$8MDl$DL|$PL\$8Dt$LDl$DDd$8L|$P%葮f.ATUSHH dH%(HD$1HvbF=LHHcH>Hec]FH9wAHi'H;HL$dH3 %(TH []A\DCאHyǐH3SH {HȉCGfDHfH*fIIH 1L迯HKHL/fH9J; fDHx+fH*@fDHfHH H*XDHfHH H*X$譬ff.fAAtHDE1HD9w/h@AEAA9s At;E FAHA9t;DEPA vAA@<w-A7EAHAA9u=v$tH1H uH=L$ sL$ Hff.fWсH HcH>@'f&f.{f.hf.f.of.mf.nf.ff.fAWAVAUATUSHxH|$Ht$dH4%(Ht$h1H]IH2HHy$AEŸHDCA E1D$@HD$PD$ AD$$AD$(A D$,AD$0-lD$4AD$8AD$<ޥHxHIHHSLHL脮A1L|$\AADtQHKC%% AEkdA)AZED ADDDֺқ)AѺVUUUAA)BD)Ǎli )‰ȉT$躓$I< gfff)Ǎ)))D<D$EE1111A1DEj<D u;DQEAD)kdA9uD)iҐA9u Ej=DD$E AhA@D$Ex EhAxAHEXAX Ap(A@$1[]A\A]A^A_Ã=o:153L  X H6Ak9H4ׂCHHIHIHHHHi@BH)H-؂-؂-D$HHHHHH)HMrTH)LHII LHHHi HV?2I)HHHH"DqBAAiұ:BIº⻷A)AJiɠD$ AA)AiԵҍBIº=uA)ErC<Ѻқ)Di D :VUUUAA)BD)Ǎl)‰T$%I$)))ƉKfDH6AHBzՔHHHHHi)ÉA\$1ɉAAk<)؉D:% k9B4)Aiұ:BIº⻷A)AriD$2AA)AiԵҍBIº=>% A)ErG ADDDֺқ)Di AѺVUUUAA)BD)Ǎl)‰ȉT$躓$I< )Ǎ))DgfffAAD1EkdA)׺EEẺk% A)EbC<Ѻқ)D :VUUUAA)BEA)BlA׺$IA)DDD|$Di B<gfff)Ǎ)A)DAD$DD\$A)AEEfEkdDd$Ek% kdA)EzAG ADDDѺқ)AѺVUUUAA)BD)Íliɏ )D؉T$躓$IDB<gfff)Ǎ)D)lj)AfDDnNAD6DDE:% i,)ii'D$AӺk9k<)ىB )iֱ:BIº⻷A)AJiɠD$ AA)AiԵҍBIº=A>% kdA)EzAC<Ѻқ)D :VUUUAA)BDE)Ǎliɏ )DT$躓$IDB<2gfff)Ǎ)D)ljD)Ѻ'%ADѺR1AADAAAEkD^k9D$D:% D>% BDֺ⻷iƱ:A)AJiɠD$ AD)iӵҍBIº=A)EbG ADDDѺқ)Di AAA)BD)lVUUU)DT$%I$)׺gfff)D)DADA)׺EDfEkdAE11k H̋BHɖ H`HcHHHHHIH|$xdH3<%(HĈ[]A\A]A^A_f.+(&#'D=Gtg:uދB=cHžfAHHHHHfAPK/t1uBA.fDIHDLIHPA(A)u H@ HHEDEHl$0L@HAIL$LHHHHHHI@oAfDHCxqZ| HH@PHHHHAPHCxqZ| BAHH@PHHHHAPH@HHEAUATULSHdH%(HD$x13'I@~"HHcFHHHHH`ɖ HHHHiH¸IfH|$xdH3<%(AHĈ[]A\A]fD+s(#'t|D=Gt_:uދ=fANk)t )fAPffD/t1uAGI=LI$Ld$0LLA@HP-HMHLHHcFHHHHHHiIfAA@ AH+(u9M@EvfDFA`HIPHA@f%f  fA@HcFHHHHHHi'I)t}fDfDHA@f%_f fA@HcFHHHHHHi'I"֓fDAWAVAUATUSHdH%(H$1%IHADM̓bu rDr H*tJ~8t@t8t0F=HWHcH>%t -t"uѐ"qHHcH>AtbL蚌IEH}#LHH?H$dH3 %(Dr$H[]A\A]A^A_@AAUI}HL9IGAkD=y\$"HcMEH H D:O!E1LHt$0MډD$0EiPFD$4ADf>AAEG$6IUD9ACă!D@HH5EADHLBf.HHBGBH9uDAqAHHcH D5C݋M=H,HcH>fDH}<AHH9C=KH^HcH>f.H}LAf.}LfD}L:AbfHELMHA Ht$0MHD$8fT$>HMHV?2HHH`H"HH)H)HHHD$0LrA]DHMHHt$0MHV?2HD$<H`H"Hɖ T$8H*H)HHHD$0`fD$>r@}LAf}LAf.1}L@A@1fHT$0M)D$0(L$?@ED$8fD3_ Ht$0MHD$8fL$>HcEHHHHHHHi'HT$0H){DADA{DA#kDE^A}0AFIDtfAT$DuAEu1A|$褅IEHDHHDAąI}PIEADAAEUH%HD~H|tAEAfAH*AEwfAH*AE]Hec]FHǺHH9~Hi'IEAZAHl$@I1H H1IMLHAA!I}AAUAuHHAEH AEAEL$AA!HI}AiH9A}ALȺh )‰HcHHAEAHcA=ȺhЉ )ЁHAIEȺh )HcʺH9}AMAȺh )‰HcHgfAEAlAAEfAEAoffA*^ZAmF]Hl$@HA|$(D@2d1DH 1'DA1!A1"IMLHA)Ⱥh )‰HcHMAEAMHAEH ȉHHHڄHEHtHH1ʀIEAom1ҾLAmouAuE fAE E"AE"wAątAEfft A}A}fAEA@H\$@HHx+ 1HA}AE om1Ҿ LAmouAuE fAE E"AE"AąAEȅt A}A}AEADHT$0HHAąD$0AAEnDHT$0HH賫AąPD$0zfAEA*DHT$0HHoAą t$0AAE E9uDAFUHI}E|LDH,AA!A"M{1B@u-f.y@ tЃLHB 8u-hfAu1A~pIEH_ DHHEH7{EA!DHT$0HH2AąD$0=ADDHT$0HHAąD$0wAEAqDHT$0HH&AąSHD$0AIE?DHDHL$(HT$0HHAą|$(HD$0tAHIEADHT$0HH蜨AąHD$0H9AEADHT$0HHAąD$0=fAEAjDHL$(HT$HHLD$0蕥HzLT$(IuE1ɀ|$t D$@-AJ EHHA)MAHr@t@HH)Ht$(H9uELD$0AqHD$(M7ODHD$(L@fDJL9tHHD$(@t@HuH|$@HT$ H4.Aą[HD$ <HH9wAEA(EuVfHAtC} tAVDIDtf.AEtAVDtAELd$@HLLmBD4@rHt$0LH7x}"eK4AH9D$0p;IAEAAKA@A5A*AAA -,Au1'tA#@ELd$@HDML%PEH PE PE PE PE PE PEPEPDE1tHPLIML AAE!zthA&QA@C~ zHLA9ADOMcLvDK|=1D)Hcui 0t't/tA#@G$6A|$HckIEHE~GA~1H5LGfHL  PL LPHJH9uJ@fD85A4AWf.CAfEAAEEA3A(AAAAAAAAAAAAAAAAxAmAbAWALAAA6A+A AA AAAAAAAAAAAAA{ApAeAZfH YAЍBAFAD)EDA9v 1ƅujNHȋ A9vELqKA9sNC9 rBwAэNDH4H|@9w$H9rHH9u9ЃDËfDSLcHDGHI M y -H~IلuGLH IKY8m4IIHI Ii'A)1|lH[MA2H(\(LHHHIHHIHHHHKY8m4H LHH1A)H _IHI lH[ff.AVAUATUSHdH%(H$1JL:Wu -HHLODA@ EXAPIADIL$@A)@HAfA9uDHACMT@tE2ID$@@II9E2EtIl$@I9TLl$@AYI8M]PfDMBAD Ai')ȉA'I9LLL)HMTfDAIAA APi'A)DM9uIA H9D3IffD0HFt-F.GLFHLHT@H@0H9uIDH$dH3%(HĠ[]A\A]A^LI9^AKIMMPE)ف=AADAAAAD9rGD9r<0.LVfWLD9DH@0wD)D9wHIPA1AA0A v"DAGAAD9t)H@ICL9t'AKIGAD9uF.HFDwIE2~$Ll$@AE1M]P E1IMT$@8ALeff.@AWAVAUATUSHHT$t$dH%(HD$81PL|DWHD8kWL[@8RDH EED<HE) $8w EL\$AO1L fӍASHHDȉGtٿA!BD؋LtfSHЋTuÃu$D)E9؉\$ EIIE)L-L5L=\HfA DHAN1)ELMAA fDGH HHHIHHA)I9uمHc$H \$ LDD$AJHcED$HE9w/)HHIITH)HH9uE1~?EBCtADI|@AD)IHʉTL9uDA؍LtBTHcTHu#H\$8dH3%(QHH[]A\A]A^A_ÉLHc$H L-cA DEA DDAINK LE1)AtAHHLȉBH AH9uEtBDLl0f.HcHD)uOD$E#DD)t H}H)Hta̻e^Le H)H|L`H1LYaAWIAVAAUIATUSHL&A|$[Il$tI:H\^HHtTH9tOH{ 1_IAEAG軻`fH5AH^HXHu\H]HHtcH9t^HpIvHtIAEEt9A|$[uH9wBHHLH)aHH[]A\A]A^A_@1H[]A\A]A^A_{]uIl$ Hff.@S1 H^t [f.H[WAWE1AVIAUAATUHSHHH|$J4HMcYt/IIu=F*$u4AHD[]A\A]A^A_fDBDH[]A\A]A^A_LD$H21H*H='ff.ƒ0 v> 1ҍJv+Oʃ0 v1 ҍJDCBOʃ0 wÐAVAAUL-ATIULS1HLXtHu[D]A\A]A^HcEt[]A\DA]A^AWIAVIAUATIUH-S1HHtLLc,Xt0HHu=($u5AH1[]A\A]A^A_@BDH[]A\A]A^A_MLH1bH=@%ff.AWAVAUATIUSH8Ht$HT$HL$dH%(H$(1=/($D$H\$ D$f.LHXHDl$ EtZHL0HDmEtAADF uA;tA#tE<=AńA Dl$t1E1DfIcAD ^UMcHBD< EUHu@<=@t)HADF uE}ADV uDEAEHIcHED uHqADF u<;wHHNH1E1fDIcHADF u/EHIcHAD~ tEH HIcH>9E@:H9H<;wIIs|$ [t^|$@HT$HHD$,@=1&$H$(dH3%(D$H8[]A\A]A^A_þ]HZHt=%$u=$L|$1H5LO1LH5ܺ O1LH5˺NHIMHE@HT$H5HE1NHt$HTRD%$E+A=$rLKME1H$HdH3 %(DHX[]A\A]A^A_fH8SLMEtLt$H$@HI=`$ $@$@iHt$H$@|RHHEIsDIH5FHH= 3DI~8HHIL%HuYHm(HI=$tHD$H޺HqLJH=-H1fDL|$1H5LLH|$ HN1LH5LH$@HHN=$HHT$1H5^LH$@HWNfHL$H%HH=snfDH$@HL$ABfDLHϷG1H=+I~}I~AqH$@AHL$(HH A1rQI~9I~A-I~ A!I~ L$@A LASAH ]1ARQD=$XZEtHL$(M%I1H7H=VENHHH=6LHEG1H=tlHHE3K1H=RHضIH=մ13MfATUSHH=˶HdH%(H$1MHtHHH =$H=LHt98%HLHHt HH=r$HH=BLHHt$HHCZ=3$-H=aLHHtOHHxfH{8H*Ht+HHtIfD=$H[(HuH$dH3%(5HĐ[]A\=$tHH5S81H=:FH*LA*H1NHDLHߺIH8HH=ʲ1(0HHv61H=fDHIH57H 4HHDH=h1HH51H=CiKfAWAVI1AUATIUSHHdH%(H$18HH LH聰H H=E1IJHt8 HGAH=$HpH4 IHHH8lC ft+fE Mu"uE1HCH8HC H8tHH83 R HH8p HC0H8 HCxH8 HH8 HH8 HH8 ttuStUt Јt ЈCtEC(tE(tu ЈM HCPH8 HCpH8 HCHH8 oo  Ј t, ʈ ʈ@t#@ Ј߃ ЈMHHH~E=$PH1HLd$Y H[(H|H[(HuH]L1H rHF H=MI=$$DE1H JHHH=w=P$DE 1H (HH=D=$DE 1H H%H==$DE1H ߰H5H= =$ZLE1H HFEH=MI =$$LE 1H HUH=Is =L$DE(1H [HeH=A =$LE01H 9HuH=I =$L1H HoH=vI =$MD1H ׯHmH=<A =q$LEx1H HH=Ib =;$L1H {HƮH=ͫI) =$L1H LHH=I =$kD1H HH=ZA =$1D1H HQH= AAy =R$D1H HH=C =$D1H H߭%H= = $L1H FHrUH=yI = $PL1H 8H9eH=@ =y $D1H HuH= k =D $D1H HH=֩6 = $LE@1H ȭHH=I = ${LEH1H HgH=nI = $ELEX1H yH1H=8I =m $LE`1H JHH=I^ =7 $D1H HH=ȨAA = $LEP1H HH=I= $tiD1H ǬHH=XAA= $t/LEpH 1HH="I~fDHt$H>HHHEHHpH1HHAE`HEHHx;/HHH_H1H$dH3 %(HHĨ[]A\A]A^A_f:Ld$,LjAL,1BL+=A3HHm= $Iu ЈMHH8HH= $IMHC0H8dHs0H}0ۚIHHCxH8KHsxH}x贚IHeHH82HH脚IH5HH8LLLHIIHHH8HHI ЈLHhH 6H IH=1tM$t=9$+HIIxy=$Hu$HtLH5B&HH=zIHt;=$LLH5&HLD$9D$H=ƫY1HY1HY&HYHYHY@HX1HmY1HcY&HVYHIY0H3YDHX1HY1HY&HYHXHXDHbXHD$(dH3%(uyH0[]A\A]A^DvXHpH8Hs DH@:HHBuH)H4U^1H^X1(@SHH $HHdH<%(H$1HxH9pHH HL 0f:vrL9HHDHQfA'uA'fDLQHLHfDHL9rH)uTH$dH3%(uvH[L9s;HHDDHQA'u LQ'HLHDHI9w@1HH 2O H5֛H=כj U'DAVAUATAUHSHH dH%(HD$1jHF8='#L(HIHLf80HE8HDHpSL23=#uXH@AUHf8uH^VHEHHPŅ'Hf8HL$dH3 %( H []A\A]A^fD+0AHE8DHHp.SL2=#DHreH=f1%f.UHf83uHU#D1U@1HnU0f@HUMfDHcH=ՙ1KfA%VDft@uf?vuH觎1HHуH HcH>HHhH1HNfDH1H8fDH1ff.fAVAUATIUSHH`dH%(HD$X1HH..HSHSHHߺHpmPHSSMI|$I<$Lt$ HLLl$@-HLSLH-It$HPL/LHr-I4$HPL/At$uHL-L.H-H|.HD$XdH3%(uH`[]A\A]A^H`R #fAWAVAUATUSHHHH9HH)H9OAH L-(Lu]D#AD$<9IcDL>fy*/KHHAI9wH@HHH[]A\A]A^A_HCHsHH9r;--;/*tHþ A[AEH9HH)بtfDHHCH9x@8su{uHCH9_K@:sutHDH D@t$EuHDH9KDt$]Hpuxt%HHH98 uHY H HH qH5WH=H H58H=Yff.AWAVL4AUATUSH8HHt$dH %(HL$(1f8HD$IHE1Hh AH}1LNHI9uG4$ McA ~@D)HcID9~1LJsO1LOcLOL9OIEf8LLt$AOL|$C$@AVIAUATIUHSLH0dH%(HD$(1HcyHuA|$0HD$A|$ AL$ 1HHHxH|$ QIHtyLt$HL$H1HD$HD$(LHPAD$4LL$ LD$(pdZYHtHHD$L)HHt$(dH34%(Lu7H0[]A\A]A^DHMHLE1ff.UHSHHHtFHrHH[]ff.fH@w1f8wD11HWHЀ-t=/t*tfy/tZHPHHt;*u@O-tfD t#JHHHЄuH@HGHff.H-t%~3?t>[ti/tHH-uH("t'tu18tHPHpuVH8t놹]fAUATUSHHHIIH1CHHHuAD$9E1E14HLHL)@I4$DHA\HIt3LHHuHL1?H[]A\A]@1H1?H[]A\A]fZE1HL?H[]A\A]ûH 9 H5H=zQ ][D @8tHWHGu@H8HtHHtf1ff.fE1Ht@Ht AHHuDDHcF HuHcF~H Hy HEVt@t+tDH=HGºHHD@1~cHËV@HH=@HGH9HBAUIATIUSHHdH%(HD$1Hf8@C{v D$"=H HcH>T$H epDAt9FAHL11HL$dH3 %(2H[]A\A]T$H o{H H)T$HE@T$H pH DKDCL1H91lfT$H U0T$H 3 T$H {&IEf8T$H T$@T$H H %K@IEf8T$H mIEf8jT$H oqT$H `T$H lPIEf8sHT$LHHT$@T$H :T$H ]nIEf8asHT$LLT$HHH _IEf8T$H pT$H lIET$H lf8fC#H n$JH Zl": H ӂT$#{H IHڂT$HET$H ;mT$H mT$H LmT$H kIEf8T$H ȁT$fDT$H T$H zpT$H `T$H HkPT$H ok@T$H uk0T$H  =#uGA$2H H5H=mfT$H s {襝H":H=1i H 1T$ ff.AWAVAUATUSHdH%(H$1Hf8IHL,1HF@1HxLI9u1Lx;1Ln;cLa;Ht$LHt$jI4$f>CHD$0LHH$BDmHl$PE1IKfHvarchar(B4000H)fB HL8IFM9trD$P,L}IƺEF1H 5L/ HcLHtCD9~HLJ4yH<$OH|$E1Lx71Ln7cLa7H$LHHD$(dIf8VH$LHHD$09AmfHD$8HjIEHH@8H8H|$ʼn\$D1Ll$XID$ HL|$HMLt$P;l$ LHII98@HXuL9IDAuE'A_tHB`IM9uLL)HcŃHHD$8L0HPrf.LH\$3HL$HHHCHHD$H$HPH$11L|$HD$(H$HD$HL)L<IG H9D$'H$LDuH E1H$H MzHLHcLM AE9L|$E 1H zLIELH1IELLH4$LLI.AEHD9~qMt,L0|@IELJHp8HHE.uHphL-7f.HphL-H|$8\$DLt$ gLd$0LJ LHh H|$( Lt$ H|$8'H|$0M H|$(C LL)tH ݆H5tH=ueD11cSHHHT$@HL$HLD$PLL$Xt:)D$`)L$p)$)$)$)$)$)$dH%(HD$(1HHL$H|$H$HD$HD$HD$0D$D$0HD$ (xHf8HWHD$HH[HD$C1Lt$Hl$0Hx&HIV)LHfH9)1H/)HH?HD$DHHpK&HHH H5nH%HD$DHHp &H5nHw%DLH%H1L)H(tf.@.LL`8IF@HtHLt$IF8H;LVH|$ VDHDLD$LHH@`H0IHHC1f8Lt$1HLHf8EHx' Hk'1Ha'HT$LHHT$LLHM9tLLdE1fA|$tJI$1HN,LŅIE1LHP ŅAD$ID9ǃ HG'H߉811LH!Lt$DHD$HHP8Hp@kŅUH&H߉9D H3&Ht$PpHVlHsH@:HHBuH)H"|DLH#fD1H6 ff.AWAVAUATUSHhdH%(HD$X1HIHHHf8IILH;LQIHL-SM&HAD$SLLHLD$H߉Hr`LH6IHHD$ 1HHHD$ HC1f=f=4H$ Hr$1Hh$1H$H$&H$Hw$1Hm$HT$HLHzHT$LH߉D$M9L$t LL$iH|$H&f}E1+fDI1LHP x,EID9HE1HNHLHUHH߹MAąBDH1~LF!A1HAH ]nH5]H=^H >nH5\H=ff.=u#SHu u1[fHƃHZuHHHt"MH;Ȟ1[+=#C1C(u_H[fDHPH IH= \LDH`HD1贮$H`H=[1莮ff.AUIATIUHSHcHy HHIEx wz1HtL|߃A<v2G< wHu&@_t HH"HL[]A\A]铻HH9uMtHHLAHH[]A\A]ÐHH]UHcHSHHX;"yHHT$HT$HHH[]SHcHHyHHT$HT$HHH߾'[ƺfDAVAUATUSH@dH%(HD$81HW=#HHIQHf1fA<$ {1HLl$ I<LHLLH<HuHKLH1HLHHu H LS1HLAA$1HL$8dH3 %(u|H@[]A\A]A^DfMD 1HuC1DfNH]U1H=X胫IfAWAVAUATUSHdH%(H$1HE=#HHIIA} EHt HJL3HAf=f=z$Mt AD$$L} LIv`LHLD$(H6HIHHD$01HHHD$5HC1f=f=gHH1H1HH&HH1H$]HT$(LH1HsHf&HYHLH?uPH߁1H$H&H HHuTHe1HH&HHH1HHT$(LLH1AƋ$HHD$fI$1HHL$LLL$2L$1HILP HL$HH9L$uL9} tLE(H|$A}u"1HN@1#E1H$dH3%(DRH[]A\A]A^A_f.HAf HCpsH$HWH DH@:HHBuH)H Z1H&1HcHt$(HH3f>5t$(HiHcT$(LH 1HH&HHHuPH1HHy&HlH_HRuTH1H=H0&H#HH 1HL;} tLH|$wAE=#ǃ+E1C1Lt$PHL|$pLH1H LHHuH L1HXLL3AEAA}AAf1HֹH NHW51H=RK fDHWbH=mR1&HhHo f.1HW"H=+R#DAVAUATUSH@dH%(HD$81Ho=#HHIaHf1fA<$#{1EHt HCHLt$ IH LH1H! LHHuH LHk 1Ha HT u(H LA$1ED$fED1HL$8dH3 %(ubH@[]A\A]A^HCuC1D뱐NHV%1H=XP}fAWAVAUATUSHHE=#AIHeHAEHt H#HIHIH MHE1EA$f8w.HL$8dH3 %(DHH[]A\A]A^A_HAEHt H_?HC1Lf=f=HHH1H 1H&HHHAuHL1H1H&HHHH1HzHm&H`HS1HI1H?H2&H%H1HHǃLHAHH.fx#HHz&H@x&zxHRHH@H=#UA $DEHPW1H=1J1H6H'NHOŧH=I譜\HP1H=I脜=]#aDD$L$ 1HPH=IEAAI.AH Z H5fIH=KDUSH8dH%(HD$(1H==ƞ#HHHEHt HJ;HHf=3f=C1f=cf=H HH1H1H&HHHuH$ǃ HH߉HL$(dH3 %('H8[]fDHHpHJHsf.H@:HHBuH)HC1HHuHW}@tY1HH@1HnHNHNŮ1H=(GfDHkHE@&fqAUATUSHxdH%(HD$h1H=R#HHvHE1f8w)HL$hdH3 %(DHx[]A\A]HLEHt H8HC1Hf=f=cH.H!1HI1HJ1H@&H3H&HuH1H1H&HHHHF1H1HHLHH3f>Ld$ HߺLHuHLLHHuLHǃHAp"HHt$@pHFHsH@:HHBuH)Hf1HvH&HhHW fNH6K1H=DӖhAjff.AWAVAUATUSHhdH%(HD$X1H%=^#HHAAMAAuMfA|$H0EHt H5HHf=f=%C1f=f=LH7H*1H 1HV1HL&H?H2H%uH1H1H&HHHDH߃ Q1H1H&HHHDH AǃHH߉HL$XdH3 %(gHh[]A\A]A^A_ HHt$@pHDHsH@:HHBuH)H}1H薨H=NHH1H=PA fD1H1HHEl$Et>I$HHr0H>HAUH HHHr0H>H9uIHLCHf8w}Lt$ HL$LLHHuLUE[1f.I$HL4HL蔤I1LHP A9wHphHKmfDIHnHLHf8wiLt$ HߺLjHHzLLHHuL:C11HXHphHff.ATUSH7HH?HE1螥t-=#HE1f=tFf=v E@v D[]A\D=#tHFH=>1譑HEHt H1HHC1HuHhHH#HAH*MHE%1H=8>fDAff.fUHSHHKt EH1[]ATIUHSӉFmuhHEv,E11fw[]A\ÐLH襤[]A\fDfvf.1E1[]A\fUSHHt%Ht HH߾H[]H M2 H5<H=U?ff.fAUATUSHuJFHHIIͨu!LLHCH[]A\A]黴H50'CH KM: H5o<H=DATUS>HHIHFfwAuHU8Hu@LC[]A\3H50Cf.tf恁7CHU8Hu LCn[1]A\H `LF H5;H=uC8AVIAUAATEUSHHdH%(H$1=#/Hf=tKf=vD$@1H$dH3 %(hH[]A\A]A^DH蛾C1H1At$H@HAH AHEH<H/H'ODA&HwGJcH>DA&&H GDHcH>fH<H= :ȌIcLHYD=#foLD$P)D$@Ht$@11HhE1Hl$ Lt$f|$ tF1ҹiHHt=#`A&CHGJcH>1ҹHH΁u|$ uHHtHL At$A|$UH3AL$dMIT$HA8H~ 0Dd$foK')Hdy,'01/0D$X2/03HD$P)D$@fT$\D$^foKefD$P)D$@@foXKstD$RfL$P)D$@AAĉ#f.H+@1H=8؊=#:H[;7H=71詊FFD$RHl$@fo}Jf|$P)D$@11HHaHYIvfoRJD$POFFHl$@)D$@A>L:H9LDHl$@H H:@H14A>L:H9LDHl$@H 9A>L:H9LDHl$@H 9A>Lt:H[9LDHl$@H z9{A>LM:H49LDHl$@H 9TANfoNIfDD$P)D$@Hl$@OND$RHl$@fo2Ift$P)D$@A>AHJEHcH>EHl$@H N9H1[A>L8H9LDHl$@H 8Hl$@EH "91Aj#1A O#j1A4#O1A#41A#1A@#A=HBDJcH>1A#D#1A@ǃc#~ǃM#hD$1A@r#‰H 7H=31j0Hf8vzUSHH/uzHC1f8wDH1H1HHH߉H[]1H>@11H56鸴fHf8w"@H`6H5 ;HD11t@USHH[HC1f8wtH1H@tHH1H1HHH߉H[]1H@1H6뀽ff.fHf8w"@H5H5I:HD11鄳@USHHkHC1f8wtH1H@tHH1H1HHH߉H[]1H@1HF뀽ff.f=#ATUSHH1f:t []A\HYCDHj HǃHB cu^C1H߾q1HH;H߾.H[]A\"fH'4WH=]01YHDHh LAUATUSH=G#LcHo#AH=M#LHHHrHt$H%#HJHH[]A\A]H=#H9HuH-\X#\HBfDHH]Ht;EA9uH=ā#HHuH=#HߵHth@H#H J `H hH5:BH=;B躳f.AVAUATUSHHpH(HCՅLcHm#LcLHfoLHfo G9L%ހ#G0K<Kf$t)f'ff.f.f.f.f.f.f.f.fPtkffww=fZ,f 1f91ff-w+fff$Efff!Eff*f@v3fCfD1fBD@f?f,R1f/1f)fDf 1f"fN f'vr%f v0f)f1f fCf 1f,fmv;)fXfH1fff%f1fmf$wsfw6%ff1f@f f 1ff4uv.f<`f@U1f8fDf,tQf0+1f(@f-%f1f"ø@HHHHy 1f.ATUSH`HAzHHE`H8HHE1H fP HfpAHp8EXHHH@"@ HPHP(HsHHPHH8fxX@ZfD@@@BHPHHP`HsD[]A\fDH蠭HE`H _<H59H=9GX~5UHS1Hf.HE`H1nfHHXAUATAUSHH财HPH+ƒ cH=HAHc H>H YAs 4qs4qs4qs4qs4qs4qs4qs4qD;A,A@A-w:L-BItfx&HSH@8>uHH{蓦uEdHD[]A\A]H @H @i@H q@O@H a@5@H Q@@H A@@H 1@@H !@@S H @QfAWAVAUATUSHHHHt$@T$ dH%(H$1H{8D$D$Ht D$HC`=;o#HHD$f;ED$ =k#D$ -=o#HC`L$ H8t$/HD$fx HC`T$Hxn#G0T$t$n#1ۄfH$dH3 %(oHĨ[]A\A]A^A_t$[HC`H89fDHcT$H tW#HfoGHD$x #@!H5y+H=譞H-@#IHeH jHH Hj#H A+H Bj#5H=.j#H5V+bHtH D+HH j#H=i#H5/+3HtH +HH i#קHi#HGH=i#m#2Hi#1L=i#L *L5TV#L-*L%Z*uHHtHl#tMHL꾥 LMMDHHI 1iL F*Hu@H$H\$H1L5^HD$ HD$`HD$0HD$pHD$8AAAAMcK4HMcKILL苡HT$(UH|$8dH3<%(u H@[]A\A]A^fDHLޑff.vVw(txu"#FtpDt`vt6-DfDc#Df'f/tfD%dfDATUHS~Hw9FHaMHcH>F1҃$=w HRSHECfvH RqHރv'ct"fv =1[]A\fHfv6!H0AĄtfDH(HH*Auf Hs0H f.HFBfD賷CHE%軸CHE fvACH QCA0f%@?CC軸CfDH(H11HH11HH 11HfDLcYHL,H}L`HC(HEC>ff.f(wGff.fAWAVAUATIUHSH(DFdH%(HD$1=lX#FAw(H KJcH>L<HM8A$)=X#\}LuHEdADImdMcL92IHLLHUdHu(MMLLÅyHT$HT@1HL$dH3 %(H([]A\A]A^A_fI$tkH}(tdHcHLLSE=U=t=u}"wU 9Uk #fDDmA9IcLLD) Hc1LDDEd1 f.E1ۃ$=LHMH;@L0؅L8HLpHc؅LLmH褵HHH1HIILHUdHu(LH$Ld$D$;6@HcLL]dofI>IIUHMIP LD@-/U 9UUDI>EdH蠆I@NH6O,H=O%RDEH7O/1H=OQU193)Hc1HcLq@H]HLLkLвHsL迲I$C f8vHCHSH3GH3GH uC L艳Hc1LvI}藅MHH:LHIEJ HEfEd1hfDXfDKĉ@UHSHHw{w"SH FHcH>HHuf=t=f=vSHKPupH1[]H薸Huf=uËCPރvcu1H诸HufDH蕸HŸmHHhoH1[]fDAWAAVAUATIUSHH8nddH%(HD$(1=R#yYC<%v+<<HLt1wD<Lӷ1V@HLDL$LcuvKE1LsHIDL$vMM6EurHs(H~0ME1tVLD$ LLDL$L\$LT$qLT$L\$IDL$HD$ MtLcKM1I$f8=Q#owRHoDHcH>fM9MGEtCPރcDLLT$l@LLL葳{u MM9ttx1HL$(dH3 %(H8[]A\A]A^A_HCHcH>fD1L1fa1LN1f.L{Eu I$f8wCPރvctL胵1F@1MfDCE1$=wHqGL,@LLLq@T$HSJ9H=JLkdDL$r=O# HwJ:H=dJ1LDL$fEHLLT$IDeDL蚴-DM9LLT$MGA踴 M9LLT$MGAشCE1$=HUFL,LT$ILLGDLLT$nLT$LIrLT$LIrI@@LLT$LGDSMILLT$LGD"f.1LVHHU>H=H1DL$L\$LT$KKDL$L\$LT$PL{SHEP0t L^1LOLLT$8H5lELH5XELЯLT$ F'H @EH5GH= H|UHSHH˪HC轪HC貪KCQL8H []ff.@#fDATIUHS]uEd1[]A\H]Hf1CfS C"UUSfEu 1HI9t'I1HH4HP yH[]A\A]A^A_fMvMu1H荩1fA15AMt$HHD$#f.1HHBH9\$)IHL<Aw褨Aw HרAwH ILHPyH[]A\A]A^A_ff.fD1ffDfDfD$1w H:8F[wH5HcH>fw>fu,u @t ~Hu`1D1tbf.t11D3t1.x11D@1@I1t8~Nf1øf.IvIAP6lvcH#ueH=c#A@I8LA@dA@1A@A@ A@d@bweRH5#H#HFILA@A@dA@u$$wH7A@A@ A@dÐjH5.#H#HE뜐EH5#H #HF{H=#A@I8LA@d%A@fA9H=#vH=*#I8bLA@A@dA@B>H)#@SHIAf=vBۃ w H3HcH>u f=DLHH,7DB8ucA"Aw.H3JcH>hACAC [@ADLH|H6DBfHS`HIC(ChACYClAC]s@[5DA[Df;oAC[ACfDf;OAC[ACfDAC[AC fDAC&[ACACdÐACo[ACACdfACm[ACACdfACn[ACACdff;AC[ACfD[fAC@[DAWAVAUATUHSHH8dH%(HD$(1CEdAǃ8H踚HDD4$訚DH4D PfALeHEoD$D9Et$AtcMT$H߈L$EoLֺDD$DL$L$裚L$DL$L$DD$A HH@`HHE(A@A(^xA+nUH͙EE<?AC$HSC$D,I<$HtDfDous=DfD&ucD3f2f.1f.~ECDt{<D0D@@D@;f:f.4f.8f.Bf.zf.Af.Ht Gt tDHGffpPH 5H51H=1eff.SHwHHE1E1HjlZYtH[ÐH!TdH%(HD$1HT$D$d1҅ykHL$dH3 %(uHlHt~ ^fDH=TAWAVAUIATUSHHH|$HT$,LD$dH4%(H$1HD$@AM=5#A L1f.H@(HHuHlHH$HHH_‰D$(H1DHHLhMm(P@MuHAiDt$(EE‰D$$HD$`HD$0t$$lD+D$(9Dl$$Dl$(E)Dl$HD$\E1D|$ HD$CH$MIN4AF+D$ L$I9L9vN|A?xIL9wiIHHEHfD1ɾHfHfpH9uT$HHgE,$AU^AE1HD$D(A=3#A)ND$NIt$,IHD$8HD$LHt$0LﺀA}1ҾthAŅHL$A ǾD$\cHL$ADD$\(pcHL$ADD$\KcHL$ADD$\&cHL$AD c=2#D$HT$HD$8DPHpfu}=f2#LHD$@DhHD$HE1ǀDH|x?`HuH<$cH$dH34%(DOH[]A\A]A^A_DKgDHD$DDDD$8#e=1#DD$8eAstCD_HH $HDIHHoA-fDH$@ qE/I @D$$D$f8HD$8d=>1#tHHN,1H=-,?.gT$1HdE$$A`[E}HD$D Ak=0#A)NDA*NDHD$\E1D|$8Ll$HD$HD$XHD$AMMD$ 6@|$X,AEAFusHII9NtA>xfA~tLD$HL$D$\ctA?|$XYc=0#D$XAEtA>]LL$ AHH$p HVP w H\HH $HTIHHo I9AD|$8H=s/#H+H=c*1s,vfDb=1>H=-gH H5H=PfSHHdH%(HD$1{tHD$dH3%(u9H[{HL$AD$QC`WSHHdH%(HD$1{uHD$dH3%(u9H[{HL$AD$kQCVATAUHSHHHHt=PEt9}H[]A\fDHD$ DD$ H[]A\HHHff.AWAVAUATUSL$HH $L9uHH<$IH\$0LdH%(H$@16HLv= #A|$1ҾUD$d|$H$Ll$$fDt$Åt5fDD=#E\A[EtVEL$MD$1HDƄ$bXHx-LDt$$D$(^RyT8t|$GM=0#21H$@dH3 %(ZH@[]A\A]A^A_?1HDNƒA1@$u;Lc€=#fD$.BƄLl$Ld$.H}LL*QH<$HD$DH/|$$dDMH<$HMH1LLL1PHHtHƹ H={tcHHtY1LLPHIH7 #LP1H=fDDFD$$MHH[1NH=EL$$H RU1H=iHHRH=hJ@N1 fDATUHSI=#IuI$HcH[]A\[H H=1ff.ATIUSNI=#Hul}(vZf.HRx4E$U,)xct9LNHEHHcQ]$[]A\[]A\@HX}H]H=K1LuH H5,H=CFATIUS~H=#HuHcLHTy[]A\DH H=1ff.AVHAUIHATUSHdH %(HL$1HH$Ix_HcH<$HH<$H5`HpGHt3=4#H,$HE1GIH9t7HGDE1HT$dH3%(DH[]A\A]A^ÐA}t L fDH8uH5LuKtQ*LtJ.LIdJHMt,Ht'x.t!I9w*H?JHtsf.LHE1DA HH~91H=03H,$f.LHE12KAH{.IHtxzM)tLLHJuL1HLHHHPHI9r.Kt%I)K|4HCuE1}.AUWJE1Hff.@ATAUHSE=6#Hu!HHt1[DH]A\VfDHs H=1H H5H=1BDSHHHtHHǃH Ht{AHǃ [AWAVAUAATUSHHxH?dH%(HD$h1 2# AHH\KHHHHt <HHH{FHHpXH>LfH5ҵLB1LHDHH@`H8t\HDICLHyGHHHL=%Hr`Hm@} L(G1ҾH MHCIHEEH=#DIHH=#CIHLDHL$JHHHhH9uHH8H1ҾdLlJLLLHHHppH>H=n#(LpELcKHf8E<W@LILgEAǃ=#^L=MtLILGLF H(>*L=~L#I$HIH߻IDŽ$JHt>=#HL$hdH3 %(wHx[]A\A]A^A_fH=#I6#H=#jJ>H1L=VfDH=#BIHt$HE1BH3 @LHL=q@=#SH5O11GFH5FEH5HHH*##HE@DAWAVAUATUSHH $ }#dH%(H$1sd=#t[IAILH=#%H=#>H-#HtRd8 fHmHt@H9EuH=#?DH$dH3%(gH[]A\A]A^A_H#HD$ 9#H|$ tL|$ DLL1LH#L3H71A-IH$L|$(HD$HD$0HD$DL|$Dź1H E1LMwIfD=I"[]A\A]A^f.DcdD-$"EHH\GEtZf="tHCHH龇HGD="tHCHHHDs="`HCHfH HZ[H=]A\A]A^=a"HCHH龷HD[H=X]1A\A]A^NfD=!"HHw bf.A|$Hc>4IHt&HsHIcH'7Eu^[L]A\A]A^2.fHHEe[H=]1A\A]A^fHCHHG HMHH1H=utH H5[H=Z3+H H5<H=9 +@SHG(Hh-HC[ff.AUHMcATUHSHHHHLA|$ t3HU8Ht*KqރvctKDmH,€}uCXЃH[]A\A]Hcu LTHt#I<$HcU Hu5E AD$ AD$1뾸DAWAVAUATUSHHH$Ht$HT$(L$LD$DL$HD$ dH%(H$81HH|$ "IHW0fz1L51bH-BL=L-pBH9wD$DPEfDT$0fzL1E1HAAH,A9\$@It$8H[HfxL$H|$EHLD$HP EXD$UJރcjDH|$@UH'uR9MNMH0H3A q"AFIfD|D0\IT$0BHA9CE&EFDlD0FdD0LfA9JDD0 @s(HDdt0fD9u1&HD$ ۉ(D$AEH$8dH34%(HH[]A\A]A^A_@EH=GlEX+bD$H1EjHEDg*H=mXZD$*fdEPރv cDDAHL$EH,H=i "x@HHI龗(H=?HHz HIE@X@IEQAGIRMEL1AYIT$0 r"AZH0H ޒHH1A@ A@YDHD$AEfAN,EfAfE9AfEtRLT$0DMK|BLй9HH9uIAIuAGMl="NKTMD)DlD0IAjI9uEDkD+|$ I"^CIAECHL$(HT$T$DLы$=HH '(PHHPL }1L2H=TIT$0A[ "[fz0HHLG)PH 1HH=L jIT$0_ d"AXfztG1EE1-H111H=E1J #"8fDD$fD$0HD$ D$+DEE-H%H=`1 "E1fD1EADH0H=="HL$EH$0H=XDMپ.HH=1`;LH1L$/H=:L$)H H5}H="H ~H5^H=^"ff.AWAVAUATUSHH $HdH%(H$x1HHf81IHV0H|$pE1D$<AHHD$pD$8HD$0fz~HD$@H$HD$0HD${fIL9D$Lt$0Lm8L$LIMIUI4ALl$0L_$ H4$fATH|$0&HS0E1BID9HJ,EX@u{$uuքxҀ="H$HLUD$8H|$0HD$#HU81LIH H@H $1H! tM€DHqHDΉ@HH+ $IEIL9D$Ll$0LW#, IfAMAEHKH9H='HD$(IMHCLD$0H|$ H HH10#H|$("|$<HD$ HC1H$xdH3%(HĈ[]A\A]A^A_DD$8<|$ IHHT$0HHHT$'|$<HT$D$D$<Lt$0D$8EH1H|$(HT"|LL$(fHFH|$ HHH1 "fDH|$0!HD$0H!D$8D$BfHD$(|$<tH|$0f!@HILAULD$(H=W1HJ^_:%I$LHz Or="MH;1H=$I$LHz *N'=%ff.fHAWIAVIAUATL$USHHHOHo(HT$NfHPHWAT-IAWHS(HK HrHs(HC(1HKHHHS(M9tCLk HsHH)L%tAH{HGH;GrntLk Hk(D$H[]A\A]A^A_DHD[D)]A\A]A^A_1AWHAVAUIATUSH8Ht$dH%(HD$(1~ H8H5HDHAHD$HP1#HD$$HD$Ht$1ҹiLtMMA~_IHAF(1fA|$AD$(uEf.#vAwIH@0AWPAD$H9I$H,LHƹH@@@u @DL@A HA9AD$fHƹH=@@@tfDHƹH=pu f.HƹH߸@@@PSHH=HɅ}HƹH=@@@@HƹL@@@@DHHIcF@I^8fA}H@H,E1Dd$MMI$JPHHHrރvctzH9weHH9{tHcPdH{HL$(S HHT$ HtHL$(H{HT$ H-AD$IHD9xDd$ @H ="A1L yL5BIF0PfdHJA~$1HPH DHH@X@uu<HH9uL1Ld$8AIF0fxfDL0As LdAsLAHHHLPCPރcIHS8MLH@`H HH0[IH_Ht$8LH@+AHT$8LL=HC8HI9tL IF0PH9HA~$HSXuuفuIsf8 Lw@fIIVMLH@`H HH0IHHt$8LH1@HT$8LL!=IFHI9L Dd$D$fDIHHN79H=bDL;fDI?h AD1fMLH1g1H=Y(IF8HA;n@HcDD$ht$xHRL$tDL$lHDT$pD"PfHDH@1EQ5FH=RHgXZ\$HcIF8HrA^@eH FH5H=1D="ATIUHSUHL ÅxHL Åx I$f8t1ۉ[]A\H}0Wf/HJE111LL%sHPLfAXuJDHI9tNHHAD@AcD@ADAGABtADHI9uT3HD2A\="O(9&HHc貟HHE0H=X(1Hx ADApIHH1JH=hfD1HGNH=N='"tHvWN1H=)H}0O('="GH&NH=^*AWMAVAUMATIUHSHHH$H|$K<@H$dH%(HD$x1H;HT$HD$LD$( HD$8HD$0H`J 8HLIHHLHLHwHLLHD$ / HI9tWH|$0mHHl AH\$xdH3%(DHĈ[]A\A]A^A_DHl$@L1HAŅH{ MtfH|$HL$I1LAH H|$0EsHD$hH$H|$PHtMHD$HHT$@F@H|$HAfDH|$0nfA UH DL >SHHEIHLDHH5 1T xBƃHx/C1Hu'H9Hp1H[]f1uVATIUSH0u+LH6H1[]A\f.ff.1uFSHu#H9H߾1[f.[ff.AVLAUAATUHLS LMI$HE;l$1"fHLHD9ks6IHI$HuL LGx[D]1A\A]A^wD1C LHC fC LxH[]A\A]A^L 1I$LLAD$ AD$ fAT$ fDHtpHtkDAwIHHuJf.HHHuHDHHHXwHPH iH5H= ff.AWAVAUATUSHHdH%(HD$81HNHLHAHL HD$ LH$IH苦uq=:"HUHHz #NHwL/ HǃHD$8dH3%(HH[]A\A]A^A_ÐLMtlOLM4A~ AV 9A9Vz)ItH螬AV 9,A;V"A~SE~fAfACED9E~ A9="LǃHǃoLAWH;s>HL4Iv-ASALH!I~HE15L LtEULAV M~AF u =2"1I>H)L AV AV 9rE~LAHHD$HHHv L;pxILHHI1fDH@xKLD%rIHtsHHHunHHHuL:,D5HLH=~AV AF NE1fH踞LEG IOEG HdH=m'gAF LAljL$LHHD$HH4fE~Ht$!Ht$L$HtFH D$,D|$$D$!<t\<tpA<|$!="Hr H=1AHAG=nv(A~$SXvAF&AOf9;D$(E;~ E~ A9AAF E~ H $AHR H=LHHL$LHAF Lǃ LDoIHHOH SH5dH=u'H H5@H=H H5!H=H H5H==DAUATUHSHHG@L'fFM$LHkxHt9 I$tj1I|$H{HLXnHCxHufHCxLPH71H[]A\A]fD1HHL%H{xtM="tH8H=1xLHnH޺#NHx OL.fHu,I$Hu }DHHHuH*1SfEEfEE E EEE H8mfDI$HCxHHmff.ATUSHH dH%(HD$1G@@t$$SfD$D$D$HD$ kHH;s@HfpHu ]DHHHuHE1@t!Ht$dH34%(Du?H []A\DHHHfHAf.AVAUAATUHSH H?dH%(HD$1f?vHHLDSD$AAf$E@fD$D$D$ DvHøHtuE@HKHfCAEtCNl#HEDs HH}HHuHHHuHH1HL$dH3 %(H []A\A]A^AE1DfH$H{HHCDHtHtHHH)H)DC1҉փL1L79r(DHWAVIAUMnHATUSH/LLAHHt+AV@f;PufDf;SHHHuHALLSnuLVInL#NHx mL,Ad="`L []A\A]A^HHHHIPLHIC HTC AF$IVAAF,AV0SA;xI>tHH|@ AF@SfUfEfEAEEA] IH(IHHu @HHHuH(HAF,D1LHHHL[]A\A]A^Ht!H=1臿HfHu1Dff.U1SHHHH2H;tH߾YH;HH[]ff.@AWAVAAUATUSHHLH?At$$I$H[HHS(C LmAHs9C1HCDpC(HSffBHHS ffBHC1fPHf8w@E S(IŋC4AT$ tRH1LkD{(H[]A\A]A^A_f.HuHC@@E ;I$HLHLkH;D{(tD$ 蕬D$ s@)HAU I|DAC HsC(9fATAUHSHW(;W w7C4HuHK8C4H]HMUDeEu[]A\fD1 S(@DH1[]A\/"ff.@HwHH@(Hu HʋN HփHH HuWH)fATIUSHoHH}tFHHhHuH;HHMHEHE HDHCAD$C(E k4uHC8[1]I$A\DAVAUIATUSWL'tGOHG0fDH8Ht'H D@ D@t8t9H vщσfIEAl$4ID$8ImDHH]Ht|HEHLI]eAƅyHHHtHHHHuI$HEHIuI<$}I<$H[D]A\A]A^ÐE1[]DA\A]A^ÐO1t,HHWp(HHtR HHHHu)+wfHWHHq(Htf.R HHHHuWGHHH)HHf:HGIfUHSHHH9WHF_HH+tH)]H[]f.fATIUSHwHoL9U(HMHHHH9Wuv} WAA)L9uFDE(9r#)Lc HHCDHK[]A\fD1HU HME(H @H59H=H !H5H=vH H5H=Gff.UHHSHH9UHuHFUHH]H)]H[]f.HGH9rH)HwHGPH ],H5vH=xUDATIUHSHW(H_ HHHW(H9v3HӸHHHHFHHHt,H] HU(H9v&HEH)HH]DHHM[]A\fH QH5H=f.AWAVAUATUSHH $HhT$(HL$ dH%(H$X1HD$PF4IxHD$8HD$HD$0"HD$@IHt$IH$HD$8M1HD$HD$0MHD$HD$ H)HHT$8u HHLd$HHHD$8HD$HD$0IGGH|$H="IGHH|$8EIWHD$HHLAN4LHT$HATLL$LD$HL$ T$85>HD$XL(HXZHt$@I+wAAZH$XdH3 %(Hh[]A\A]A^A_@ D$,AHH=1DL$,Tu Ht$0@="Ht$0H;t$H\$8Hu)HD$IHD$0JHt$Nf.H|$HHD$IH4Ht$0 H;t$H c_H5H=LH\$8변="MAăuEtIE1ɺa LHx uEtIE1ɺ` LHx k+zDL$81HH=莴=g"Ht$0LD$8HHDH=V,1HH=216-ff.UHSHHHSHtHsHUtx HcHy۸H[]ff.@HHWHHwfF V()t%HVHHwHHWHOHG PH H5[H=:f.HUHwHHWfHuHwHHWfUHHSHHHHwHv)HHt.HS 1HC(HKHSH[]@H>HHT$HT$HHEHuf.@UHSHt8~4CH\HHcHiH )ˆUH9uH[]SH>H`HX1[@UeSHHH߾~H߾qHH[] AWAVAUATIUSHHXHdH%(HD$H1Hf~ HHHfH0HFxfQHNyHpHLciH>pHAHHHD$HD$(LQHHUHt$(11HdIHD$(HCIFHHD$"IIDHHD$IH!Ht$LHHt$LJ<(HD$HL$@HT$8LHt$0H|$0xIHcLL$HIeHL$(|$LHALL$LL$A6LNH|$(THIcC1HH5H$HWDHHLH HH5ھHH1HDH{HLHLH-I<$LzHHǀ(HL$HdH3 %(HX[]A\A]A^A_HHHpE1HD$H9DL|$(LL LHfL|$(E1E1E1E1E139fHHt8H mHtHH jHPHHHDSH>HPHH1[@USHHWdH%(HD$1H$ ȈD$G ʈT$W ȈD$G ʈT$W ȈD$GHD$ ʈT$HH HD$dH3%(uH[]ff.AUATUSHH $HHHIIdH%(H$1HHHھLI|$HHMHLI|$HHMHLH$dH3%(uHĘ[]A\A]5DUHSHH8dH%(HD$(1HH@`LAz0tsHHt$LHT$1HL$HL$HHD$(HD$(AB4PLL$ LD$(3ZYHtHD$H)HT$(dH3%(uH8[]fHH~ff.AUIATIHUSHHxdH%(H$h1Hl$`HHH=LHFHHt\IL9&HHL[&LL`(H1HN1H$hdH3 %(uHx[]A\A]AVIAUIATIzUHcS2HHt+IH}HcLHESHuHHcL[H]A\A]A^AWAVAUATUSHH $Hx fH$H$LLD$IHIDL$HD$dH%(H$h1))C)C #Mw@uwHCL$`A$LLL)HSHLDŽ$pAAGH$hdH3%(DHx[]A\A]A^A_DŽ$1LHDŽ$f$HHFHYHL$HL$L$H01DATAHH9rHD$@LLD$L$`HHD$HT$LH=|LD$Ht$IxHT$IOH=OHHLDŽ$pAG\L$`Lf$hH$pfo$`HCHD$@H) HD$-HHl$H-LHHl$H$-H|$H/HHHD$(MH\LIFHIHD$ `LxHL)LHL$0ALH=L$HD$8LFLLMfLT$8IMt/HD$8/LD$81H0LfHH HI9wL$`LLLLHI HD$8HD$0LﺀHt$ H=HFmHLD$8L$Ht$(LLLL$0L$LHD$ LL$0LLHT$ ALHT$ 1LELt$HLIv`HtFoH)HPHStT$LHL2H|$HHtA$$E1NACf.L$ff.AWAVAUATUSHdH%(H$1HL$HպHLHNTLMSSPH9$HsrHH HRHAGLHA4="/~ A/HD$ D$ )1HHc="LDl$LHD$PMtXIHLpIG0L(HHHT$HL$J<*HHHt!HT$HLHHuLHAH|$H$dH3 %(DHĨ[]A\A]A^A_LtHt$LHLIHtHL9rDHI9w8\uxuHHLLH)HD$0HHL$LH)HD$PHL$HL$LPHD$hHD$0PDL$0LD$AXZEH|$PL$ DHD$ C1H5H߉L$<HF HD$HM|L|$j H] Iw@H DHF DH; IwXH L|$HED DHMg@ @H L|$D|$HD DHE DH DHLd$ DH DHMf 1H 1H L$AyZDE A!!D D|$G7yZ AA!!D ADE yZA! !D ADDyZA! !D ADEyZA! !D ADDt$A!E6yZ !D D|$DEyZA A!!D D|$DEyZ A A!!D ADEyZA! !D D|$DE7yZA A!!D ADD yZA! !D ADDt$A! EyZ !D D|$DEyZ A !A!D ADDt$A!E6yZEn !D ADE yZA! !E4nD ADEyZA! !1ȉD D|$DDt$ 11֍nD1DEnщ 1Dt$13nD1 1An1D\$11l$En1ލ nщ 111ً\$ 1DEn11DD3n΋\$11DnDEnщ 1Dt$1E1nD1 1DEn111EnD1DEnщ 111D 1OD‰GGOw []w A\A]A^A_ÐH#EgHGHHܺvT2HGAVIAUATIUHoSHGHHHW?tP@)HALM9A"Et HLLM)I?=IFHLl@oHLH@EoKMoSU o[]0L9uA?DAr\IEHMHID$DITHTH)A.I)r1ƒItH49r[]A\A]A^f.AtAUAT$tATfT[L]A\A]A^HIHJT.HwHJT/H)I)1҉уI<H<9rfDIAUAT$ATT>BD.BD/vBD.fBD/eff.fATLgUHSGH?LHz?)ƒt19rLHfCID$0AD$AD$ HCLHߍHSPCTHto MH{H1HHCPH)KXH[]A\f.71)育돋O AWDD_AVAUATUSD6^nAxj׋G3G D!3G V\$ЋW^$DD1\$!3WAʋN Fp $E‰L$A1A1DD^ !D1G;νD\$DEDVDT$A!A1EE|A 1AD!E1DD*ƇGD1D!A1A1DDN DL$E F0D!DnA1D1DGFEDf Dd$D^(A!A1EEؘiA 1AD!1DDDʋ^0D1D!A1DE [D 1!D1DDN,A1DL$G\EA!Df8A1ED"kA 1AD!1DDN4EqDD1!1DE CyD 1!D1DDV<1G!I!1DDD$ Eb%1!1DDD$E@@1!1DDD$ EQZ^&1!1DE6Ƕ1!1DD]/։ 1!1DESD1!1DE ؉ 1!1DDD$E01!1DDD$ E!1!1DE7É1!1DDD$ E 1!1DDD$A0ZEAA1A!A1AA㩉A AD1!1t$DD1!A ogD1 1D!FL*1DD$Ή1AA!B9A1DD$A AD1D$qDD11‹D$ 0"amD1G 81Ɖ11DDD$ ED꾤11DDD$AKAA1A5`KA1AЉApA 1AD1D1D1A ~(D 1G'111DDD$ A0AA1A1AЋT$A2A1D1֋T$ 9ىDD11D11C|A A1A1AD$A0eVĉA1D1AD")Dt$ D D1A *CDG# 1  1DD9Ή 1DDY[e\$  1DE Dt$ щ1DE3}D\$  1DDD$E] 1DEO~oA AD 1DE ,DT$ A1ADE6CDt$ AN 1A~SADEAA A1A5:ADA AD 1Љ3*\$D D1DFӆ[ ]A\A]A^ 1։ 1DƉA4A_ OW GOW H#EgHGHHܺvT2HGAVIAUATIUHoSHGHHHW?tP@)HALM9A"Et HLLM)I?=IFHLl@oHLH@EoKMoSU o[]0L9uA?DAr\IEHMHID$DITHTH)A.I)r1ƒItH49r[]A\A]A^f.AtAUAT$tATfT[L]A\A]A^HIHJT.HwHJT/H)I)1҉уI<H<9rfDIAUAT$ATT>BD.BD/vBD.fBD/eff.fATLgUHSGH?LHz?)ƒt19rLHfCID$0AD$AD$ HCLHߍHSPCTHto MH{H1HHCPH)KXH[]A\f.71)Ѓ_ÐHAdH%(HD$1HL$D$VtMHT$dH3%(uHATUHSH=HI2I|8HHt;uHHMH[H]A\fLHH³H/fB!UHSH Ht)HHHkHH蠪HH[]fD1HH[]@鷫UMbSH8dH%(HD$(1Hl$HiH$)Hi@BH|$fD 8ufoD$)$HHauHD$(dH3%(uH8[]aH8Ht$HL$H<$HdH%(HD$(1H@HHfQH9uH|$(dH3<%(HD$HT$uH8fDH|$Ht$foD$fffSH@H|$LL$IH|$ H$1Ht$HL$dH%(HD$81DA AA4@fGHHuH|$Ht$rH<$Ht$b8t&H\$8dH3%(HD$ HT$(uOH@[fDH|$Ht$)H|$ Ht$(8tH 4H5H=HdH%(HD$1cHL$dH3 %(uHHIHHJHH葬H(dH%(HD$1HH?HH1H)HHHfHHH9uHx#H$HT$Ht$dH34%(uH(DH<$Ht$:H|$HD$HL$1Ht$fDf HH9ufff.fUHHSHHHdH%(HD$1H|$dH3<%(uHHHHH[]yfUHSHH8dH%(HD$(1H|$Ht$QHT$HL$ f3  fH*YYXH9uHHD$D$tfWHD$(dH3%(u+H8[]fDH|$Ht$HD$HT$a蕪DUSHdH%(HD$1HHHHpuHH<HL$dH3 %(uH[](AWAVAUATIUSHHXdH%(HD$H1ńL$$H\$D$DL|$DHLt$AH1qH։AЍfA)։I9u׃0H<$Ht$MoAWfu MD@t AE-MoLҨH|$HdH3<%(u(HX[]A\A]A^A_LHHH$HT$:DATfIU1SH dH%(HD$1)$+t -uAL$I 0tzf't_H1HzfHfBH9uA< wg0HcH<$Ht$HHH$HT$IA $u@~H$HT$H\$dH3%(H []A\ÍA<wWHcfDA1<w7HcsAL$ȃhead == 0ii++ < buf->capacitybuf->capacity > 0buf->rows == NULLbuf->rows0 < nrowsdbinit(void) dbinit: out of memory dbloginfree(%p) 0x00dbsetifile(%s) dbwillconvert(%s, %s) dbgetmaxprocs(void) dbgettime() dbsetlogintime(%d) alivequite deaddbdead(%p) [%s] dberrhandle(%p) dbmsghandle(%p) dbprtype(%d) dbversion(void) freetds v1.5.16no OS errorunrecognized msgnoINT_EXITinvaliddbperror(%p, %d, %ld) _dblib_err_handler != NULL*(pformats - 1) == '\0'%s (%s)Invalid return codedbgetnull(%p, %d, %d, %p) varaddr(%p) varlen %d < %lu? varlen >= 0!"unknown bindtype"dblogin(void) DB-Librarydbsetlname(%p, %s, %d) encryptiondbsetllong(%p, %ld, %d) dbsetlshort(%p, %d, %d) dbsetlbool(%p, %d, %d) dbsetlversion(%p, %x) login->tds_login != NULL_DB_RES_INIT_DB_RES_RESULTSET_EMPTY_DB_RES_RESULTSET_ROWS_DB_RES_NEXT_RESULT_DB_RES_NO_MORE_RESULTS_DB_RES_SUCCEED??TDS_ROW_RESULTTDS_PARAM_RESULTTDS_STATUS_RESULTTDS_MSG_RESULTTDS_COMPUTE_RESULTTDS_CMD_DONETDS_CMD_SUCCEEDTDS_CMD_FAILTDS_ROWFMT_RESULTTDS_COMPUTEFMT_RESULTTDS_DESCRIBE_RESULTTDS_DONE_RESULTTDS_DONEPROC_RESULTTDS_DONEINPROC_RESULTTDS_OTHERS_RESULTTDS_SUCCESSTDS_FAILTDS_NO_MORE_RESULTSTDS_CANCELLEDdbresults(%p) TDS_FAILED(retcode)dbresults returning %d (%s) dbnumcols(%p) dbcolname(%p, %d) dbnullbind(%p, %d, %p) dbcoltype(%p, %d) dbcolutype(%p, %d) dbcoltypeinfo(%p, %d) dbcolsource(%p, %d) dbcollen(%p, %d) dbprcollen(%p, %d) dbvarylen(%p, %d) dbdatlen(%p, %d) dbdata(%p, %d) dbtxtimestamp(%p, %d) dbtxptr(%p, %d) dbacolname(%p, %d, %d) dbanullbind(%p, %d, %d, %p) dbaltcolid(%p, %d, %d) dbadlen(%p, %d, %d) dbalttype(%p, %d, %d) dbadata(%p, %d, %d) dbaltop(%p, %d, %d) dbaltutype(%p, %d, %d) dbaltlen(%p, %d, %d) dbsetnull(%p, %d, %d, %p) null representation set dbsetrow(%p, %d) 0 == "no such datatype"destlen > 0ret > -2dbconvert(%p) dbbind(%p, %d, %d, %d, %p) dbiscount(%p) dbcount(%p) dbclrbuf(%p, %d) dbcolinfodbproc && dbproc->tds_socketdbcancel(%p) dbspr1rowlen(%p) dbspr1row(%p, %s, %d) dbspr1rowdbsprline(%p, %s, %d, '%c') dbsprlinedbsprhead(%p, %p, %d) dbsprheaddbprhead(%p) dbrows(%p) dbgetpacket(%p) UNTESTED dbsetmaxprocs(%d) dbcmdrow(%p) dbsetopt(%p, %d, %s, %d) dbsetoptset %s on set %s %s set textsize %d dbsetinterrupt(%p, %p, %p) dbhasretstat(%p) dbretstatus(%p) dbnumrets(%p) dbnumrets() finds %d columns dbretname(%p, %d) dbretdata(%p, %d) dbretlen(%p, %d) dbsqlok(%p) dbsqlok() found result token TDS_FAILED(tds_code)dbnumalts(%p, %d) dbnumcompute(%p) dbbylist(%p, %d, %p) dbmnycmp(%p, %p, %p) dbmnycmpdbmnyzero(%p, %p) dbmnyzerodbmnymaxpos(%p, %p) dbmnymaxposdbmnymaxneg(%p, %p) dbmnymaxnegdbmnyinc(%p, %p) dbmnyincdbmnydec(%p, %p) dbmnydecdbmnyminus(%p, %p, %p) dbmnyminusdbmny4zero(%p, %p) dbmny4zerodbmny4add(%p, %p, %p, %p) dbmny4adddbmny4sub(%p, %p, %p, %p) dbmny4subdbmny4minus(%p, %p, %p) dbmny4minusdbmny4cmp(%p, %p, %p) dbmny4cmpdbmny4copy(%p, %p, %p) dbmny4copydbdatecmp(%p, %p, %p) dbdatecmpdbdatecrackdbspid(%p) dbsetuserdata(%p, %p) dbgetuserdata(%p) dbsetversion(%d) dbmnycopy(%p, %p, %p) dbmnycopydbfreebuf(%p) dbcmd(%p, %s) dbcmddbcmd() bufsz = %d dbfcmd(%p, %s, ...) dbfcmddbclose(%p) dblib_del_connection(%p, %p) /* dbclose() at %s */ dbexit(void) microsoftsybase0x0SYBASEparseonlyTDSDUMPtdsdbopen(%p, %s, [%s]) TDSQUERYdblib_add_connection(%p, %p) %s.%d/* dbopen() at %s */ dbclropt(%p, %d, %s) dbclroptset %s off dbisopt(%p, %d, %s) dbsettime(%d) dbcurrow(%p) UNIMPLEMENTED dbcurrow() dbrowtype(%p) dbcurcmd(%p) UNIMPLEMENTED dbcurcmd() dbmorecmds(%p) dbrettype(%p, %d) dbstrlen(%p) dbgetchar(%p, %d) dbstrcpy(%p, %d, %d, %s) dbstrcpydbsafestrdbtablecolinfo(%p, %d, %p) dbtablecolinfodbwritetextdbreadtext(%p, %p, %d) dbreadtextdbmoretext(%p, %d, %p) dbmoretextdbrecftos(%s) dbtds(%p) dbmonthname(%p, %s, %d, %d) dbmonthnamedbchange(%p) dbname(%p) dbservcharset(%p) dbsqlsend(%p) go /* %s */ dbsqlexec(%p) dbfirstrow(%p) dblastrow(%p) idx >= 0dbiordesc(%p) dbiowdesc(%p) dbisavail(%p) dbsetavail(%p) dbstrbuildcopy_data_to_host_varsrclen >= 0buffer_index_valid(buf, idx)row->resinfodbgetrow(%p, %d) REG_ROW/MORE_ROWSNO_MORE_ROWSBUF_FULLdbnextrow(%p) buf->current >= 0buf->current < buf->capacitybuf->tail < buf->currentbuf->current < buf->headbuf->current > buf->tailreturning pivoted row buf->capacity >= 0idx != -1dbprrow(%p) %.*sdbprrow select column = %d dbcanquery(%p) dbuse(%p, %s) dbuseestimateshowplannoexecarithignorenocountarithaborttextlimitbrowseoffsetsstatisticserrlvlconfirmspidnoautofreerowcounttextsizedateformatprpadprcolsepprlinelenprlineseplfconvertdatefirstchainedfipsflaggertransaction isolation levelauthidentity_insertno_identity_columncnv_date2char_shortclient cursorsset timequoted_identifierp`P@0 p`P@0 Дp`P@0 Гp`P@0 ВL<,L̖<|D̖L̖<|ܕ̖̖̖̖̕|l̖ |̖̖̖̖̖̖̖̖̖̖̖̖̖̖̖̖̖̖̖̖̖̖̖̖̖̖̖̖̖̖̖<̖̖̖<̖̖̖̖̖̖̖̖̖̖̖̖̖̖̖̖̖̖̖̖\̖̖̖̖̖̖̖̖̖̖̖̖̖̖̖̖̖̖̖̖̖̖̖̖̖̖̖̖̖̖̖̖̖̖̖̖̖̖̖̖̖̖̖̖̖̖<<̖̖̖̖̖̖̖̖̖̖̖̖̖̖̖̖̖̖̖̖̖̖̖̖̖̖̖̖̖̖̖̖̖̖̖̖̖̖̖̖̖̖̖̖̖̖̕L, LLtttttttttt̮<\|YYYYYYYسYYhhӲ ,״˴ _ԺԺԺԺԺԺԺԺԺԺԺԺԺԺԺԺԺԺԺԺԺԺԺԺԺԺԺԺԺԺԺԺԺԺ$$```SS5555SS! t]SSSFS/SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSwSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS`I$$$$ltD$$$$$TT2h2123h21111323h21111133313111113333333333333333333333333333333333333333313131333333333333313333133333333333333333333333333333333333333333333333333333333333112l2L22D/l242424242D/2D/l2L2L2L2L2L2D/D/D/L2D/L2L2L2L2L2D/D/D/D/D/D/D/D/D/D/D/D/D/D/D/D/D/D/D/D/D/D/D/D/D/D/D/D/D/D/D/D/D/D/D/D/D/D/D/D/D/L2D/D/D/D/D/D/D/D/D/D/D/D/D/D/D/D/D/L2D/D/D/D/L2D/D/D/D/D/D/D/D/D/D/D/D/D/D/D/D/D/D/D/D/D/D/D/D/D/D/D/D/D/D/D/D/D/D/D/D/D/D/D/D/D/D/D/D/D/D/D/D/D/D/D/D/D/D/D/D/D/D/D/L2L2R;;;;;;U< ;=:msgtext = "%s" dbperror: dblib_err_handler for msgno = %d; msg->msgtext = "%s" -- returns %d (%s) dbgetnull: error: not setting varaddr(%p) because %d < %lu UNIMPLEMENTED dbsetllong() which = %d UNIMPLEMENTED dbsetlshort() which = %d UNIMPLEMENTED dbsetlbool() which = %d dbresults: dbresults_state is %d (%s) dbresults() tds_process_tokens returned %d (%s), result_type %d (%s) dbresults(): dbresults_state is %d (%s) dbdatlen() type = %d, len= %d leaving dbadlen() type = %d, returning %d dbconvert_ps(%p, %s, %p, %d, %s, %p, %d, %p) dbconvert_ps() srctype == desttype dbconvert_ps() calling tds_convert dbconvert_ps() called tds_convert returned %d dbconvert_ps() outputting %d bytes character data destlen = %d %d bytes type %d -> %d, destlen %d < %d required error: dbconvert_ps(): unrecognized desttype %d dbbind: setting varlen (%d) to 0 dbcolinfo(%p, %d, %d, %d, %p) dbaltbind(%p, %d, %d, %d, %d, %p) UNIMPLEMENTED dbsetopt(option = %d) dbsqlok() not done, calling tds_process_tokens() dbsqlok() end status is %d (%s) dbsqlok() end status was success %s %d: logic error: tds_process_tokens result_type %d dblib_datecrack(%p, %d, %p, %d, %p) tdsdbopen: servername set to %s tdsdbopen: dbproc->dbopts = %p tdsdbopen: tds_set_server(%p, "%s") tdsdbopen: About to call tds_read_config_info... tdsdbopen: Calling tds_connect_and_login(%p, %p) tdsdbopen: tds_connect_and_login failed for "%s"! tdsdbopen: Returning dbproc = %p UNIMPLEMENTED dbclropt(option = %d) more_results is false; returns FAIL more_results is true; returns SUCCEED dbproc->tds_socket->param_infodbgetchar() bufsz = %d, pos = %d dbsafestr(%p, %s, %d, %s, %d, %d) dbwritetext(%p, %s, %p, %d, %p, %d) dbproc->text_size >= dbproc->text_sentdbstrbuild(%p, %s, %d, %s, %s, ...) copy_data_to_host_var(%d [%s] len %d => %d [%s] len %d) copy_data_to_host_var() srctype == desttype copy_data_to_host_var(): tds_convert returned %d copy_data_to_host_var() outputs %d bytes char data destlen = %d error: copy_data_to_host_var(): unrecognized desttype %d buffer_transfer_bound_data(%p %d %d %p %d) dbnextrow() dbresults_state = %d (%s) leaving dbnextrow() returning %d (NO_MORE_ROWS) unexpected: leaving dbnextrow() returning FAIL leaving dbnextrow() returning compute_id %d leaving dbnextrow() returning %d (%s) dbprrow num compute cols = %d dbprrow calling dbaltcolid(%d,%d) _dblib_handle_info_message(%p, %p, %p) _dblib_check_and_handle_interrupt %p [%p, %p] dbproc->hndlintr returned INT_EXIT, goodbye! dbproc->hndlintr returned INT_CANCEL dbproc->hndlintr returned INT_CONTINUE dbproc->hndlintr returned an invalid value (%d), returning INT_CONTINUE dbutil.cmsgno %d: "%s" _dblib_err_handlermsgdbproc != NULL_dblib_check_and_handle_interrupt_dblib_handle_err_messageGeneral SQL Server error: Check messages from the SQL Serverdbrpcinit(%p, %s, %d) rpc.cdbrpcinitdbrpcparammaxlendbrpcsend(%p) returning FAIL: name is NULL out of rpc memory!out of memory for rpc row!error: dbrpcinit called twice for procedure "%s" dbrpcinit() added rpcname "%s" dbrpcparam(%p, %s, 0x%x, %d, %d, %d, %p) dbrpcparam() added parameter "%s" parm_info_alloc(): parameter null-ness = %d parameter size = %d, data = %p, row_size = %d copying %d bytes of data to parameter #%d blob parameter supported, size %d textvalue pointer is %p setting parameter #%d to NULL returning FAIL: tds_submit_rpc() failed dbrpcsend() returning SUCCEED _bcp_check_eof(%p, %p, %d) bcp.cdbproc_bcp_get_col_data(%p, %p) _bcp_get_col_data_bcp_free_columns(%p) _bcp_free_storage(%p) bcp_collen(%p, %d, %d) bcp_columns(%p, %d) bcp_init(%p, %s, %s, %s, %d) erc == SUCCEEDbcp_control(%p, %d, %d) ORDERbcp_options(%p, %d, %p, %d) bcp_optionsfailed, no such hint UNIMPLEMENTED bcp option: %u bcp_colptr(%p, %p, %d) bcp_getl(%p) bcp_sendrow(%p) %Y-%m-%d %H:%M:%S.%zbcp_exec(%p, %p) _bcp_exec_out(%p, %p) FREEBCP_DATEFMTselect * from %s_bcp_exec_in(%p, %p) parsing host column %d bcpcol != NULLhostcol->prefix_len <= 4prefix_len = %d collen = %d data from file is too large! bcp_readfmt(%p, %s) bcp_readfmt bcp_batch(%p) bcp_done(%p) ROWS_PER_BATCHKILOBYTES_PER_BATCHTABLOCKCHECK_CONSTRAINTSFIRE_TRIGGERSKEEP_NULLSNormal end-of-file reached while loading bcp data file. dbproc && dbproc->hostfileinfobcp_colfmt(%p, %d, %d, %d, %d, %p, %d, %d) bcp_colfmt: changing host_collen to -1 from %d for fixed type %d. UNIMPLEMENTED: bcp_colfmt_ps(%p, %d, %d, %d, %d, %p, %d, %d, %p) UNIMPLEMENTED bcp option: BCPLABELED _bcp_read_hostfile(%p, %p, %p, %d) error: file wider than table: %d/%d host column %d uses bcpcol %d (%p) col %d: error converting %ld bytes! Reading %d bytes from hostfile. Data read from hostfile: collen is now %d, data_is_null is %d _bcp_read_hostfile failed to convert %d bytes at offset 0x%lx in the data file. #@ data conversion error on host data file Row %d Column %d #@ Attempt to bulk-copy a NULL value into Server column which does not accept NULL values. Row %d, Column %d BILL fread failed after fseek _bcp_readfmt_colinfo(%p, %s, %p) bcp_bind(%p, %p, %d, %d -- %p, %d, %s, %d) bcp_bind(): non-fixed type %d requires prefix or terminator bcp_bind: SYBEBCBNTYP: column=%d and vartype=%d (should fail?) _bcp_check_eof_bcp_read_hostfile_bcp_exec_out_bcp_free_columns_bcp_free_storageinit_hostfile_columnsdbpivot.cfalse && pcol->typefalse && sybtypetgt && srcsrc->typepc1 && pc2pc1->type == pc2->typefalse && pc1->typepcolpdest && psrca && bppdbproc->tds_socket->res_infop1 && p2p1->row_key.keys[i].typep2->row_key.keys[i].type keys (down)%s: %s%d, s < buffer + sizeof(buffer)type && lena->keys && b->keysa->nkeys == b->nkeyspp->acrossi < nkeyspmeta + i < metadata + nmetak->nkeysk->keys%fnum_colssetting up %u columns curcol && pvaluetype/wtypesize/wsize %-20s %-15s %-15s %-7s utype %-20s %15s %15s %7s %-20s %7d/%-7d %7d/%-7d %7d n1 && n2 cols (across)#B B B#B#B#B#B#BB#B#B#B#B B#B#BBB#B#B#BB B B BB B#BB#B#BB BBBB#B#B B B B B B B B B B B B B B B B B B B B B B B B B B B B B B#B#B B B B#B#B B#B B#B#B#B#B B B B B B B B B B B#B#B B B B#B B B B B B B B B B B B B B B B B B B B#B B B B B B B B B B B B B B B B#B B#B B#B B B B B B#B#B#BB B B B B B B B B B B#B#B B B#B B B B B B B B B B B B B B B B B B B B B B B B B B B B B B B B B B#B B B B B B#B B B B B B B B#B#B#B B#B?|?|???|??,??|?|?|?|?|??|??>>>>>>>>>>>>>>???????????@???@@@@@@@@@@@A@@@?B8B8B?B?B?B?B?BA?B?B?B?B8B?B?BAA?B?B?BA8B8B8BB8B?BB?B?BA8BAAB?B?B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B?B?B8B8B8B?B?B8B?B8B?B?B?B?B8B8B8B8B8B8B8B8B8B8B?B?B8B8B8B?B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B?B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B?B8B?B8B?B8B8B8B8B8B?B?B?BA8B8B8B8B8B8B8B8B8B8B?B?B8B8B?B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B8B?B8B8B8B8B8B?B8B8B8B8B8B8B8B?B?B?B8B?B@4@4@@?4@@??4@4@4@4@4@@4@?@4@@4@@4@4@4@?4@??$@?$@4@4@4@4@4@4@4@4@4@4@4@4@4@4@4@4@4@4@4@4@4@4@4@4@4@4@4@4@4@4@4@4@4@4@4@4@?4@4@4@4@@4@$@4@$@$@$@?4@4@4@4@4@4@4@4@4@4@$@VV@X@X@X@X@X@X@XVV:V@X@X@XV@X@X@XPV@X@XAV@X@XUname_equaldbpivot_maxdbpivot_mindbpivot_sumdbpivot_countset_result_column------------------------------reinit_resultsstring_valuemake_col_nameinfer_col_typecol_initbind_typekey_equalagg_equaldbpivotcol_buffercol_cpykey_cpycol_equalagg_nextdbnextrow_pivotedpivot_key_equaldbrows_pivoteddbpivot_sum(): invalid operand %d psrc->len > 0 || psrc->null_indicator == -1pdest->len > 0 || pdest->null_indicator == -1dbproc->tds_socket->res_info->columns || 0 == dbproc->tds_socket->res_info->num_colsno pcol->column_varaddr in col %d p1->row_key.nkeys == p2->row_key.nkeysp1->col_key.keys && p2->col_key.keysp1->col_key.nkeys == p2->col_key.nkeysdbpivot(%p, %d,%p, %d,%p, %p, %d) p1->row_key.keys && p1->col_key.keysp2->row_key.keys && p2->col_key.keyspp->across || pp->nacross == 0set current_results to cursor->res_info set current_results (%u column%s) to tds->res_info tds7_get_data_info: colname = %s type = %d (%s) server's type = %d (%s) column_varint_size = %d column_size = %d (%d on server) tds_dynamic_deallocated() : freeing dynamic_id %s tds_dynamic_deallocated() : cannot find id %s tds_release_cursor() : freeing cursor_id %d tds_release_cursor() : freeing cursor results tds_release_cursor() : freeing cursor name tds_release_cursor() : freeing cursor query tds_release_cursor() : cursor_id %d freed tds_cursor_deallocated() : freeing cursor_id %d tds_cursor_deallocated() : cannot find cursor_id %d tds && tds->out_buf && tds->send_packetalloc_compute_result. num_cols = %d bycols = %d alloc_compute_result. num_comp_info = %d mem.ctds_free_all_results() ISO-8859-1US-ASCIIus_englishconn->in_net_tds == NULLS1000S1T0008S0124000280004200001003080042100021S01010002200821S02220012200342S2142S1242S2242S112201842S0242S0123000250002200522012220073700042Stds_realloc_sockettds_free_connectiontds_free_rowavgvarpmaxminsumstdevpchecksum_aggTDS5_PARAMFMT2ORDERBY2ROWFMT2LOGOUTRETURNSTATUSPROCIDTDS7_RESULTTDS_CURINFOTDS7_COMPUTE_RESULTCOLNAMECOLFMTDYNAMIC2TABNAMECOLINFOCOMPUTE_NAMESORDERBYERRORPARAMLOGINACKCONTROL/FEATUREEXTACKNBC_ROWCMP_ROWTDS5_PARAMSCAPABILITYENVCHANGESESSIONSTATEDBRPCTDS5_DYNAMICTDS5_PARAMFMTAUTHDONEPROCDONEINPROCMSGtoken.ctds5_process_result2 num_cols=%d col %d: column_name=[%s] colsize=%d prec=%d scale=%d elem %d: longbinarybitbit-nullsmalldatetimedatetime-nulldecimalfloatfloat-nullimageunsigned tinyintunsigned smallintunsigned intunsigned bigintinteger-nullsmallmoneymoney-nullUCS-2 textnumericrealuniqueidentifiervariantvoidxbinaryxcharx UCS-2 charx UCS-2 varcharxvarbinaryxvarcharxmldatedatetime2datetimeoffsetuser-defined table typebigtimebigdatetime[for parameter]no meta data setting up %d columns %d hidden return parameters stored internal cursor id %d processing compute column %d compute column_size is %d TDS_OP_CURSORCLOSE TDS_AUTH_TOKEN PDU size %u Got invalid size %u tds->conn->collation wastds->conn->collation nowtds5_process_optioncmd() received option %d value %d Eating %s token Unknown marker: %d(%x)!! unknown7.02000 SP12012-2019tds_process_login_tokens() Product name for 0x%x is %s MicrosoftProduct version %lX ZZZZZ[%s]out of memory (%d), %s @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@0 @@@@@@@@@@@@@@@@@@@@@@@ЏЏ@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@Ў8(8888888888888888888888888888888888888888888888888888888888888888888888888888888888888ؐ8888Ȑ88888888888888888888888888888xhX8H8(؏8888888888888888888888888888888888ȏ8888888888888xhXH88888(88888888888888؎H8(hXxXH(ȢxhأhXH8(ȣxؠȠءȡآ8tDT<<$$T $LLм|||||||Bмммм|~tttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttt4tttt$tttttttttttttttttttttttttttttdttT\tt|DD4|ttttttttttttttttttttttttttttttttttttttttttttttttTDt|ttttTres_info tds_process_tokens(%p, %p, %p, 0x%x) tds_process_tokens() state is COMPLETED processing result tokens. marker is %x(%s) tds_process_tokens::SET_RETURN stopping on current token processing parameters for op %d calling tds_process_param_result processing tds5 compute names. hdrsize = %d processing tds5 compute names. num_cols = %d processing tds5 compute names. num_comp_info = %d tds_process_compute_result(): compute_id %d for %d columns logic error: compute_id (%d) from server not found in tds->comp_info found computeid %d in tds->comp_info processing compute result. num_cols = %d processing tds compute result, by_cols = %d processing tds7 compute result. num_cols = %u processing tds7 compute result. compute_id = %u processing tds7 compute result. by_cols = %d processing tds7 compute result. num_comp_info = %d processing tds7 compute result. point 0 processing tds7 compute result. point 1 processing tds7 compute result. point 2 processing tds7 compute result. point 5 tds_process_tokens(). set current_results to cursor->res_info tds_process_compute() found compute id %d tds_process_compute() FAIL: id exceeds bound (%d) tds_process_compute() FAIL: get_data() failed tds_process_tokens: return status is %d Unrecognized TDS5_DYN type %x tds_process_end: more_results = %d was_cancelled = %d error = %d done_count_valid = %d rows_affected = %ld tds_process_end() state set to TDS_IDLE tds_process_default_tokens() marker is %x(%s) leaving tds_process_default_tokens() connection dead tds_process_env_chg(): %d bytes of collation data received changing block size from %s to %d server indicated charset change to "%s" tds_process_default_tokens: return status is %d oops: cannot process option %d of size %d 2008 (no NBCROW or fSparseColumnSet)looking for login token, got %x(%s) server reports TDS version %x.%x.%x.%x tds_process_login_tokens() returning %s tds_process_info() called with unknown marker '%d'! tds_process_info() reading message %d from server tds_process_info() calling client msg handler Msg %d, Severity %d, State %d, Server %s, Line %d %s tds_process_info() returning TDS_SUCCESS TDS_INT_CONTINUETDS_INT_CANCELTDS_INT_TIMEOUTtdserror(%p, %p, %d, %d) OpenClienttdserror: returning %s(%d) TDS server connection failedRead from the server failedUnable to open socketUnknown host machine name.Write to the server failedtdserror: client library returned %s(%d) msgno == TDSETIME || rc != TDS_INT_TIMEOUTmsgno == TDSETIME || rc != TDS_INT_CONTINUEexit: %s(%d) valid only for TDSETIME state < TDS_VECTOR_SIZE(state_names)tds->state < TDS_VECTOR_SIZE(state_names)logic error: cannot change query state from %s to %s Changed query state from %s to %s Buffer exhausted converting characters from client into server's character setCharacter set conversion is not available between client character set '%.*s' and server character set '%.*s'Error converting characters into server's character set. Some character(s) could not be convertedSome character(s) could not be converted into client's character set. Unconverted bytes were changed to question marks ('?')Some character(s) could not be converted into client's character setBoth port and instance specifiedAttempt to initiate a new TDS server operation with results pendingBad token from the server: Datastream processing out of syncDB-Library capabilities not accepted by the ServerUnexpected capability type in CAPABILITY datastreamError in closing network connectionUnable to connect: TDS server is unavailable or does not existUnsolicited event notification receivedNegotiated login attempt failedError in sending out-of-band data to the serverTDS server connection timed outUnexpected EOF from the serverServer name not found in configuration files.Read attempted while out of synchronization with TDS serverUnknown message-id in MSG datastreamUnable to set communications timerUnrecognized TDS version received from the serverLocal configuration error. Check TDSDUMPCONFIG log for details.h retnametdserrortdserror: client library not called because either tds_ctx (%p) or tds_ctx->err_handler is NULL IDLEWRITINGSENDINGPENDINGREADINGDEADtds_set_statenvcuvclogin.cSQL AnywhereOpenServerSET TEXTSIZE %d MSSQLServeracceptedrejectedIP address pointer is empty Server %s not found! No server specified! invalid port number detected crypt flag %d ASA_DATABASEUnknown protocol version! login packet %s %s,%dusing NTLM authentication for '%s' account requested GSS authentication but not compiled in quietly sending TDS 7+ login packet 0 && 0x700 <= login->tds_version && login->tds_version <= 0x704NT login not supported using TDS 4.x or 5.0 Kerberos login not supported using TDS 4.x Encryption not supported using TDS 4.x    6tds7_send_loginU SELECT @@spid spSELECT CONVERT(NVARCHAR(3), 'abcEXECUTE ('SELECT CONVERT(UNIVARCHAR(3), ''xyz'')read.ccurcol->char_converror: tds_get_char_data: discarded %u on wire while reading %d into client. tds_get_char_datawrite.cclient->min_bytes_per_char < 3tds_put_stringstore_monthname: %ld %s convert.cjanfebmaraprmayjunjulaugoctnovjanuaryfebruarymarchapriljunejulyaugustseptemberoctobernovemberdecemberpm ,store_dd_mon_yyy_date: %s apmAPMstore_time() nanosecs = %d %lu%07dyestds_willconvert(%d, %d) %u.%02u%u.%04utds_convert_money() %ld%.9g%.*f%.17g 0 0 0 0 0 0 0 0 0 0 0 p 0 0 0 0 0 0  0 ( 0 @ X 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0  0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0   H Httttttttttttttttt<tTt4Rttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttdl|llllllll44 434449 43333494449 43777\7494949d349222D66493555494949494949494949494949494949494949494949494949494949494949494949494949749549549494949494949494949494949$549494949L5494949494949494949494949494949494949494949494949494949494949494949494949494449 449494949494449 4t7494949494949494949496d649494949494949494949494949494949494949494949494949494949494949494949494944494949494949494949494949494949494949494949494949494949494949494455.555....55554d.4d.4555d.5d.d....544d..555555555555555555555555555555555555454545555555555555d.5555.55555555555555555555555555555555555555555555555545555555555..555555555555555555555555555555555555555555555555555555555555555555555=JJJ=JJJJJJJ=g=Jg@J;JJJ;JJ;@Jz@Jg= D D D> DX?CAX?C D?@AEA@ D D D D D D D D D D D D D D D D D D D D D D D D D D D D D D D D D D D D? D@ D@ D D D D D D D D D D D D DA D D D D@ D D D D D D D D D D D D D D D D D D D D D D D D D D D D D D D D D D D D D D D@ D D D D D D D@|@ D D D D D D D D D DX?X? D D D D D D D D D D D D D D D D D D D D D D D D D D D D D D D D D D D D D D D D D D D D D D D D D D D D D D D D D D D D D D D D D D D6?n+@@@n+@@@@@@@n++@H*@ +@@@*@@E+)@*@+*))@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@H*@p*@p*@@@@@@@@@@@@@a*@@@@*@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@n+@@@@@@@n+h)@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@n+ %<<< %<<<<<<< %%<$<%<<<%<<$$<$<%%%%<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<$decimicrosecond && dr->decimicrosecond < 10000000tds_willconvert(%d, %d) returns %s srclen >= 0 && srclen <= 2147483647u%08X-%04X-%04X-%02X%02X-%02X%02X%02X%02X%02X%02X@ ``@p@ @@?AACC(C6 C(C6 6 A6 CCGG?OO__QXQ@FQHQ%lu.%02u%lu.%04u ](\K7AǺmZ{c^y55aw̫& . d'@Bʚ; d'@Bʚ; TvH rNZ@z~Ƥ#oxEc] d#NJ-^kc6ŭ5@-JEHJҷR <.;<П^O a%>Crm М,tF@~" 7&K[Am-ſtM1D [8 d7aBMr菇+Η{KFՠ6L;KzĆZ@" PĬCVe_)c\a%qߵ|oʕCz PpbZ0٣r!c[ζf{Rs$o,P6\m#/H[=u&'OE",Bbِe9|Viz:>8Jb5ia"ʔ@Mn201#~WϽO?헧d8nj'FE9N 6%z~ XwiZ<dtG^vd!vwQ_LjS2u/[!%W#>>O2;MrmgmsV$@}J4 FԅʻaakKJ:FUf14$%u]]F[ 8js&1K8et,5+wxP=1*莾dy)euwqIn{o  !!!]:config.cLooking for section %s. Found section %s. Got a match. Reached EOF Could not open '%s' (%s). Found conf file '%s' %s. globalSuccess: [%s] defined in %s. [%s] not found. FREETDSCONFset programmatically(from $FREETDSCONF)FREETDS(.config/freetds.conf).freetds.conf(.freetds.conf)(default).config/freetds.confloginerror: no such version: %s servername != NULLCouldn't open %s. Interfaces file %s opened. querytliTLI service. %d.%d.%d.%dtmp_port = %s. tmp_ip = %s. host field %s. Resolved IP as '%s'. not TDSVERTDSPORTTDSHOSTTDSDUMPCONFIGLooking for server %s.... .interfacesLooking for server in %s. client_charsettds_config_login: %s is %s. database_nameFinal connection parameters: server_name %20s = %s server_host_nameip_addrinstance_nameport %20s = %d major_versionminor_versionblock_sizeserver_charsetconnect_timeoutclient_host_nameuse_utf16app_nameuser_namelibrarybulk_copysuppress_languageencrypt levelquery_timeoutdump_filedebug_flags %20s = %x text_sizeserver_realm_nameserver_spncafilecrlfilecheck_ssl_hostnamedb_filenamereadonly_intentopenssl_ciphers %s = '%s' tds versioninitial block sizeswap broken datesenable gssapi delegationmutual authenticationdump filedebug flagsquery timeoutconnect timeouthostFound host entry %s IP addr is %s. emulate little endiantext sizeclient charsetuse utf-16dump file appendinstanceoffrequestrequirestrictasa databaseuse ntlmv2use lanmanrealmca filecrl filecheck certificate hostnamedatabase filenameread-only intentopenssl ciphersenable tls v1system/opt/alt/freetds11/etcautoUNRECOGNIZED option value '%s' for boolean setting '%s'! error: cannot specify both port %d and instance %s. ... $FREETDSCONF not set. Trying $FREETDS/etc. ... $FREETDS not set. Trying $HOME. /opt/alt/freetds11/etc/freetds.conf... Error getting ~/.freetds.conf. Trying %s. Setting tds version to %s (0x%0x). servername != NULL && addr != NULLSearching interfaces file %s/%s. Found matching entry for host %s. Name resolution failed for IP '%s'. TDS version %sset to %s from $TDSVER. Setting 'dump_file' to '%s' from $TDSDUMP. Setting 'port' to %s from $TDSPORT. Name resolution failed for '%s' from $TDSHOST. Setting IP Address to %s (%s) from $TDSHOST. Getting connection information for [%s]. Attempting to read conf files. Failed in reading conf file. Trying interface files. Setting server to %s from $TDSQUERY. Looking for server in file %s. Looking for server in %s/interfaces. Setting 'ip_port' to %s from $TDSPORT. Setting 'ip_port' to %d as a guess. Failed to find [%s] in configuration files; trying '%s' instead. Found host entry %s however name resolution failed. tds_parse_conf_section: %s is %s. UNRECOGNIZED option value '%s' for '%s' setting! Valid settings are: ('%s', '%s', '%s', '%s') Setting ReadOnly Intent to '%s'. UNRECOGNIZED option '%s' ... ignoring. tds_lookup_host_settds_lookup_host0auto4.2505.0707.07.17.27.37.48.0tds_config_verstryesnoonofftruefalse/etc/freetds/tmp/freetds.log.%d(from $FREETDS/etc)etc/freetds.conf/tmp/tdsconfig.log.%d%b %e %Y %I:%M%psp_cursorfetchquery.clen <= stream->buf_lenSYSNAMENCHAR(%u)NVARCHAR(%u)IS_TDS7_PLUS(tds->conn)@P%dsp_execute''0xNUMERIC(%d,%d)DECIMAL(%d,%d)FLOATTINYINTUNIVARCHAR(%u)UNICHAR(%u)SMALLMONEYSMALLDATETIMEVARBINARY(%u)UNIQUEIDENTIFIERNVARCHAR(MAX)SQL_VARIANTUNSIGNED SMALLINTUNSIGNED INTUNSIGNED BIGINTVARBINARY(MAX)Unknown type %d sp_executesqlsp_preparecreate proc as sp_prepexectds_submit_execute() sp_unpreparetds_submit_unprepare() %s select 1 where 0=1rpc_name DECLARE @P%d SET @P%d=@P%d OUTPUT EXEC sp_cursoropenprow_number && prow_countsp_cursorclosesp_cursoroptionsp_cursortds && multipleOFFtds_submit_optioncmd() SET ANSI_NULLS %sSET IMPLICIT_TRANSACTIONS %sSET CURSOR_CLOSE_ON_COMMIT %sSET NOCOUNT %sSET QUOTED_IDENTIFIER %sSET ANSI_WARNINGS %sSET DATEFIRST %dSET DATEFORMAT %sSET TEXTSIZE %dSELECT @@options what! optionval = %d BEGIN TRANSACTIONIF @@TRANCOUNT > 0 ROLLBACKIF @@TRANCOUNT > 0 COMMITtds_disconnect() tds_put_data_info putting param_name tds_put_data_info putting status p && start <= end && (end - start) % 2 == 0s[1] == 0 && s < end && (end - s) % 2 == 0e && query <= e && e <= query_endtds_send_cancel: %sin_cancel and %sidle tds_send_cancel: sending cancel packet tds_cursor_declare() cursor id = %d tds_cursor_open() cursor id = %d tds_cursor_open (): RPC call set up tds_cursor_open (): cursor open completed tds_cursor_setrows() cursor id = %d tds_cursor_fetch() cursor id = %d tds_cursor_get_cursor_info() cursor id = %d tds_cursor_get_cursor_info: tds_process_tokens returned %d result_type=%d, TDS_DONE_COUNT=%x, TDS_DONE_ERROR=%x ----------------> prow_number=%u, prow_count=%u tds_cursor_close() cursor id = %d tds_cursor_setname() cursor id = %d tds_cursor_update() cursor id = %d tds_cursor_dealloc() cursor id = %d tds_cursor_dealloc(): freeing cursor multiple->type == TDS_MULTIPLE_QUERYmultiple->type == TDS_MULTIPLE_EXECUTEtds_submit_optioncmd: returned option_value = %d IF @@TRANCOUNT > 0 ROLLBACK BEGIN TRANSACTIONIF @@TRANCOUNT > 0 COMMIT BEGIN TRANSACTIONp^^`^p^p^p^p^p^p^p^p^p^p^p^p^p^p^p^^p^p^p^p^p^ ^@^`aaaa`aaaaaP`aP`aaaaaaaaaaaaaaa;`aaaaaaaaaaaaaaaaaaaaaaaaaaa`ss`ssur`qq tttqtqt`q@tqqtttqtttttttttrrttttttttttttttttttttttttttttttr`rtttrutqtPruuutttttttttt8rttttrtttttttttttttttttttttttttttttttttttttstpqtttttqt sttttttttttts0tttttttttttttttttttttttttttttttttttttstttttrtttttttPtEEEEEuEEEEEEEOE,EEEEEE޻EEEEEEEZ>,,,,,\,,,,,,,T,T,,,T,,,TT,,,,,,,TTTTTzzzzzezzzzzzzAzJzzz,zzzzzzzzzzۻAdڼмƼ\~~t~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~*~~~~~~~~~~~~~~~~~~~~~~~~~|aF+ кtds_multiple_executetds_multiple_querytds_multiple_donetds_cursor_get_cursor_info tds_submit_rpctds_quoteout_stream_writetds_send_emulated_executetds_get_column_declarationtds7_write_param_def_from_querytds7_put_query_paramstds7_write_param_def_from_paramstds_skip_quoted_ucs2letds_next_placeholder_ucs2leSET ARITHABORT OSET ARITHIGNORE SELECT @@optionsSELECT @@datefirSELECT DATEPART(SELECT @@textsiz646iconv.ciconv_initialized!conn->char_convsUTF-8UCS-4(null)tds_iconv_open(%p, %s, %d) UCS-2LEUCS-2BEUCS-2local name for %s is %s iconv_open(%s, %s) failed iconv(%s, %s) failed res %d len %d tds_iconv_open: done ANSI_X3.4-1968ANSI_X3.4-1986ARMSCII-8ASMO-708BIG-5BIG-FIVEBIG5-HKSCSBIG5HKSCSBIGFIVEC99CHINESECN-BIG5CN-GBCN-GB-ISOIR165CP1250CP1251CP1252CP1253CP1254CP1255CP1256CP1257CP1258CP1361CP367CP437CP65001CP819CP850CP862CP866CP874CP932CP936CP949CP950CSASCIICSBIG5CSEUCKRCSEUCPKDFMTJAPANESECSEUCTWCSGB2312CSHALFWIDTHKATAKANACSHPROMAN8CSIBM866CSISO14JISC6220ROCSISO159JISX02121990CSISO2022CNCSISO2022JPCSISO2022JP2CSISO2022KRCSISO57GB1988CSISO58GB231280CSISO87JISX0208CSISOLATIN1CSISOLATIN2CSISOLATIN3CSISOLATIN4CSISOLATIN5CSISOLATIN6CSISOLATINARABICCSISOLATINCYRILLICCSISOLATINGREEKCSISOLATINHEBREWCSKOI8RCSKSC56011987CSMACINTOSHCSPC850MULTILINGUALCSPC862LATINHEBREWCSSHIFTJISCSUNICODE11CSUNICODE11UTF7CSVISCIIECMA-114ECMA-118ELOT_928EUC-CNEUC-JPEUC-KREUC-TWEUCCNEUCJPGB18030GBKGB_1988-80GB_2312-80GEORGIAN-ACADEMYGEORGIAN-PSGREEK8HP-ROMAN8HZHZ-GB-2312IBM-CP1133IBM367IBM437IBM819IBM850IBM862ISO-2022-CNISO-2022-CN-EXTISO-2022-JPISO-2022-JP-1ISO-2022-JP-2ISO-2022-KRISO-8859-10ISO-8859-13ISO-8859-14ISO-8859-15ISO-8859-16ISO-8859-2ISO-8859-3ISO-8859-4ISO-8859-5ISO-8859-6ISO-8859-7ISO-8859-8ISO-8859-9ISO-CELTICISO-IR-100ISO-IR-101ISO-IR-109ISO-IR-110ISO-IR-126ISO-IR-127ISO-IR-138ISO-IR-14ISO-IR-144ISO-IR-148ISO-IR-149ISO-IR-157ISO-IR-159ISO-IR-165ISO-IR-166ISO-IR-179ISO-IR-199ISO-IR-203ISO-IR-226ISO-IR-57ISO-IR-58ISO-IR-6ISO-IR-87ISO646-CNISO646-JPISO646-USISO8859-1ISO8859-10ISO8859-15ISO8859-2ISO8859-4ISO8859-5ISO8859-6ISO8859-7ISO8859-8ISO8859-9ISO_646.IRV:1991ISO_8859-1ISO_8859-10ISO_8859-10:1992ISO_8859-13ISO_8859-14ISO_8859-14:1998ISO_8859-15ISO_8859-15:1998ISO_8859-16ISO_8859-16:2000ISO_8859-1:1987ISO_8859-2ISO_8859-2:1987ISO_8859-3ISO_8859-3:1988ISO_8859-4ISO_8859-4:1988ISO_8859-5ISO_8859-5:1988ISO_8859-6ISO_8859-6:1987ISO_8859-7ISO_8859-7:1987ISO_8859-8ISO_8859-8:1988ISO_8859-9ISO_8859-9:1989JAVAJIS0208JISX0201-1976JIS_C6220-1969-ROJIS_C6226-1983JIS_X0201JIS_X0208JIS_X0208-1983JIS_X0208-1990JIS_X0212JIS_X0212-1990JIS_X0212.1990-0JOHABKOI8-RKOI8-RUKOI8-TKOI8-UKOREANKSC_5601KS_C_5601-1987KS_C_5601-1989L1L2L3L4L5L6L7L8LATIN7LATIN8MACMACARABICMACCENTRALEUROPEMACCROATIANMACCYRILLICMACGREEKMACHEBREWMACICELANDMACROMANMACROMANIAMACTHAIMACTURKISHMACUKRAINEMS-ANSIMS-ARABMS-CYRLMS-EEMS-GREEKMS-HEBRMS-TURKMS_KANJIMULELAO-1NEXTSTEPR8SHIFT-JISSHIFT_JISSJISTCVNTCVN-5712TCVN5712-1TCVN5712-1:1993TIS-620TIS620TIS620-0TIS620.2529-1TIS620.2533-0TIS620.2533-1UCS-4BEUCS-4LEUHCUNICODE-1-1UNICODE-1-1-UTF-7UNICODEBIGUNICODELITTLEUTF-16BEUTF-16LEUTF-32BEUTF-32LEUTF8VISCII1.1-1WINBALTRIMWINDOWS-1250WINDOWS-1251WINDOWS-1252WINDOWS-1253WINDOWS-1254WINDOWS-1255WINDOWS-1256WINDOWS-1257WINDOWS-1258WINDOWS-874big5cp1250cp1251cp1252cp1253cp1254cp1255cp1256cp1257cp1258cp437cp850cp862cp866cp874eucJPeucKReucTWhp15CNiso81iso815iso82iso83iso84iso85iso86iso87iso88iso88591iso885915iso88592iso88593iso88594iso88595iso88596iso88597iso88598iso88599iso89roma8roman8sjisthai8tis620utf8char_conv->to.cd == (iconv_t) -1char_conv->from.cd == (iconv_t) -1tds_iconv_info_init: client charset name "%d" invalid tds_iconv_info_init: server charset name "%d" invalid Charset %d not supported by iconv, using "%s" instead tds_iconv_info_init: cannot convert "%s"->"%s" inbuf && inbytesleft && outbuf && outbyteslefttds_iconv: unable to determine if %d means in or out. io == to_server || io == to_clientsetting server single-byte charset to "%s" iconv name for ISO-8859-1 not found iconv name for UCS-2 not found error: tds_iconv_init() failed; try using GNU libiconv library setting up conversions for client charset "%s" preparing iconv for "%s" <-> "%s" conversion tds_iconv_get: what is charset "%s"? tds_srv_charset_changed: what is charset "%s"? EXTENDED_UNIX_CODE_PACKED_FORMAT_FOR_JAPANESEаааааааааааааppp``ĿԿ̾.............................................q."Sh$ U J......2aTB I j.3 uS ..... . .... ... ......................................................................................................................................ZG Z5?# (>.64;:?@CF3IYO S6Z=agYnYq\u:x<~>;5??>6;,?>6;3"?-<65<:B3I6U`<j>ux;?84<\6 67@\:<:9B 5\ &:07<3GRZ\:g5x385?79AZ:C3$ 5\@(,:7BH%NCU8[Cb=hDpuC}4;38>8== B 4'.88U@4F9L=VI]\gCp u8=P= $? T#8)= [ 9!$9+18%>3JQD[em\u|93497:4\Z@$Y%G,3+?@I#O V!\Eah pw]|<^=]KK*" <<A A'\-48@@RY\#`=gWqx~G&;<&6&O; T-A.9:>J;Z.j?zJ]5=0 > " [% ^. < :L Y g Cu '{ F K D ' ' D   \ Z  <  ( H (  ^ (  A. !: @ P -\ d <t 1 [   \ 9 ] /  F D &; AI Q =W Rb Fp y  N  C  8 = K B Y D D 2 & C4 1A L KX Fl /x  B  , D X  B ' S 2 >  ( \& . O: \I ] h q y B M U  L  V [ P & Qtds_iconvtds_set_iconv_nametds_iconv_info_initUCS-2LEtds_iconv_allocSJISkoi8sjisL1L8L5utf8iso81big5iso88iso15iso85iso89thai8L6roma8866iso815greek8iso_1roman8R8646L4iso86iso88591iso88598LATIN1iso88595LATIN8iso88599LATIN5850ISO8859-1ISO8859-8iso885915ISO8859-5HZISO8859-9ISO-8859-1ISO-8859-8ISO8859-15ISO-8859-5iso10ISO-8859-9iso88596iso14iso84LATIN6ISO-8859-15ISO_8859-1ISO8859-6ISO_8859-8CNISO_8859-5ISO_8859-9L2L7ISO-8859-6iso646ISO_8859-15C99ISO_8859-15:1998ISO-IR-58ISO-8859-16JPUSiso88594ISO_8859-6LATIN4L3ISO-IR-159ISO-IR-199ISO-IR-6CP819ISO8859-4ISO_8859-16ISO8859-10ISO-IR-165SHIFT-JISISO-8859-4ISO_8859-14:1998ISO-8859-10ISO-IR-101ISO-8859-14ISO-IR-148ISO_8859-16:2000ISO-IR-109ISO-IR-149SHIFT_JISISO_8859-4hp15CNISO-IR-166ISO_8859-10CP949CP866ISO_8859-14ASCIIISO-IR-14862ISO-IR-110GB_1988-80CP850CP950tis620iso82TIS620iso87JIS0208UTF8TIS-620ISO-IR-100ISO-IR-179UTF-8ISO-IR-144CP65001CP1251CP1258CP1255ISO_8859-10:1992ISO646-CNiso88592ISO-IR-138LATIN2iso88597ISO-IR-126CSISO159JISX02121990LATIN7IBM819ISO8859-2macturkiso13iso83ISO8859-7KOI8-TISO646-USTIS620-0BIG5ISO-8859-2CP1256ELOT_928macgreekISO-8859-7CSISOLATIN1CP1361BIG-5cp949CSISOLATIN5cp866ascii_8macthaiCP936ISO_8859-2GB18030ISO_8859-7TCVNIBM866iso88593CP874LATIN3cp850CP1250cp950CSISOLATIN6CP1254ISO-IR-87ISO-IR-57MS-ANSICSASCIIIBM850ISO-8859-3ISO-IR-157ISO-8859-13CP862cp1251ISO_8859-3cp1258EUCCNcp1255ISO-IR-226CSISOLATIN4ISO_8859-13US-ASCIICSSHIFTJISEUC-CNCSISO14JISC6220ROUHCROMAN8KOI8-Rcp1256GEORGIAN-PSISO646-JPcp936CSBIG5cp874JAVAcp1250CN-BIG5cp1254UTF7ISO-IR-127VISCIIECMA-118UTF-7UNICODE-1-1CP1252macUCS-4LECP1257cp862CHINESEMACGEORGIAN-ACADEMYCP932ARMSCII-8CSISOLATINARABICIBM862ASMO-708KSC_5601KOREANCP367GB2312CSISOLATIN2JIS_C6220-1969-ROHP-ROMAN8GBKGREEK8MULELAO-1CP1253CP437CSKOI8REUCJPUCS-2LECYRILLICECMA-114eucJPUTF-16LEMS-CYRLISO-IR-203EUC-JPmac_cyrGB_2312-80CP1133CN-GB-ISOIR165CSISOLATINCYRILLICMACTHAIISO-2022-CNKS_C_5601-1989CSISOLATIN3ISO_8859-8:1988ISO_8859-5:1988ISO-2022-CN-EXTISO_8859-9:1989MS-EEKOI8-Ucp1252UNICODE-1-1-UTF-7ISO-CELTICcp1257CSISOLATINGREEKISO-2022-JP-1CSUNICODE11WINDOWS-1251WINDOWS-1258WINDOWS-1255CSISOLATINHEBREWcp932TCVN5712-1CSVISCIICSISO57GB1988ISO_8859-4:1988WINDOWS-1256UNICODELITTLETIS620.2529-1EUCKRX0201MACINTOSHX0208eucKREUC-KRJIS_C6226-1983WINDOWS-1250WINDOWS-1254IBM367MS_KANJIcp1253ARABICcp437EUCTWKOI8-RUeucTWIBM437VISCII1.1-1EUC-TWCN-GBKS_C_5601-1987WINDOWS-874JOHABISO_8859-1:1987CSISO2022CNUCS-4BEISO_8859-6:1987ISO-2022-JP-2TCVN-5712WINDOWS-1252WINDOWS-1257ISO_646.IRV:1991ISO_8859-3:1988CSUNICODE11UTF7CSIBM866ISO-2022-JPWINDOWS-1253JIS_X0201JIS_X0208EXTENDED_UNIX_CODE_PACKED_FORMAT_FOR_JAPANESECSKSC56011987UCS-2BEGREEKMACICELANDJISX0201-1976UTF-16BEUTF-32LEMACCROATIANUNICODEBIGTIS620.2533-1CSISO58GB231280ISO_8859-2:1987ISO_8859-7:1987MACROMANX0212CSHPROMAN8CSISO87JISX0208JIS_X0208-1990ISO-2022-KRBIG5HKSCSTIS620.2533-0CSISO2022JP2BIG5-HKSCSCSMACINTOSHCSHALFWIDTHKATAKANACSISO2022JPMS-HEBRJIS_X0212-1990CSPC862LATINHEBREWHZ-GB-2312JIS_X0208-1983NEXTSTEPCSGB2312JIS_X0212CSEUCKRBIGFIVEMACROMANIACSISO2022KRHEBREWBIG-FIVECSEUCTWANSI_X3.4-1968MS-ARABMACCYRILLICANSI_X3.4-1986CSPC850MULTILINGUALIBM-CP1133UTF-32BEMS-TURKJIS_X0212.1990-0MACCENTRALEUROPEMACTURKISHMS-GREEKMACARABICWINBALTRIMMACUKRAINETCVN5712-1:1993MACGREEKCSEUCPKDFMTJAPANESEMACHEBREWAoAoÓåAoAodate formatdate-only formattime-only format@._locale.cdefaultAttempting to read locales.conf file /opt/alt/freetds11/etc/locales.confͲͲͲdummy textptr,ȹȹԽܻܻܻܻ`ؼ x88VV888888888888x8x8x888x8xxxxx88888888888888888888888888888888888888888888888888888888888x777777777x ZZZZZZZZZZZ8ZZZ8ZZZ8ZPpPpZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZJZZZZZZZZZZZZZZZZZZZZZ8ZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZtds_generic_putEED-%EE%E--%tds_get_data: type %d, varint size %d tds_get_data(): wire column size is %d tds_generic_put: colsize = %d tds_generic_put: not null param varint_size = %d data.ctds_generic_put: null param curcol->column_varint_sizenet.caddr != NULLsocket creation error: %s Connecting to %s port %d connection established getsockopt(2) failed: %s getsockopt(2) reported: %s tds_open_socket() failed tds_open_socket() succeeded send(2) failed: %d (%s) tds != NULLtimeout_seconds >= 0tds && bufferselect(2) failed: %d (%s) tds7_get_instance_ports(%s) instance info%15s %s ServerNamedefault instance port is %d InstanceNametcpIsClusteredVersionnpviaConnecting with protocol version %d.%d tds_setup_socket: connect(2) returned "%s" error: poll(2) returned %d, "%s" rc == 0 || (rc < 0 && (sock_errno == TDSSOCK_EINTR || sock_errno == EAGAIN || sock_errno == TDSSOCK_EINPROGRESS ))tds_select: invalid interrupt handler return code: %d poll_seconds == timeout_secondstds_goodwrite(): timed out, asking client tds7_get_instance_port: timed out on try %d of 16 error: expecting '%s', found '%s' tds7_get_instance_port(%s, %s) tds_goodwritetds_selecttds_addrinfo_set_portin tds_push_func tls.cin tds_pull_func_login have >= 0in tds_push_func_login Got name %s xn--in tds_pull_func handshakechecking hostnamecreating bioinitializing tlsloading CA fileloading CRL fileinitializing sessionHIGH:!SSLv2:!aNULL:-DHAlt names number %d handshake succeeded!! %s failed setting custom openssl cipher to:%s setting default openssl cipher to:%s handshake failed with %d %d %d tds_pull_func_logintds_pull_functds/8.0stdoutstderr (%s:%d)%s:%d%04x%02x%c%Y-%m-%d %H:%M:%Slog.ccol->column_datatype %s has value "%s" type %s has value NULL type %s has value %d type %s has value %f cannot log data for type %s Starting log file for FreeTDS %s on %s with debug flags 0x%x. no memory to log data for type %s 8tdsdump_colbulk.cbcpinforowbufferis_nullable_type%4s %8s %18s %18s %8s is nullcolumn_nullable%4d %8d %18s %18s %8s row_posncols%4s %8s %8s %8s cpbytes%4d %8d %8d %8d BCP row buffer so far%4d %8d %8d ncols=%u poff=%p [%u] poff=%p BCP row buffer with (%s)insert bulk %s (%s)%sinsert bulk %sset identity_insert %s onbindcol->column_data == NULLtds_bcp_done(%p, %p) tds_bcp_start(%p, %p) colcntcoliddfltlengthstatusbcpcol->funcscurrent_record_size = %d bcp_record_size = %d with logtds7_build_bulk_insert_stmt(%p, %p, %p, %d) error: cannot build bulk insert statement. unrecognized server datatype %d SET FMTONLY ON select * from %s SET FMTONLY OFFSET FMTONLY ON %s SET FMTONLY OFFtds_bcp_send_bcp_record(%p, %p, %p, %p, %d) get_col_data (column %d) failed gotten column %d length %d null %d tds5_bcp_add_fixed_columns(%p, %p, %p, %d, %p, %d) tds5_bcp_add_fixed_columns column %d (%s) is a fixed column tds5_bcp_add_fixed_columns column %d is a null column old_record_size = %d new size = %d gotten row information %d type %d length %d status %d offset %d tds7_bcp_send_colmetadata(%p, %p) tds_bcp_start_copy_in(%p, %p) could not realloc current_row writetext bulk %s 0x%s timestamp = 0x%s%s`0tds7_bcp_send_colmetadatatds5_bcp_add_variable_columnstds7_send_recordpacket.cconn && packet!conn->in_net_tdstimeout Sending packetpacket->data_start == 0Received MARS headerReceived packetconn->recv_pos < packet->data_len && packet->data_len <= packet->capacityconn->recv_pos <= packet->data_len && packet->data_len <= packet->capacityReceived MARS with no session (%u) Write attempt when state is TDS_DEADRead attempt when state is TDS_DEAD tds_packet_readtds_connection_networktds_packet_cache_addstream.cstream->buf_len >= lens->allocated > s->sizeib >= tempTroublesome bytes:left > 0stream->buffer == (char *) tds->out_buf + tds->out_posstream->buf_len == tds->out_buf_max - tds->out_pos + TDS_ADDITIONAL_SPACEError: tds_convert_stream: tds_iconv returned errno %d, conv_errno %d Error: tds_convert_stream: Gave up converting %u bytes due to error %d. No conversion possible: some bytes left. tds_dynamic_stream_writetds_staticout_stream_writetds_dataout_stream_writetds_dataout_stream_inittds_convert_stream'TDS_AUTH_TOKEN noncechallenge.cDraining %d bytes NTLMSSPKGS!@#$%/dev/tty    $<`T 0H       $ $ $ $ $ $ @                                                                                                                                     )4%/7(3-!0,1'8"5.*2$  91)! :2*" ;3+# <4,$?7/'>6.&=5-%  (08@ '/7?&.6>%- 5=$, 4<#+ 3;"* 2:!) 19:2*" <4,$ >6.&@80( 91)! ;3+# =5-% ?7/'6666666666666666\\\\\\\\\\\\\\\\smp.ccarry == 0smp_is_negative(a) != smp_is_negative(b) || smp_is_negative(a) == smp_is_negative(res)mul_smallsmp_add.%06lu;x h(H(x( H)@(-T-p8.H//(08123 3$4tX55(66,6@7lX889X99 :(:LH;;<X<< BEF HHIxJxLH8NOTt8UU8VV (WTWXXXhY<(ZZh[[ h\T x] ] x^!^8>\>X>(0?#?8'$@'\@)@)@+A-XAH-tA.AD$BHNBXOB8PBU0CxUDC(V\CXWCXCYDH[DD\xD^D(^DH^Dx^E^0E_lE`EfE{Fh|F|F|Gh}PG}lG}GGHȀ HH@HdHHHI8,Ih@IxIIIIIȇJ8TJhpJJJxJ,KhPK(KKKXL4LPLLXLhMxdMxMMؘM8MMȳN(NTNpNXN8N(OLOHxOOOػOxODPXpPȿPPx0QQQ,RRR8@SpSSSS8TxhTHT(T$UUV8tVVW8 XWHWXHXHdXxXX8X (YH!hY"Y8"YX"Y"Z#,Z%xZ0Z0[h5[I[(I[8I\HI\I<\IP\Ih\I\J\8J\XJ\xJ\J\J(]8KH]HK\]hKx]L]hL]L]M^MT^(O^O^(P_QX_(R_hR_R_R`(S4`8SH`Sp`8U`V`V`hW`Y0a(ZdaxZa]a]ah^bh`Hb`dbtbxvbXwcxc{dc|chc(0dHlddd e8he(ehfrxErHG$sIps8NsPsS$tXttxYtYtHZuZh?D?DЕJ0HLXLSXT TUV8ZH]D]^_HeTxehghho,o@rrrԚXsstP(tdt(uHu8vvwHw0w\xxz{8(|h|(}؝H}x}~dX~~~Ȟ~ܞ(8HlzRx $p FJ w?:*3$"D8 \pHw A (pIFAD uAAFXFBA A(D0w (I ABBM D (A ABBF T8N@X8A0HKAI 0|Hj N T T TAu J F J F J F J F J F J F J E K F J F J F J F J D D F B D L F J F J F J F J F J F J F J C[DV  wHQ G (1dLL@BBB A(D0A (A BBBE O (A BBBA ( AAD C AAA ,YJDD |ABG4eAGK ^ AAE K AAA $`AI L DA HTV(\ EO D K E Z F WLV N A G JLI K (`ECF [ AAE ( LLc A \ A\d( VLh D D LZ J F J DhD!ECG n AAA ` AAF L(D0L8I@S (!wEDD s DAK ("OEAG [ DAC $">LG M $H"B\el<"FBB B(D0D8Jh 8A0A(B BBBH BlBnNYAX (MBE D(D0 (A BBBC g (A BBBB T8I@\8A0*LF F 8(t+!FGS t ABI  CBB @dh-MDC e ABD h ABE P ABE 4.MDC ` ABI S ABJ .MDD K ABE | ABI J CBA b ABK U ABH _ ABF b ABC e ABH d(0MDC Q ABH J FBF M FBC P FBH M FBK P FBH P FBH P FBH Hd1BED A(D0r (F ABBC j(C ABBX41FBB B(A0A8GP 8A0A(B BBBK XK`TXAP<7tLe G {$7D} G T D T D (8bECG d AAK 4 H8uMDC ^ ABK A CBJ 0< 8nECG b AAM fFA(p 8aECG _ AAH ( 9bECG n AAA ( T9rECG j AAE ( 9aECG _ AAH 4 9jECG \ DAH D CAH @X $:ECG R AAE D CAH M AAI ( :ECG s CAJ 4 $;ECG { AAD L FAE 4 |;zECG p AAG D CAH 48 ;zECG p AAG D CAH 4p <Aw H \ D R F T D ] A ( oMDC ` ABI fFB( `>mMDC j ABG ( >lMDC ^ ABK ( >dMDC ] ABD (@ ,?dMDC ] ABD Pl p?.FBE D(C0G@l 0A(A BBBA HMPXHA@4 LAFDA ~ ABD R CBI x Aq FEE B(D0C8G 8A0A(B BBBE NRDABVoaTADtKFED C(GPQ (A ABBH @XP`FXAPlLMEE D(D0 (A BBBE R (C BBBE Z (C BBBE B8M@X8A0,PNgLb B v$LNuL_ M e A VHtN2FBD A(G0 (A ABBF |(J CBBpOFBE E(D0D8G@D 8A0A(B BBBA ZHNPWHA@: 8A0A(B BBBD 44SEDD y AAH U CAG HlS4FBE B(A0A8D@ 8A0A(B BBBA \tTFBB B(D0C8Gp 8A0A(B BBBD G]AlWFBB E(D0D8FP 8A0A(B BBBH U 8C0A(B BBBG uXJ`^XAP`dYFBB B(D0D8GP3 8A0A(B BBBH e 8C0A(B BBBG d[FBB B(A0D8D@ 8A0A(B BBBD D 8J0C(B BBBE $T^Ln F T D {$|@_wLV N F J v8_^MAC  ABC S FBE $`Ld P T D {4afFEE E(D0D8F@` 8A0A(B BBBC x 8A0A(B BBBF D 8C0A(B BBBH U 8C0A(B BBBG DHDPLXI`S@PbFBE D(C0GP 0A(A BBBE XL`WXBP4Dy25(Ab8025PEA D(D0Q(D ABBl269As246AO,286<BAA  ABK H2H7uFBB B(D0A8Dp} 8A0A(B BBBD  3|81NZH<38zEh K A \39EG  AH 839SDJ mDAU SDA$39MEAG }AAL3:FOB A(A0q (A BBBG a (A EBBA 44:vH4;-L\4 ;FEB A(A0 (A BBBH g (A FDBA 4; 4;4;Ab4$<840<FBA A(G0t (A ABBE 485=dEDD0p AAA D CAH p5=)JT5=45=QFDA J  AABC 5$?E J A G H5@#FEJ J(D0C8DP 8A0A(B BBBF H6tAEG | AG 0l6BJAG ~DAL ,6CtFNA  ABA (6D1NHJ DA46FhFED F(D0E(D ABB478F(QVP7LF)JWGLl7`FFBA A(D0 (A ABBD d (C ABBA <7GOAA  ABI XH 07pHAMD  DAI NDAL08LI FIH D0  AABG \  CABF V AAB8 J8JaJUA8lJ8(K`Y`08hedEFK s DAB NDA9e,9e0Hg(D9eEHD  AAK p9f!JL9f:Ee F 49fEAD ^ DAC \CAH9lgFEB E(D0D8DP 8D0A(B BBBA 8,:iFBA A(D0 (D ABBG (h:TjFDA AB:jhEi B 4:k^BAA ~ ABK A CBA :@k;kH;xnBBA A(D0s (A ABBE D(C ABB(`;n9FAG bAAF8;nmBEE I(I0x (A BBBA H;oBBB B(A0A8DP 8D0A(B BBBA 4<oAKG  AAJ (S0P(A pL<@q\BBB B(A0A8G@ 8A0A(B BBBE ] 8D0A(B BBBN uHDPOHA@8<,tBBA A(G@ (A ABBA H<uBEE B(A0D8D`W 8A0A(B BBBH pH=v8BBB B(A0D8D@ 8A0A(B BBBA ` 8D0A(B BBBK pHDPOHA@L=pxBBA A(G0Q (C ABBJ L (C ABBD L >xTBBB B(A0A8G  8A0A(B BBBJ ,\>{AC M I $>P}BEAD rDA>x}D>IDD  ABC A FBG (O0H(A @?̂BDD D0  AABC U  AABG ,T?BHA ] ABA 8?BAD  ABC A DBI 8?BAD  ABH A DBI @?@sBAD ~ ABH (]0D8E@DHAPN @@|BBB B(D0A8D@ 8C0A(B BBBF  8D0A(B BBBK gH`PHXG`K@QHMPrHA@LHTPZHH@`@mBBB B(A0D8D@p 8A0A(B BBBE O 8D0A(B BBBL \0AFBB B(A0A8Gx 8A0A(B BBBI  [RB@AFHE A(A0F@n 0A(A BBBA XABEB B(A0A8Gp 8A0A(B BBBD xUHxAp@0B` BBB A(C0GP 0A(A BBBF XtBزFEB B(A0A8Dp 8A0A(B BBBE 9xMVxAp`BABBB B(D0A8G 8A0A(B BBBH PLFX,4Cx~EAD0b AAB dCȾ%AA^Cܾ2CiH0[ A PC\=FBE D(D0Fp 0A(A BBBA vxLWxAp<DHbFBA A(DP (A ABBG <DDxFAA D0X  AABH h AAB8DBBB A(A0(A BBBDlHMDtHS(D|BAA ~AB(E0BFD \ABHHEBHE E(A0A8G` 8A0A(B BBBD LE( BBB E(A0A8J 8A0A(B BBBK <ETBDD F0]  AABG W AAB|$FuBBB E(D0K8GP 8F0A(B BBBL  8A0A(B BBBH  8C0A(B BBBG LFBBB E(A0A8G 8A0A(B BBBD F(G4G0$0G,@QDN ZAAXGDlGPHSGXHSG`HSGh$TOGHVGHVGHS,H`EGG0E AAA DH<Ej I CdH xHEV8HFED D(D0N (A ABBE H\FH x A HEH w A ICH u A H$IFEB B(D0D8G 8A0A(B BBBH HpI6FBB B(A0A8DH 8A0A(B BBBD <IrFEJ D(A0w (D BBBE 8I|FED D(D0 (C ABBB 88JFBA D(F (A ABBI (tJh_HDD v ABG (J<EDG Z AAD (J<ECG Y AAF (J<ECG Z AAE ($K<ECG Z CAC PK$dKNS_ N AGKKD0 A K`AG0] AJ KD0 E LKfBBB B(A0A8G 8A0A(B BBBA 0LLLAAD q CAE DFA0LLAAD q CAE DFA(LADG { AAG LO8LBEH D(D0w (A BBBK 00MLBAA D@p  AABD dM1AoLM<BHB B(A0A8G 8A0A(B BBBD 0MBAC G@q  AABF N fNPL0NFBB B(A0A8D 8A0A(B BBBD 4N\FAA | ABI A CBJ DN MEB B(A0A8 0A(B BBBA HO|%BBB B(D0D8G 8A0A(B BBBK 8LO'BBA D(G (A ABBG xO*(FBB B(A0A8G 8A0A(B BBBE  SLEEEEEEEOPR PSEc H tD`FBB B(A0A8D9 8A0A(B BBBK (hotBEID0A AAK o8C&EV E AoHCrH0C E @oCYED A(G@ (A ABBA upXD0H(ptDFBB B(A0A8DP 8A0A(B BBBG tpEpED m AI p4FpED m AI @pFrFDD F0a  AABG T  AABH TqFFBB B(A0A8H Q GH 8A0A(B BBBH PXq4J`FBJ E(A0A8G  8A0A(B BBBH q@N q(|FDA rCJHH|$FBE A(A0 (D BBBB D(A EBB|>|$W(|pGEDG c AAK ,|FDA [ ABG $}T6EGD cAA@}l;\,T}FDD l ABC `}FBB B(A0A8G I!!R!k!A!z 8A0A(B BBBE $}TAEDG nAA~|$~Vw8~ԣL~(`~EKG0r AAE $~PXEDF FAA~EV$~@AHG cGAL~WFBB B(D0A8G 8A0A(B BBBH HITndEV(AAG0 AAA <BBA A(G L1 (A ABBA 4ADGPBXS`PXAPb AAJ 8$BEG A(J (A ABBD 8`]BEE G(D0{(D BBBL@BBB B(A0A8G L7 8A0A(B BBBD \nFBB B(A0A8G 8A0A(B BBBI {KSALLEFBB B(A0A8DP  8D0A(B BBBD  PFBE B(A0A8L 8A0A(B BBBH 4TFHD A(G0p(D ABB\<0FEB D(D0i (D BBBH R (D BBBD Z(A BBBp,<LĂX-FQH E(H0D8T 8A0A(B BBBA H8FJJ J(D0C8FP 8A0A(B BBBA H`FBE B(E0A8D@M 8C0A(D BBBD ,0EFT AAE L܃MFBE B(D0A8J  8A0A(B BBBF @,OGHI B(E0A8"0A(E BBBp(LFEB D(E0 (A BBBK q (D BBBE ,ԄFED  ABK @xYGJB B(A0A80F(B DBbH(L\FEB D(E0 (A BBBK q (D BBBE ,pFED  ABK ܅ _H Q A ( `mFAD | DBC 08LEDD g DAG FDAl (EFDPx AAA  jH@\ A Ȇt ܆EDP AG LOH } E }H0Z F 83(LWEGJ0i MAE (xDEDGP AAG (hEAD0V AAA HЇ< FBB B(D0A8G 8A0A(B BBBA 4FHC D@  AABA ,TxfJGI |DAE0|FDA D0N  AABG 8|FED A(GPJ (A ABBI H$T+EHG TAAL0\FBA A(G0` (D ABBF K (D ABBD $@EGG gDA$,EGG IGDЉ$(PEDK0yAA$ (8EDH AAA dEO` AA $Km H GNUPB' dL` La Mb Mc Md pN Nj NCNOANHO@NOBNONNONPN XPN PN QN`QN QHNRN RNR{NRINSNHSKNpS^NSNSdN0TN`TqNTOTO0U OUrN(V O`VkN VNVOXWOWOWN XiNPX`NXjN XnN(Y OYlNYmNZOZ OZfN([NP[N[N \NH\O\O]uN]tN]sN^ Oh^hN^_N^N^N(_pN`_8N_N`N@`N`O `O `O @aO aO aO bO hbO bO bN`cNcNc4N c7N(dN`dwNdNdNdNe%N @evNxeNexNeNeN fN Pf?N fNfN%gXN @gSNhg:NgTNgQNg)N hNXh'Oh*Oi,O`i$Oi&Oi)OXj(Oj+Oj8O!k5O5k9OOk:Opk7Ok.Ol%O`l Ol6OmOhmOm;Om?Om4On1O@n@On#On-Oo2OPo/OoAOo!Op"Ohp0Op3O0qRNqPNqNq+N rON XrNr~NrN(sNHsNpsNsNsN tNPtNt"N tN tNuN8uFNxuN uO vN HvaNv9N vN Pw0Nw,NwO xN@xN xO xO x5N yNHyeNiycNy*NyNyN(zNhzNzNzNzN0{N h{N{GN{N{;NH|MNx|JN|}N|N(}NX}DN}N}6N }/N(~NH~Nx~N NxN.NUNLN$N JNhNNNp3NЁNNhNNNEN`NN1N VN@2N(N …N!N NH#NxN|NN gNPNNȇNN8]NhbNN0NhN \N N=N H-NsN N NWNNHNNNpNZN HN pNN x&N N؎NpNN8NU*h/q/z//////////////&/0000#0-070?0K0g0l0|00000A AA0AA?0@ @@@?-??3<`<P<>0>+PI-;;p999::+--23`CCpCCC '5g` a b xc d ` 3N4N N XN XN )N N 0"N N X6N x$N #N1N ,N(N !N -NN XZN N &N -N )D)C\HHJF D\D\M<D F\D<E E @E E E )E 1E 5EH=E EEKEHZEaEhEoEvE}EEEEEE\EEEEEE E!E"E#E$E%E\E E'F&F(F&FF:FYEF NF@`FBuF-F/F1F2FFFDFF8F9F:G?G3G<-G;@G=PG>aGGiGAwGKGGGZGG]G^M;G<G=G=GG&H' H(HH&E'F(T&H)F%H#)H4H?H*PH+NN=\H=M>cHYmH,pH,{HH\HHHHGF H-H.H/H0H1H28H3I4I5I6)I75I8@I9KI:VI;aI<lI=wI>I?I5II8I9I:I=I<I>I@I;I?JAJ3JB&J1JC K?K\$K/K3;K3LK4XK5dK5uK6K6K7K7KK8K8K9K9K:L:L;L;+L<6L<FL=QL=aL>lL>|L?L?LELDLFL@LDLFLDLDLDMBMBMB/MH@5MGPP6P8P9P:P;P<Q=Q>Q?!Q?'QY-QY4QZ9QC?QCFQ8 DODWD\OSOOOnOeO D E E 1E 5EHEEKEHZEaEhEoEvE}EEEEEEEEE E!E"E#E$E%G&H' H(H)?H*PH+mH,H-H.H/H0H1H2H3I4I5I6)I75I8@I9KI:VI;aI<lI=wI>I?I@JAJB1JCJDLELF5MG[Eo=HtM1a ZaZԫo0poͬ_c=vU| N 赢F5˫xj49RkZC&D+{C+< ^sՑBnzO$Zk>9e'9"Ѡ$[y_u#e5Hiۃ>O3Vת3/]S}ҽ8ظJ Z([0 sW;gD|'j~{S ,RRWkw1+( #y9QBp On ljC)$8y/dO9\kXn~CH2: ;F E2͆W }=}h25OBrَ(k/:Zݾ /[ɺ}. \C'ry/7іZ[ӎoëWv F`p@#SWC%D=]Vdܯ)6k]LLyڰ,G܏Р$=CM0XrO -qΛԱKX+I3\JsC>{dJ"u. aq.T4_#lB[ugYSkWLFA#۰uKiHf.3D-@G͉ai"MO/Ծ yZCk3KQFA5h4x'H!6nr^D{$9Rk>*?WatONCtî门=I_WR t>(O;`:Rq;.')앮@;6B:P8Q7W@L;TɨiJ>՟E""rRܔ;L˗k#>d dfT${Ή:)а~{pl꣔6$!Ts25K~Yc ]7)WBۋgG*ƒJa3h I 6c* :2ȟMƓfE>k$HOx[ 1^l5,ȁ߱r`{K}4#vo=P'Wx \%)>13x!VIéHeAficrs}/?A0cDnW,}=fM9"p)whICLn;GJ$_3zdpI/gϗSCS+YY-AZ5.I+bacE؏W!Aqx Z!U:aH Tgn^=y@1Iz@'0L!ȹ>u|Ѵ4m3xrȐ?6YB|TԪJi3EՍˆ"gG: F!Un/Fb8F dž ŎIOA[ U&tRajCۊ‚)Z rbU#6-H@΢׀j #]yqp\ AVaG)+ӵ܊ ҄!&PK#ʑ<|Jf[~WAB<OoG|V?>0EHcYmٛ],\觺R`g, f)Tȅ'#XN6oQ,YL`^0nː5!ODZVk3մq1';auc7͒nY-zI3k4*OUp'DiARsrYƤRq57{ǂlVn1J:Ѭ}!1ocr՘!J*֌cC=?Pabq}!˭a?!%ˇq0Z_4GVg@s19uiFkm^A4Bo=?wQOWɫ'lNt|ޚ5#}( =ң6Ӕ}Ũ6ৎ'!SQ{s@6|]y(hCO6g]ViyTp&n|uM xI 5asn?^d885Q}4a4kT jPĊm_8䧟bR_2󑼹h]?Q:izkkQsd4 A~)y(1!H;vb`w翸zEBdyCrRI~H2DM;HBbrL{(Ea@a_.a! R#nxd̕ DP\(ݛ5yDK8WGpW <=|.S) c\e1EgoG@$fu:3 e瀡)IZ$U nL}N0*n73>e~"?.(%aCƱ3ݯb|,Kj!S%Raff.{He&4\<.Tz/gf) ъZe-얓IյEo*V dWC{ZM/hX*A׆of+T~j?BpX?u bO<0+˿bt,dS`aBPcIgSw^Q8^38іKKus慁0~`&DMô^C*%n=iQ '&o\O2]svoa1A2bnL?zMAle&^jK^ܝN%Vu0к K"fewdҭfn:&7PwlzE$ܲJNf-8a+0_F[y't/kv.F8"n! zebԷZ]azd@lgD'DƔ)f,+*9vDžu13|W~HsBξ-^u`bSW'8]%Q@Ĥ"y fض.65Zp<֎C&Nյ!v_?E\qtͱY';ח:d9(׶sWr; ҄빇Nqn53]l欄lB|nc,IWIv$!Rt26P$D !m%7t nBYhЄsƩڛ^"qs|QEtE߬q9-ƭ'-t/'1ֻ͐q} mi sqQVӹL`6%af@L+fV8'6, RZL116+ ?sG}j@2X|%KbB#}ƜouV=Iʇ ùۚsryqjY3pdB@Og!A1g1r/Z|ݰJS]B|1W؈U-VOmuɕJ-L$Y* qF: xQ,$iI,'zЫeB:@wAīn|&gЩh,&$eQpwO% hL_W2MKHNl4Ն l ǡ,+uĮ:kDseZ&qM[E'I|5tb=|Cu {-',ڵ *$ȂyˉmAC7(%X*oN3XȆ PԴ+X(X`H&=slgV3!X5a/ Y1DAhwCS흅`Iv<ߢmwxO~o- %ݨHqϞqYG_Qĕ[Ɋ' Lҋ@~YC`_S̚q49#|@yCmޭ 270gEWM=~SZQgQ]Pя+׼]ȞȜW>Oec_&Εen{~A ZqދhZbj;, m">ZUd~ -ѳUP2L]\U9^| TZK[#eN'*›ԧ:"h6Et=̷ozq,(IP5\xXA=a 6TΘMp証mmb 5i8!91RzKEHoBny|dֹ736Pmi;!HQ{r1|)3iQ&=uxc5-KOݨÍWMu!|7ϐ3aHRx.!Nl9>ԁB7ws׽O:œ4p&`"$$ב=^GcR'Ȇg]ARjXk"OgjPRn蓰!N]lɣŀ&Id?t޶U3kg{w h #)|<ا_A*֩Xbf6H•\Svx|_yQwbrxj+#v ۄơaXF=4bq2kE7S=Gx?ڡ 5; 2hL/f%ó D7xO/ͽ͞6@#> $ɑ; I~FNT'c_QG6:rgqZIMO*kxlL3Sn"s/[ vS~mE,5ԴDCxn1PDys 1irMYyƸ:KG&u; /' ycP oab7A Qq ~FQNo<[*W,D3ЈoKn~GIe/R݆CY*$1G|Uĩ#1 3aHCn(e ;L9wkqLbdb&!YQ*ͥ6}hGHxv^&LJhJm25 f飱Y\WK'FBO)ݫޔ1s)`6Wf#5Eu%R"əd?v0(ZѰsVzca\2ZdQx߸ĻS9ٚ%b&4mEsTVKobr7c=!aa4W>,vU.A:Ge,H2DzuXY V栙1qT#)UGƭ!FUoEN]W.tLU` "3f袄0~Aj{P?Mpc|C:t;<j#;kX. _D JZNTenfj砬 yńlȈɩh~"G &DEdyN_XPr) a_{* ywN~Tp)+-w5i>}TB̑rE2q _Bй\ 62 <ƭwxlmTyZ E|`QkL>1-Xfc'J l $< ֣}1eZRdeUeĶuK.HAf>+Yʍ/(hYxnL'l0+u›MzIȡ%|) iqLٺcW_GE>QBb1FC ޗ`so^.XK2D[ 6!7XcdGP/i\%C? WOa>~jJ0?yA\U@U͉P+!H ÿ0h0y^n*y4ǃoҝf>Rbw hU~̓_b8Zoک\͇g/mvLCar°tsc,Z O֏nhךEFvM=gYZ.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 88$o``0( H!0((8o99Eox<x<T==XS^BhcХХ n wX}|| ~ XX@@88 B'BB'BB'B3 v'v0x'xH'  ' gl |0t(PKj5] usr/lib64nuȯPKj5]etc/freetds.confnu[# # This file is installed by FreeTDS if no file by the same # name is found in the installation directory. # # For information about the layout of this file and its settings, # see the freetds.conf manpage "man freetds.conf". # Global settings are overridden by those in a database # server specific section [global] # TDS protocol version tds version = auto # Whether to write a TDSDUMP file for diagnostic purposes # (setting this to /tmp is insecure on a multi-user system) ; dump file = /tmp/freetds.log ; debug flags = 0xffff # Command and connection timeouts ; timeout = 10 ; connect timeout = 10 # To reduce data sent from server for BLOBs (like TEXT or # IMAGE) try setting 'text size' to a reasonable limit ; text size = 64512 # If you experience TLS handshake errors and are using openssl, # try adjusting the cipher list (don't surround in double or single quotes) # openssl ciphers = HIGH:!SSLv2:!aNULL:-DH # A typical Sybase server [egServer50] host = symachine.domain.com port = 5000 tds version = 5.0 # A typical Microsoft server [egServer73] host = ntmachine.domain.com port = 1433 tds version = 7.3 PKj5]EQ etc/pool.confnu[[global] min pool conn = 5 max pool conn = 10 max member age = 120 [mypool] user = guest password = sybase database = tempdb server = JDBC_42 port = 5000 PKj5]rretc/locales.confnu[[default] date format = %b %e %Y %I:%M:%S:%z%p [en_US] date format = %b %e %Y %I:%M:%S:%z%p language = us_english charset = iso_1 [es_ES] date format = %b %d %Y %I:%M%p language = spanish charset = iso_1 [pt_BR] date format = %d/%m/%Y %H:%M language = Portuguese charset = iso_1 [it_IT] date format = %d/%m/%Y %H:%M language = Italiano charset = iso_1 PKj5]0-@@!usr/share/man/man5/freetds.conf.5nu[PKj5] 'Wusr/share/man/man1/osql.1nu[PKj5] !usr/share/man/man1/bsqldb.1nu[PKj5];ӛ< < /usr/share/man/man1/defncopy.1nu[PKj5]C:usr/share/man/man1/freebcp.1nu[PKj5]t t _Susr/share/man/man1/datacopy.1nu[PKj5]s99 ]usr/share/man/man1/fisql.1nu[PKj5]R#ZP P musr/share/man/man1/bsqlodbc.1nu[PKj5]%ߜ @wusr/share/man/man1/tsql.1nu[PKj5]d &!usr/share/doc/alt-freetds11/AUTHORS.mdnu[PKj5] č%Kusr/share/doc/alt-freetds11/ChangeLognu[PKj5][Dkk#eusr/share/doc/alt-freetds11/NEWS.mdnu[PKj5]-&#Cusr/share/doc/alt-freetds11/INSTALL.mdnu[PKj5][y'c'c+MFusr/share/doc/alt-freetds11/COPYING_LIB.txtnu[PKj5]B#ϩusr/share/doc/alt-freetds11/TODO.mdnu[PKj5]a[* * %usr/share/doc/alt-freetds11/README.mdnu[PKj5]FNFF'{usr/share/doc/alt-freetds11/COPYING.txtnu[PKj5]_~ ~ usr/bin/fisqlnuȯPKj5]`%% usr/bin/osqlnuȯPKj5]l Lǵusr/bin/bsqldbnuȯPKj5]d@@r@rHusr/bin/defncopynuȯPKj5]aausr/bin/bsqlodbcnuȯPKj5]q1aa-usr/bin/datacopynuȯPKj5]RbbMusr/bin/freebcpnuȯPKj5]"66,usr/bin/tdspoolnuȯPKj5]m + usr/bin/tsqlnuȯPKj5]jppxpxusr/lib64/libct.so.4.0.0nuȯPKj5]2uusr/lib64/libsybdb.so.5.1.0nuȯPKj5] Dusr/lib64nuȯPKj5] Eetc/freetds.confnu[PKj5]EQ Ietc/pool.confnu[PKj5]rrJetc/locales.confnu[PK  L