Random Apache httpd 2.2.16-6+squeeze7 + PHP 5.3.3-7+squeeze9 crashs without any consistent backtrace

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Hello, everybody.

First, I must warn you that English isn't my mother tongue, so please
excuse my possible language errors.

I manage a web server which runs under heavy flow of requests (CPU
around 50% on a Bi-Quad Core), and, during the last months, we
encountered random crashes of the Web server. At first, it was only
apache2 crashs (around one crash a day), but, after a few weeks, these
crash affected the operating system (Debian 6.0.4, amd64 arch), ie the
OS hanged and the whole server had to be electrically rebooted.

At this point, given that none of the system logs nor Apache logs
displayed any error, failure or notice before crashes, that no data was
damaged, that no irregular session opening nor suspect activity was
detected, we considered two possibilities : a software bug or a hardware
problem. As we rent our physical server, we tried to eliminate the first
possibility by manually upgrading Apache to the last 2.2 version
available, that is to say 2.2.22. We quickly found out that this did not
solved the problem, as crashes were as frequent as before the upgrade.

We informed the server supplier that his machine was behaving strangely
and asked a full hardware diagnostic, but, despite three system crashes
within a single day, he didn't seem to find it worrying. We insisted,
and after a single SMART and RAID (1) self-test, he advised us that the
server had to be shutted down during several hours to allow a full
hardware diagnostic. Such a website downtime was impossible for us, so I
tried to make me absolutely sure that these crash had nothing to do with
our code before asking the hardware diagnostic, so I activated Apache
CrashDump feature in order to find a pattern within the crashed
processes. Because I am not an expert in software debugging, I followed
a procedure found on the Internet, which was installing gdb and the
debugging symbols of both Apache and PHP, then waiting for a crash to
occur and executing the following command on the CrashDump file :
gdb /usr/sbin/apache2 $CrashDump --batch --quiet -ex "thread apply all
bt full" > $CrashDump.log

Along the past month, I collected 18 backtraces, all analyzed with the
above command and attached to this mail. I wasn't able to find any
relevant pattern in these crashdumps, but, as I told, I don't even know
if my backtrace procedure was right.

I made several SMART self-tests, as I wasn't confident in the supplier
ones, and none of them displayed any value above the normal ones, and no
data I/O errors at all.

As the crashes continued, the server supplier finally agreed that there
was maybe a hardware problem, built an identical machine and switched
our RAID cluster on the new machine. The httpd server, which was
crashing every day, runned without problem during a week, and we even
noticed a decreased ressource consumption and latency, giving credit to
the hardware problem theory.

Nevertheless, after this week of honeymoon period, httpd crashes soon
came back at the one-crash-a-day usual rate. I then tried to remove an
old PHP Xcache module, which was outdated for years, but it did not
solved the problem. I tried to upgrade the whole PHP 5.3 components, ie
Apache module and php* installed packages, to the 5.3.13-1~dotdeb.0
version, but our code quickly messed with this version, and I was forced
to downgrade PHP packages to the previous 5.3.3-7+squeeze9.

Please find attached PHP and Apache versions and config files.

I hope that I gave all necessary informations. If some are missing, just
ask me and I will give them, as far as possible.

I know that the problem could looks trivial for somebody who knows the
ins and outs of Apache httpd, but this problem has been present for
months, we already checked our code but, without a decent backtrace, it
is impossibile to find the possible source bug, and it's worse if the
problem comes form an Apache httpd or PHP bug.

Thank you in advance for your help.

Regards.

Server version: Apache/2.2.16 (Debian)
Server built:   Apr  1 2012 07:14:38
Server's Module Magic Number: 20051115:24
Server loaded:  APR 1.4.2, APR-Util 1.4.1
Compiled using: APR 1.4.2, APR-Util 1.3.9
Architecture:   64-bit
Server MPM:     Prefork
  threaded:     no
    forked:     yes (variable process count)
Server compiled with....
 -D APACHE_MPM_DIR="server/mpm/prefork"
 -D APR_HAS_SENDFILE
 -D APR_HAS_MMAP
 -D APR_HAVE_IPV6 (IPv4-mapped addresses enabled)
 -D APR_USE_SYSVSEM_SERIALIZE
 -D APR_USE_PTHREAD_SERIALIZE
 -D SINGLE_LISTEN_UNSERIALIZED_ACCEPT
 -D APR_HAS_OTHER_CHILD
 -D AP_HAVE_RELIABLE_PIPED_LOGS
 -D DYNAMIC_MODULE_LIMIT=128
 -D HTTPD_ROOT="/etc/apache2"
 -D SUEXEC_BIN="/usr/lib/apache2/suexec"
 -D DEFAULT_PIDLOG="/var/run/apache2.pid"
 -D DEFAULT_SCOREBOARD="logs/apache_runtime_status"
 -D DEFAULT_LOCKFILE="/var/run/apache2/accept.lock"
 -D DEFAULT_ERRORLOG="logs/error_log"
 -D AP_TYPES_CONFIG_FILE="mime.types"
 -D SERVER_CONFIG_FILE="apache2.conf"
#
# Based upon the NCSA server configuration files originally by Rob McCool.
#
# This is the main Apache server configuration file.  It contains the
# configuration directives that give the server its instructions.
# See <URL:http://httpd.apache.org/docs-2.1/> for detailed information about
# the directives.
#
# Do NOT simply read the instructions in here without understanding
# what they do.  They're here only as hints or reminders.  If you are unsure
# consult the online docs. You have been warned.  
#
# The configuration directives are grouped into three basic sections:
#  1. Directives that control the operation of the Apache server process as a
#     whole (the 'global environment').
#  2. Directives that define the parameters of the 'main' or 'default' server,
#     which responds to requests that aren't handled by a virtual host.
#     These directives also provide default values for the settings
#     of all virtual hosts.
#  3. Settings for virtual hosts, which allow Web requests to be sent to
#     different IP addresses or hostnames and have them handled by the
#     same Apache server process.
#
# Configuration and logfile names: If the filenames you specify for many
# of the server's control files begin with "/" (or "drive:/" for Win32), the
# server will use that explicit path.  If the filenames do *not* begin
# with "/", the value of ServerRoot is prepended -- so "/var/log/apache2/foo.log"
# with ServerRoot set to "" will be interpreted by the
# server as "//var/log/apache2/foo.log".
#

### Section 1: Global Environment
#
# The directives in this section affect the overall operation of Apache,
# such as the number of concurrent requests it can handle or where it
# can find its configuration files.
#

#
# ServerRoot: The top of the directory tree under which the server's
# configuration, error, and log files are kept.
#
# NOTE!  If you intend to place this on an NFS (or otherwise network)
# mounted filesystem then please read the LockFile documentation (available
# at <URL:http://httpd.apache.org/docs-2.1/mod/mpm_common.html#lockfile>);
# you will save yourself a lot of trouble.
#
# Do NOT add a slash at the end of the directory path.
#
ServerRoot "/etc/apache2"

#
# The accept serialization lock file MUST BE STORED ON A LOCAL DISK.
#
#<IfModule !mpm_winnt.c>
#<IfModule !mpm_netware.c>
LockFile /var/lock/apache2/accept.lock
#</IfModule>
#</IfModule>

#
# PidFile: The file in which the server should record its process
# identification number when it starts.
#
PidFile /var/run/apache2.pid

#
# Timeout: The number of seconds before receives and sends time out.
#
Timeout 30

#
# KeepAlive: Whether or not to allow persistent connections (more than
# one request per connection). Set to "Off" to deactivate.
#
KeepAlive Off

#
# MaxKeepAliveRequests: The maximum number of requests to allow
# during a persistent connection. Set to 0 to allow an unlimited amount.
# We recommend you leave this number high, for maximum performance.
#
MaxKeepAliveRequests 400

#
# KeepAliveTimeout: Number of seconds to wait for the next request from the
# same client on the same connection.
#

KeepAliveTimeout 5

##
## Server-Pool Size Regulation (MPM specific)
## 

# prefork MPM
# StartServers: number of server processes to start
# MinSpareServers: minimum number of server processes which are kept spare
# MaxSpareServers: maximum number of server processes which are kept spare
# MaxClients: maximum number of server processes allowed to start
# MaxRequestsPerChild: maximum number of requests a server process serves
<IfModule mpm_prefork_module>
    ServerLimit		450
    StartServers          110
    MinSpareServers       5
    MaxSpareServers      10
    MaxClients          445
    MaxRequestsPerChild   3000
</IfModule>

# worker MPM
# StartServers: initial number of server processes to start
# MaxClients: maximum number of simultaneous client connections
# MinSpareThreads: minimum number of worker threads which are kept spare
# MaxSpareThreads: maximum number of worker threads which are kept spare
# ThreadsPerChild: constant number of worker threads in each server process
# MaxRequestsPerChild: maximum number of requests a server process serves
<IfModule mpm_worker_module>
    ServerLimit		450
    StartServers          2
    MaxClients          350
    MinSpareThreads      25
    MaxSpareThreads      75 
    ThreadsPerChild      25
    MaxRequestsPerChild   3000
</IfModule>

User www-data
Group www-data

#
# AccessFileName: The name of the file to look for in each directory
# for additional configuration directives.  See also the AllowOverride
# directive.
#

AccessFileName .htaccess

#
# The following lines prevent .htaccess and .htpasswd files from being 
# viewed by Web clients. 
#
<Files ~ "^\.ht">
    Order allow,deny
    Deny from all
</Files>

TypesConfig /etc/mime.types

#
# DefaultType is the default MIME type the server will use for a document
# if it cannot otherwise determine one, such as from filename extensions.
# If your server contains mostly text or HTML documents, "text/plain" is
# a good value.  If most of your content is binary, such as applications
# or images, you may want to use "application/octet-stream" instead to
# keep browsers from trying to display binary files as though they are
# text.
#
DefaultType text/plain


#
# HostnameLookups: Log the names of clients or just their IP addresses
# e.g., www.apache.org (on) or 204.62.129.132 (off).
# The default is off because it'd be overall better for the net if people
# had to knowingly turn this feature on, since enabling it means that
# each client request will result in AT LEAST one lookup request to the
# nameserver.
#
HostnameLookups Off

# ErrorLog: The location of the error log file.
# If you do not specify an ErrorLog directive within a <VirtualHost>
# container, error messages relating to that virtual host will be
# logged here.  If you *do* define an error logfile for a <VirtualHost>
# container, that host's errors will be logged there and not here.
#
ErrorLog /var/log/apache2/error.log

#
# LogLevel: Control the number of messages logged to the error_log.
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
#
LogLevel warn

# Include module configuration:
Include /etc/apache2/mods-enabled/*.load
Include /etc/apache2/mods-enabled/*.conf

# Include all the user configurations:
Include /etc/apache2/httpd.conf

# Include ports listing
Include /etc/apache2/ports.conf

# Include generic snippets of statements
Include /etc/apache2/conf.d/

#
# The following directives define some format nicknames for use with
# a CustomLog directive (see below).
#
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
LogFormat "%h %l %u %t \"%r\" %>s %b" common
LogFormat "%{Referer}i -> %U" referer
LogFormat "%{User-agent}i" agent

#
# ServerTokens
# This directive configures what you return as the Server HTTP response
# Header. The default is 'Full' which sends information about the OS-Type
# and compiled in modules.
# Set to one of:  Full | OS | Minor | Minimal | Major | Prod
# where Full conveys the most information, and Prod the least.
#
ServerTokens Prod

#
# Optionally add a line containing the server version and virtual host
# name to server-generated pages (internal error documents, FTP directory 
# listings, mod_status and mod_info output etc., but not CGI generated 
# documents or custom error documents).
# Set to "EMail" to also include a mailto: link to the ServerAdmin.
# Set to one of:  On | Off | EMail
#
ServerSignature Off

<IfModule alias_module>
    #
    # Aliases: Add here as many aliases as you need (with no limit). The format is 
    # Alias fakename realname
    #
    # Note that if you include a trailing / on fakename then the server will
    # require it to be present in the URL.  So "/icons" isn't aliased in this
    # example, only "/icons/".  If the fakename is slash-terminated, then the 
    # realname must also be slash terminated, and if the fakename omits the 
    # trailing slash, the realname must also omit it.
    #
    # We include the /icons/ alias for FancyIndexed directory listings.  If
    # you do not use FancyIndexing, you may comment this out.
    #
    Alias /icons/ "/usr/share/apache2/icons/"

    <Directory "/usr/share/apache2/icons">
        Options Indexes MultiViews
        AllowOverride None
        Order allow,deny
        Allow from all
    </Directory>

</IfModule>

#
# Directives controlling the display of server-generated directory listings.
#
<IfModule mod_autoindex.c>

    #
    # IndexOptions: Controls the appearance of server-generated directory
    # listings.
    #
    IndexOptions FancyIndexing VersionSort HTMLTable NameWidth=*

    #
    # AddIcon* directives tell the server which icon to show for different
    # files or filename extensions.  These are only displayed for
    # FancyIndexed directories.
    #
    AddIconByEncoding (CMP,/icons/compressed.gif) x-compress x-gzip

    AddIconByType (TXT,/icons/text.gif) text/*
    AddIconByType (IMG,/icons/image2.gif) image/*
    AddIconByType (SND,/icons/sound2.gif) audio/*
    AddIconByType (VID,/icons/movie.gif) video/*

    AddIcon /icons/binary.gif .bin .exe
    AddIcon /icons/binhex.gif .hqx
    AddIcon /icons/tar.gif .tar
    AddIcon /icons/world2.gif .wrl .wrl.gz .vrml .vrm .iv
    AddIcon /icons/compressed.gif .Z .z .tgz .gz .zip
    AddIcon /icons/a.gif .ps .ai .eps
    AddIcon /icons/layout.gif .html .shtml .htm .pdf
    AddIcon /icons/text.gif .txt
    AddIcon /icons/c.gif .c
    AddIcon /icons/p.gif .pl .py
    AddIcon /icons/f.gif .for
    AddIcon /icons/dvi.gif .dvi
    AddIcon /icons/uuencoded.gif .uu
    AddIcon /icons/script.gif .conf .sh .shar .csh .ksh .tcl
    AddIcon /icons/tex.gif .tex
    AddIcon /icons/bomb.gif core

    AddIcon /icons/back.gif ..
    AddIcon /icons/hand.right.gif README
    AddIcon /icons/folder.gif ^^DIRECTORY^^
    AddIcon /icons/blank.gif ^^BLANKICON^^

    #
    # DefaultIcon is which icon to show for files which do not have an icon
    # explicitly set.
    #
    DefaultIcon /icons/unknown.gif

    #
    # AddDescription allows you to place a short description after a file in
    # server-generated indexes.  These are only displayed for FancyIndexed
    # directories.
    # Format: AddDescription "description" filename
    #
    #AddDescription "GZIP compressed document" .gz
    #AddDescription "tar archive" .tar
    #AddDescription "GZIP compressed tar archive" .tgz

    #
    # ReadmeName is the name of the README file the server will look for by
    # default, and append to directory listings.
    #
    # HeaderName is the name of a file which should be prepended to
    # directory indexes. 
    ReadmeName README.html
    HeaderName HEADER.html

    #
    # IndexIgnore is a set of filenames which directory indexing should ignore
    # and not include in the listing.  Shell-style wildcarding is permitted.
    #
    IndexIgnore .??* *~ *# RCS CVS *,v *,t 
</IfModule>

<IfModule mod_mime.c>

    #
    # AddType allows you to add to or override the MIME configuration
    # file mime.types for specific file types.
    #
    #AddType application/x-gzip .tgz
    #
    # AddEncoding allows you to have certain browsers uncompress
    # information on the fly. Note: Not all browsers support this.
    # Despite the name similarity, the following Add* directives have
    # nothing to do with the FancyIndexing customization directives above.
    #
    #AddEncoding x-compress .Z
    #AddEncoding x-gzip .gz .tgz
    #
    # If the AddEncoding directives above are commented-out, then you
    # probably should define those extensions to indicate media types:
    #
    AddType application/x-compress .Z
    AddType application/x-gzip .gz .tgz

    #
    # DefaultLanguage and AddLanguage allows you to specify the language of 
    # a document. You can then use content negotiation to give a browser a 
    # file in a language the user can understand.
    #
    # Specify a default language. This means that all data
    # going out without a specific language tag (see below) will 
    # be marked with this one. You probably do NOT want to set
    # this unless you are sure it is correct for all cases.
    #
    # * It is generally better to not mark a page as 
    # * being a certain language than marking it with the wrong
    # * language!
    #
    # DefaultLanguage nl
    #
    # Note 1: The suffix does not have to be the same as the language
    # keyword --- those with documents in Polish (whose net-standard
    # language code is pl) may wish to use "AddLanguage pl .po" to
    # avoid the ambiguity with the common suffix for perl scripts.
    #
    # Note 2: The example entries below illustrate that in some cases 
    # the two character 'Language' abbreviation is not identical to 
    # the two character 'Country' code for its country,
    # E.g. 'Danmark/dk' versus 'Danish/da'.
    #
    # Note 3: In the case of 'ltz' we violate the RFC by using a three char
    # specifier. There is 'work in progress' to fix this and get
    # the reference data for rfc1766 cleaned up.
    #
    # Catalan (ca) - Croatian (hr) - Czech (cs) - Danish (da) - Dutch (nl)
    # English (en) - Esperanto (eo) - Estonian (et) - French (fr) - German (de)
    # Greek-Modern (el) - Hebrew (he) - Italian (it) - Japanese (ja)
    # Korean (ko) - Luxembourgeois* (ltz) - Norwegian Nynorsk (nn)
    # Norwegian (no) - Polish (pl) - Portugese (pt)
    # Brazilian Portuguese (pt-BR) - Russian (ru) - Swedish (sv)
    # Simplified Chinese (zh-CN) - Spanish (es) - Traditional Chinese (zh-TW)
    #
    AddLanguage ca .ca
    AddLanguage cs .cz .cs
    AddLanguage da .dk
    AddLanguage de .de
    AddLanguage el .el
    AddLanguage en .en
    AddLanguage eo .eo
    AddLanguage es .es
    AddLanguage et .et
    AddLanguage fr .fr
    AddLanguage he .he
    AddLanguage hr .hr
    AddLanguage it .it
    AddLanguage ja .ja
    AddLanguage ko .ko
    AddLanguage ltz .ltz
    AddLanguage nl .nl
    AddLanguage nn .nn
    AddLanguage no .no
    AddLanguage pl .po
    AddLanguage pt .pt
    AddLanguage pt-BR .pt-br
    AddLanguage ru .ru
    AddLanguage sv .sv
    AddLanguage zh-CN .zh-cn
    AddLanguage zh-TW .zh-tw
</IfModule>

<IfModule mod_negotiation.c>
    #
    # LanguagePriority allows you to give precedence to some languages
    # in case of a tie during content negotiation.
    #
    # Just list the languages in decreasing order of preference. We have
    # more or less alphabetized them here. You probably want to change this.
    #
    LanguagePriority en ca cs da de el eo es et fr he hr it ja ko ltz nl nn no pl pt pt-BR ru sv zh-CN zh-TW

    #
    # ForceLanguagePriority allows you to serve a result page rather than
    # MULTIPLE CHOICES (Prefer) [in case of a tie] or NOT ACCEPTABLE (Fallback)
    # [in case no accepted languages matched the available variants]
    #
    ForceLanguagePriority Prefer Fallback

</IfModule>

<IfModule mod_mime.c>
    #
    # Specify a default charset for all pages sent out. This is
    # always a good idea and opens the door for future internationalisation
    # of your web site, should you ever want it. Specifying it as
    # a default does little harm; as the standard dictates that a page
    # is in iso-8859-1 (latin1) unless specified otherwise i.e. you
    # are merely stating the obvious. There are also some security
    # reasons in browsers, related to javascript and URL parsing
    # which encourage you to always set a default char set.
    #
    #AddDefaultCharset ISO-8859-1

    #
    # Commonly used filename extensions to character sets. You probably
    # want to avoid clashes with the language extensions, unless you
    # are good at carefully testing your setup after each change.
    # See http://www.iana.org/assignments/character-sets for the
    # official list of charset names and their respective RFCs.
    #
    AddCharset us-ascii    .ascii .us-ascii
    AddCharset ISO-8859-1  .iso8859-1  .latin1
    AddCharset ISO-8859-2  .iso8859-2  .latin2 .cen
    AddCharset ISO-8859-3  .iso8859-3  .latin3
    AddCharset ISO-8859-4  .iso8859-4  .latin4
    AddCharset ISO-8859-5  .iso8859-5  .cyr .iso-ru
    AddCharset ISO-8859-6  .iso8859-6  .arb .arabic
    AddCharset ISO-8859-7  .iso8859-7  .grk .greek
    AddCharset ISO-8859-8  .iso8859-8  .heb .hebrew
    AddCharset ISO-8859-9  .iso8859-9  .latin5 .trk
    AddCharset ISO-8859-10  .iso8859-10  .latin6
    AddCharset ISO-8859-13  .iso8859-13
    AddCharset ISO-8859-14  .iso8859-14  .latin8
    AddCharset ISO-8859-15  .iso8859-15  .latin9
    AddCharset ISO-8859-16  .iso8859-16  .latin10
    AddCharset ISO-2022-JP .iso2022-jp .jis
    AddCharset ISO-2022-KR .iso2022-kr .kis
    AddCharset ISO-2022-CN .iso2022-cn .cis
    AddCharset Big5        .Big5       .big5 .b5
    AddCharset cn-Big5     .cn-big5
    # For russian, more than one charset is used (depends on client, mostly):
    AddCharset WINDOWS-1251 .cp-1251   .win-1251
    AddCharset CP866       .cp866
    AddCharset KOI8      .koi8
    AddCharset KOI8-E      .koi8-e
    AddCharset KOI8-r      .koi8-r .koi8-ru
    AddCharset KOI8-U      .koi8-u
    AddCharset KOI8-ru     .koi8-uk .ua
    AddCharset ISO-10646-UCS-2 .ucs2
    AddCharset ISO-10646-UCS-4 .ucs4
    AddCharset UTF-7       .utf7
    AddCharset UTF-8       .utf8
    AddCharset UTF-16      .utf16
    AddCharset UTF-16BE    .utf16be
    AddCharset UTF-16LE    .utf16le
    AddCharset UTF-32      .utf32
    AddCharset UTF-32BE    .utf32be
    AddCharset UTF-32LE    .utf32le
    AddCharset euc-cn      .euc-cn
    AddCharset euc-gb      .euc-gb
    AddCharset euc-jp      .euc-jp
    AddCharset euc-kr      .euc-kr
    #Not sure how euc-tw got in - IANA doesn't list it???
    AddCharset EUC-TW      .euc-tw
    AddCharset gb2312      .gb2312 .gb
    AddCharset iso-10646-ucs-2 .ucs-2 .iso-10646-ucs-2
    AddCharset iso-10646-ucs-4 .ucs-4 .iso-10646-ucs-4
    AddCharset shift_jis   .shift_jis .sjis

    #
    # AddHandler allows you to map certain file extensions to "handlers":
    # actions unrelated to filetype. These can be either built into the server
    # or added with the Action directive (see below)
    #
    # To use CGI scripts outside of ScriptAliased directories:
    # (You will also need to add "ExecCGI" to the "Options" directive.)
    #
    #AddHandler cgi-script .cgi

    #
    # For files that include their own HTTP headers:
    #
    #AddHandler send-as-is asis

    #
    # For server-parsed imagemap files:
    #
    #AddHandler imap-file map

    #
    # For type maps (negotiated resources):
    # (This is enabled by default to allow the Apache "It Worked" page
    #  to be distributed in multiple languages.)
    #
    AddHandler type-map var

    #
    # Filters allow you to process content before it is sent to the client.
    #
    # To parse .shtml files for server-side includes (SSI):
    # (You will also need to add "Includes" to the "Options" directive.)
    #
    AddType text/html .shtml
    AddOutputFilter INCLUDES .shtml
</IfModule>

#
# Action lets you define media types that will execute a script whenever
# a matching file is called. This eliminates the need for repeated URL
# pathnames for oft-used CGI file processors.
# Format: Action media/type /cgi-script/location
# Format: Action handler-name /cgi-script/location
#

#
# Customizable error responses come in three flavors:
# 1) plain text 2) local redirects 3) external redirects
#
# Some examples:
#ErrorDocument 500 "The server made a boo boo."
#ErrorDocument 404 /missing.html
#ErrorDocument 404 "/cgi-bin/missing_handler.pl"
#ErrorDocument 402 http://www.example.com/subscription_info.html
#

#
# Putting this all together, we can internationalize error responses.
#
# We use Alias to redirect any /error/HTTP_<error>.html.var response to
# our collection of by-error message multi-language collections.  We use 
# includes to substitute the appropriate text.
#
# You can modify the messages' appearance without changing any of the
# default HTTP_<error>.html.var files by adding the line:
#
#   Alias /error/include/ "/your/include/path/"
#
# which allows you to create your own set of files by starting with the
# /usr/share/apache2/error/include/ files and copying them to /your/include/path/, 
# even on a per-VirtualHost basis.  The default include files will display
# your Apache version number and your ServerAdmin email address regardless
# of the setting of ServerSignature.
#
# The internationalized error documents require mod_alias, mod_include
# and mod_negotiation.  To activate them, uncomment the following 30 lines.

#    Alias /error/ "/usr/share/apache2/error/"
#
#    <Directory "/usr/share/apache2/error">
#        AllowOverride None
#        Options IncludesNoExec
#        AddOutputFilter Includes html
#        AddHandler type-map var
#        Order allow,deny
#        Allow from all
#        LanguagePriority en cs de es fr it nl sv pt-br ro
#        ForceLanguagePriority Prefer Fallback
#    </Directory>
#
#    ErrorDocument 400 /error/HTTP_BAD_REQUEST.html.var
#    ErrorDocument 401 /error/HTTP_UNAUTHORIZED.html.var
#    ErrorDocument 403 /error/HTTP_FORBIDDEN.html.var
#    ErrorDocument 404 /error/HTTP_NOT_FOUND.html.var
#    ErrorDocument 405 /error/HTTP_METHOD_NOT_ALLOWED.html.var
#    ErrorDocument 408 /error/HTTP_REQUEST_TIME_OUT.html.var
#    ErrorDocument 410 /error/HTTP_GONE.html.var
#    ErrorDocument 411 /error/HTTP_LENGTH_REQUIRED.html.var
#    ErrorDocument 412 /error/HTTP_PRECONDITION_FAILED.html.var
#    ErrorDocument 413 /error/HTTP_REQUEST_ENTITY_TOO_LARGE.html.var
#    ErrorDocument 414 /error/HTTP_REQUEST_URI_TOO_LARGE.html.var
#    ErrorDocument 415 /error/HTTP_UNSUPPORTED_MEDIA_TYPE.html.var
#    ErrorDocument 500 /error/HTTP_INTERNAL_SERVER_ERROR.html.var
#    ErrorDocument 501 /error/HTTP_NOT_IMPLEMENTED.html.var
#    ErrorDocument 502 /error/HTTP_BAD_GATEWAY.html.var
#    ErrorDocument 503 /error/HTTP_SERVICE_UNAVAILABLE.html.var
#    ErrorDocument 506 /error/HTTP_VARIANT_ALSO_VARIES.html.var

<IfModule mod_setenvif.c>
    #
    # The following directives modify normal HTTP response behavior to
    # handle known problems with browser implementations.
    #
    BrowserMatch "Mozilla/2" nokeepalive
    BrowserMatch "MSIE 4\.0b2;" nokeepalive downgrade-1.0 force-response-1.0
    BrowserMatch "RealPlayer 4\.0" force-response-1.0
    BrowserMatch "Java/1\.0" force-response-1.0
    BrowserMatch "JDK/1\.0" force-response-1.0

    #
    # The following directive disables redirects on non-GET requests for
    # a directory that does not include the trailing slash.  This fixes a 
    # problem with Microsoft WebFolders which does not appropriately handle 
    # redirects for folders with DAV methods.
    # Same deal with Apple's DAV filesystem and Gnome VFS support for DAV.
    #
    BrowserMatch "Microsoft Data Access Internet Publishing Provider" redirect-carefully
    BrowserMatch "MS FrontPage" redirect-carefully
    BrowserMatch "^WebDrive" redirect-carefully
    BrowserMatch "^WebDAVFS/1.[012]" redirect-carefully
    BrowserMatch "^gnome-vfs/1.0" redirect-carefully
    BrowserMatch "^XML Spy" redirect-carefully
    BrowserMatch "^Dreamweaver-WebDAV-SCM1" redirect-carefully
</IfModule>

#<IfModule mod_status.c>
    #
    # Allow server status reports generated by mod_status,
    # with the URL of http://servername/server-status
    # Change the ".example.com" to match your domain to enable.
    #
    #<Location /server-status>
    #    SetHandler server-status
    #    Order deny,allow
    #    Deny from all
    #    Allow from .example.com
    #</Location>
#</IfModule>
ExtendedStatus On
Alias /server-status /var/www/server-status
<Location /server-status>
   SetHandler server-status
   order deny,allow
   deny from all
   allow from 82.127.91.33 194.51.74.245 127.0.0.1
   </Location>


#<IfModule mod_info.c>
    #
    # Allow remote server configuration reports, with the URL of
    #  http://servername/server-info (requires that mod_info.c be loaded).
    # Change the ".example.com" to match your domain to enable.
    #
    #<Location /server-info>
    #    SetHandler server-info
    #    Order deny,allow
    #    Deny from all
    #    Allow from .example.com
    #</Location>
#</IfModule>
Options -Indexes
# Include (my.)via-mobilis.com first to load MyVia SSL cert first to avoid old User Agents (IE < 9) getting wrong certificate instead of the one Gandi provided
Include /etc/apache2/sites-available/via-mobilis
# Include the virtual host configurations:
Include /etc/apache2/sites-enabled/
# Configure crash dump for debugging purpose
#CoreDumpDirectory /var/log/apache2/CrashDump/
#<IfModule mod_rewrite.c>
#	RewriteLog "/var/log/apache2/rewrite.log"
#	RewriteLogLevel 9
#</IfModule>
[New LWP 11670]
[Thread debugging using libthread_db enabled]
Core was generated by `/usr/sbin/apache2 -k start'.
Program terminated with signal 3, Quit.
#0  0x00000352697f1876 in fork () from /lib/libc.so.6

Thread 1 (LWP 11670):
#0  0x00000352697f1876 in fork () from /lib/libc.so.6
No symbol table info available.
#1  0x000003526a5d60d8 in make_child (s=0x3526a7fec58, slot=55) at /build/buildd-apache2_2.2.16-6+squeeze4-amd64-pXldSC/apache2-2.2.16/server/mpm/prefork/prefork.c:716
No locals.
#2  0x000003526a5d6e34 in perform_idle_server_maintenance (p=<optimized out>) at /build/buildd-apache2_2.2.16-6+squeeze4-amd64-pXldSC/apache2-2.2.16/server/mpm/prefork/prefork.c:893
        i = 14
        idle_count = <optimized out>
        free_length = 16
        free_slots = {39, 40, 41, 42, 43, 44, 46, 47, 50, 51, 52, 53, 54, 55, 56, 57, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111}
        last_non_dead = <optimized out>
        total_non_dead = 1784064528
#3  ap_mpm_run (_pconf=<optimized out>, plog=<optimized out>, s=<optimized out>) at /build/buildd-apache2_2.2.16-6+squeeze4-amd64-pXldSC/apache2-2.2.16/server/mpm/prefork/prefork.c:1097
        status = 0
        pid = {pid = -1, in = 0x0, out = 0x0, err = 0x3526a7f2330}
        child_slot = <optimized out>
        exitwhy = APR_PROC_EXIT
        processed_status = <optimized out>
        index = <optimized out>
        remaining_children_to_start = 0
        rv = <optimized out>
#4  0x000003526a5aba90 in main (argc=3, argv=0x3ffffffe778) at /build/buildd-apache2_2.2.16-6+squeeze4-amd64-pXldSC/apache2-2.2.16/server/main.c:742
        c = 0 '\000'
        configtestonly = <optimized out>
        confname = 0x3526a5d87c3 "apache2.conf"
        def_server_root = 0x3526a5d87b6 "/etc/apache2"
        temp_error_log = 0x0
        error = <optimized out>
        process = 0x3526a7f6538
        server_conf = 0x3526a7fec58
        pglobal = 0x3526a7f6448
        pconf = 0x3526a7f8458
        plog = 0x3526a82c5f8
        ptemp = 0x3526a800498
        pcommands = 0x3526a7fa468
        opt = 0x3526a7fa558
        rv = <optimized out>
        mod = <optimized out>
        optarg = 0x100000000 <Address 0x100000000 out of bounds>



[New LWP 3910]
[Thread debugging using libthread_db enabled]
Core was generated by `/usr/sbin/apache2 -k start'.
Program terminated with signal 3, Quit.
#0  0x000002c3429b4b06 in fork () from /lib/libc.so.6

Thread 1 (Thread 0x2c34373c740 (LWP 3910)):
#0  0x000002c3429b4b06 in fork () from /lib/libc.so.6
No symbol table info available.
#1  0x000000330d527938 in make_child (slot=57, s=0x330d75c788) at prefork.c:726
        pid = <optimized out>
#2  make_child (s=0x330d75c788, slot=57) at prefork.c:696
No locals.
#3  0x000000330d5285bf in perform_idle_server_maintenance (p=<optimized out>) at prefork.c:903
        i = <optimized out>
        idle_count = <optimized out>
        ws = <optimized out>
        free_length = <optimized out>
        free_slots = {53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 67, 68, 69, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100}
        last_non_dead = <optimized out>
        total_non_dead = <optimized out>
#4  ap_mpm_run (_pconf=<optimized out>, plog=<optimized out>, s=<optimized out>) at prefork.c:1107
        status = 7
        pid = {pid = -1, in = 0x0, out = 0x0, err = 0x330d74fe60}
        child_slot = <optimized out>
        exitwhy = 6
        processed_status = <optimized out>
        index = <optimized out>
        remaining_children_to_start = 0
        rv = <optimized out>
#5  0x000000330d4fd698 in main (argc=3, argv=0x3de7570d908) at main.c:755
        c = 0 '\000'
        configtestonly = <optimized out>
        confname = 0x330d529ffa "apache2.conf"
        def_server_root = 0x330d529fed "/etc/apache2"
        temp_error_log = 0x0
        error = <optimized out>
        process = 0x330d754068
        server_conf = 0x330d75c788
        pglobal = <optimized out>
        pconf = 0x330d755f88
        plog = 0x330d78a128
        ptemp = 0x330d75dfc8
        pcommands = 0x330d757f98
        opt = 0x330d758088
        rv = 0
        mod = <optimized out>
        optarg = 0x3 <Address 0x3 out of bounds>
        signal_server = <optimized out>



[New LWP 5866]
[Thread debugging using libthread_db enabled]
Core was generated by `/usr/sbin/apache2 -k start'.
Program terminated with signal 3, Quit.
#0  0x000003a24a798b06 in fork () from /lib/libc.so.6

Thread 1 (Thread 0x3a24b512740 (LWP 5866)):
#0  0x000003a24a798b06 in fork () from /lib/libc.so.6
No symbol table info available.
#1  0x0000007a8f78c298 in make_child (s=0x7a8f9be758, slot=7) at /build/buildd-apache2_2.2.16-6+squeeze7-amd64-Bh2irA/apache2-2.2.16/server/mpm/prefork/prefork.c:716
No locals.
#2  0x0000007a8f78cff4 in perform_idle_server_maintenance (p=<optimized out>) at /build/buildd-apache2_2.2.16-6+squeeze7-amd64-Bh2irA/apache2-2.2.16/server/mpm/prefork/prefork.c:893
        i = 8
        idle_count = <optimized out>
        free_length = 32
        free_slots = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 14, 15, 17, 21, 22, 23, 24, 25, 26, 27, 28, 29, 31, 32, 35, 37, 41, 43, 47, 51}
        last_non_dead = <optimized out>
        total_non_dead = 1263610384
#3  ap_mpm_run (_pconf=<optimized out>, plog=<optimized out>, s=<optimized out>) at /build/buildd-apache2_2.2.16-6+squeeze7-amd64-Bh2irA/apache2-2.2.16/server/mpm/prefork/prefork.c:1097
        status = 0
        pid = {pid = -1, in = 0x0, out = 0x0, err = 0x7a8f9b1e30}
        child_slot = <optimized out>
        exitwhy = APR_PROC_EXIT
        processed_status = <optimized out>
        index = <optimized out>
        remaining_children_to_start = 0
        rv = <optimized out>
#4  0x0000007a8f761a90 in main (argc=3, argv=0x3e855466428) at /build/buildd-apache2_2.2.16-6+squeeze7-amd64-Bh2irA/apache2-2.2.16/server/main.c:742
        c = 0 '\000'
        configtestonly = <optimized out>
        confname = 0x7a8f78e983 "apache2.conf"
        def_server_root = 0x7a8f78e976 "/etc/apache2"
        temp_error_log = 0x0
        error = <optimized out>
        process = 0x7a8f9b6038
        server_conf = 0x7a8f9be758
        pglobal = 0x7a8f9b5f48
        pconf = 0x7a8f9b7f58
        plog = 0x7a8f9ec0f8
        ptemp = 0x7a8f9bff98
        pcommands = 0x7a8f9b9f68
        opt = 0x7a8f9ba058
        rv = <optimized out>
        mod = <optimized out>
        optarg = 0x100000000 <Address 0x100000000 out of bounds>



[New LWP 4545]
[Thread debugging using libthread_db enabled]
Core was generated by `/usr/sbin/apache2 -k start'.
Program terminated with signal 3, Quit.
#0  0x0000035065cc1876 in fork () from /lib/libc.so.6

Thread 1 (LWP 4545):
#0  0x0000035065cc1876 in fork () from /lib/libc.so.6
No symbol table info available.
#1  0x0000035066aa60d8 in make_child (s=0x35066ccec58, slot=65) at /build/buildd-apache2_2.2.16-6+squeeze4-amd64-pXldSC/apache2-2.2.16/server/mpm/prefork/prefork.c:716
No locals.
#2  0x0000035066aa6e34 in perform_idle_server_maintenance (p=<optimized out>) at /build/buildd-apache2_2.2.16-6+squeeze4-amd64-pXldSC/apache2-2.2.16/server/mpm/prefork/prefork.c:893
        i = 11
        idle_count = <optimized out>
        free_length = 16
        free_slots = {3, 8, 26, 56, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118}
        last_non_dead = <optimized out>
        total_non_dead = 1722001936
#3  ap_mpm_run (_pconf=<optimized out>, plog=<optimized out>, s=<optimized out>) at /build/buildd-apache2_2.2.16-6+squeeze4-amd64-pXldSC/apache2-2.2.16/server/mpm/prefork/prefork.c:1097
        status = 0
        pid = {pid = -1, in = 0x0, out = 0x0, err = 0x35066cc2330}
        child_slot = <optimized out>
        exitwhy = APR_PROC_EXIT
        processed_status = <optimized out>
        index = <optimized out>
        remaining_children_to_start = 0
        rv = <optimized out>
#4  0x0000035066a7ba90 in main (argc=3, argv=0x3ffffffe608) at /build/buildd-apache2_2.2.16-6+squeeze4-amd64-pXldSC/apache2-2.2.16/server/main.c:742
        c = 0 '\000'
        configtestonly = <optimized out>
        confname = 0x35066aa87c3 "apache2.conf"
        def_server_root = 0x35066aa87b6 "/etc/apache2"
        temp_error_log = 0x0
        error = <optimized out>
        process = 0x35066cc6538
        server_conf = 0x35066ccec58
        pglobal = 0x35066cc6448
        pconf = 0x35066cc8458
        plog = 0x35066cfc5f8
        ptemp = 0x35066d05638
        pcommands = 0x35066cca468
        opt = 0x35066cca558
        rv = <optimized out>
        mod = <optimized out>
        optarg = 0x100000000 <Address 0x100000000 out of bounds>



[New LWP 31460]
[Thread debugging using libthread_db enabled]
Core was generated by `/usr/sbin/apache2 -k start'.
Program terminated with signal 3, Quit.
#0  zend_hash_index_find (ht=0x2c33cf49350, h=231725, pData=0x3de75709c48) at /tmp/buildd/php5-5.3.3/Zend/zend_hash.c:1183
	in /tmp/buildd/php5-5.3.3/Zend/zend_hash.c

Thread 1 (Thread 0x2c34373c740 (LWP 31460)):
#0  zend_hash_index_find (ht=0x2c33cf49350, h=231725, pData=0x3de75709c48) at /tmp/buildd/php5-5.3.3/Zend/zend_hash.c:1183
        p = 0x2c33cf490c0
#1  0x000002c33c85a9d3 in _zend_list_find (id=1022661456, type=0x3de75709c9c) at /tmp/buildd/php5-5.3.3/Zend/zend_list.c:72
        le = 0x3de75709d08
#2  0x000002c33c85ae43 in zend_fetch_resource (passed_id=0x2c33cf49350, default_id=231725, resource_type_name=0x2c33cc5d7db "Directory", found_resource_type=0x0, num_resource_types=1) at /tmp/buildd/php5-5.3.3/Zend/zend_list.c:139
        id = 231725
        actual_resource_type = 990
        resource = 0x331776f8e8
        resource_types = {{gp_offset = 219, fp_offset = 0, overflow_arg_area = 0x30, reg_save_area = 0x3de75709d00}}
        i = 1970314312
        space = 0x33163456cb "mbi3&urlListing=cap-tractoare-scania&ca=second-hand&cb=regatul-unit&urlId=a1b31e676nGB&"
        class_name = 0x331776f8e8 ""
#3  0x000002c33c784a30 in php_if_readdir (ht=0, return_value=0x331776f8e8, return_value_ptr=0x3de75709c48, this_ptr=0x3317aeab50, return_value_used=1) at /tmp/buildd/php5-5.3.3/ext/standard/dir.c:406
        id = 0x330e283418
        tmp = 0x2c33c784a30
        dirp = 0x2c33cf490c0
        entry = {d_name = "\000\000\000\000\000\000\000\000search~urlListingCombi3&urlListing=cap-tractoare-iveco&ca=second-hand&cb=4x2&urlId=a1b31e379l1&\000rlId=a1b31c69nLU&\000&\000=a1b35c160e770&\000b=mil&\000\066\060e2561&\000urlId=a1b35c160d83&\000\070&\000<", '\000' <repeats 12 times>"\220, \252pu\336\003\000\000\000\000\000\000\000\000\000\000\230"...}
#4  0x000002c33c89c39a in zend_do_fcall_common_helper_SPEC (execute_data=0x2c34359b348) at /tmp/buildd/php5-5.3.3/Zend/zend_vm_execute.h:316
        opline = 0x2c320bc76f8
        should_change_scope = 0 '\000'
#5  0x000002c33c873430 in execute (op_array=0x330dd35188) at /tmp/buildd/php5-5.3.3/Zend/zend_vm_execute.h:107
        ret = 1022660800
        execute_data = 0x2c34359b348
        nested = 0 '\000'
        original_in_execution = 0 '\000'
#6  0x000002c33c84ac1d in zend_execute_scripts (type=0, retval=0x3de7570aee0, file_count=3) at /tmp/buildd/php5-5.3.3/Zend/zend.c:1266
        files = {{gp_offset = 0, fp_offset = 0, overflow_arg_area = 0x28, reg_save_area = 0x3de7570af70}}
        i = 1
        file_handle = 0x3de7570d290
        orig_op_array = 0x0
        orig_retval_ptr_ptr = 0x2c33cf49490
#7  0x000002c33c7f6258 in php_execute_script (primary_file=0x554c6e3936633133) at /tmp/buildd/php5-5.3.3/main/main.c:2289
        __orig_bailout = 0x26316c39373365
        __bailout = {{__jmpbuf = {2490406, 1647403325, 828585267, 929378358, 2502711, 1768766818, 905979500, 892495152}, __mask_was_saved = 0, __saved_mask = {__val = {1970317968, 990, 0, 0, 234170520, 1, 378028754, 51, 1970316944, 990, 378028758, 51, 234363208, 0, 378028760, 51}}}}
        prepend_file_p = 0x0
        append_file_p = 0x0
        prepend_file = {type = ZEND_HANDLE_FILENAME, filename = 0x2c343310ba2 "=\034\374\377\377\017\204x\025", opened_path = 0x3300000005 <Address 0x3300000005 out of bounds>, handle = {fd = 1015003410, fp = 0x2c33c7fb912, stream = {handle = 0x2c33c7fb912, isatty = 1970315120, mmap = {len = 1970315144, pos = 373643560, map = 0x3de00000000, buf = 0x94 <Address 0x94 out of bounds>, old_handle = 0x2c300000000, old_closer = 0x33163456b8}, reader = 0, fsizer = 0, closer = 0x1}}, free_filename = 188 '\274'}
        append_file = {type = ZEND_HANDLE_FP, filename = 0x0, opened_path = 0x0, handle = {fd = 371923208, fp = 0x33162b1908, stream = {handle = 0x33162b1908, isatty = 386445000, mmap = {len = 237182728, pos = 0, map = 0x0, buf = 0x0, old_handle = 0x33164558b8, old_closer = 0x330da99b90}, reader = 0x33163456cb, fsizer = 0x3de7570aa30, closer = 0x3318ad053c}}, free_filename = 115 's'}
        retval = 0
#8  0x000002c33c8d886d in php_handler (r=0x2c33c8d886d) at /tmp/buildd/php5-5.3.3/sapi/apache2handler/sapi_apache2.c:688
        __bailout = {{__jmpbuf = {226520264, 51, 226005880, 51, 931361112, 4044507701, 232292544, 51}, __mask_was_saved = 881553752, __saved_mask = {__val = {0, 4294967295, 4294967295, 4294967295, 0, 0, 23, 0, 232223392, 51, 232285632, 51, 24, 0, 0, 0}}}}
        ctx = 0x330dd8a7e8
        conf = 0x330dd880c0
        brigade = 0x0
        bucket = 0x2c33cf490c0
        rv = 1022660800
        parent_req = 0x1
#9  0x000000330d512668 in ap_run_handler (r=0x330dd880c0) at config.c:159
        pHook = <optimized out>
        n = <optimized out>
        rv = -1
#10 0x000000330d512ade in ap_invoke_handler (r=0x330dd880c0) at config.c:377
        handler = <optimized out>
        p = <optimized out>
        result = <optimized out>
        old_handler = 0x0
        ignore = <optimized out>
#11 0x000000330d521d2c in ap_internal_redirect (new_uri=<optimized out>, r=<optimized out>) at http_request.c:554
        new = 0x330dd880c0
        access_status = <optimized out>
#12 0x000002c33a138a05 in handler_redirect (r=0x330dd70c20) at mod_rewrite.c:4860
No locals.
#13 0x000000330d512668 in ap_run_handler (r=0x330dd70c20) at config.c:159
        pHook = <optimized out>
        n = <optimized out>
        rv = -1
#14 0x000000330d512ade in ap_invoke_handler (r=0x330dd70c20) at config.c:377
        handler = <optimized out>
        p = <optimized out>
        result = <optimized out>
        old_handler = 0x2c33a13ebdd "redirect-handler"
        ignore = <optimized out>
#15 0x000000330d5226b0 in ap_process_request (r=0x330dd70c20) at http_request.c:282
        access_status = <optimized out>
#16 0x000000330d51f4f8 in ap_process_http_connection (c=0x330dd644a0) at http_core.c:190
        r = 0x330dd70c20
        csd = 0x0
#17 0x000000330d5190e8 in ap_run_process_connection (c=0x330dd644a0) at connection.c:43
        pHook = <optimized out>
        n = <optimized out>
        rv = -1
#18 0x000000330d5272af in child_main (child_num_arg=<optimized out>) at prefork.c:667
        current_conn = 0x330dd644a0
        csd = 0x330dd642b0
        ptrans = 0x330dd64238
        allocator = 0x330dd62130
        status = <optimized out>
        i = <optimized out>
        lr = <optimized out>
        pollset = 0x330dd62330
        sbh = 0x330dd62328
        bucket_alloc = 0x330dd68258
        last_poll_idx = 1
#19 0x000000330d527a0a in make_child (slot=16, s=0x330d75c788) at prefork.c:768
        pid = 0
#20 make_child (s=0x330d75c788, slot=16) at prefork.c:696
No locals.
#21 0x000000330d5285bf in perform_idle_server_maintenance (p=<optimized out>) at prefork.c:903
        i = <optimized out>
        idle_count = <optimized out>
        ws = <optimized out>
        free_length = <optimized out>
        free_slots = {16, 34, 34, 35, 40, 42, 43, 44, 61, 68, 69, 70, 71, 72, 73, 74, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100}
        last_non_dead = <optimized out>
        total_non_dead = <optimized out>
#22 ap_mpm_run (_pconf=<optimized out>, plog=<optimized out>, s=<optimized out>) at prefork.c:1107
        status = 0
        pid = {pid = -1, in = 0x0, out = 0x0, err = 0x330d74fe60}
        child_slot = <optimized out>
        exitwhy = APR_PROC_EXIT
        processed_status = <optimized out>
        index = <optimized out>
        remaining_children_to_start = 0
        rv = <optimized out>
#23 0x000000330d4fd698 in main (argc=3, argv=0x3de7570d908) at main.c:755
        c = 0 '\000'
        configtestonly = <optimized out>
        confname = 0x330d529ffa "apache2.conf"
        def_server_root = 0x330d529fed "/etc/apache2"
        temp_error_log = 0x0
        error = <optimized out>
        process = 0x330d754068
        server_conf = 0x330d75c788
        pglobal = <optimized out>
        pconf = 0x330d755f88
        plog = 0x330d78a128
        ptemp = 0x330d75dfc8
        pcommands = 0x330d757f98
        opt = 0x330d758088
        rv = 0
        mod = <optimized out>
        optarg = 0x3 <Address 0x3 out of bounds>
        signal_server = <optimized out>



[New LWP 31181]
Core was generated by `/usr/sbin/apache2 -k start'.
Program terminated with signal 3, Quit.
#0  0x000003a24a7baf85 in ?? ()

Thread 1 (LWP 31181):
#0  0x000003a24a7baf85 in ?? ()
No symbol table info available.
#1  0x0000000000000000 in ?? ()
No symbol table info available.



[New LWP 21470]
[Thread debugging using libthread_db enabled]
Core was generated by `/usr/sbin/apache2 -k start'.
Program terminated with signal 9, Killed.
#0  0x0000027776831720 in ?? ()

Thread 1 (Thread 0x27784770740 (LWP 21470)):
#0  0x0000027776831720 in ?? ()
No symbol table info available.
#1  0x000002777b85f53f in ?? () from /usr/lib/libcrypto.so.0.9.8
No symbol table info available.
#2  0x0000027779656a29 in Curl_ossl_cleanup () from /usr/lib/libcurl.so.4
No symbol table info available.
#3  0x000002777966ba72 in Curl_ssl_cleanup () from /usr/lib/libcurl.so.4
No symbol table info available.
#4  0x000002777965f2a5 in curl_global_cleanup () from /usr/lib/libcurl.so.4
No symbol table info available.
#5  0x0000027779891769 in zm_shutdown_curl (type=9, module_number=1) at /tmp/buildd/php5-5.3.3/ext/curl/interface.c:869
No locals.
#6  0x000002777d884bff in module_destructor (module=0x49dbdd960) at /tmp/buildd/php5-5.3.3/Zend/zend_API.c:2098
No locals.
#7  0x000002777d88ba22 in zend_hash_apply_deleter (ht=0x2777df7d9c0, p=0x49dbdd900) at /tmp/buildd/php5-5.3.3/Zend/zend_hash.c:813
        retval = 0x0
#8  0x000002777d88bca8 in zend_hash_graceful_reverse_destroy (ht=0x2777df7d9c0) at /tmp/buildd/php5-5.3.3/Zend/zend_hash.c:848
        p = 0x1
#9  0x000002777d87f945 in zend_shutdown () at /tmp/buildd/php5-5.3.3/Zend/zend.c:831
No locals.
#10 0x000002777d82a40d in php_module_shutdown () at /tmp/buildd/php5-5.3.3/main/main.c:2167
No locals.
#11 0x000002777d82a4b9 in php_module_shutdown_wrapper (sapi_globals=0x9) at /tmp/buildd/php5-5.3.3/main/main.c:2139
No locals.
#12 0x000002777d90b5d1 in php_apache_child_shutdown (tmp=0x9) at /tmp/buildd/php5-5.3.3/sapi/apache2handler/sapi_apache2.c:399
No locals.
#13 0x0000027783ee546b in run_cleanups () from /usr/lib/libapr-1.so.0
No symbol table info available.
#14 0x0000027783ee4339 in apr_pool_destroy () from /usr/lib/libapr-1.so.0
No symbol table info available.
#15 0x000000049d5e9f6e in clean_child_exit (code=0) at prefork.c:196
No locals.
#16 0x000000049d5ea48b in just_die (sig=<optimized out>) at prefork.c:328
No locals.
#17 <signal handler called>
No symbol table info available.
#18 0x0000027783a0c9d3 in poll () from /lib/libc.so.6
No symbol table info available.
#19 0x000002777682884f in ?? ()
No symbol table info available.
#20 0x0000027783ca5e40 in ?? () from /lib/libc.so.6
No symbol table info available.
#21 0xffffffff000000c8 in ?? ()
No symbol table info available.
#22 0x0000000900000031 in ?? ()
No symbol table info available.
#23 0x000000049e1bc308 in ?? ()
No symbol table info available.
#24 0x0000000000000000 in ?? ()
No symbol table info available.



[New LWP 20996]
[Thread debugging using libthread_db enabled]
Core was generated by `/usr/sbin/apache2 -k start'.
Program terminated with signal 9, Killed.
#0  0x00000296520bb720 in ?? ()

Thread 1 (Thread 0x2965fffa740 (LWP 20996)):
#0  0x00000296520bb720 in ?? ()
No symbol table info available.
#1  0x00000296570e953f in ?? () from /usr/lib/libcrypto.so.0.9.8
No symbol table info available.
#2  0x0000029654ee0a29 in Curl_ossl_cleanup () from /usr/lib/libcurl.so.4
No symbol table info available.
#3  0x0000029654ef5a72 in Curl_ssl_cleanup () from /usr/lib/libcurl.so.4
No symbol table info available.
#4  0x0000029654ee92a5 in curl_global_cleanup () from /usr/lib/libcurl.so.4
No symbol table info available.
#5  0x000002965511b769 in zm_shutdown_curl (type=9, module_number=1) at /tmp/buildd/php5-5.3.3/ext/curl/interface.c:869
No locals.
#6  0x000002965910ec7f in module_destructor (module=0x6d7c8adc30) at /tmp/buildd/php5-5.3.3/Zend/zend_API.c:2098
No locals.
#7  0x0000029659115aa2 in zend_hash_apply_deleter (ht=0x296598079c0, p=0x6d7c8adbd0) at /tmp/buildd/php5-5.3.3/Zend/zend_hash.c:813
        retval = 0x38b2930bb40
#8  0x0000029659115d28 in zend_hash_graceful_reverse_destroy (ht=0x296598079c0) at /tmp/buildd/php5-5.3.3/Zend/zend_hash.c:848
        p = 0x1
#9  0x00000296591099c5 in zend_shutdown () at /tmp/buildd/php5-5.3.3/Zend/zend.c:831
No locals.
#10 0x00000296590b445d in php_module_shutdown () at /tmp/buildd/php5-5.3.3/main/main.c:2167
No locals.
#11 0x00000296590b4509 in php_module_shutdown_wrapper (sapi_globals=0x9) at /tmp/buildd/php5-5.3.3/main/main.c:2139
No locals.
#12 0x0000029659195651 in php_apache_child_shutdown (tmp=0x9) at /tmp/buildd/php5-5.3.3/sapi/apache2handler/sapi_apache2.c:399
No locals.
#13 0x000002965f76f46b in run_cleanups () from /usr/lib/libapr-1.so.0
No symbol table info available.
#14 0x000002965f76e339 in apr_pool_destroy () from /usr/lib/libapr-1.so.0
No symbol table info available.
#15 0x0000006d7c2bdf6e in clean_child_exit (code=0) at prefork.c:196
No locals.
#16 0x0000006d7c2be48b in just_die (sig=<optimized out>) at prefork.c:328
No locals.
#17 <signal handler called>
No symbol table info available.
#18 0x000002965f2969d3 in poll () from /lib/libc.so.6
No symbol table info available.
#19 0x000002965f77c433 in apr_wait_for_io_or_timeout () from /usr/lib/libapr-1.so.0
No symbol table info available.
#20 0x000002965f774f00 in apr_socket_sendv () from /usr/lib/libapr-1.so.0
No symbol table info available.
#21 0x0000006d7c2a6c25 in writev_it_all (s=0x6d7caf7f70, vec=0x38b2930bb40, nvec=1, len=16421, nbytes=0x38b2930bd80) at core_filters.c:321
        bytes_written = <optimized out>
        rv = <optimized out>
        n = 15455
        i = <optimized out>
#22 0x0000006d7c2a7b91 in ap_core_output_filter (f=0x6d7cb06078, b=0x6d7cb08f98) at core_filters.c:869
        bytes_sent = 966
        nbytes = <optimized out>
        nvec_trailers = <optimized out>
        vec = {{iov_base = 0x6d7d339799, iov_len = 15455}, {iov_base = 0x6d7dde3ebc, iov_len = 470251983832}, {iov_base = 0x6d7dde3ea0, iov_len = 2844711183467}, {iov_base = 0x6d7dde3c98, iov_len = 3896226397260}, {iov_base = 0x6d7d33d3d8, iov_len = 2844711673132}, {iov_base = 0x6d7dde3c98, iov_len = 470263151760}, {iov_base = 0x0, iov_len = 2844711210630}, {iov_base = 0x6d7dde3ea0, iov_len = 87342669894}, {iov_base = 0x682097752ce8cf71, iov_len = 2844869973078}, {iov_base = 0x38b2930bd88, iov_len = 470240021800}, {iov_base = 0xa, iov_len = 1443890735}, {iov_base = 0x2965610062f, iov_len = 2844711150150}, {iov_base = 0x38b2930bd88, iov_len = 2844867624512}, {iov_base = 0x38b2930bd88, iov_len = 3896226397520}, {iov_base = 0x6d7d167a01, iov_len = 1}, {iov_base = 0x1, iov_len = 2844864579916}}
        flen = <optimized out>
        last_e = <optimized out>
        e = 0x6d7cafc598
        nvec = <optimized out>
        fd = <optimized out>
        last_merged_bucket = <optimized out>
        vec_trailers = {{iov_base = 0x6d7cd191b0, iov_len = 2844711153213}, {iov_base = 0x38b2930bc70, iov_len = 2844711673266}, {iov_base = 0x6d7d33d3d8, iov_len = 2844711733922}, {iov_base = 0x0, iov_len = 0}, {iov_base = 0x0, iov_len = 0}, {iov_base = 0x0, iov_len = 2844869973078}, {iov_base = 0x6d7cf14160, iov_len = 470240021800}, {iov_base = 0xa, iov_len = 1443890735}, {iov_base = 0x2965610062f, iov_len = 2844714627488}, {iov_base = 0x4020, iov_len = 1}, {iov_base = 0x6d7cd1f8c0, iov_len = 470250060296}, {iov_base = 0x6d7cf14160, iov_len = 2844711688026}, {iov_base = 0x1, iov_len = 16416}, {iov_base = 0x6d7d3393d8, iov_len = 470251967448}, {iov_base = 0x38b2930bd50, iov_len = 470247620960}, {iov_base = 0x6d7d167a08, iov_len = 470245570752}}
        foffset = <optimized out>
        rv = <optimized out>
        more = 0x0
        c = 0x6d7caf8160
        net = 0x6d7cb06030
        ctx = 0x6d7cb06130
        eblock = APR_NONBLOCK_READ
        input_pool = 0x6d7caf7ef8
#23 0x00000296565d142e in bio_filter_out_flush (bio=<optimized out>) at ssl_engine_io.c:157
        outctx = 0x6d7cb06f68
        e = <optimized out>
#24 0x00000296565d1652 in bio_filter_out_write (bio=0x6d7cf229a0, in=0x6d7d3393d3 "}m", inl=16421) at ssl_engine_io.c:233
        bucket = <optimized out>
        outctx = 0x6d7cb06f68
#25 0x0000029656067f37 in BIO_write () from /usr/lib/x86_64-linux-gnu/libcrypto.so.1.0.0
No symbol table info available.
#26 0x0000029656384a90 in ?? () from /usr/lib/x86_64-linux-gnu/libssl.so.1.0.0
No symbol table info available.
#27 0x0000029656385184 in ?? () from /usr/lib/x86_64-linux-gnu/libssl.so.1.0.0
No symbol table info available.
#28 0x00000296565d1b9c in ssl_filter_write (len=1005011, data=<optimized out>, f=<optimized out>) at ssl_engine_io.c:801
        filter_ctx = 0x6d7caf8a38
        outctx = 0x6d7cb06f68
        res = <optimized out>
#29 ssl_io_filter_output (f=0x6d7caf8a70, bb=0x6d7cb00878) at ssl_engine_io.c:1519
        data = 0x6d7df642c8 "%PDF-1.7\n3 0 obj\n<</Type /Page\n/Parent 1 0 R\n/MediaBox [0 0 595.28 841.89]\n/Resources 2 0 R\n/Contents 4 0 R>>\nendobj\n4 0 obj\n<</Filter /FlateDecode /Length 3242>>\nstream\nx\234\355\034\313r\333\310q\316\372\202lUR5\227Te7\326\b\003\f^>Ŷ", <incomplete sequence \307>...
        len = 1005011
        bucket = 0x6d7cafc138
        status = <optimized out>
        filter_ctx = 0x6d7caf8a38
        inctx = <optimized out>
        outctx = 0x6d7cb06f68
        rblock = APR_NONBLOCK_READ
#30 0x0000006d7c2baffb in ap_http_header_filter (f=0x6d7cc4e218, b=0x6d7cb00878) at http_filters.c:1327
        r = 0x6d7d17e0b0
        c = 0x6d7caf8160
        clheader = <optimized out>
        protocol = 0x6d7c2c2075 "HTTP/1.0"
        e = <optimized out>
        b2 = <optimized out>
        h = {pool = 0x6d7cc4cc78, bb = 0x6d7cb00908}
        ctx = 0x0
        ctype = <optimized out>
        eb = <optimized out>
#31 0x0000006d7c29b817 in ap_content_length_filter (f=0x6d7cc4e1f0, b=0x6d7cb00878) at protocol.c:1371
        r = 0x6d7d17e0b0
        ctx = 0x6d7cb008b8
        e = 0x6d7cb00880
        eos = <optimized out>
        eblock = <optimized out>
#32 0x0000006d7c2bc5dd in ap_byterange_filter (f=0x6d7cc4e1c8, bb=0x6d7cb00878) at byterange_filter.c:252
        r = 0x6d7d17e0b0
        c = 0x6d7caf8160
        e = <optimized out>
        bsend = <optimized out>
        tmpbb = <optimized out>
        range_start = <optimized out>
        range_end = <optimized out>
        clength = <optimized out>
        rv = <optimized out>
        found = 0
        boundary = 0x0
        bound_head = 0x0
        indexes = <optimized out>
        idx = <optimized out>
        i = <optimized out>
        original_status = <optimized out>
        max_ranges = 200
#33 0x0000006d7c2b389c in ap_filter_flush (bb=0x6d7cb00878, ctx=<optimized out>) at util_filter.c:583
        f = <optimized out>
        rv = <optimized out>
#34 0x0000006d7c29bbae in ap_rwrite (buf=<optimized out>, nbyte=1005011, r=<optimized out>) at protocol.c:1521
No locals.
#35 0x0000029659195d46 in php_apache_sapi_ub_write (str=0x38b2930b9d0 "/", str_length=1) at /tmp/buildd/php5-5.3.3/sapi/apache2handler/sapi_apache2.c:84
No locals.
#36 0x00000296590c840b in php_ub_body_write_no_header (str=0x38b2930b9d0 "/", str_length=1) at /tmp/buildd/php5-5.3.3/main/output.c:696
        result = 0
#37 0x000002965910a126 in zend_print_zval_ex (write_func=0x296590b4810 <php_body_write_wrapper>, expr=0x6d7d96f590, indent=30000) at /tmp/buildd/php5-5.3.3/Zend/zend.c:382
        expr_copy = {value = {lval = 1494262054, dval = 1.4054994771657759e-311, str = {val = 0x2965910a126 "\213L$\034\205\311t\006\200{\024\003w\034\213C\b\353\315\017\037\200", len = 1501590304}, ht = 0x2965910a126, obj = {handle = 1494262054, handlers = 0x29659807320}}, refcount__gc = 1494402283, type = 150 '\226', is_ref__gc = 2 '\002'}
        use_copy = 109
#38 0x000002965914651e in ZEND_ECHO_SPEC_VAR_HANDLER (execute_data=0x6d7cd57628) at /tmp/buildd/php5-5.3.3/Zend/zend_vm_execute.h:7856
        opline = 0x38b2930b9d0
        free_op1 = {var = 0x296598070c0}
        z_copy = {value = {lval = 1494508830, dval = 1.4054995990893197e-311, str = {val = 0x2965914651e "H\203|$ ", len = 2112050824}, ht = 0x2965914651e, obj = {handle = 1494508830, handlers = 0x6d7de35688}}, refcount__gc = 2094364200, type = 109 'm', is_ref__gc = 0 '\000'}
        z = 0x6d7d96f590
#39 0x00000296591314b0 in execute (op_array=0x6d7d09b1e8) at /tmp/buildd/php5-5.3.3/Zend/zend_vm_execute.h:107
        ret = -4
        execute_data = 0x6d7cd57628
        nested = 0 '\000'
        original_in_execution = 0 '\000'
#40 0x0000029659108c9d in zend_execute_scripts (type=0, retval=0x38b2930c3b0, file_count=3) at /tmp/buildd/php5-5.3.3/Zend/zend.c:1266
        files = {{gp_offset = 0, fp_offset = 0, overflow_arg_area = 0x28, reg_save_area = 0x38b2930c440}}
        i = 1
        file_handle = 0x38b2930e760
        orig_op_array = 0x0
        orig_retval_ptr_ptr = 0x29659807490
#41 0x00000296590b42a8 in php_execute_script (primary_file=0x0) at /tmp/buildd/php5-5.3.3/main/main.c:2289
        __orig_bailout = 0x2965fdf8712
        __bailout = {{__jmpbuf = {1610590008, 662, 1424726136, 662, 1459729664, 662, 2088856224, 109}, __mask_was_saved = 2490040, __saved_mask = {__val = {0, 0, 691060096, 907, 0, 0, 1424707584, 662, 1608484626, 662, 5, 662, 0, 0, 5, 662}}}}
        prepend_file_p = 0x0
        append_file_p = 0x0
        prepend_file = {type = 1501592000, filename = 0x29659115aa2 "H\213}\020H\215E\030H9\307t\v\200{@", opened_path = 0x296598079c0 "@", handle = {fd = 1501589696, fp = 0x296598070c0, stream = {handle = 0x296598070c0, isatty = 691059520, mmap = {len = 1494310184, pos = 0, map = 0x296591099c5, buf = 0x0, old_handle = 0x0, old_closer = 0x38b2930b450}, reader = 0x296590b445d <php_module_shutdown+45>, fsizer = 0, closer = 0x296590b4509 <php_module_shutdown_wrapper+9>}}, free_filename = 152 '\230'}
        append_file = {type = 4294967216, filename = 0x0, opened_path = 0x2965f52fe40 "", handle = {fd = 2088953616, fp = 0x6d7c82e710, stream = {handle = 0x6d7c82e710, isatty = 112, mmap = {len = 1460573503, pos = 238, map = 0x29654ee0a29, buf = 0x20f <Address 0x20f out of bounds>, old_handle = 0x29654ef5a72, old_closer = 0xab}, reader = 0x29654ee92a5 <curl_global_cleanup+69>, fsizer = 0x3c6, closer = 0x2965511b769 <zm_shutdown_curl+9>}}, free_filename = 0 '\000'}
        retval = 0
#42 0x00000296591968ed in php_handler (r=0x296591968ed) at /tmp/buildd/php5-5.3.3/sapi/apache2handler/sapi_apache2.c:688
        __bailout = {{__jmpbuf = {2086259064, 109, 2087037072, 109, 32897469, 3263865555, 2098716848, 109}, __mask_was_saved = -973211203, __saved_mask = {__val = {0, 4294967295, 4294967295, 4294967295, 0, 0, 23, 0, 2091964848, 109, 2091994736, 109, 24, 0, 0, 0}}}}
        ctx = 0x6d7cb006b8
        conf = 0x6d7d17e0b0
        brigade = 0x0
        bucket = 0xfffffffffffffffc
        rv = -4
        parent_req = 0x1
#43 0x0000006d7c2a9668 in ap_run_handler (r=0x6d7d17e0b0) at config.c:159
        pHook = <optimized out>
        n = <optimized out>
        rv = -1
#44 0x0000006d7c2a9ade in ap_invoke_handler (r=0x6d7d17e0b0) at config.c:377
        handler = <optimized out>
        p = <optimized out>
        result = <optimized out>
        old_handler = 0x0
        ignore = <optimized out>
#45 0x0000006d7c2b8d2c in ap_internal_redirect (new_uri=<optimized out>, r=<optimized out>) at http_request.c:554
        new = 0x6d7d17e0b0
        access_status = <optimized out>
#46 0x00000296569f6a05 in handler_redirect (r=0x6d7cc4ccf0) at mod_rewrite.c:4860
No locals.
#47 0x0000006d7c2a9668 in ap_run_handler (r=0x6d7cc4ccf0) at config.c:159
        pHook = <optimized out>
        n = <optimized out>
        rv = -1
#48 0x0000006d7c2a9ade in ap_invoke_handler (r=0x6d7cc4ccf0) at config.c:377
        handler = <optimized out>
        p = <optimized out>
        result = <optimized out>
        old_handler = 0x296569fcbdd "redirect-handler"
        ignore = <optimized out>
#49 0x0000006d7c2b96b0 in ap_process_request (r=0x6d7cc4ccf0) at http_request.c:282
        access_status = <optimized out>
#50 0x0000006d7c2b64f8 in ap_process_http_connection (c=0x6d7caf8160) at http_core.c:190
        r = 0x6d7cc4ccf0
        csd = 0x0
#51 0x0000006d7c2b00e8 in ap_run_process_connection (c=0x6d7caf8160) at connection.c:43
        pHook = <optimized out>
        n = <optimized out>
        rv = -1
#52 0x0000006d7c2be2af in child_main (child_num_arg=<optimized out>) at prefork.c:667
        current_conn = 0x6d7caf8160
        csd = 0x6d7caf7f70
        ptrans = 0x6d7caf7ef8
        allocator = 0x6d7caf5df0
        status = <optimized out>
        i = <optimized out>
        lr = <optimized out>
        pollset = 0x6d7caf5ff0
        sbh = 0x6d7caf5fe8
        bucket_alloc = 0x6d7cafbf18
        last_poll_idx = 1
#53 0x0000006d7c2bea0a in make_child (slot=22, s=0x6d7c4f2438) at prefork.c:768
        pid = 0
#54 make_child (s=0x6d7c4f2438, slot=22) at prefork.c:696
No locals.
#55 0x0000006d7c2bf5bf in perform_idle_server_maintenance (p=<optimized out>) at prefork.c:903
        i = <optimized out>
        idle_count = <optimized out>
        ws = <optimized out>
        free_length = <optimized out>
        free_slots = {22, 51, 52, 54, 56, 57, 63, 68, 69, 72, 82, 83, 84, 85, 86, 87, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114}
        last_non_dead = <optimized out>
        total_non_dead = <optimized out>
#56 ap_mpm_run (_pconf=<optimized out>, plog=<optimized out>, s=<optimized out>) at prefork.c:1107
        status = 0
        pid = {pid = -1, in = 0x0, out = 0x0, err = 0x6d7c4e5b10}
        child_slot = <optimized out>
        exitwhy = APR_PROC_EXIT
        processed_status = <optimized out>
        index = <optimized out>
        remaining_children_to_start = 0
        rv = <optimized out>
#57 0x0000006d7c294698 in main (argc=3, argv=0x38b2930edd8) at main.c:755
        c = 0 '\000'
        configtestonly = <optimized out>
        confname = 0x6d7c2c0ffa "apache2.conf"
        def_server_root = 0x6d7c2c0fed "/etc/apache2"
        temp_error_log = 0x0
        error = <optimized out>
        process = 0x6d7c4e9d18
        server_conf = 0x6d7c4f2438
        pglobal = <optimized out>
        pconf = 0x6d7c4ebc38
        plog = 0x6d7c51fdd8
        ptemp = 0x6d7c4f3c78
        pcommands = 0x6d7c4edc48
        opt = 0x6d7c4edd38
        rv = 0
        mod = <optimized out>
        optarg = 0x3 <Address 0x3 out of bounds>
        signal_server = <optimized out>



[New LWP 21847]
[Thread debugging using libthread_db enabled]
Core was generated by `/usr/sbin/apache2 -k start'.
Program terminated with signal 7, Bus error.
#0  lex_scan (zendlval=0x39434984408) at /tmp/buildd/php5-5.3.3/Zend/zend_language_scanner.c:2127
	in /tmp/buildd/php5-5.3.3/Zend/zend_language_scanner.c

Thread 1 (Thread 0x337113d5740 (LWP 21847)):
#0  lex_scan (zendlval=0x39434984408) at /tmp/buildd/php5-5.3.3/Zend/zend_language_scanner.c:2127
        yybm = "\000\000\000\000\000\000\000\000\000\300@\000\000@", '\000' <repeats 18 times>"\300, ", '\000' <repeats 15 times>, "8888888888\000\000\000\000\000\000\000((((((", '\b' <repeats 20 times>, "\000\000\000\000\b\000((((((", '\b' <repeats 20 times>, "\000\000\000\000", '\b' <repeats 129 times>
        yych = 150 '\226'
        yyaccept = 289115798
#1  0x000003370a4c9db0 in zendlex (zendlval=0x39434984400) at /tmp/buildd/php5-5.3.3/Zend/zend_compile.c:4947
        retval = 289115782
#2  0x000003370a4b3fd7 in zendparse () at /tmp/buildd/php5-5.3.3/Zend/zend_language_parser.c:3280
        zendchar = 916
        zendlval = {op_type = 1, u = {constant = {value = {lval = 1, dval = 1.5702768853192422e-312, str = {val = 0x4a00000001 <Address 0x4a00000001 out of bounds>, len = 850497912}, ht = 0x4a00000001, obj = {handle = 1, handlers = 0x4a32b19178}}, refcount__gc = 7, type = 3 '\003', is_ref__gc = 0 '\000'}, var = 1, opline_num = 1, op_array = 0x4a00000001, jmp_addr = 0x4a00000001, EA = {var = 1, type = 74}}}
        yystate = 791555631
        yyn = 289115782
        yyresult = 882387440
        yyerrstatus = 916
        yytoken = 289115782
        yymsgbuf = "\001\000\000\000\001\000\000\000\200D\230\064\224\003\000\000\002\000\000\000\000\000\000\000\210D\230\064\224\003\000\000@\254\255\062J\000\000\000\240&\276\n7\003\000\000\062\000\000\000\000\000\000\000\210D\230\064\224\003\000\000\061\000\000\000\000\000\000\000\200F\250\061J\000\000\000WMP\n7\003\000\000\230\256\255\062J\000\000\000\230\256\255\062J\000\000\000Ø«\255\062J\000\000\000\340\027e2J\000\000\000\240&\276\n7\003\000"
        yymsg = 0x394349840f0 ""
        yymsg_alloc = 882394144
        yyssa = {21760, 13464, 916, 0, 0, 2, 4, 48, 63, 193, 329, 465, 553, 627, 63, 193, 327, 463, 63, 193, 327, 464, 553, 627, 684, 627, 684, 477, 156, 288, 408, 517, 497, 581, 647, 712, 406, 514, 591, 655, 719, 759, 795, 759, 795, 0 <repeats 75 times>, 9040, 2750, 823, 0, 20, 0, 0, 0, 0, 0, 0, 0, -3056, 12968, 74, 0, 16, 0, 0, 0, 4, 0, 0, 0, 6044, 2639, 823, 0, 16, 0, 0, 0, 16992, 13464, 916, 0, 6144, 0, 3, 0, 20, 0, 0, 0, 8384, 2750, 823, 0, 0, 0, 0, 0, -25111, 2647, 823, 0, 30272, 2748, 823, 0, -21336, 12973, 74, 0, 16596, 2639, 823, 0, -23392, 12894, 74, 0, 2, 0, 1, 0, -21440, 12973, 74, 0}
        yyss = 0x12e5
        yyssp = 0x39434984110
        yyvsa = {{op_type = 882393824, u = {constant = {value = {lval = 791555631, dval = 4.7608535554631484e-90, str = {val = 0x2d6365642f2e2e2f <Address 0x2d6365642f2e2e2f out of bounds>, len = 1785688688}, ht = 0x2d6365642f2e2e2f, obj = {handle = 791555631, handlers = 0x2f7463656a6f7270}}, refcount__gc = 1701080941, type = 108 'l', is_ref__gc = 47 '/'}, var = 791555631, opline_num = 791555631, op_array = 0x2d6365642f2e2e2f, jmp_addr = 0x2d6365642f2e2e2f, EA = {var = 791555631, type = 761488740}}}, {op_type = 1969368929, u = {constant = {value = {lval = 1935764579, dval = 3.917050154375064e-27, str = {val = 0x3a73657373616c63 <Address 0x3a73657373616c63 out of bounds>, len = 1918989871}, ht = 0x3a73657373616c63, obj = {handle = 1935764579, handlers = 0x7777772f7261762f}}, refcount__gc = 1667589167, type = 45 '-', is_ref__gc = 112 'p'}, var = 1935764579, opline_num = 1935764579, op_array = 0x3a73657373616c63, jmp_addr = 0x3a73657373616c63, EA = {var = 1935764579, type = 980641139}}}, {op_type = 1952671082, u = {constant = {value = {lval = 774778740, dval = 1.9205271408914574e+261, str = {val = 0x762f3a2f2e2e2f74 <Address 0x762f3a2f2e2e2f74 out of bounds>, len = 1999598177}, ht = 0x762f3a2f2e2e2f74, obj = {handle = 774778740, handlers = 0x642f7777772f7261}}, refcount__gc = 1882022757, type = 114 'r', is_ref__gc = 111 'o'}, var = 774778740, opline_num = 774778740, op_array = 0x762f3a2f2e2e2f74, jmp_addr = 0x762f3a2f2e2e2f74, EA = {var = 774778740, type = 1982806575}}}, {op_type = 1764717667, u = {constant = {value = {lval = 1, dval = 1.5702768853192422e-312, str = {val = 0x4a00000001 <Address 0x4a00000001 out of bounds>, len = 288980992}, ht = 0x4a00000001, obj = {handle = 1, handlers = 0x33711398000}}, refcount__gc = 6, type = 3 '\003', is_ref__gc = 0 '\000'}, var = 1, opline_num = 1, op_array = 0x4a00000001, jmp_addr = 0x4a00000001, EA = {var = 1, type = 74}}}, {op_type = 1, u = {constant = {value = {lval = 1, dval = 1.5702768853192422e-312, str = {val = 0x4a00000001 <Address 0x4a00000001 out of bounds>, len = 288981004}, ht = 0x4a00000001, obj = {handle = 1, handlers = 0x3371139800c}}, refcount__gc = 1, type = 3 '\003', is_ref__gc = 0 '\000'}, var = 1, opline_num = 1, op_array = 0x4a00000001, jmp_addr = 0x4a00000001, EA = {var = 1, type = 74}}}, {op_type = 1, u = {constant = {value = {lval = 1, dval = 1.5702768853192422e-312, str = {val = 0x4a00000001 <Address 0x4a00000001 out of bounds>, len = 288981010}, ht = 0x4a00000001, obj = {handle = 1, handlers = 0x33711398012}}, refcount__gc = 1, type = 3 '\003', is_ref__gc = 0 '\000'}, var = 1, opline_num = 1, op_array = 0x4a00000001, jmp_addr = 0x4a00000001, EA = {var = 1, type = 74}}}, {op_type = 1, u = {constant = {value = {lval = 2, dval = 9.8813129168249309e-324, str = {val = 0x2 <Address 0x2 out of bounds>, len = 80}, ht = 0x2, obj = {handle = 2, handlers = 0x50}}, refcount__gc = 0, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 2, opline_num = 2, op_array = 0x2, jmp_addr = 0x2, EA = {var = 2, type = 0}}}, {op_type = 0, u = {constant = {value = {lval = 1, dval = 1.5702768853192422e-312, str = {val = 0x4a00000001 <Address 0x4a00000001 out of bounds>, len = 289115699}, ht = 0x4a00000001, obj = {handle = 1, handlers = 0x337113b8e33}}, refcount__gc = 3, type = 3 '\003', is_ref__gc = 0 '\000'}, var = 1, opline_num = 1, op_array = 0x4a00000001, jmp_addr = 0x4a00000001, EA = {var = 1, type = 74}}}, {op_type = 1, u = {constant = {value = {lval = 1, dval = 1.5702768853192422e-312, str = {val = 0x4a00000001 <Address 0x4a00000001 out of bounds>, len = 850497848}, ht = 0x4a00000001, obj = {handle = 1, handlers = 0x4a32b19138}}, refcount__gc = 15, type = 3 '\003', is_ref__gc = 0 '\000'}, var = 1, opline_num = 1, op_array = 0x4a00000001, jmp_addr = 0x4a00000001, EA = {var = 1, type = 74}}}, {op_type = 1, u = {constant = {value = {lval = 1, dval = 1.5702768853192422e-312, str = {val = 0x4a00000001 <Address 0x4a00000001 out of bounds>, len = 289115724}, ht = 0x4a00000001, obj = {handle = 1, handlers = 0x337113b8e4c}}, refcount__gc = 1, type = 3 '\003', is_ref__gc = 0 '\000'}, var = 1, opline_num = 1, op_array = 0x4a00000001, jmp_addr = 0x4a00000001, EA = {var = 1, type = 74}}}, {op_type = 1, u = {constant = {value = {lval = 1, dval = 1.5702768853192422e-312, str = {val = 0x4a00000001 <Address 0x4a00000001 out of bounds>, len = 289115727}, ht = 0x4a00000001, obj = {handle = 1, handlers = 0x337113b8e4f}}, refcount__gc = 4, type = 3 '\003', is_ref__gc = 0 '\000'}, var = 1, opline_num = 1, op_array = 0x4a00000001, jmp_addr = 0x4a00000001, EA = {var = 1, type = 74}}}, {op_type = 1, u = {constant = {value = {lval = 1, dval = 1.5702768853192422e-312, str = {val = 0x4a00000001 <Address 0x4a00000001 out of bounds>, len = 289115736}, ht = 0x4a00000001, obj = {handle = 1, handlers = 0x337113b8e58}}, refcount__gc = 1, type = 3 '\003', is_ref__gc = 0 '\000'}, var = 1, opline_num = 1, op_array = 0x4a00000001, jmp_addr = 0x4a00000001, EA = {var = 1, type = 74}}}, {op_type = 1, u = {constant = {value = {lval = 1, dval = 1.5702768853192422e-312, str = {val = 0x4a00000001 <Address 0x4a00000001 out of bounds>, len = 850497792}, ht = 0x4a00000001, obj = {handle = 1, handlers = 0x4a32b19100}}, refcount__gc = 5, type = 3 '\003', is_ref__gc = 0 '\000'}, var = 1, opline_num = 1, op_array = 0x4a00000001, jmp_addr = 0x4a00000001, EA = {var = 1, type = 74}}}, {op_type = 1, u = {constant = {value = {lval = 1, dval = 1.5702768853192422e-312, str = {val = 0x4a00000001 <Address 0x4a00000001 out of bounds>, len = 289115750}, ht = 0x4a00000001, obj = {handle = 1, handlers = 0x337113b8e66}}, refcount__gc = 1, type = 3 '\003', is_ref__gc = 0 '\000'}, var = 1, opline_num = 1, op_array = 0x4a00000001, jmp_addr = 0x4a00000001, EA = {var = 1, type = 74}}}, {op_type = 1, u = {constant = {value = {lval = 1, dval = 1.5702768853192422e-312, str = {val = 0x4a00000001 <Address 0x4a00000001 out of bounds>, len = 289115753}, ht = 0x4a00000001, obj = {handle = 1, handlers = 0x337113b8e69}}, refcount__gc = 6, type = 3 '\003', is_ref__gc = 0 '\000'}, var = 1, opline_num = 1, op_array = 0x4a00000001, jmp_addr = 0x4a00000001, EA = {var = 1, type = 74}}}, {op_type = 1, u = {constant = {value = {lval = 1, dval = 1.5702768853192422e-312, str = {val = 0x4a00000001 <Address 0x4a00000001 out of bounds>, len = 289115764}, ht = 0x4a00000001, obj = {handle = 1, handlers = 0x337113b8e74}}, refcount__gc = 1, type = 3 '\003', is_ref__gc = 0 '\000'}, var = 1, opline_num = 1, op_array = 0x4a00000001, jmp_addr = 0x4a00000001, EA = {var = 1, type = 74}}}, {op_type = 1, u = {constant = {value = {lval = 1, dval = 1.5702768853192422e-312, str = {val = 0x4a00000001 <Address 0x4a00000001 out of bounds>, len = 850497912}, ht = 0x4a00000001, obj = {handle = 1, handlers = 0x4a32b19178}}, refcount__gc = 7, type = 3 '\003', is_ref__gc = 0 '\000'}, var = 1, opline_num = 1, op_array = 0x4a00000001, jmp_addr = 0x4a00000001, EA = {var = 1, type = 74}}}, {op_type = 1, u = {constant = {value = {lval = 1, dval = 1.5702768853192422e-312, str = {val = 0x4a00000001 <Address 0x4a00000001 out of bounds>, len = 289115692}, ht = 0x4a00000001, obj = {handle = 1, handlers = 0x337113b8e2c}}, refcount__gc = 5, type = 3 '\003', is_ref__gc = 0 '\000'}, var = 1, opline_num = 1, op_array = 0x4a00000001, jmp_addr = 0x4a00000001, EA = {var = 1, type = 74}}}, {op_type = 1, u = {constant = {value = {lval = 1, dval = 1.5702768853192422e-312, str = {val = 0x4a00000001 <Address 0x4a00000001 out of bounds>, len = 850497728}, ht = 0x4a00000001, obj = {handle = 1, handlers = 0x4a32b190c0}}, refcount__gc = 11, type = 3 '\003', is_ref__gc = 0 '\000'}, var = 1, opline_num = 1, op_array = 0x4a00000001, jmp_addr = 0x4a00000001, EA = {var = 1, type = 74}}}, {op_type = 1, u = {constant = {value = {lval = 1, dval = 1.5702768853192422e-312, str = {val = 0x4a00000001 <Address 0x4a00000001 out of bounds>, len = 289115683}, ht = 0x4a00000001, obj = {handle = 1, handlers = 0x337113b8e23}}, refcount__gc = 1, type = 3 '\003', is_ref__gc = 0 '\000'}, var = 1, opline_num = 1, op_array = 0x4a00000001, jmp_addr = 0x4a00000001, EA = {var = 1, type = 74}}}, {op_type = 1, u = {constant = {value = {lval = 1, dval = 1.5702768853192422e-312, str = {val = 0x4a00000001 <Address 0x4a00000001 out of bounds>, len = 1}, ht = 0x4a00000001, obj = {handle = 1, handlers = 0x1}}, refcount__gc = 180233888, type = 55 '7', is_ref__gc = 3 '\003'}, var = 1, opline_num = 1, op_array = 0x4a00000001, jmp_addr = 0x4a00000001, EA = {var = 1, type = 74}}}, {op_type = 1, u = {constant = {value = {lval = 1, dval = 1.5702768853192422e-312, str = {val = 0x4a00000001 <Address 0x4a00000001 out of bounds>, len = 289114853}, ht = 0x4a00000001, obj = {handle = 1, handlers = 0x337113b8ae5}}, refcount__gc = 1, type = 3 '\003', is_ref__gc = 0 '\000'}, var = 1, opline_num = 1, op_array = 0x4a00000001, jmp_addr = 0x4a00000001, EA = {var = 1, type = 74}}}, {op_type = 1, u = {constant = {value = {lval = 1, dval = 1.5702768853192422e-312, str = {val = 0x4a00000001 <Address 0x4a00000001 out of bounds>, len = 1}, ht = 0x4a00000001, obj = {handle = 1, handlers = 0x1}}, refcount__gc = 180233888, type = 55 '7', is_ref__gc = 3 '\003'}, var = 1, opline_num = 1, op_array = 0x4a00000001, jmp_addr = 0x4a00000001, EA = {var = 1, type = 74}}}, {op_type = 1, u = {constant = {value = {lval = 1, dval = 1.5702768853192422e-312, str = {val = 0x4a00000001 <Address 0x4a00000001 out of bounds>, len = 0}, ht = 0x4a00000001, obj = {handle = 1, handlers = 0x1700000000}}, refcount__gc = 16, type = 3 '\003', is_ref__gc = 0 '\000'}, var = 1, opline_num = 1, op_array = 0x4a00000001, jmp_addr = 0x4a00000001, EA = {var = 1, type = 74}}}, {op_type = 1, u = {constant = {value = {lval = 16, dval = 1.570276885393352e-312, str = {val = 0x4a00000010 <Address 0x4a00000010 out of bounds>, len = 0}, ht = 0x4a00000010, obj = {handle = 16, handlers = 0x1c00000000}}, refcount__gc = 7, type = 3 '\003', is_ref__gc = 0 '\000'}, var = 16, opline_num = 16, op_array = 0x4a00000010, jmp_addr = 0x4a00000010, EA = {var = 16, type = 74}}}, {op_type = 1, u = {constant = {value = {lval = 1, dval = 1.5702768853192422e-312, str = {val = 0x4a00000001 <Address 0x4a00000001 out of bounds>, len = 289227550}, ht = 0x4a00000001, obj = {handle = 1, handlers = 0x337113d431e}}, refcount__gc = 2, type = 3 '\003', is_ref__gc = 0 '\000'}, var = 1, opline_num = 1, op_array = 0x4a00000001, jmp_addr = 0x4a00000001, EA = {var = 1, type = 74}}}, {op_type = 1, u = {constant = {value = {lval = 1, dval = 1.5702768853192422e-312, str = {val = 0x4a00000001 <Address 0x4a00000001 out of bounds>, len = 845493848}, ht = 0x4a00000001, obj = {handle = 1, handlers = 0x4a32653658}}, refcount__gc = 4, type = 3 '\003', is_ref__gc = 0 '\000'}, var = 1, opline_num = 1, op_array = 0x4a00000001, jmp_addr = 0x4a00000001, EA = {var = 1, type = 74}}}, {op_type = 1, u = {constant = {value = {lval = 1, dval = 1.5702768853192422e-312, str = {val = 0x4a00000001 <Address 0x4a00000001 out of bounds>, len = 845493848}, ht = 0x4a00000001, obj = {handle = 1, handlers = 0x4a32653658}}, refcount__gc = 4, type = 3 '\003', is_ref__gc = 0 '\000'}, var = 1, opline_num = 1, op_array = 0x4a00000001, jmp_addr = 0x4a00000001, EA = {var = 1, type = 74}}}, {op_type = 1, u = {constant = {value = {lval = 1, dval = 1.5702768853192422e-312, str = {val = 0x4a00000001 <Address 0x4a00000001 out of bounds>, len = 1}, ht = 0x4a00000001, obj = {handle = 1, handlers = 0x4a00000001}}, refcount__gc = 3, type = 3 '\003', is_ref__gc = 0 '\000'}, var = 1, opline_num = 1, op_array = 0x4a00000001, jmp_addr = 0x4a00000001, EA = {var = 1, type = 74}}}, {op_type = 1, u = {constant = {value = {lval = 1918989871, dval = 3.0265456792300576e+267, str = {val = 0x7777772f7261762f <Address 0x7777772f7261762f out of bounds>, len = 1667589167}, ht = 0x7777772f7261762f, obj = {handle = 1918989871, handlers = 0x6f72702d6365642f}}, refcount__gc = 1952671082, type = 47 '/', is_ref__gc = 99 'c'}, var = 1918989871, opline_num = 1918989871, op_array = 0x7777772f7261762f, jmp_addr = 0x7777772f7261762f, EA = {var = 1918989871, type = 2004317999}}}, {op_type = 795766637, u = {constant = {value = {lval = 1869361004, dval = 3.680156537877503e+180, str = {val = 0x656c61636f6c2f6c <Address 0x656c61636f6c2f6c out of bounds>, len = 1969368947}, ht = 0x656c61636f6c2f6c, obj = {handle = 1869361004, handlers = 0x2f646c6975622f73}}, refcount__gc = 1935764579, type = 115 's', is_ref__gc = 101 'e'}, var = 1869361004, opline_num = 1869361004, op_array = 0x656c61636f6c2f6c, jmp_addr = 0x656c61636f6c2f6c, EA = {var = 1869361004, type = 1701601635}}}, {op_type = 1633906540, u = {constant = {value = {lval = 1110404463, dval = 1.5743090296977124e+108, str = {val = 0x56657361422f6d6f <Address 0x56657361422f6d6f out of bounds>, len = 1634300513}, ht = 0x56657361422f6d6f, obj = {handle = 1110404463, handlers = 0x73656c6261697261}}, refcount__gc = 1885892654, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 1110404463, opline_num = 1110404463, op_array = 0x56657361422f6d6f, jmp_addr = 0x56657361422f6d6f, EA = {var = 1110404463, type = 1449489249}}}, {op_type = 1, u = {constant = {value = {lval = 4, dval = 1.9762625833649862e-323, str = {val = 0x4 <Address 0x4 out of bounds>, len = 400}, ht = 0x4, obj = {handle = 4, handlers = 0x1200000190}}, refcount__gc = 0, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 4, opline_num = 4, op_array = 0x4, jmp_addr = 0x4, EA = {var = 4, type = 0}}}, {op_type = 0, u = {constant = {value = {lval = 4, dval = 1.9762625833649862e-323, str = {val = 0x4 <Address 0x4 out of bounds>, len = 520}, ht = 0x4, obj = {handle = 4, handlers = 0x208}}, refcount__gc = 0, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 4, opline_num = 4, op_array = 0x4, jmp_addr = 0x4, EA = {var = 4, type = 0}}}, {op_type = 0, u = {constant = {value = {lval = 8192, dval = 4.0473857707314917e-320, str = {val = 0x2000 <Address 0x2000 out of bounds>, len = 882388240}, ht = 0x2000, obj = {handle = 8192, handlers = 0x39434982d10}}, refcount__gc = 33, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 8192, opline_num = 8192, op_array = 0x2000, jmp_addr = 0x2000, EA = {var = 8192, type = 0}}}, {op_type = 275041728, u = {constant = {value = {lval = 4, dval = 1.9762625833649862e-323, str = {val = 0x4 <Address 0x4 out of bounds>, len = 560}, ht = 0x4, obj = {handle = 4, handlers = 0x200000230}}, refcount__gc = 0, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 4, opline_num = 4, op_array = 0x4, jmp_addr = 0x4, EA = {var = 4, type = 0}}}, {op_type = 0, u = {constant = {value = {lval = 116711056, dval = 1.7464601988876786e-311, str = {val = 0x33706f4de90 "H\211\\$\320H\211l$\330\061\300L\211d$\340L\211l$\350H\211\315L\211t$\360L\211|$\370H\201\354", <incomplete sequence \370>, len = 831564656}, ht = 0x33706f4de90, obj = {handle = 116711056, handlers = 0x3190ab70}}, refcount__gc = 4, type = 55 '7', is_ref__gc = 3 '\003'}, var = 116711056, opline_num = 116711056, op_array = 0x33706f4de90, jmp_addr = 0x33706f4de90, EA = {var = 116711056, type = 823}}}, {op_type = 882388232, u = {constant = {value = {lval = 4, dval = 1.9762625833649862e-323, str = {val = 0x4 <Address 0x4 out of bounds>, len = 0}, ht = 0x4, obj = {handle = 4, handlers = 0x0}}, refcount__gc = 0, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 4, opline_num = 4, op_array = 0x4, jmp_addr = 0x4, EA = {var = 4, type = 0}}}, {op_type = 0, u = {constant = {value = {lval = 1, dval = 1.5702768853192422e-312, str = {val = 0x4a00000001 <Address 0x4a00000001 out of bounds>, len = 845493960}, ht = 0x4a00000001, obj = {handle = 1, handlers = 0x4a326536c8}}, refcount__gc = 15, type = 3 '\003', is_ref__gc = 0 '\000'}, var = 1, opline_num = 1, op_array = 0x4a00000001, jmp_addr = 0x4a00000001, EA = {var = 1, type = 74}}}, {op_type = 1, u = {constant = {value = {lval = 882388240, dval = 1.9441841022398678e-311, str = {val = 0x39434982d10 "\340?\230\064\224\003", len = 0}, ht = 0x39434982d10, obj = {handle = 882388240, handlers = 0x0}}, refcount__gc = 33, type = 33 '!', is_ref__gc = 0 '\000'}, var = 882388240, opline_num = 882388240, op_array = 0x39434982d10, jmp_addr = 0x39434982d10, EA = {var = 882388240, type = 916}}}, {op_type = 960780800, u = {constant = {value = {lval = 1, dval = 1.5702768853192422e-312, str = {val = 0x4a00000001 <Address 0x4a00000001 out of bounds>, len = 960780800}, ht = 0x4a00000001, obj = {handle = 1, handlers = 0x4ea6506339445a00}}, refcount__gc = 13, type = 3 '\003', is_ref__gc = 0 '\000'}, var = 1, opline_num = 1, op_array = 0x4a00000001, jmp_addr = 0x4a00000001, EA = {var = 1, type = 74}}}, {op_type = 882388348, u = {constant = {value = {lval = 882393056, dval = 1.9441841046192879e-311, str = {val = 0x39434983fe0 "\020T\230\064\224\003", len = 882392984}, ht = 0x39434983fe0, obj = {handle = 882393056, handlers = 0x39434983f98}}, refcount__gc = 882392992, type = 148 '\224', is_ref__gc = 3 '\003'}, var = 882393056, opline_num = 882393056, op_array = 0x39434983fe0, jmp_addr = 0x39434983fe0, EA = {var = 882393056, type = 916}}}, {op_type = -308759992, u = {constant = {value = {lval = 882397680, dval = 1.9441841069038475e-311, str = {val = 0x394349851f0 "\377\037", len = 172572620}, ht = 0x394349851f0, obj = {handle = 882397680, handlers = 0x3370a493fcc}}, refcount__gc = 882392975, type = 148 '\224', is_ref__gc = 3 '\003'}, var = 882397680, opline_num = 882397680, op_array = 0x394349851f0, jmp_addr = 0x394349851f0, EA = {var = 882397680, type = 916}}}, {op_type = 882388971, u = {constant = {value = {lval = 882388880, dval = 1.9441841025560698e-311, str = {val = 0x39434982f90 "/var/www/dec-project/init/../../dec-project/model/via/build/classes/via/om/BasePluriels.php", len = 172573044}, ht = 0x39434982f90, obj = {handle = 882388880, handlers = 0x3370a494174}}, refcount__gc = 40, type = 48 '0', is_ref__gc = 0 '\000'}, var = 882388880, opline_num = 882388880, op_array = 0x39434982f90, jmp_addr = 0x39434982f90, EA = {var = 882388880, type = 916}}}, {op_type = 882388544, u = {constant = {value = {lval = 882388352, dval = 1.9441841022952031e-311, str = {val = 0x39434982d80 "", len = 0}, ht = 0x39434982d80, obj = {handle = 882388352, handlers = 0x5b00000000}}, refcount__gc = 0, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 882388352, opline_num = 882388352, op_array = 0x39434982d80, jmp_addr = 0x39434982d80, EA = {var = 882388352, type = 916}}}, {op_type = 0, u = {constant = {value = {lval = 0, dval = 0, str = {val = 0x0, len = 882388544}, ht = 0x0, obj = {handle = 0, handlers = 0x39434982e40}}, refcount__gc = 3986207304, type = 54 '6', is_ref__gc = 3 '\003'}, var = 0, opline_num = 0, op_array = 0x0, jmp_addr = 0x0, EA = {var = 0, type = 0}}}, {op_type = 882392984, u = {constant = {value = {lval = 0, dval = 0, str = {val = 0x0, len = 0}, ht = 0x0, obj = {handle = 0, handlers = 0x0}}, refcount__gc = 0, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 0, opline_num = 0, op_array = 0x0, jmp_addr = 0x0, EA = {var = 0, type = 0}}}, {op_type = 0, u = {constant = {value = {lval = 0, dval = 0, str = {val = 0x0, len = 0}, ht = 0x0, obj = {handle = 0, handlers = 0x0}}, refcount__gc = 0, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 0, opline_num = 0, op_array = 0x0, jmp_addr = 0x0, EA = {var = 0, type = 0}}}, {op_type = 0, u = {constant = {value = {lval = 0, dval = 0, str = {val = 0x0, len = 0}, ht = 0x0, obj = {handle = 0, handlers = 0x0}}, refcount__gc = 0, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 0, opline_num = 0, op_array = 0x0, jmp_addr = 0x0, EA = {var = 0, type = 0}}}, {op_type = 0, u = {constant = {value = {lval = 0, dval = 0, str = {val = 0x0, len = 0}, ht = 0x0, obj = {handle = 0, handlers = 0x0}}, refcount__gc = 0, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 0, opline_num = 0, op_array = 0x0, jmp_addr = 0x0, EA = {var = 0, type = 0}}}, {op_type = 0, u = {constant = {value = {lval = 0, dval = 0, str = {val = 0x0, len = 35053525}, ht = 0x0, obj = {handle = 0, handlers = 0x3370216dfd5}}, refcount__gc = 1918989871, type = 47 '/', is_ref__gc = 119 'w'}, var = 0, opline_num = 0, op_array = 0x0, jmp_addr = 0x0, EA = {var = 0, type = 0}}}, {op_type = 1667589167, u = {constant = {value = {lval = 1952671082, dval = 7.2743825298247653e+199, str = {val = 0x696e692f7463656a <Address 0x696e692f7463656a out of bounds>, len = 774778740}, ht = 0x696e692f7463656a, obj = {handle = 1952671082, handlers = 0x2f2e2e2f2e2e2f74}}, refcount__gc = 761488740, type = 112 'p', is_ref__gc = 114 'r'}, var = 1952671082, opline_num = 1952671082, op_array = 0x696e692f7463656a, jmp_addr = 0x696e692f7463656a, EA = {var = 1952671082, type = 1768843567}}}, {op_type = 796156773, u = {constant = {value = {lval = 1769353068, dval = 2.7304959034656102e+257, str = {val = 0x75622f6169762f6c <Address 0x75622f6169762f6c out of bounds>, len = 795110505}, ht = 0x75622f6169762f6c, obj = {handle = 1769353068, handlers = 0x73616c632f646c69}}, refcount__gc = 7562611, type = 47 '/', is_ref__gc = 118 'v'}, var = 1769353068, opline_num = 1769353068, op_array = 0x75622f6169762f6c, jmp_addr = 0x75622f6169762f6c, EA = {var = 1769353068, type = 1969368929}}}, {op_type = 2004317999, u = {constant = {value = {lval = 1869770797, dval = 4.443877029786674e+252, str = {val = 0x7463656a6f72702d <Address 0x7463656a6f72702d out of bounds>, len = 1768843567}, ht = 0x7463656a6f72702d, obj = {handle = 1869770797, handlers = 0x2e2e2f74696e692f}}, refcount__gc = 1836016431, type = 109 'm', is_ref__gc = 111 'o'}, var = 1869770797, opline_num = 1869770797, op_array = 0x7463656a6f72702d, jmp_addr = 0x7463656a6f72702d, EA = {var = 1869770797, type = 1952671082}}}, {op_type = 1701080941, u = {constant = {value = {lval = 1701601635, dval = 2.7305371073458502e+257, str = {val = 0x75622f73656c6163 <Address 0x75622f73656c6163 out of bounds>, len = 795110505}, ht = 0x75622f73656c6163, obj = {handle = 1701601635, handlers = 0x73616c632f646c69}}, refcount__gc = 980641139, type = 47 '/', is_ref__gc = 118 'v'}, var = 1701601635, opline_num = 1701601635, op_array = 0x75622f73656c6163, jmp_addr = 0x75622f73656c6163, EA = {var = 1701601635, type = 1969368947}}}, {op_type = 2004317999, u = {constant = {value = {lval = 1869770797, dval = 4.443877029786674e+252, str = {val = 0x7463656a6f72702d <Address 0x7463656a6f72702d out of bounds>, len = 1768843567}, ht = 0x7463656a6f72702d, obj = {handle = 1869770797, handlers = 0x2e2e2f74696e692f}}, refcount__gc = 791555631, type = 100 'd', is_ref__gc = 101 'e'}, var = 1869770797, opline_num = 1869770797, op_array = 0x7463656a6f72702d, jmp_addr = 0x7463656a6f72702d, EA = {var = 1869770797, type = 1952671082}}}, {op_type = 1785688688, u = {constant = {value = {lval = 1701080941, dval = 1.0613568350524971e+200, str = {val = 0x69762f6c65646f6d <Address 0x69762f6c65646f6d out of bounds>, len = 1969368929}, ht = 0x69762f6c65646f6d, obj = {handle = 1701080941, handlers = 0x2f646c6975622f61}}, refcount__gc = 1935764579, type = 115 's', is_ref__gc = 101 'e'}, var = 1701080941, opline_num = 1701080941, op_array = 0x69762f6c65646f6d, jmp_addr = 0x69762f6c65646f6d, EA = {var = 1701080941, type = 1769353068}}}, {op_type = 1918989871, u = {constant = {value = {lval = 1667589167, dval = 6.9886786021020898e+228, str = {val = 0x6f72702d6365642f <Address 0x6f72702d6365642f out of bounds>, len = 1952671082}, ht = 0x6f72702d6365642f, obj = {handle = 1667589167, handlers = 0x696e692f7463656a}}, refcount__gc = 774778740, type = 47 '/', is_ref__gc = 58 ':'}, var = 1667589167, opline_num = 1667589167, op_array = 0x6f72702d6365642f, jmp_addr = 0x6f72702d6365642f, EA = {var = 1667589167, type = 1869770797}}}, {op_type = 1999598177, u = {constant = {value = {lval = 1882022757, dval = 3.427932957574782e+180, str = {val = 0x656a6f72702d6365 <Address 0x656a6f72702d6365 out of bounds>, len = 1764717667}, ht = 0x656a6f72702d6365, obj = {handle = 1882022757, handlers = 0x2f74696e692f7463}}, refcount__gc = 1815031342, type = 105 'i', is_ref__gc = 98 'b'}, var = 1882022757, opline_num = 1882022757, op_array = 0x656a6f72702d6365, jmp_addr = 0x656a6f72702d6365, EA = {var = 1882022757, type = 1701474162}}}, {op_type = 1966029358, u = {constant = {value = {lval = 1701994856, dval = 3.0352626941501122e+233, str = {val = 0x7068702f65726168 <Address 0x7068702f65726168 out of bounds>, len = 1764717568}, ht = 0x7068702f65726168, obj = {handle = 1701994856, handlers = 0x2f74696e692f7400}}, refcount__gc = 1815031342, type = 105 'i', is_ref__gc = 98 'b'}, var = 1701994856, opline_num = 1701994856, op_array = 0x7068702f65726168, jmp_addr = 0x7068702f65726168, EA = {var = 1701994856, type = 1885892655}}}, {op_type = 35053333, u = {constant = {value = {lval = 1701994856, dval = 3.0352626941501122e+233, str = {val = 0x7068702f65726168 <Address 0x7068702f65726168 out of bounds>, len = 882388480}, ht = 0x7068702f65726168, obj = {handle = 1701994856, handlers = 0x39434982e00}}, refcount__gc = 1918989871, type = 47 '/', is_ref__gc = 119 'w'}, var = 1701994856, opline_num = 1701994856, op_array = 0x7068702f65726168, jmp_addr = 0x7068702f65726168, EA = {var = 1701994856, type = 1885892655}}}, {op_type = 882388544, u = {constant = {value = {lval = 1918989871, dval = 3.0265456792300576e+267, str = {val = 0x7777772f7261762f <Address 0x7777772f7261762f out of bounds>, len = 1667589167}, ht = 0x7777772f7261762f, obj = {handle = 1918989871, handlers = 0x6f72702d6365642f}}, refcount__gc = 1952671082, type = 47 '/', is_ref__gc = 105 'i'}, var = 1918989871, opline_num = 1918989871, op_array = 0x7777772f7261762f, jmp_addr = 0x7777772f7261762f, EA = {var = 1918989871, type = 2004317999}}}, {op_type = 774778740, u = {constant = {value = {lval = 761488740, dval = 4.9297696631324386e+204, str = {val = 0x6a6f72702d636564 <Address 0x6a6f72702d636564 out of bounds>, len = 796156773}, ht = 0x6a6f72702d636564, obj = {handle = 761488740, handlers = 0x65646f6d2f746365}}, refcount__gc = 1769353068, type = 97 'a', is_ref__gc = 47 '/'}, var = 761488740, opline_num = 761488740, op_array = 0x6a6f72702d636564, jmp_addr = 0x6a6f72702d636564, EA = {var = 761488740, type = 1785688688}}}, {op_type = 795110505, u = {constant = {value = {lval = 796091763, dval = 1.8356032484503507e-80, str = {val = 0x2f6169762f736573 <Address 0x2f6169762f736573 out of bounds>, len = 1110404463}, ht = 0x2f6169762f736573, obj = {handle = 796091763, handlers = 0x50657361422f6d6f}}, refcount__gc = 1769108844, type = 101 'e', is_ref__gc = 108 'l'}, var = 796091763, opline_num = 796091763, op_array = 0x2f6169762f736573, jmp_addr = 0x2f6169762f736573, EA = {var = 796091763, type = 794913142}}}, {op_type = 7366768, u = {constant = {value = {lval = 1633906432, dval = 4.0895684331180686e-80, str = {val = 0x2f73656c61636f00 <Address 0x2f73656c61636f00 out of bounds>, len = 1110404463}, ht = 0x2f73656c61636f00, obj = {handle = 1633906432, handlers = 0x56657361422f6d6f}}, refcount__gc = 1634300513, type = 98 'b', is_ref__gc = 108 'l'}, var = 1633906432, opline_num = 1633906432, op_array = 0x2f73656c61636f00, jmp_addr = 0x2f73656c61636f00, EA = {var = 1633906432, type = 796091756}}}, {op_type = 1885892654, u = {constant = {value = {lval = 7366656, dval = 1.5703132814308448e-312, str = {val = 0x4a00706800 <Address 0x4a00706800 out of bounds>, len = 35045564}, ht = 0x4a00706800, obj = {handle = 7366656, handlers = 0x3370216c0bc}}, refcount__gc = 0, type = 74 'J', is_ref__gc = 0 '\000'}, var = 7366656, opline_num = 7366656, op_array = 0x4a00706800, jmp_addr = 0x4a00706800, EA = {var = 7366656, type = 74}}}, {op_type = 35042297, u = {constant = {value = {lval = 4181981352, dval = 1.7463467134910258e-311, str = {val = 0x336f943f8a8 "\002\354|\362\261\250+>P\373C\371\066\003", len = 262144}, ht = 0x336f943f8a8, obj = {handle = 4181981352, handlers = 0x40000}}, refcount__gc = 841460576, type = 125 '}', is_ref__gc = 0 '\000'}, var = 4181981352, opline_num = 4181981352, op_array = 0x336f943f8a8, jmp_addr = 0x336f943f8a8, EA = {var = 4181981352, type = 822}}}, {op_type = -112985600, u = {constant = {value = {lval = 4181981352, dval = 1.7463467134910258e-311, str = {val = 0x336f943f8a8 "\002\354|\362\261\250+>P\373C\371\066\003", len = 0}, ht = 0x336f943f8a8, obj = {handle = 4181981352, handlers = 0x0}}, refcount__gc = 841491272, type = 74 'J', is_ref__gc = 0 '\000'}, var = 4181981352, opline_num = 4181981352, op_array = 0x336f943f8a8, jmp_addr = 0x336f943f8a8, EA = {var = 4181981352, type = 822}}}, {op_type = 841490968, u = {constant = {value = {lval = 833111680, dval = 1.5743930039166724e-312, str = {val = 0x4a31a84680 "\001", len = 882389280}, ht = 0x4a31a84680, obj = {handle = 833111680, handlers = 0x39434983120}}, refcount__gc = 841490464, type = 74 'J', is_ref__gc = 0 '\000'}, var = 833111680, opline_num = 833111680, op_array = 0x4a31a84680, jmp_addr = 0x4a31a84680, EA = {var = 833111680, type = 74}}}, {op_type = -112985992, u = {constant = {value = {lval = 1, dval = 4.9406564584124654e-324, str = {val = 0x1 <Address 0x1 out of bounds>, len = 882389280}, ht = 0x1, obj = {handle = 1, handlers = 0x39434983120}}, refcount__gc = 4181980744, type = 54 '6', is_ref__gc = 3 '\003'}, var = 1, opline_num = 1, op_array = 0x1, jmp_addr = 0x1, EA = {var = 1, type = 0}}}, {op_type = 841419392, u = {constant = {value = {lval = 1, dval = 4.9406564584124654e-324, str = {val = 0x1 <Address 0x1 out of bounds>, len = 882394704}, ht = 0x1, obj = {handle = 1, handlers = 0x39434984650}}, refcount__gc = 8, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 1, opline_num = 1, op_array = 0x1, jmp_addr = 0x1, EA = {var = 1, type = 0}}}, {op_type = 35046272, u = {constant = {value = {lval = 837037952, dval = 1.5744124022777867e-312, str = {val = 0x4a31e42f80 "F\261\261ß?\247D\235A", len = 837037952}, ht = 0x4a31e42f80, obj = {handle = 837037952, handlers = 0x4a31e42f80}}, refcount__gc = 882394336, type = 148 '\224', is_ref__gc = 3 '\003'}, var = 837037952, opline_num = 837037952, op_array = 0x4a31e42f80, jmp_addr = 0x4a31e42f80, EA = {var = 837037952, type = 74}}}, {op_type = 96, u = {constant = {value = {lval = 422, dval = 2.0849570254500604e-321, str = {val = 0x1a6 <Address 0x1a6 out of bounds>, len = 277917352}, ht = 0x1a6, obj = {handle = 422, handlers = 0x3371090aea8}}, refcount__gc = 882394368, type = 148 '\224', is_ref__gc = 3 '\003'}, var = 422, opline_num = 422, op_array = 0x1a6, jmp_addr = 0x1a6, EA = {var = 422, type = 0}}}, {op_type = 82, u = {constant = {value = {lval = 882394832, dval = 1.3167935718350692e-313, str = {val = 0x6349846d0 <Address 0x6349846d0 out of bounds>, len = 277917288}, ht = 0x6349846d0, obj = {handle = 882394832, handlers = 0x3371090ae68}}, refcount__gc = 128, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 882394832, opline_num = 882394832, op_array = 0x6349846d0, jmp_addr = 0x6349846d0, EA = {var = 882394832, type = 6}}}, {op_type = 0, u = {constant = {value = {lval = 0, dval = 0, str = {val = 0x0, len = -827377782}, ht = 0x0, obj = {handle = 0, handlers = 0xc0aed089ceaf378a}}, refcount__gc = 277917248, type = 55 '7', is_ref__gc = 3 '\003'}, var = 0, opline_num = 0, op_array = 0x0, jmp_addr = 0x0, EA = {var = 0, type = 0}}}, {op_type = 82, u = {constant = {value = {lval = 0, dval = 0, str = {val = 0x0, len = 394}, ht = 0x0, obj = {handle = 0, handlers = 0x18a}}, refcount__gc = 0, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 0, opline_num = 0, op_array = 0x0, jmp_addr = 0x0, EA = {var = 0, type = 0}}}, {op_type = 274872880, u = {constant = {value = {lval = 833111680, dval = 1.5743930039166724e-312, str = {val = 0x4a31a84680 "\001", len = 173034839}, ht = 0x4a31a84680, obj = {handle = 833111680, handlers = 0x3370a504d57}}, refcount__gc = 841495648, type = 74 'J', is_ref__gc = 0 '\000'}, var = 833111680, opline_num = 833111680, op_array = 0x4a31a84680, jmp_addr = 0x4a31a84680, EA = {var = 833111680, type = 74}}}, {op_type = 841495648, u = {constant = {value = {lval = 0, dval = 0, str = {val = 0x0, len = 180232848}, ht = 0x0, obj = {handle = 0, handlers = 0x3370abe2290}}, refcount__gc = 4, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 0, opline_num = 0, op_array = 0x0, jmp_addr = 0x0, EA = {var = 0, type = 0}}}, {op_type = -112986600, u = {constant = {value = {lval = 833111680, dval = 1.5743930039166724e-312, str = {val = 0x4a31a84680 "\001", len = 173034839}, ht = 0x4a31a84680, obj = {handle = 833111680, handlers = 0x3370a504d57}}, refcount__gc = 841495704, type = 74 'J', is_ref__gc = 0 '\000'}, var = 833111680, opline_num = 833111680, op_array = 0x4a31a84680, jmp_addr = 0x4a31a84680, EA = {var = 833111680, type = 74}}}, {op_type = 841495704, u = {constant = {value = {lval = 4, dval = 1.9762625833649862e-323, str = {val = 0x4 <Address 0x4 out of bounds>, len = 180234296}, ht = 0x4, obj = {handle = 4, handlers = 0x3370abe2838}}, refcount__gc = 882394704, type = 148 '\224', is_ref__gc = 3 '\003'}, var = 4, opline_num = 4, op_array = 0x4, jmp_addr = 0x4, EA = {var = 4, type = 0}}}, {op_type = 0, u = {constant = {value = {lval = 882394832, dval = 1.9441841054967485e-311, str = {val = 0x394349846d0 "\377\037", len = 173033105}, ht = 0x394349846d0, obj = {handle = 882394832, handlers = 0x3370a504691}}, refcount__gc = 0, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 882394832, opline_num = 882394832, op_array = 0x394349846d0, jmp_addr = 0x394349846d0, EA = {var = 882394832, type = 916}}}, {op_type = 0, u = {constant = {value = {lval = 0, dval = 0, str = {val = 0x0, len = 882394832}, ht = 0x0, obj = {handle = 0, handlers = 0x394349846d0}}, refcount__gc = 882394704, type = 148 '\224', is_ref__gc = 3 '\003'}, var = 0, opline_num = 0, op_array = 0x0, jmp_addr = 0x0, EA = {var = 0, type = 0}}}, {op_type = 35055611, u = {constant = {value = {lval = 2, dval = -3944.2675781250009, str = {val = 0xc0aed08900000002 <Address 0xc0aed08900000002 out of bounds>, len = 69}, ht = 0xc0aed08900000002, obj = {handle = 2, handlers = 0x45}}, refcount__gc = 833111680, type = 74 'J', is_ref__gc = 0 '\000'}, var = 2, opline_num = 2, op_array = 0xc0aed08900000002, jmp_addr = 0xc0aed08900000002, EA = {var = 2, type = 3232682121}}}, {op_type = 882394704, u = {constant = {value = {lval = 841490544, dval = 1.5744344010052081e-312, str = {val = 0x4a32282070 "\002\367-2J", len = 841484696}, ht = 0x4a32282070, obj = {handle = 841490544, handlers = 0x832280998}}, refcount__gc = 4181745712, type = 54 '6', is_ref__gc = 3 '\003'}, var = 841490544, opline_num = 841490544, op_array = 0x4a32282070, jmp_addr = 0x4a32282070, EA = {var = 841490544, type = 74}}}, {op_type = 846027248, u = {constant = {value = {lval = 1918989871, dval = 3.0265456792300576e+267, str = {val = 0x7777772f7261762f <Address 0x7777772f7261762f out of bounds>, len = 1667589167}, ht = 0x7777772f7261762f, obj = {handle = 1918989871, handlers = 0x6f72702d6365642f}}, refcount__gc = 1952671082, type = 47 '/', is_ref__gc = 116 't'}, var = 1918989871, opline_num = 1918989871, op_array = 0x7777772f7261762f, jmp_addr = 0x7777772f7261762f, EA = {var = 1918989871, type = 2004317999}}}, {op_type = 1684300335, u = {constant = {value = {lval = 1849779570, dval = 4.2513615022905589e+257, str = {val = 0x756c50646e416572 <Address 0x756c50646e416572 out of bounds>, len = 1818585458}, ht = 0x756c50646e416572, obj = {handle = 1849779570, handlers = 0x68702e736c656972}}, refcount__gc = 1885864048, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 1849779570, opline_num = 1849779570, op_array = 0x756c50646e416572, jmp_addr = 0x756c50646e416572, EA = {var = 1849779570, type = 1970032740}}}, {op_type = 882389744, u = {constant = {value = {lval = 833111680, dval = 1.5743930039166724e-312, str = {val = 0x4a31a84680 "\001", len = -325501856}, ht = 0x4a31a84680, obj = {handle = 833111680, handlers = 0x336ec993c60}}, refcount__gc = 3969465208, type = 54 '6', is_ref__gc = 3 '\003'}, var = 833111680, opline_num = 833111680, op_array = 0x4a31a84680, jmp_addr = 0x4a31a84680, EA = {var = 833111680, type = 74}}}, {op_type = 841484464, u = {constant = {value = {lval = 841484184, dval = 1.5744343695826331e-312, str = {val = 0x4a32280798 "\002v52J", len = 882390288}, ht = 0x4a32280798, obj = {handle = 841484184, handlers = 0x39434983510}}, refcount__gc = 1, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 841484184, opline_num = 841484184, op_array = 0x4a32280798, jmp_addr = 0x4a32280798, EA = {var = 841484184, type = 74}}}, {op_type = 35064326, u = {constant = {value = {lval = 3969465440, dval = 1.746241716679712e-311, str = {val = 0x336ec993c60 "\200\255\225\354\066\003", len = -325502088}, ht = 0x336ec993c60, obj = {handle = 3969465440, handlers = 0x336ec993b78}}, refcount__gc = 841484464, type = 74 'J', is_ref__gc = 0 '\000'}, var = 3969465440, opline_num = 3969465440, op_array = 0x336ec993c60, jmp_addr = 0x336ec993c60, EA = {var = 3969465440, type = 822}}}, {op_type = 35041306, u = {constant = {value = {lval = 841470888, dval = 1.5744343038916648e-312, str = {val = 0x4a3227d3a8 "F\261\261ß?\247D\235\071", len = 841470888}, ht = 0x4a3227d3a8, obj = {handle = 841470888, handlers = 0x4a3227d3a8}}, refcount__gc = 833111680, type = 74 'J', is_ref__gc = 0 '\000'}, var = 841470888, opline_num = 841470888, op_array = 0x4a3227d3a8, jmp_addr = 0x4a3227d3a8, EA = {var = 841470888, type = 74}}}, {op_type = 841470848, u = {constant = {value = {lval = 833111680, dval = 1.5743930039166724e-312, str = {val = 0x4a31a84680 "\001", len = 173034839}, ht = 0x4a31a84680, obj = {handle = 833111680, handlers = 0x3370a504d57}}, refcount__gc = 841471880, type = 74 'J', is_ref__gc = 0 '\000'}, var = 833111680, opline_num = 833111680, op_array = 0x4a31a84680, jmp_addr = 0x4a31a84680, EA = {var = 833111680, type = 74}}}, {op_type = 841471880, u = {constant = {value = {lval = 833111680, dval = 1.5743930039166724e-312, str = {val = 0x4a31a84680 "\001", len = 173034839}, ht = 0x4a31a84680, obj = {handle = 833111680, handlers = 0x3370a504d57}}, refcount__gc = 841484144, type = 74 'J', is_ref__gc = 0 '\000'}, var = 833111680, opline_num = 833111680, op_array = 0x4a31a84680, jmp_addr = 0x4a31a84680, EA = {var = 833111680, type = 74}}}, {op_type = 841484144, u = {constant = {value = {lval = 841467136, dval = 1.5744342853543218e-312, str = {val = 0x4a3227c500 "\020", len = 841484056}, ht = 0x4a3227c500, obj = {handle = 841467136, handlers = 0x4a32280718}}, refcount__gc = 3969465128, type = 54 '6', is_ref__gc = 3 '\003'}, var = 841467136, opline_num = 841467136, op_array = 0x4a3227c500, jmp_addr = 0x4a3227c500, EA = {var = 841467136, type = 74}}}, {op_type = 841483160, u = {constant = {value = {lval = 841467136, dval = 1.5744342853543218e-312, str = {val = 0x4a3227c500 "\020", len = -325738888}, ht = 0x4a3227c500, obj = {handle = 841467136, handlers = 0x336ec959e78}}, refcount__gc = 0, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 841467136, opline_num = 841467136, op_array = 0x4a3227c500, jmp_addr = 0x4a3227c500, EA = {var = 841467136, type = 74}}}, {op_type = 35042687, u = {constant = {value = {lval = 833111680, dval = 1.5743930039166724e-312, str = {val = 0x4a31a84680 "\001", len = 77}, ht = 0x4a31a84680, obj = {handle = 833111680, handlers = 0x4d}}, refcount__gc = 841484056, type = 74 'J', is_ref__gc = 0 '\000'}, var = 833111680, opline_num = 833111680, op_array = 0x4a31a84680, jmp_addr = 0x4a31a84680, EA = {var = 833111680, type = 74}}}, {op_type = 882390288, u = {constant = {value = {lval = 882390288, dval = 1.9441841032517142e-311, str = {val = 0x39434983510 "\200F\250\061J", len = -325738936}, ht = 0x39434983510, obj = {handle = 882390288, handlers = 0x336ec959e48}}, refcount__gc = 0, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 882390288, opline_num = 882390288, op_array = 0x39434983510, jmp_addr = 0x39434983510, EA = {var = 882390288, type = 916}}}, {op_type = 882390288, u = {constant = {value = {lval = 882390288, dval = 1.9441841032517142e-311, str = {val = 0x39434983510 "\200F\250\061J", len = 841470448}, ht = 0x39434983510, obj = {handle = 882390288, handlers = 0x4a3227d1f0}}, refcount__gc = 841467088, type = 74 'J', is_ref__gc = 0 '\000'}, var = 882390288, opline_num = 882390288, op_array = 0x39434983510, jmp_addr = 0x39434983510, EA = {var = 882390288, type = 916}}}, {op_type = 35045564, u = {constant = {value = {lval = 4, dval = 1.9762625833649862e-323, str = {val = 0x4 <Address 0x4 out of bounds>, len = 35042297}, ht = 0x4, obj = {handle = 4, handlers = 0x3370216b3f9}}, refcount__gc = 3969229488, type = 54 '6', is_ref__gc = 3 '\003'}, var = 4, opline_num = 4, op_array = 0x4, jmp_addr = 0x4, EA = {var = 4, type = 0}}}, {op_type = 841468648, u = {constant = {value = {lval = 882390272, dval = 1.9441841032438092e-311, str = {val = 0x39434983500 "\300J\230\064\006", len = -325738592}, ht = 0x39434983500, obj = {handle = 882390272, handlers = 0x336ec959fa0}}, refcount__gc = 3969228360, type = 54 '6', is_ref__gc = 3 '\003'}, var = 882390272, opline_num = 882390272, op_array = 0x39434983500, jmp_addr = 0x39434983500, EA = {var = 882390272, type = 916}}}, {op_type = 841470720, u = {constant = {value = {lval = 882390376, dval = 1.944184103295192e-311, str = {val = 0x39434983568 "\020", len = 882390136}, ht = 0x39434983568, obj = {handle = 882390376, handlers = 0x39434983478}}, refcount__gc = 841467088, type = 74 'J', is_ref__gc = 0 '\000'}, var = 882390376, opline_num = 882390376, op_array = 0x39434983568, jmp_addr = 0x39434983568, EA = {var = 882390376, type = 916}}}, {op_type = 841467088, u = {constant = {value = {lval = 841466696, dval = 1.5744342831804329e-312, str = {val = 0x4a3227c348 "", len = -325738984}, ht = 0x4a3227c348, obj = {handle = 841466696, handlers = 0x336ec959e18}}, refcount__gc = 1, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 841466696, opline_num = 841466696, op_array = 0x4a3227c348, jmp_addr = 0x4a3227c348, EA = {var = 841466696, type = 74}}}, {op_type = 882390288, u = {constant = {value = {lval = 3969227752, dval = 1.7462415992462367e-311, str = {val = 0x336ec959be8 "\016\201", len = 841466776}, ht = 0x336ec959be8, obj = {handle = 3969227752, handlers = 0x4a3227c398}}, refcount__gc = 1, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 3969227752, opline_num = 3969227752, op_array = 0x336ec959be8, jmp_addr = 0x336ec959be8, EA = {var = 3969227752, type = 822}}}, {op_type = 882395712, u = {constant = {value = {lval = 8, dval = 3.9525251667299724e-323, str = {val = 0x8 <Address 0x8 out of bounds>, len = 35046272}, ht = 0x8, obj = {handle = 8, handlers = 0x3370216c380}}, refcount__gc = 837028472, type = 74 'J', is_ref__gc = 0 '\000'}, var = 8, opline_num = 8, op_array = 0x8, jmp_addr = 0x8, EA = {var = 8, type = 0}}}, {op_type = 960780800, u = {constant = {value = {lval = 4067057712, dval = 1.7462899336686067e-311, str = {val = 0x336f26a6030 "\a", len = 96}, ht = 0x336f26a6030, obj = {handle = 4067057712, handlers = 0x60}}, refcount__gc = 4067255584, type = 54 '6', is_ref__gc = 3 '\003'}, var = 4067057712, opline_num = 4067057712, op_array = 0x336f26a6030, jmp_addr = 0x336f26a6030, EA = {var = 4067057712, type = 822}}}, {op_type = 277917352, u = {constant = {value = {lval = 882395376, dval = 1.9441841057655202e-311, str = {val = 0x394349848f0 "", len = 80}, ht = 0x394349848f0, obj = {handle = 882395376, handlers = 0x50}}, refcount__gc = 882395840, type = 6 '\006', is_ref__gc = 0 '\000'}, var = 882395376, opline_num = 882395376, op_array = 0x394349848f0, jmp_addr = 0x394349848f0, EA = {var = 882395376, type = 916}}}, {op_type = 277917288, u = {constant = {value = {lval = 833111680, dval = 1.5743930039166724e-312, str = {val = 0x4a31a84680 "\001", len = 173034839}, ht = 0x4a31a84680, obj = {handle = 833111680, handlers = 0x3370a504d57}}, refcount__gc = 833111680, type = 74 'J', is_ref__gc = 0 '\000'}, var = 833111680, opline_num = 833111680, op_array = 0x4a31a84680, jmp_addr = 0x4a31a84680, EA = {var = 833111680, type = 74}}}, {op_type = 173034839, u = {constant = {value = {lval = 833111680, dval = 1.5743930039166724e-312, str = {val = 0x4a31a84680 "\001", len = 173034839}, ht = 0x4a31a84680, obj = {handle = 833111680, handlers = 0x3370a504d57}}, refcount__gc = 849393936, type = 74 'J', is_ref__gc = 0 '\000'}, var = 833111680, opline_num = 833111680, op_array = 0x4a31a84680, jmp_addr = 0x4a31a84680, EA = {var = 833111680, type = 74}}}, {op_type = 37205784, u = {constant = {value = {lval = 1202, dval = 5.9386690630117835e-321, str = {val = 0x4b2 <Address 0x4b2 out of bounds>, len = 0}, ht = 0x4b2, obj = {handle = 1202, handlers = 0x0}}, refcount__gc = 849672088, type = 74 'J', is_ref__gc = 0 '\000'}, var = 1202, opline_num = 1202, op_array = 0x4b2, jmp_addr = 0x4b2, EA = {var = 1202, type = 0}}}, {op_type = 16, u = {constant = {value = {lval = 1202, dval = 5.9386690630117835e-321, str = {val = 0x4b2 <Address 0x4b2 out of bounds>, len = 172955548}, ht = 0x4b2, obj = {handle = 1202, handlers = 0x3370a4f179c}}, refcount__gc = 16, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 1202, opline_num = 1202, op_array = 0x4b2, jmp_addr = 0x4b2, EA = {var = 1202, type = 0}}}, {op_type = 882390480, u = {constant = {value = {lval = 16, dval = 1.7442805401813589e-311, str = {val = 0x33600000010 <Address 0x33600000010 out of bounds>, len = 849672936}, ht = 0x33600000010, obj = {handle = 16, handlers = 0x4a32a4fae8}}, refcount__gc = 3969487736, type = 54 '6', is_ref__gc = 3 '\003'}, var = 16, opline_num = 16, op_array = 0x33600000010, jmp_addr = 0x33600000010, EA = {var = 16, type = 822}}}, {op_type = 849424072, u = {constant = {value = {lval = 849846648, dval = 1.5744756856444029e-312, str = {val = 0x4a32a7a178 "\002\302G2J", len = 882391024}, ht = 0x4a32a7a178, obj = {handle = 849846648, handlers = 0x394349837f0}}, refcount__gc = 0, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 849846648, opline_num = 849846648, op_array = 0x4a32a7a178, jmp_addr = 0x4a32a7a178, EA = {var = 849846648, type = 74}}}, {op_type = 35064326, u = {constant = {value = {lval = 849672936, dval = 1.5744748273930882e-312, str = {val = 0x4a32a4fae8 "H\366\004\023\366\346\032", len = -325479560}, ht = 0x4a32a4fae8, obj = {handle = 849672936, handlers = 0x336ec999378}}, refcount__gc = 849424072, type = 74 'J', is_ref__gc = 0 '\000'}, var = 849672936, opline_num = 849672936, op_array = 0x4a32a4fae8, jmp_addr = 0x4a32a4fae8, EA = {var = 849672936, type = 74}}}, {op_type = 35041306, u = {constant = {value = {lval = 849845368, dval = 1.5744756793203626e-312, str = {val = 0x4a32a79c78 "F\261\261ß?\247D\235Q", len = 849845368}, ht = 0x4a32a79c78, obj = {handle = 849845368, handlers = 0x4a32a79c78}}, refcount__gc = 833111680, type = 74 'J', is_ref__gc = 0 '\000'}, var = 849845368, opline_num = 849845368, op_array = 0x4a32a79c78, jmp_addr = 0x4a32a79c78, EA = {var = 849845368, type = 74}}}, {op_type = 849845328, u = {constant = {value = {lval = 833111680, dval = 1.5743930039166724e-312, str = {val = 0x4a31a84680 "\001", len = 173034839}, ht = 0x4a31a84680, obj = {handle = 833111680, handlers = 0x3370a504d57}}, refcount__gc = 849845936, type = 74 'J', is_ref__gc = 0 '\000'}, var = 833111680, opline_num = 833111680, op_array = 0x4a31a84680, jmp_addr = 0x4a31a84680, EA = {var = 833111680, type = 74}}}, {op_type = 849845936, u = {constant = {value = {lval = 833111680, dval = 1.5743930039166724e-312, str = {val = 0x4a31a84680 "\001", len = 173034839}, ht = 0x4a31a84680, obj = {handle = 833111680, handlers = 0x3370a504d57}}, refcount__gc = 849846608, type = 74 'J', is_ref__gc = 0 '\000'}, var = 833111680, opline_num = 833111680, op_array = 0x4a31a84680, jmp_addr = 0x4a31a84680, EA = {var = 833111680, type = 74}}}, {op_type = 849846608, u = {constant = {value = {lval = 849843960, dval = 1.5744756723639183e-312, str = {val = 0x4a32a796f8 "\b", len = 849672936}, ht = 0x4a32a796f8, obj = {handle = 849843960, handlers = 0x4a32a4fae8}}, refcount__gc = 3969487664, type = 54 '6', is_ref__gc = 3 '\003'}, var = 849843960, opline_num = 849843960, op_array = 0x4a32a796f8, jmp_addr = 0x4a32a796f8, EA = {var = 849843960, type = 74}}}, {op_type = 849424072, u = {constant = {value = {lval = 849843960, dval = 1.5744756723639183e-312, str = {val = 0x4a32a796f8 "\b", len = -325483296}, ht = 0x4a32a796f8, obj = {handle = 849843960, handlers = 0x336ec9984e0}}, refcount__gc = 0, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 849843960, opline_num = 849843960, op_array = 0x4a32a796f8, jmp_addr = 0x4a32a796f8, EA = {var = 849843960, type = 74}}}, {op_type = 35042687, u = {constant = {value = {lval = 833111680, dval = 1.5743930039166724e-312, str = {val = 0x4a31a84680 "\001", len = 72}, ht = 0x4a31a84680, obj = {handle = 833111680, handlers = 0x48}}, refcount__gc = 849672936, type = 74 'J', is_ref__gc = 0 '\000'}, var = 833111680, opline_num = 833111680, op_array = 0x4a31a84680, jmp_addr = 0x4a31a84680, EA = {var = 833111680, type = 74}}}, {op_type = 882391024, u = {constant = {value = {lval = 882391024, dval = 1.9441841036153465e-311, str = {val = 0x394349837f0  <incomplete sequence \340>, len = -325483344}, ht = 0x394349837f0, obj = {handle = 882391024, handlers = 0x336ec9984b0}}, refcount__gc = 0, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 882391024, opline_num = 882391024, op_array = 0x394349837f0, jmp_addr = 0x394349837f0, EA = {var = 882391024, type = 916}}}, {op_type = 882391024, u = {constant = {value = {lval = 882391024, dval = 1.9441841036153465e-311, str = {val = 0x394349837f0  <incomplete sequence \340>, len = 0}, ht = 0x394349837f0, obj = {handle = 882391024, handlers = 0x0}}, refcount__gc = 849843912, type = 74 'J', is_ref__gc = 0 '\000'}, var = 882391024, opline_num = 882391024, op_array = 0x394349837f0, jmp_addr = 0x394349837f0, EA = {var = 882391024, type = 916}}}, {op_type = 35045564, u = {constant = {value = {lval = 849389968, dval = 1.5744734293454115e-312, str = {val = 0x4a32a0a990 "\002\337\022\362\261\250+>h\254\240\062J", len = 35042297}, ht = 0x4a32a0a990, obj = {handle = 849389968, handlers = 0x3370216b3f9}}, refcount__gc = 3969484976, type = 54 '6', is_ref__gc = 3 '\003'}, var = 849389968, opline_num = 849389968, op_array = 0x4a32a0a990, jmp_addr = 0x4a32a0a990, EA = {var = 849389968, type = 74}}}, {op_type = 849733896, u = {constant = {value = {lval = 882390784, dval = 1.9441841034967708e-311, str = {val = 0x39434983700 "\260\210\231\354\066\003", len = -325483000}, ht = 0x39434983700, obj = {handle = 882390784, handlers = 0x336ec998608}}, refcount__gc = 3969483952, type = 54 '6', is_ref__gc = 3 '\003'}, var = 882390784, opline_num = 882390784, op_array = 0x39434983700, jmp_addr = 0x39434983700, EA = {var = 882390784, type = 916}}}, {op_type = 849423192, u = {constant = {value = {lval = 882391112, dval = 1.9441841036588243e-311, str = {val = 0x39434983848 ">\320\031\210\232\301s\205\360O\250\061J", len = 882390872}, ht = 0x39434983848, obj = {handle = 882391112, handlers = 0x39434983758}}, refcount__gc = 849843912, type = 74 'J', is_ref__gc = 0 '\000'}, var = 882391112, opline_num = 882391112, op_array = 0x39434983848, jmp_addr = 0x39434983848, EA = {var = 882391112, type = 916}}}, {op_type = 882391024, u = {constant = {value = {lval = 849843552, dval = 1.5744756703481305e-312, str = {val = 0x4a32a79560 "", len = -325483488}, ht = 0x4a32a79560, obj = {handle = 849843552, handlers = 0x336ec998420}}, refcount__gc = 1, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 849843552, opline_num = 849843552, op_array = 0x4a32a79560, jmp_addr = 0x4a32a79560, EA = {var = 849843552, type = 74}}}, {op_type = 882391024, u = {constant = {value = {lval = 3969482856, dval = 1.7462417252843592e-311, str = {val = 0x336ec998068 "\305\017", len = 849423064}, ht = 0x336ec998068, obj = {handle = 3969482856, handlers = 0x4a32a12ad8}}, refcount__gc = 1, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 3969482856, opline_num = 3969482856, op_array = 0x336ec998068, jmp_addr = 0x336ec998068, EA = {var = 3969482856, type = 822}}}, {op_type = 882396448, u = {constant = {value = {lval = 8, dval = 3.9525251667299724e-323, str = {val = 0x8 <Address 0x8 out of bounds>, len = 35046272}, ht = 0x8, obj = {handle = 8, handlers = 0x3370216c380}}, refcount__gc = 8, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 8, opline_num = 8, op_array = 0x8, jmp_addr = 0x8, EA = {var = 8, type = 0}}}, {op_type = 35046272, u = {constant = {value = {lval = 850129760, dval = 1.5744770844035342e-312, str = {val = 0x4a32abf360 "", len = 192}, ht = 0x4a32abf360, obj = {handle = 850129760, handlers = 0xc0}}, refcount__gc = 277917336, type = 55 '7', is_ref__gc = 3 '\003'}, var = 850129760, opline_num = 850129760, op_array = 0x4a32abf360, jmp_addr = 0x4a32abf360, EA = {var = 850129760, type = 74}}}, {op_type = 277917352, u = {constant = {value = {lval = 882396112, dval = 1.9441841061291525e-311, str = {val = 0x39434984bd0 "", len = 180}, ht = 0x39434984bd0, obj = {handle = 882396112, handlers = 0xb4}}, refcount__gc = 882396576, type = 12 '\f', is_ref__gc = 0 '\000'}, var = 882396112, opline_num = 882396112, op_array = 0x39434984bd0, jmp_addr = 0x39434984bd0, EA = {var = 882396112, type = 916}}}, {op_type = 35046609, u = {constant = {value = {lval = 224, dval = 1.1067070466843923e-321, str = {val = 0xe0 <Address 0xe0 out of bounds>, len = 0}, ht = 0xe0, obj = {handle = 224, handlers = 0xc00000000}}, refcount__gc = 0, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 224, opline_num = 224, op_array = 0xe0, jmp_addr = 0xe0, EA = {var = 224, type = 0}}}, {op_type = -2011574210, u = {constant = {value = {lval = 277917248, dval = 1.7465398453290427e-311, str = {val = 0x3371090ae40 "", len = 180}, ht = 0x3371090ae40, obj = {handle = 277917248, handlers = 0xb4}}, refcount__gc = 0, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 277917248, opline_num = 277917248, op_array = 0x3371090ae40, jmp_addr = 0x3371090ae40, EA = {var = 277917248, type = 823}}}, {op_type = 62, u = {constant = {value = {lval = 0, dval = 0, str = {val = 0x0, len = 274872880}, ht = 0x0, obj = {handle = 0, handlers = 0x33710623a30}}, refcount__gc = 0, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 0, opline_num = 0, op_array = 0x0, jmp_addr = 0x0, EA = {var = 0, type = 0}}}, {op_type = -2011574210, u = {constant = {value = {lval = 833114096, dval = 1.5743930158532984e-312, str = {val = 0x4a31a84ff0 "", len = 109}, ht = 0x4a31a84ff0, obj = {handle = 833114096, handlers = 0x6d}}, refcount__gc = 841023520, type = 74 'J', is_ref__gc = 0 '\000'}, var = 833114096, opline_num = 833114096, op_array = 0x4a31a84ff0, jmp_addr = 0x4a31a84ff0, EA = {var = 833114096, type = 74}}}, {op_type = 180232848, u = {constant = {value = {lval = 4, dval = 1.9762625833649862e-323, str = {val = 0x4 <Address 0x4 out of bounds>, len = -325484520}, ht = 0x4, obj = {handle = 4, handlers = 0x336ec998018}}, refcount__gc = 833111680, type = 74 'J', is_ref__gc = 0 '\000'}, var = 4, opline_num = 4, op_array = 0x4, jmp_addr = 0x4, EA = {var = 4, type = 0}}}, {op_type = 173034839, u = {constant = {value = {lval = 849846888, dval = 1.5744756868301604e-312, str = {val = 0x4a32a7a268 "F\261\261ß?\247D\235\301", len = 849846888}, ht = 0x4a32a7a268, obj = {handle = 849846888, handlers = 0x4a32a7a268}}, refcount__gc = 4, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 849846888, opline_num = 849846888, op_array = 0x4a32a7a268, jmp_addr = 0x4a32a7a268, EA = {var = 849846888, type = 74}}}, {op_type = 180234296, u = {constant = {value = {lval = 882396448, dval = 1.9441841062951586e-311, str = {val = 0x39434984d20 "", len = 0}, ht = 0x39434984d20, obj = {handle = 882396448, handlers = 0x0}}, refcount__gc = 882396576, type = 148 '\224', is_ref__gc = 3 '\003'}, var = 882396448, opline_num = 882396448, op_array = 0x39434984d20, jmp_addr = 0x39434984d20, EA = {var = 882396448, type = 916}}}, {op_type = 173033105, u = {constant = {value = {lval = 0, dval = 0, str = {val = 0x0, len = 0}, ht = 0x0, obj = {handle = 0, handlers = 0x0}}, refcount__gc = 0, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 0, opline_num = 0, op_array = 0x0, jmp_addr = 0x0, EA = {var = 0, type = 0}}}, {op_type = 882396576, u = {constant = {value = {lval = 882396448, dval = 1.9441841062951586e-311, str = {val = 0x39434984d20 "", len = 35055611}, ht = 0x39434984d20, obj = {handle = 882396448, handlers = 0x3370216e7fb}}, refcount__gc = 2, type = 154 '\232', is_ref__gc = 193 '\301'}, var = 882396448, opline_num = 882396448, op_array = 0x39434984d20, jmp_addr = 0x39434984d20, EA = {var = 882396448, type = 916}}}, {op_type = 35055611, u = {constant = {value = {lval = 2, dval = 2.6572731991886682e-271, str = {val = 0x7c1f80c00000002 <Address 0x7c1f80c00000002 out of bounds>, len = 882396448}, ht = 0x7c1f80c00000002, obj = {handle = 2, handlers = 0x39434984d20}}, refcount__gc = 849843632, type = 74 'J', is_ref__gc = 0 '\000'}, var = 2, opline_num = 2, op_array = 0x7c1f80c00000002, jmp_addr = 0x7c1f80c00000002, EA = {var = 2, type = 130152460}}}, {op_type = 882396464, u = {constant = {value = {lval = 3968753712, dval = 1.746241365039358e-311, str = {val = 0x336ec8e6030 "\001", len = 846307976}, ht = 0x336ec8e6030, obj = {handle = 3968753712, handlers = 0x4a3271a288}}, refcount__gc = 3969482656, type = 54 '6', is_ref__gc = 3 '\003'}, var = 3968753712, opline_num = 3968753712, op_array = 0x336ec8e6030, jmp_addr = 0x336ec8e6030, EA = {var = 3968753712, type = 822}}}, {op_type = 882404992, u = {constant = {value = {lval = 882404992, dval = 1.9441841105164555e-311, str = {val = 0x39434986e80 "\300 \276\n7\003", len = 882404992}, ht = 0x39434986e80, obj = {handle = 882404992, handlers = 0x39434986e80}}, refcount__gc = 882404992, type = 148 '\224', is_ref__gc = 3 '\003'}, var = 882404992, opline_num = 882404992, op_array = 0x39434986e80, jmp_addr = 0x39434986e80, EA = {var = 882404992, type = 916}}}, {op_type = 172583445, u = {constant = {value = {lval = 289232624, dval = 1.746545435867594e-311, str = {val = 0x337113d56f0 "@\361k\020\067\003", len = 35042297}, ht = 0x337113d56f0, obj = {handle = 289232624, handlers = 0x350216b3f9}}, refcount__gc = 4149190232, type = 54 '6', is_ref__gc = 3 '\003'}, var = 289232624, opline_num = 289232624, op_array = 0x337113d56f0, jmp_addr = 0x337113d56f0, EA = {var = 289232624, type = 823}}}, {op_type = 836891768, u = {constant = {value = {lval = 882391552, dval = 1.9441841038762132e-311, str = {val = 0x39434983a00 "", len = -145801248}, ht = 0x39434983a00, obj = {handle = 882391552, handlers = 0x336f74f3fe0}}, refcount__gc = 833111680, type = 74 'J', is_ref__gc = 0 '\000'}, var = 882391552, opline_num = 882391552, op_array = 0x39434983a00, jmp_addr = 0x39434983a00, EA = {var = 882391552, type = 916}}}, {op_type = 173034651, u = {constant = {value = {lval = 837181000, dval = 1.5744131090288117e-312, str = {val = 0x4a31e65e48 "F\261\261ß?\247D\235i", len = 837181000}, ht = 0x4a31e65e48, obj = {handle = 837181000, handlers = 0x4a31e65e48}}, refcount__gc = 882391512, type = 148 '\224', is_ref__gc = 3 '\003'}, var = 837181000, opline_num = 837181000, op_array = 0x4a31e65e48, jmp_addr = 0x4a31e65e48, EA = {var = 837181000, type = 74}}}, {op_type = 882395904, u = {constant = {value = {lval = 882395904, dval = 1.9441841060263869e-311, str = {val = 0x39434984b00 "\377\037", len = 54}, ht = 0x39434984b00, obj = {handle = 882395904, handlers = 0x36}}, refcount__gc = 53, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 882395904, opline_num = 882395904, op_array = 0x39434984b00, jmp_addr = 0x39434984b00, EA = {var = 882395904, type = 916}}}, {op_type = 180232384, u = {constant = {value = {lval = 845513720, dval = 1.5744542781356959e-312, str = {val = 0x4a326583f8 "\001\004", len = 172782352}, ht = 0x4a326583f8, obj = {handle = 845513720, handlers = 0x3370a4c7310}}, refcount__gc = 882395904, type = 148 '\224', is_ref__gc = 3 '\003'}, var = 845513720, opline_num = 845513720, op_array = 0x4a326583f8, jmp_addr = 0x4a326583f8, EA = {var = 845513720, type = 74}}}, {op_type = 845513824, u = {constant = {value = {lval = 65536, dval = 3.7826391402871111e-307, str = {val = 0x51000400010000 <Address 0x51000400010000 out of bounds>, len = 23265497}, ht = 0x51000400010000, obj = {handle = 65536, handlers = 0x23b01ec016300d9}}, refcount__gc = 45154943, type = 233 '\351', is_ref__gc = 2 '\002'}, var = 65536, opline_num = 65536, op_array = 0x51000400010000, jmp_addr = 0x51000400010000, EA = {var = 65536, type = 5308420}}}, {op_type = 53543697, u = {constant = {value = {lval = 56886111, dval = 3.6342256749118899e-292, str = {val = 0x36d036a0364035f <Address 0x36d036a0364035f out of bounds>, len = 31261551}, ht = 0x36d036a0364035f, obj = {handle = 56886111, handlers = 0x18700f801dd036f}}, refcount__gc = 38732290, type = 143 '\217', is_ref__gc = 2 '\002'}, var = 56886111, opline_num = 56886111, op_array = 0x36d036a0364035f, jmp_addr = 0x36d036a0364035f, EA = {var = 56886111, type = 57475946}}}, {op_type = 50201301, u = {constant = {value = {lval = 34210213, dval = 3.0595111396460092e-296, str = {val = 0x2940255020a01a5 <Address 0x2940255020a01a5 out of bounds>, len = 50201301}, ht = 0x2940255020a01a5, obj = {handle = 34210213, handlers = 0x12600a102fe02d5}}, refcount__gc = 34537899, type = 90 'Z', is_ref__gc = 2 '\002'}, var = 34210213, opline_num = 34210213, op_array = 0x2940255020a01a5, jmp_addr = 0x2940255020a01a5, EA = {var = 34210213, type = 43254357}}}, {op_type = 50463450, u = {constant = {value = {lval = 31261018, dval = 5.1338328369871613e-301, str = {val = 0x19600f801dd015a <Address 0x19600f801dd015a out of bounds>, len = 38732290}, ht = 0x19600f801dd015a, obj = {handle = 31261018, handlers = 0x2cf028f024f0202}}, refcount__gc = 52101879, type = 227 '\343', is_ref__gc = 1 '\001'}, var = 31261018, opline_num = 31261018, op_array = 0x19600f801dd015a, jmp_addr = 0x19600f801dd015a, EA = {var = 31261018, type = 26607864}}}, {op_type = 33685910, u = {constant = {value = {lval = 17367759, dval = 5.3774485832181589e-299, str = {val = 0x2020196010902cf <Address 0x2020196010902cf out of bounds>, len = 42926671}, ht = 0x2020196010902cf, obj = {handle = 17367759, handlers = 0x2f702cf028f024f}}, refcount__gc = 795, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 17367759, opline_num = 17367759, op_array = 0x2020196010902cf, jmp_addr = 0x2020196010902cf, EA = {var = 17367759, type = 33685910}}}, {op_type = 463, u = {constant = {value = {lval = 0, dval = 0, str = {val = 0x0, len = 833111680}, ht = 0x0, obj = {handle = 0, handlers = 0x4a31a84680}}, refcount__gc = 277917248, type = 55 '7', is_ref__gc = 3 '\003'}, var = 0, opline_num = 0, op_array = 0x0, jmp_addr = 0x0, EA = {var = 0, type = 0}}}, {op_type = 262144, u = {constant = {value = {lval = 833111680, dval = 1.5743930039166724e-312, str = {val = 0x4a31a84680 "\001", len = 173034839}, ht = 0x4a31a84680, obj = {handle = 833111680, handlers = 0x3370a504d57}}, refcount__gc = 845616376, type = 74 'J', is_ref__gc = 0 '\000'}, var = 833111680, opline_num = 833111680, op_array = 0x4a31a84680, jmp_addr = 0x4a31a84680, EA = {var = 833111680, type = 74}}}, {op_type = 845616376, u = {constant = {value = {lval = 180232848, dval = 1.746491582822868e-311, str = {val = 0x3370abe2290 "\200", len = 180233040}, ht = 0x3370abe2290, obj = {handle = 180232848, handlers = 0x3370abe2350}}, refcount__gc = 15, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 180232848, opline_num = 180232848, op_array = 0x3370abe2290, jmp_addr = 0x3370abe2290, EA = {var = 180232848, type = 823}}}, {op_type = 0, u = {constant = {value = {lval = 845604840, dval = 1.5744547283283124e-312, str = {val = 0x4a3266e7e8 "/**\n\t * The value for the domain field.\n\t * @var        string\n\t */", len = 16}, ht = 0x4a3266e7e8, obj = {handle = 845604840, handlers = 0x10}}, refcount__gc = 7, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 845604840, opline_num = 845604840, op_array = 0x4a3266e7e8, jmp_addr = 0x4a3266e7e8, EA = {var = 845604840, type = 74}}}, {op_type = 172955548, u = {constant = {value = {lval = 16, dval = 2.6524947387856409e-312, str = {val = 0x7d00000010 <Address 0x7d00000010 out of bounds>, len = 882391936}, ht = 0x7d00000010, obj = {handle = 16, handlers = 0x39434983b80}}, refcount__gc = 262192, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 16, opline_num = 16, op_array = 0x7d00000010, jmp_addr = 0x7d00000010, EA = {var = 16, type = 125}}}, {op_type = 15, u = {constant = {value = {lval = 180232384, dval = 1.7464915825936216e-311, str = {val = 0x3370abe20c0 "\360\375\025\062J", len = 0}, ht = 0x3370abe20c0, obj = {handle = 180232384, handlers = 0x0}}, refcount__gc = 173514217, type = 55 '7', is_ref__gc = 3 '\003'}, var = 180232384, opline_num = 180232384, op_array = 0x3370abe20c0, jmp_addr = 0x3370abe20c0, EA = {var = 180232384, type = 823}}}, {op_type = 180123200, u = {constant = {value = {lval = 845616176, dval = 1.574454784335594e-312, str = {val = 0x4a32671430 "/**\n\t * The Peer class.\n\t * Instance provides a convenient way of calling static methods on a class\n\t * that calling code may not be able to identify.\n\t * @var        VariablesPeer\n\t */", len = 172966100}, ht = 0x4a32671430, obj = {handle = 845616176, handlers = 0x3370a4f40d4}}, refcount__gc = 845063328, type = 74 'J', is_ref__gc = 0 '\000'}, var = 845616176, opline_num = 845616176, op_array = 0x4a32671430, jmp_addr = 0x4a32671430, EA = {var = 845616176, type = 74}}}, {op_type = 2, u = {constant = {value = {lval = 833111680, dval = 1.5743930039166724e-312, str = {val = 0x4a31a84680 "\001", len = 173034839}, ht = 0x4a31a84680, obj = {handle = 833111680, handlers = 0x3370a504d57}}, refcount__gc = 849525632, type = 74 'J', is_ref__gc = 0 '\000'}, var = 833111680, opline_num = 833111680, op_array = 0x4a31a84680, jmp_addr = 0x4a31a84680, EA = {var = 833111680, type = 74}}}, {op_type = 849525632, u = {constant = {value = {lval = 833111680, dval = 1.5743930039166724e-312, str = {val = 0x4a31a84680 "\001", len = 173034839}, ht = 0x4a31a84680, obj = {handle = 833111680, handlers = 0x3370a504d57}}, refcount__gc = 849772176, type = 74 'J', is_ref__gc = 0 '\000'}, var = 833111680, opline_num = 833111680, op_array = 0x4a31a84680, jmp_addr = 0x4a31a84680, EA = {var = 833111680, type = 74}}}, {op_type = 849772176, u = {constant = {value = {lval = 16432, dval = 8.1184866924633632e-320, str = {val = 0x4030 <Address 0x4030 out of bounds>, len = 849410112}, ht = 0x4030, obj = {handle = 16432, handlers = 0x4a32a0f840}}, refcount__gc = 5, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 16432, opline_num = 16432, op_array = 0x4030, jmp_addr = 0x4030, EA = {var = 16432, type = 0}}}, {op_type = -276861744, u = {constant = {value = {lval = 845605592, dval = 1.574454732043686e-312, str = {val = 0x4a3266ead8 " ", len = 849771928}, ht = 0x4a3266ead8, obj = {handle = 845605592, handlers = 0x4a32a67d98}}, refcount__gc = 882392800, type = 148 '\224', is_ref__gc = 3 '\003'}, var = 845605592, opline_num = 845605592, op_array = 0x4a3266ead8, jmp_addr = 0x4a3266ead8, EA = {var = 845605592, type = 74}}}, {op_type = 172782248, u = {constant = {value = {lval = 833111680, dval = 1.5743930039166724e-312, str = {val = 0x4a31a84680 "\001", len = 173034839}, ht = 0x4a31a84680, obj = {handle = 833111680, handlers = 0x3370a504d57}}, refcount__gc = 849841528, type = 74 'J', is_ref__gc = 0 '\000'}, var = 833111680, opline_num = 833111680, op_array = 0x4a31a84680, jmp_addr = 0x4a31a84680, EA = {var = 833111680, type = 74}}}, {op_type = 849841528, u = {constant = {value = {lval = 849525488, dval = 1.5744740989031747e-312, str = {val = 0x4a32a2baf0 "", len = 37205784}, ht = 0x4a32a2baf0, obj = {handle = 849525488, handlers = 0x3370237b718}}, refcount__gc = 1241, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 849525488, opline_num = 849525488, op_array = 0x4a32a2baf0, jmp_addr = 0x4a32a2baf0, EA = {var = 849525488, type = 74}}}, {op_type = 0, u = {constant = {value = {lval = 849932608, dval = 1.5744761103432321e-312, str = {val = 0x4a32a8f140 "\331\004", len = 16}, ht = 0x4a32a8f140, obj = {handle = 849932608, handlers = 0x10}}, refcount__gc = 1241, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 849932608, opline_num = 849932608, op_array = 0x4a32a8f140, jmp_addr = 0x4a32a8f140, EA = {var = 849932608, type = 74}}}, {op_type = 172955548, u = {constant = {value = {lval = 16, dval = 1.570276885393352e-312, str = {val = 0x4a00000010 <Address 0x4a00000010 out of bounds>, len = 882392256}, ht = 0x4a00000010, obj = {handle = 16, handlers = 0x39434983cc0}}, refcount__gc = 833111680, type = 74 'J', is_ref__gc = 0 '\000'}, var = 16, opline_num = 16, op_array = 0x4a00000010, jmp_addr = 0x4a00000010, EA = {var = 16, type = 74}}}, {op_type = -143566264, u = {constant = {value = {lval = 4151400776, dval = 1.7463316046789941e-311, str = {val = 0x336f7715948 "\002Bn2J", len = 850217680}, ht = 0x336f7715948, obj = {handle = 4151400776, handlers = 0x4a32ad4ad0}}, refcount__gc = 850217400, type = 74 'J', is_ref__gc = 0 '\000'}, var = 4151400776, opline_num = 4151400776, op_array = 0x336f7715948, jmp_addr = 0x336f7715948, EA = {var = 4151400776, type = 822}}}, {op_type = 882392800, u = {constant = {value = {lval = 1, dval = 4.9406564584124654e-324, str = {val = 0x1 <Address 0x1 out of bounds>, len = 35064326}, ht = 0x1, obj = {handle = 1, handlers = 0x33702170a06}}, refcount__gc = 4151401032, type = 54 '6', is_ref__gc = 3 '\003'}, var = 1, opline_num = 1, op_array = 0x1, jmp_addr = 0x1, EA = {var = 1, type = 0}}}, {op_type = -143566520, u = {constant = {value = {lval = 850217680, dval = 1.57447751878605e-312, str = {val = 0x4a32ad4ad0 "(K\255\062J", len = 35041306}, ht = 0x4a32ad4ad0, obj = {handle = 850217680, handlers = 0x3370216b01a}}, refcount__gc = 849788880, type = 74 'J', is_ref__gc = 0 '\000'}, var = 850217680, opline_num = 850217680, op_array = 0x4a32ad4ad0, jmp_addr = 0x4a32ad4ad0, EA = {var = 850217680, type = 74}}}, {op_type = 849788880, u = {constant = {value = {lval = 882392888, dval = 1.9441841045362849e-311, str = {val = 0x39434983f38 "WMP\n7\003", len = 849931424}, ht = 0x39434983f38, obj = {handle = 882392888, handlers = 0x4a32a8eca0}}, refcount__gc = 8, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 882392888, opline_num = 882392888, op_array = 0x39434983f38, jmp_addr = 0x39434983f38, EA = {var = 882392888, type = 916}}}, {op_type = 8, u = {constant = {value = {lval = 849920712, dval = 1.5744760515691828e-312, str = {val = 0x4a32a8c2c8 "\b", len = 850173736}, ht = 0x4a32a8c2c8, obj = {handle = 849920712, handlers = 0x4a32ac9f28}}, refcount__gc = 833111680, type = 74 'J', is_ref__gc = 0 '\000'}, var = 849920712, opline_num = 849920712, op_array = 0x4a32a8c2c8, jmp_addr = 0x4a32a8c2c8, EA = {var = 849920712, type = 74}}}, {op_type = 173034839, u = {constant = {value = {lval = 850217360, dval = 1.5744775172050399e-312, str = {val = 0x4a32ad4990 "F\261\261ß?\247D\235\031\001", len = 850217360}, ht = 0x4a32ad4990, obj = {handle = 850217360, handlers = 0x4a32ad4990}}, refcount__gc = 850204264, type = 74 'J', is_ref__gc = 0 '\000'}, var = 850217360, opline_num = 850217360, op_array = 0x4a32ad4990, jmp_addr = 0x4a32ad4990, EA = {var = 850217360, type = 74}}}, {op_type = 849890008, u = {constant = {value = {lval = 4151400688, dval = 1.7463316046355164e-311, str = {val = 0x336f77158f0 "\347\016h\273l\330\023 \023", len = 850192504}, ht = 0x336f77158f0, obj = {handle = 4151400688, handlers = 0x4a32ace878}}, refcount__gc = 850204264, type = 74 'J', is_ref__gc = 0 '\000'}, var = 4151400688, opline_num = 4151400688, op_array = 0x336f77158f0, jmp_addr = 0x336f77158f0, EA = {var = 4151400688, type = 822}}}, {op_type = -143686440, u = {constant = {value = {lval = 0, dval = 0, str = {val = 0x0, len = 35042687}, ht = 0x0, obj = {handle = 0, handlers = 0x3370216b57f}}, refcount__gc = 833111680, type = 74 'J', is_ref__gc = 0 '\000'}, var = 0, opline_num = 0, op_array = 0x0, jmp_addr = 0x0, EA = {var = 0, type = 0}}}, {op_type = 83, u = {constant = {value = {lval = 849890008, dval = 1.5744758998712669e-312, str = {val = 0x4a32a84ad8 "\347\016h\273l\330\023 \023", len = 882392800}, ht = 0x4a32a84ad8, obj = {handle = 849890008, handlers = 0x39434983ee0}}, refcount__gc = 882392800, type = 148 '\224', is_ref__gc = 3 '\003'}, var = 849890008, opline_num = 849890008, op_array = 0x4a32a84ad8, jmp_addr = 0x4a32a84ad8, EA = {var = 849890008, type = 74}}}, {op_type = -143686488, u = {constant = {value = {lval = 0, dval = 0, str = {val = 0x0, len = 882392800}, ht = 0x0, obj = {handle = 0, handlers = 0x39434983ee0}}, refcount__gc = 882392800, type = 148 '\224', is_ref__gc = 3 '\003'}, var = 0, opline_num = 0, op_array = 0x0, jmp_addr = 0x0, EA = {var = 0, type = 0}}}, {op_type = 0, u = {constant = {value = {lval = 850204216, dval = 1.5744774522650514e-312, str = {val = 0x4a32ad1638 "\002\233+\362\261\250+>\240\274\254\062J", len = 35045564}, ht = 0x4a32ad1638, obj = {handle = 850204216, handlers = 0x3370216c0bc}}, refcount__gc = 882392608, type = 148 '\224', is_ref__gc = 3 '\003'}, var = 850204216, opline_num = 850204216, op_array = 0x4a32ad1638, jmp_addr = 0x4a32ad1638, EA = {var = 850204216, type = 74}}}, {op_type = 35042297, u = {constant = {value = {lval = 4151284664, dval = 1.7463315473120439e-311, str = {val = 0x336f76f93b8 "", len = 850206120}, ht = 0x336f76f93b8, obj = {handle = 4151284664, handlers = 0x4a32ad1da8}}, refcount__gc = 882392576, type = 148 '\224', is_ref__gc = 3 '\003'}, var = 4151284664, opline_num = 4151284664, op_array = 0x336f76f93b8, jmp_addr = 0x336f76f93b8, EA = {var = 4151284664, type = 822}}}, {op_type = -143686144, u = {constant = {value = {lval = 4151280808, dval = 1.7463315454069267e-311, str = {val = 0x336f76f84a8 "\002\233+\362\261\250+>P\207o\367\066\003", len = 0}, ht = 0x336f76f84a8, obj = {handle = 4151280808, handlers = 0x0}}, refcount__gc = 850204480, type = 74 'J', is_ref__gc = 0 '\000'}, var = 4151280808, opline_num = 4151280808, op_array = 0x336f76f84a8, jmp_addr = 0x336f76f84a8, EA = {var = 4151280808, type = 822}}}, {op_type = 882392888, u = {constant = {value = {lval = 882392648, dval = 1.9441841044177091e-311, str = {val = 0x39434983e48 "(\204o\367\066\003", len = 850204216}, ht = 0x39434983e48, obj = {handle = 882392648, handlers = 0x4a32ad1638}}, refcount__gc = 849934136, type = 74 'J', is_ref__gc = 0 '\000'}, var = 882392648, opline_num = 882392648, op_array = 0x39434983e48, jmp_addr = 0x39434983e48, EA = {var = 882392648, type = 916}}}, {op_type = -143686616, u = {constant = {value = {lval = 1, dval = 4.9406564584124654e-324, str = {val = 0x1 <Address 0x1 out of bounds>, len = 882392800}, ht = 0x1, obj = {handle = 1, handlers = 0x39434983ee0}}, refcount__gc = 4151279736, type = 54 '6', is_ref__gc = 3 '\003'}, var = 1, opline_num = 1, op_array = 0x1, jmp_addr = 0x1, EA = {var = 1, type = 0}}}, {op_type = 849929824, u = {constant = {value = {lval = 1, dval = 4.9406564584124654e-324, str = {val = 0x1 <Address 0x1 out of bounds>, len = 882398224}, ht = 0x1, obj = {handle = 1, handlers = 0x39434985410}}, refcount__gc = 8, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 1, opline_num = 1, op_array = 0x1, jmp_addr = 0x1, EA = {var = 1, type = 0}}}, {op_type = 35046272, u = {constant = {value = {lval = 1, dval = 4.9406564584124654e-324, str = {val = 0x1 <Address 0x1 out of bounds>, len = 1}, ht = 0x1, obj = {handle = 1, handlers = 0x100000001}}, refcount__gc = 8, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 1, opline_num = 1, op_array = 0x1, jmp_addr = 0x1, EA = {var = 1, type = 0}}}, {op_type = 176, u = {constant = {value = {lval = 277917336, dval = 1.7465398453725204e-311, str = {val = 0x3371090ae98 "@\023\275\062J", len = 277917352}, ht = 0x3371090ae98, obj = {handle = 277917336, handlers = 0x3371090aea8}}, refcount__gc = 882397888, type = 148 '\224', is_ref__gc = 3 '\003'}, var = 277917336, opline_num = 277917336, op_array = 0x3371090ae98, jmp_addr = 0x3371090ae98, EA = {var = 277917336, type = 823}}}, {op_type = 165, u = {constant = {value = {lval = 882398352, dval = 2.3777916412288127e-313, str = {val = 0xb34985490 <Address 0xb34985490 out of bounds>, len = 35046609}, ht = 0xb34985490, obj = {handle = 882398352, handlers = 0x3370216c4d1}}, refcount__gc = 208, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 882398352, opline_num = 882398352, op_array = 0xb34985490, jmp_addr = 0xb34985490, EA = {var = 882398352, type = 11}}}, {op_type = 0, u = {constant = {value = {lval = 0, dval = 0, str = {val = 0x0, len = -2060404959}, ht = 0x0, obj = {handle = 0, handlers = 0xbfefcb5f8530b721}}, refcount__gc = 277917248, type = 55 '7', is_ref__gc = 3 '\003'}, var = 0, opline_num = 0, op_array = 0x0, jmp_addr = 0x0, EA = {var = 0, type = 0}}}, {op_type = 165, u = {constant = {value = {lval = 0, dval = 0, str = {val = 0x0, len = 289}, ht = 0x0, obj = {handle = 0, handlers = 0x121}}, refcount__gc = 0, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 0, opline_num = 0, op_array = 0x0, jmp_addr = 0x0, EA = {var = 0, type = 0}}}, {op_type = 274872880, u = {constant = {value = {lval = 833111680, dval = 1.5743930039166724e-312, str = {val = 0x4a31a84680 "\001", len = 173034839}, ht = 0x4a31a84680, obj = {handle = 833111680, handlers = 0x3370a504d57}}, refcount__gc = 850217976, type = 74 'J', is_ref__gc = 0 '\000'}, var = 833111680, opline_num = 833111680, op_array = 0x4a31a84680, jmp_addr = 0x4a31a84680, EA = {var = 833111680, type = 74}}}, {op_type = 850217976, u = {constant = {value = {lval = 837483616, dval = 1.5744146041505065e-312, str = {val = 0x4a31eafc60 "", len = 180232848}, ht = 0x4a31eafc60, obj = {handle = 837483616, handlers = 0x3370abe2290}}, refcount__gc = 4, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 837483616, opline_num = 837483616, op_array = 0x4a31eafc60, jmp_addr = 0x4a31eafc60, EA = {var = 837483616, type = 74}}}, {op_type = -143687632, u = {constant = {value = {lval = 833111680, dval = 1.5743930039166724e-312, str = {val = 0x4a31a84680 "\001", len = 173034839}, ht = 0x4a31a84680, obj = {handle = 833111680, handlers = 0x3370a504d57}}, refcount__gc = 850218032, type = 74 'J', is_ref__gc = 0 '\000'}, var = 833111680, opline_num = 833111680, op_array = 0x4a31a84680, jmp_addr = 0x4a31a84680, EA = {var = 833111680, type = 74}}}, {op_type = 850218032, u = {constant = {value = {lval = 4, dval = 1.9762625833649862e-323, str = {val = 0x4 <Address 0x4 out of bounds>, len = 180234296}, ht = 0x4, obj = {handle = 4, handlers = 0x3370abe2838}}, refcount__gc = 882398224, type = 148 '\224', is_ref__gc = 3 '\003'}, var = 4, opline_num = 4, op_array = 0x4, jmp_addr = 0x4, EA = {var = 4, type = 0}}}, {op_type = 0, u = {constant = {value = {lval = 882398352, dval = 1.9441841072358596e-311, str = {val = 0x39434985490 "\310T\230\064\224\003", len = 173033105}, ht = 0x39434985490, obj = {handle = 882398352, handlers = 0x3370a504691}}, refcount__gc = 0, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 882398352, opline_num = 882398352, op_array = 0x39434985490, jmp_addr = 0x39434985490, EA = {var = 882398352, type = 916}}}, {op_type = 0, u = {constant = {value = {lval = 0, dval = 0, str = {val = 0x0, len = 882398352}, ht = 0x0, obj = {handle = 0, handlers = 0x39434985490}}, refcount__gc = 882398224, type = 148 '\224', is_ref__gc = 3 '\003'}, var = 0, opline_num = 0, op_array = 0x0, jmp_addr = 0x0, EA = {var = 0, type = 0}}}, {op_type = 35055611, u = {constant = {value = {lval = 2, dval = -0.99357557296752952, str = {val = 0xbfefcb5f00000002 <Address 0xbfefcb5f00000002 out of bounds>, len = 8}, ht = 0xbfefcb5f00000002, obj = {handle = 2, handlers = 0x8}}, refcount__gc = 0, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 2, opline_num = 2, op_array = 0xbfefcb5f00000002, jmp_addr = 0xbfefcb5f00000002, EA = {var = 2, type = 3220163423}}}, {op_type = 882398224, u = {constant = {value = {lval = 850203936, dval = 1.5744774508816676e-312, str = {val = 0x4a32ad1520 "\002Bn2J", len = -121733864}, ht = 0x4a32ad1520, obj = {handle = 850203936, handlers = 0x8f8be7d18}}, refcount__gc = 4148977712, type = 54 '6', is_ref__gc = 3 '\003'}, var = 850203936, opline_num = 850203936, op_array = 0x4a32ad1520, jmp_addr = 0x4a32ad1520, EA = {var = 850203936, type = 74}}}, {op_type = -308759992, u = {constant = {value = {lval = 4151279544, dval = 1.7463315447824278e-311, str = {val = 0x336f76f7fb8 "", len = 882404992}, ht = 0x336f76f7fb8, obj = {handle = 4151279544, handlers = 0x39434986e80}}, refcount__gc = 882404992, type = 148 '\224', is_ref__gc = 3 '\003'}, var = 4151279544, opline_num = 4151279544, op_array = 0x336f76f7fb8, jmp_addr = 0x336f76f7fb8, EA = {var = 4151279544, type = 822}}}, {op_type = -309294136, u = {constant = {value = {lval = 3985672160, dval = 1.7462497238632957e-311, str = {val = 0x336ed9087e0 "", len = 882404992}, ht = 0x336ed9087e0, obj = {handle = 3985672160, handlers = 0x39434986e80}}, refcount__gc = 882404992, type = 148 '\224', is_ref__gc = 3 '\003'}, var = 3985672160, opline_num = 3985672160, op_array = 0x336ed9087e0, jmp_addr = 0x336ed9087e0, EA = {var = 3985672160, type = 822}}}, {op_type = 846332480, u = {constant = {value = {lval = 4294967295, dval = 2.1219957904712067e-314, str = {val = 0xffffffff <Address 0xffffffff out of bounds>, len = 180234296}, ht = 0xffffffff, obj = {handle = 4294967295, handlers = 0x3370abe2838}}, refcount__gc = 882398464, type = 148 '\224', is_ref__gc = 3 '\003'}, var = 4294967295, opline_num = 4294967295, op_array = 0xffffffff, jmp_addr = 0xffffffff, EA = {var = 4294967295, type = 0}}}, {op_type = 0, u = {constant = {value = {lval = 0, dval = 0, str = {val = 0x0, len = 173033105}, ht = 0x0, obj = {handle = 0, handlers = 0x3370a504691}}, refcount__gc = 0, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 0, opline_num = 0, op_array = 0x0, jmp_addr = 0x0, EA = {var = 0, type = 0}}}, {op_type = 0, u = {constant = {value = {lval = 0, dval = 0, str = {val = 0x0, len = 0}, ht = 0x0, obj = {handle = 0, handlers = 0x0}}, refcount__gc = 840282320, type = 74 'J', is_ref__gc = 0 '\000'}, var = 0, opline_num = 0, op_array = 0x0, jmp_addr = 0x0, EA = {var = 0, type = 0}}}, {op_type = 35055611, u = {constant = {value = {lval = 2, dval = -1726.3876953125005, str = {val = 0xc09af98d00000002 <Address 0xc09af98d00000002 out of bounds>, len = 6}, ht = 0xc09af98d00000002, obj = {handle = 2, handlers = 0x6}}, refcount__gc = 12, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 2, opline_num = 2, op_array = 0xc09af98d00000002, jmp_addr = 0xc09af98d00000002, EA = {var = 2, type = 3231381901}}}}
        yyvs = 0x337113b8e96
        yyvsp = 0x394349829f0
        yystacksize = 200
        yyval = {op_type = 180234176, u = {constant = {value = {lval = 1, dval = 1.5702768853192422e-312, str = {val = 0x4a00000001 <Address 0x4a00000001 out of bounds>, len = 850497912}, ht = 0x4a00000001, obj = {handle = 1, handlers = 0x4a32b19178}}, refcount__gc = 7, type = 3 '\003', is_ref__gc = 0 '\000'}, var = 1, opline_num = 1, op_array = 0x4a00000001, jmp_addr = 0x4a00000001, EA = {var = 1, type = 74}}}
        yylen = 791555631
#3  0x000003370a4bee22 in compile_file (file_handle=<incomplete type>, type=193) at Zend/zend_language_scanner.l:364
        original_lex_state = {yy_leng = 2, yy_start = <incomplete type>, yy_text = <incomplete type>, yy_cursor = <incomplete type>, yy_marker = <incomplete type>, yy_limit = <incomplete type>, yy_state = 0, state_stack = {top = 0, max = 823, elements = 0x4000000000}, in = <incomplete type>, lineno = 0, filename = 0x0}
        original_active_op_array = 0x0
        retval = 0x0
        compiler_result = 882400016
        compilation_successful = 134 '\206'
        retval_znode = {op_type = 0, u = {constant = {value = {lval = 1, dval = -nan(0xfffff00000001), str = {val = 0xffffffff00000001 <Address 0xffffffff00000001 out of bounds>, len = 1}, ht = 0xffffffff00000001, obj = {handle = 1, handlers = 0x1}}, refcount__gc = 4118606528, type = 54 '6', is_ref__gc = 3 '\003'}, var = 1, opline_num = 1, op_array = 0xffffffff00000001, jmp_addr = 0xffffffff00000001, EA = {var = 1, type = 4294967295}}}
        original_in_compilation = 0 '\000'
#4  0x000003370a373f21 in phar_compile_file (file_handle=<incomplete type>, type=0) at /tmp/buildd/php5-5.3.3/ext/phar/phar.c:3393
        __orig_bailout = <incomplete type>
        __bailout = {{__jmpbuf = {0, 2, 849918968, 74, 157775130, 2634189082, 3986233016, 822}, __mask_was_saved = 1949267226, __saved_mask = {__val = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 274929002, 823, 0, 0, 0, 0}}}}
        res = 0x39434986e80
        name = 0x2 <Address 0x2 out of bounds>
        failed = 0
        phar = 0x4a31d65f90
#5  0x000003370216e2e7 in ?? () from /usr/lib/php5/20090626/xcache.so
No symbol table info available.
#6  0x0000033702174434 in ?? () from /usr/lib/php5/20090626/xcache.so
No symbol table info available.
#7  0x000003370a4be6ae in compile_filename (type=2, filename=0x4a32a8eda8) at Zend/zend_language_scanner.l:407
        file_handle = {type = ZEND_HANDLE_FILENAME, filename = 0x4 <Address 0x4 out of bounds>, opened_path = 0x4a32a8bbf8 "/var/www/dec-project/init/../../dec-project/tmp/bdd/genreAndPluriels.php", handle = {fd = 850242624, fp = 0x4a32adac40, stream = {handle = 0x4a32adac40, isatty = 845063328, mmap = {len = 0, pos = 247324, map = 0x0, buf = 0x0, old_handle = 0x33711398000, old_closer = 0}, reader = 0, fsizer = 0x3370a4a8a90 <_php_stream_read>, closer = 0x3370a490490 <php_zend_stream_fsizer>}}, free_filename = 128 '\200'}
        tmp = {value = {lval = 172135992, dval = 1.7464875824444791e-311, str = {val = 0x3370a429638 "H\203\304\020[\303f\220SH\211\363H\215\065\320m\025", len = 849918968}, ht = 0x3370a429638, obj = {handle = 172135992, handlers = 0x4a32a8bbf8}}, refcount__gc = 172885299, type = 72 'H', is_ref__gc = 0 '\000'}
        retval = 0x2
#8  0x000003370a512d42 in ZEND_INCLUDE_OR_EVAL_SPEC_CV_HANDLER (execute_data=0x4a32160160) at /tmp/buildd/php5-5.3.3/Zend/zend_vm_execute.h:22475
        opline = 0x336ed9916b8
        new_op_array = 0xc1
        return_value_used = 1
        inc_filename = 0x4a32a8eda8
        tmp_inc_filename = {value = {lval = 850203464, dval = 1.5744774485496778e-312, str = {val = 0x4a32ad1348 "\002Ó?2J", len = 0}, ht = 0x4a32ad1348, obj = {handle = 850203464, handlers = 0x0}}, refcount__gc = 173427803, type = 55 '7', is_ref__gc = 3 '\003'}
        failure_retval = 60 '<'
#9  0x000003370a50c430 in execute (op_array=0x4a32ad1348) at /tmp/buildd/php5-5.3.3/Zend/zend_vm_execute.h:107
        ret = 289115782
        execute_data = 0x4a32160160
        nested = 0 '\000'
        original_in_execution = 0 '\000'
#10 0x000003370a4e3c1d in zend_execute_scripts (type=823, retval=0x39434985db0, file_count=3) at /tmp/buildd/php5-5.3.3/Zend/zend.c:1266
        files = {{gp_offset = 0, fp_offset = 0, overflow_arg_area = 0x39400000028, reg_save_area = 0x39434985e40}}
        i = 1
        file_handle = 0x39434988160
        orig_op_array = 0x0
        orig_retval_ptr_ptr = 0x3370abe2490
#11 0x000003370a48f258 in php_execute_script (primary_file=0x4a32a04050) at /tmp/buildd/php5-5.3.3/main/main.c:2289
        __orig_bailout = 0x4a32a12ad8
        __bailout = {{__jmpbuf = {4037, 0, 64775, 2396684, 1329754195, 0, 64775, 2360272}, __mask_was_saved = 0, __saved_mask = {__val = {214929639, 823, 0, 0, 960780800, 1, 882396448, 916, 172864898, 823, 4198401848, 822, 882396448, 916, 849843632, 74}}}}
        prepend_file_p = 0x0
        append_file_p = 0x0
        prepend_file = {type = 849843912, filename = 0x3370a4ceae0 "ATH\211\320I\211\314USH\211\363H\203\354 \213n\030H\213J\020H\213\060\213R\bL\215D$\030\350\350\216\333\377\203\370\377\017\204\377\002", opened_path = 0x39434984e30 "x2(2J", handle = {fd = 172814005, fp = 0x3370a4ceeb5, stream = {handle = 0x3370a4ceeb5, isatty = 840286456, mmap = {len = 833114096, pos = 277917248, map = 0x4a32a7a060, buf = 0x4a32283238 "\270", old_handle = 0x4a32283278, old_closer = 0x4a32a796f8}, reader = 0x3370a4f2661 <zend_hash_merge_ex+113>, fsizer = 0x4a32a0a9c0, closer = 0x4a31a84ff0}}, free_filename = 20 '\024'}
        append_file = {type = ZEND_HANDLE_FILENAME, filename = 0x72704eb0159a647c <Address 0x72704eb0159a647c out of bounds>, opened_path = 0x646c69756270616d <Address 0x646c69756270616d out of bounds>, handle = {fd = 29285, fp = 0x7265, stream = {handle = 0x7265, isatty = 0, mmap = {len = 4, pos = 840286456, map = 0x3370a4f2339, buf = 0x1003e8360 <Address 0x1003e8360 out of bounds>, old_handle = 0x39434984e98, old_closer = 0x336ec998410}, reader = 0xb00000070, fsizer = 0x336f46952d0, closer = 0x4a322832b8}}, free_filename = 2 '\002'}
        retval = 0
#12 0x000003370a57186d in php_handler (r=0x3370a57186d) at /tmp/buildd/php5-5.3.3/sapi/apache2handler/sapi_apache2.c:688
        __bailout = {{__jmpbuf = {830412840, 74, 829898456, 74, 158037274, 2634189082, 836126928, 74}, __mask_was_saved = 711161114, __saved_mask = {__val = {0, 4294967295, 4294967295, 4294967295, 0, 0, 23, 0, 836078256, 74, 836073680, 74, 24, 0, 0, 0}}}}
        ctx = 0x4a31d65f00
        conf = 0x4a31d648d0
        brigade = 0x0
        bucket = 0x337113b8e86
        rv = 289115782
        parent_req = 0x1
#13 0x0000004a314fe668 in ap_run_handler (r=0x4a31d648d0) at config.c:159
        pHook = <optimized out>
        n = <optimized out>
        rv = -1
#14 0x0000004a314feade in ap_invoke_handler (r=0x4a31d648d0) at config.c:377
        handler = <optimized out>
        p = <optimized out>
        result = <optimized out>
        old_handler = 0x0
        ignore = <optimized out>
#15 0x0000004a3150dd2c in ap_internal_redirect (new_uri=<optimized out>, r=<optimized out>) at http_request.c:554
        new = 0x4a31d648d0
        access_status = <optimized out>
#16 0x0000033707dd1a05 in handler_redirect (r=0x4a31d58e10) at mod_rewrite.c:4860
No locals.
#17 0x0000004a314fe668 in ap_run_handler (r=0x4a31d58e10) at config.c:159
        pHook = <optimized out>
        n = <optimized out>
        rv = -1
#18 0x0000004a314feade in ap_invoke_handler (r=0x4a31d58e10) at config.c:377
        handler = <optimized out>
        p = <optimized out>
        result = <optimized out>
        old_handler = 0x33707dd7bdd "redirect-handler"
        ignore = <optimized out>
#19 0x0000004a3150e6b0 in ap_process_request (r=0x4a31d58e10) at http_request.c:282
        access_status = <optimized out>
#20 0x0000004a3150b4f8 in ap_process_http_connection (c=0x4a31d4efb0) at http_core.c:190
        r = 0x4a31d58e10
        csd = 0x0
#21 0x0000004a315050e8 in ap_run_process_connection (c=0x4a31d4efb0) at connection.c:43
        pHook = <optimized out>
        n = <optimized out>
        rv = -1
#22 0x0000004a315132af in child_main (child_num_arg=<optimized out>) at prefork.c:667
        current_conn = 0x4a31d4efb0
        csd = 0x4a31d4edc0
        ptrans = 0x4a31d4ed48
        allocator = 0x4a31d4cc40
        status = <optimized out>
        i = <optimized out>
        lr = <optimized out>
        pollset = 0x4a31d4ce40
        sbh = 0x4a31d4ce38
        bucket_alloc = 0x4a31d52d68
        last_poll_idx = 1
#23 0x0000004a31513a0a in make_child (slot=63, s=0x4a317472e8) at prefork.c:768
        pid = 0
#24 make_child (s=0x4a317472e8, slot=63) at prefork.c:696
No locals.
#25 0x0000004a315145bf in perform_idle_server_maintenance (p=<optimized out>) at prefork.c:903
        i = <optimized out>
        idle_count = <optimized out>
        ws = <optimized out>
        free_length = <optimized out>
        free_slots = {59, 60, 61, 62, 63, 64, 65, 66, 61, 62, 63, 64, 65, 66, 67, 68, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100}
        last_non_dead = <optimized out>
        total_non_dead = <optimized out>
#26 ap_mpm_run (_pconf=<optimized out>, plog=<optimized out>, s=<optimized out>) at prefork.c:1107
        status = 0
        pid = {pid = -1, in = 0x0, out = 0x0, err = 0x4a3173a9c0}
        child_slot = <optimized out>
        exitwhy = APR_PROC_EXIT
        processed_status = <optimized out>
        index = <optimized out>
        remaining_children_to_start = 0
        rv = <optimized out>
#27 0x0000004a314e9698 in main (argc=3, argv=0x394349887d8) at main.c:755
        c = 0 '\000'
        configtestonly = <optimized out>
        confname = 0x4a31515ffa "apache2.conf"
        def_server_root = 0x4a31515fed "/etc/apache2"
        temp_error_log = 0x0
        error = <optimized out>
        process = 0x4a3173ebc8
        server_conf = 0x4a317472e8
        pglobal = <optimized out>
        pconf = 0x4a31740ae8
        plog = 0x4a31774c88
        ptemp = 0x4a31748b28
        pcommands = 0x4a31742af8
        opt = 0x4a31742be8
        rv = 0
        mod = <optimized out>
        optarg = 0x3 <Address 0x3 out of bounds>
        signal_server = <optimized out>



[New LWP 9976]
[Thread debugging using libthread_db enabled]
Core was generated by `/usr/sbin/apache2 -k start'.
Program terminated with signal 7, Bus error.
#0  lex_scan (zendlval=0x3df0c32e0d8) at /tmp/buildd/php5-5.3.3/Zend/zend_language_scanner.c:4995
	in /tmp/buildd/php5-5.3.3/Zend/zend_language_scanner.c

Thread 1 (Thread 0x35f949b5740 (LWP 9976)):
#0  lex_scan (zendlval=0x3df0c32e0d8) at /tmp/buildd/php5-5.3.3/Zend/zend_language_scanner.c:4995
        yybm = "\000\000\000\000\000\000\000\000\000\300@\000\000@", '\000' <repeats 18 times>"\300, ", '\000' <repeats 15 times>, "8888888888\000\000\000\000\000\000\000((((((", '\b' <repeats 20 times>, "\000\000\000\000\b\000((((((", '\b' <repeats 20 times>, "\000\000\000\000", '\b' <repeats 129 times>
        yych = 165 '\245'
        yyaccept = 2491971493
#1  0x0000035f8daa9db0 in zendlex (zendlval=0x3df0c32e0d0) at /tmp/buildd/php5-5.3.3/Zend/zend_compile.c:4947
        retval = -1803010047
#2  0x0000035f8da93fd7 in zendparse () at /tmp/buildd/php5-5.3.3/Zend/zend_language_parser.c:3280
        zendchar = 991
        zendlval = {op_type = 1, u = {constant = {value = {lval = 1, dval = 2.4190752017053511e-312, str = {val = 0x7200000001 <Address 0x7200000001 out of bounds>, len = -1803010055}, ht = 0x7200000001, obj = {handle = 1, handlers = 0x35f94883ff9}}, refcount__gc = 1, type = 3 '\003', is_ref__gc = 0 '\000'}, var = 1, opline_num = 1, op_array = 0x7200000001, jmp_addr = 0x7200000001, EA = {var = 1, type = 114}}}
        yystate = 991
        yyn = -1803010047
        yyresult = 204654048
        yyerrstatus = 991
        yytoken = -1803010047
        yymsgbuf = "\001\000\000\000\001\000\000\000P\341\062\f\337\003\000\000\003\000\000\000\000\000\000\000X\341\062\f\337\003\000\000\370\202\035hr\000\000\000\240&\034\216_\003\000\000\233L\256\215_\003\000\000\240\370\354gr\000\000\000@\242\357gr\000\000\000@K\027gr\000\000\000WM\256\215_\003\000\000P,Ohr\000\000\000P,Ohr", '\000' <repeats 11 times>"\260, \267\357gr\000\000\000\240&\034\216_\003\000"
        yymsg = 0x3df0c32ddc0 ""
        yymsg_alloc = 204660976
        yyssa = {-3632, 3122, 991, 0, 0, 2, 4, 48, 63, 193, 329, 465, 553, 627, 684, 193, 328, 464, 551, 193, 328, 464, 553, 627, 684, 627, 684, 464, 553, 627, 684, 0, 13, 0, 0, 0, 9408, 26641, 114, 0, 0, 0, 0, 0, -1, -1, 248, 359, 5, 0, 647, 712, -6928, 3122, 991, 0, -6944, 3122, 991, 0, 32, 0, 0, 0, -6560, 3122, 991, 0, -29002, -29259, 863, 0, -3400, -27716, 863, 0, -6880, 3122, 991, 0, -6896, 3122, 991, 0, 32, 0, 0, 0, -6512, 3122, 991, 0, -29002, -29259, 863, 0, -3400, -27716, 863, 0, 19264, 26391, 114, 0, 19611, -29266, 863, 0, -20488, 26607, 114, 0, -20488, 26607, 114, 0, -29024, -29259, 863, 0, 9040, -29156, 863, 0, 31, 0, 0, 0, 0, 0, 0, 0, -20448, 26607, 114, 0, 16, 0, 0, 0, 7, 0, 0, 0, 6044, -29267, 863, 0, 16, 0, 991, 0, -8400, 3122, 991, 0, 6144, 0, 3, 0, 31, 0, 0, 0, 8384, -29156, 863, 0, 0, 0, 0, 0, -25111, -29259, 863, 0, 30272, -29158, 863, 0, 168, 26605, 114, 0, 16596, -29267, 863, 0, 15232, 26641, 114, 0, 2, 0, 1, 0, -24000, 26607, 114, 0}
        yyss = 0xe2d
        yyssp = 0x3df0c32ddd2
        yyvsa = {{op_type = 204660656, u = {constant = {value = {lval = 4, dval = 1.9762625833649862e-323, str = {val = 0x4 <Address 0x4 out of bounds>, len = 1840}, ht = 0x4, obj = {handle = 4, handlers = 0x730}}, refcount__gc = 0, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 4, opline_num = 4, op_array = 0x4, jmp_addr = 0x4, EA = {var = 4, type = 0}}}, {op_type = 0, u = {constant = {value = {lval = 16, dval = 2.4190752017794609e-312, str = {val = 0x7200000010 <Address 0x7200000010 out of bounds>, len = 1}, ht = 0x7200000010, obj = {handle = 16, handlers = 0x1}}, refcount__gc = 4, type = 114 'r', is_ref__gc = 0 '\000'}, var = 16, opline_num = 16, op_array = 0x7200000010, jmp_addr = 0x7200000010, EA = {var = 16, type = 114}}}, {op_type = 1, u = {constant = {value = {lval = 1, dval = 2.4190752017053511e-312, str = {val = 0x7200000001 <Address 0x7200000001 out of bounds>, len = 1743368776}, ht = 0x7200000001, obj = {handle = 1, handlers = 0x7267e9b248}}, refcount__gc = 4, type = 114 'r', is_ref__gc = 0 '\000'}, var = 1, opline_num = 1, op_array = 0x7200000001, jmp_addr = 0x7200000001, EA = {var = 1, type = 114}}}, {op_type = 1, u = {constant = {value = {lval = 1, dval = 2.4190752017053511e-312, str = {val = 0x7200000001 <Address 0x7200000001 out of bounds>, len = -1803247616}, ht = 0x7200000001, obj = {handle = 1, handlers = 0x35f9484a000}}, refcount__gc = 6, type = 3 '\003', is_ref__gc = 0 '\000'}, var = 1, opline_num = 1, op_array = 0x7200000001, jmp_addr = 0x7200000001, EA = {var = 1, type = 114}}}, {op_type = 1, u = {constant = {value = {lval = 1, dval = 2.4190752017053511e-312, str = {val = 0x7200000001 <Address 0x7200000001 out of bounds>, len = -1803247604}, ht = 0x7200000001, obj = {handle = 1, handlers = 0x35f9484a00c}}, refcount__gc = 1, type = 3 '\003', is_ref__gc = 0 '\000'}, var = 1, opline_num = 1, op_array = 0x7200000001, jmp_addr = 0x7200000001, EA = {var = 1, type = 114}}}, {op_type = 1, u = {constant = {value = {lval = 1, dval = 2.4190752017053511e-312, str = {val = 0x7200000001 <Address 0x7200000001 out of bounds>, len = -1803247598}, ht = 0x7200000001, obj = {handle = 1, handlers = 0x35f9484a012}}, refcount__gc = 1, type = 3 '\003', is_ref__gc = 0 '\000'}, var = 1, opline_num = 1, op_array = 0x7200000001, jmp_addr = 0x7200000001, EA = {var = 1, type = 114}}}, {op_type = 1, u = {constant = {value = {lval = 2, dval = 9.8813129168249309e-324, str = {val = 0x2 <Address 0x2 out of bounds>, len = 80}, ht = 0x2, obj = {handle = 2, handlers = 0x50}}, refcount__gc = 0, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 2, opline_num = 2, op_array = 0x2, jmp_addr = 0x2, EA = {var = 2, type = 0}}}, {op_type = 0, u = {constant = {value = {lval = 1, dval = 2.4190752017053511e-312, str = {val = 0x7200000001 <Address 0x7200000001 out of bounds>, len = -1803010072}, ht = 0x7200000001, obj = {handle = 1, handlers = 0x35f94883fe8}}, refcount__gc = 3, type = 3 '\003', is_ref__gc = 0 '\000'}, var = 1, opline_num = 1, op_array = 0x7200000001, jmp_addr = 0x7200000001, EA = {var = 1, type = 114}}}, {op_type = 1, u = {constant = {value = {lval = 1, dval = 2.4190752017053511e-312, str = {val = 0x7200000001 <Address 0x7200000001 out of bounds>, len = 1744159904}, ht = 0x7200000001, obj = {handle = 1, handlers = 0x7267f5c4a0}}, refcount__gc = 7, type = 3 '\003', is_ref__gc = 0 '\000'}, var = 1, opline_num = 1, op_array = 0x7200000001, jmp_addr = 0x7200000001, EA = {var = 1, type = 114}}}, {op_type = 1, u = {constant = {value = {lval = 1, dval = 2.4190752017053511e-312, str = {val = 0x7200000001 <Address 0x7200000001 out of bounds>, len = -1803010055}, ht = 0x7200000001, obj = {handle = 1, handlers = 0x35f94883ff9}}, refcount__gc = 1, type = 3 '\003', is_ref__gc = 0 '\000'}, var = 1, opline_num = 1, op_array = 0x7200000001, jmp_addr = 0x7200000001, EA = {var = 1, type = 114}}}, {op_type = 1, u = {constant = {value = {lval = 2, dval = 9.8813129168249309e-324, str = {val = 0x2 <Address 0x2 out of bounds>, len = 127160}, ht = 0x2, obj = {handle = 2, handlers = 0x1f0b8}}, refcount__gc = 0, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 2, opline_num = 2, op_array = 0x2, jmp_addr = 0x2, EA = {var = 2, type = 0}}}, {op_type = 0, u = {constant = {value = {lval = 1, dval = 2.4190752017053511e-312, str = {val = 0x7200000001 <Address 0x7200000001 out of bounds>, len = -1803010170}, ht = 0x7200000001, obj = {handle = 1, handlers = 0x35f94883f86}}, refcount__gc = 1, type = 3 '\003', is_ref__gc = 0 '\000'}, var = 1, opline_num = 1, op_array = 0x7200000001, jmp_addr = 0x7200000001, EA = {var = 1, type = 114}}}, {op_type = 1, u = {constant = {value = {lval = 2, dval = 9.8813129168249309e-324, str = {val = 0x2 <Address 0x2 out of bounds>, len = 127160}, ht = 0x2, obj = {handle = 2, handlers = 0x1f0b8}}, refcount__gc = 0, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 2, opline_num = 2, op_array = 0x2, jmp_addr = 0x2, EA = {var = 2, type = 0}}}, {op_type = 0, u = {constant = {value = {lval = 1, dval = 2.4190752017053511e-312, str = {val = 0x7200000001 <Address 0x7200000001 out of bounds>, len = -1803010072}, ht = 0x7200000001, obj = {handle = 1, handlers = 0x35f94883fe8}}, refcount__gc = 3, type = 3 '\003', is_ref__gc = 0 '\000'}, var = 1, opline_num = 1, op_array = 0x7200000001, jmp_addr = 0x7200000001, EA = {var = 1, type = 114}}}, {op_type = 1, u = {constant = {value = {lval = 2, dval = 9.8813129168249309e-324, str = {val = 0x2 <Address 0x2 out of bounds>, len = 127120}, ht = 0x2, obj = {handle = 2, handlers = 0x1f090}}, refcount__gc = 0, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 2, opline_num = 2, op_array = 0x2, jmp_addr = 0x2, EA = {var = 2, type = 0}}}, {op_type = 0, u = {constant = {value = {lval = 1, dval = 2.4190752017053511e-312, str = {val = 0x7200000001 <Address 0x7200000001 out of bounds>, len = -1803010142}, ht = 0x7200000001, obj = {handle = 1, handlers = 0x35f94883fa2}}, refcount__gc = 1, type = 3 '\003', is_ref__gc = 0 '\000'}, var = 1, opline_num = 1, op_array = 0x7200000001, jmp_addr = 0x7200000001, EA = {var = 1, type = 114}}}, {op_type = 1, u = {constant = {value = {lval = 2, dval = 9.8813129168249309e-324, str = {val = 0x2 <Address 0x2 out of bounds>, len = 127120}, ht = 0x2, obj = {handle = 2, handlers = 0x1f090}}, refcount__gc = 0, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 2, opline_num = 2, op_array = 0x2, jmp_addr = 0x2, EA = {var = 2, type = 0}}}, {op_type = 0, u = {constant = {value = {lval = 1, dval = 2.4190752017053511e-312, str = {val = 0x7200000001 <Address 0x7200000001 out of bounds>, len = -1803010079}, ht = 0x7200000001, obj = {handle = 1, handlers = 0x35f94883fe1}}, refcount__gc = 5, type = 3 '\003', is_ref__gc = 0 '\000'}, var = 1, opline_num = 1, op_array = 0x7200000001, jmp_addr = 0x7200000001, EA = {var = 1, type = 114}}}, {op_type = 1, u = {constant = {value = {lval = 1, dval = 2.4190752017053511e-312, str = {val = 0x7200000001 <Address 0x7200000001 out of bounds>, len = 1750039848}, ht = 0x7200000001, obj = {handle = 1, handlers = 0x72684f7d28}}, refcount__gc = 11, type = 3 '\003', is_ref__gc = 0 '\000'}, var = 1, opline_num = 1, op_array = 0x7200000001, jmp_addr = 0x7200000001, EA = {var = 1, type = 114}}}, {op_type = 1, u = {constant = {value = {lval = 1, dval = 2.4190752017053511e-312, str = {val = 0x7200000001 <Address 0x7200000001 out of bounds>, len = -1803010088}, ht = 0x7200000001, obj = {handle = 1, handlers = 0x35f94883fd8}}, refcount__gc = 1, type = 3 '\003', is_ref__gc = 0 '\000'}, var = 1, opline_num = 1, op_array = 0x7200000001, jmp_addr = 0x7200000001, EA = {var = 1, type = 114}}}, {op_type = 1, u = {constant = {value = {lval = 1, dval = 2.4190752017053511e-312, str = {val = 0x7200000001 <Address 0x7200000001 out of bounds>, len = 1}, ht = 0x7200000001, obj = {handle = 1, handlers = 0x1}}, refcount__gc = 2384209568, type = 95 '_', is_ref__gc = 3 '\003'}, var = 1, opline_num = 1, op_array = 0x7200000001, jmp_addr = 0x7200000001, EA = {var = 1, type = 114}}}, {op_type = 1, u = {constant = {value = {lval = 1, dval = 2.4190752017053511e-312, str = {val = 0x7200000001 <Address 0x7200000001 out of bounds>, len = -1803021831}, ht = 0x7200000001, obj = {handle = 1, handlers = 0x35f948811f9}}, refcount__gc = 1, type = 3 '\003', is_ref__gc = 0 '\000'}, var = 1, opline_num = 1, op_array = 0x7200000001, jmp_addr = 0x7200000001, EA = {var = 1, type = 114}}}, {op_type = 1, u = {constant = {value = {lval = 1, dval = 2.4190752017053511e-312, str = {val = 0x7200000001 <Address 0x7200000001 out of bounds>, len = 1}, ht = 0x7200000001, obj = {handle = 1, handlers = 0x1}}, refcount__gc = 2384209568, type = 95 '_', is_ref__gc = 3 '\003'}, var = 1, opline_num = 1, op_array = 0x7200000001, jmp_addr = 0x7200000001, EA = {var = 1, type = 114}}}, {op_type = 1, u = {constant = {value = {lval = 2320699066, dval = 7.1172438784700454e-313, str = {val = 0x218a530eba <Address 0x218a530eba out of bounds>, len = 0}, ht = 0x218a530eba, obj = {handle = 2320699066, handlers = 0x2000000000}}, refcount__gc = 0, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 2320699066, opline_num = 2320699066, op_array = 0x218a530eba, jmp_addr = 0x218a530eba, EA = {var = 2320699066, type = 33}}}, {op_type = 204655072, u = {constant = {value = {lval = 204655008, dval = 2.102998941855287e-311, str = {val = 0x3df0c32c9a0 "\340\311\062\f\337\003", len = 0}, ht = 0x3df0c32c9a0, obj = {handle = 204655008, handlers = 0x1c00000000}}, refcount__gc = 33, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 204655008, opline_num = 204655008, op_array = 0x3df0c32c9a0, jmp_addr = 0x3df0c32c9a0, EA = {var = 204655008, type = 991}}}, {op_type = -1816118964, u = {constant = {value = {lval = 1745693824, dval = 2.4277000751663668e-312, str = {val = 0x72680d2c80 "[V\223gr", len = -1816200419}, ht = 0x72680d2c80, obj = {handle = 1745693824, handlers = 0x35f93befb1d}}, refcount__gc = 204654672, type = 223 '\337', is_ref__gc = 3 '\003'}, var = 1745693824, opline_num = 1745693824, op_array = 0x72680d2c80, jmp_addr = 0x72680d2c80, EA = {var = 1745693824, type = 114}}}, {op_type = -1974283248, u = {constant = {value = {lval = 204654640, dval = 2.1029989416734709e-311, str = {val = 0x3df0c32c830 "", len = -1974282505}, ht = 0x3df0c32c830, obj = {handle = 204654640, handlers = 0x35f8a52d6f7}}, refcount__gc = 204654640, type = 223 '\337', is_ref__gc = 3 '\003'}, var = 204654640, opline_num = 204654640, op_array = 0x3df0c32c830, jmp_addr = 0x3df0c32c830, EA = {var = 204654640, type = 991}}}, {op_type = -1974280388, u = {constant = {value = {lval = 1769353068, dval = 2.7304959034656102e+257, str = {val = 0x75622f6169762f6c <Address 0x75622f6169762f6c out of bounds>, len = 1}, ht = 0x75622f6169762f6c, obj = {handle = 1769353068, handlers = 0x73616c6300000001}}, refcount__gc = 65536, type = 1 '\001', is_ref__gc = 0 '\000'}, var = 1769353068, opline_num = 1769353068, op_array = 0x75622f6169762f6c, jmp_addr = 0x75622f6169762f6c, EA = {var = 1769353068, type = 1969368929}}}, {op_type = 0, u = {constant = {value = {lval = 1918989871, dval = 3.0265456792300576e+267, str = {val = 0x7777772f7261762f <Address 0x7777772f7261762f out of bounds>, len = 1667589167}, ht = 0x7777772f7261762f, obj = {handle = 1918989871, handlers = 0x6f72702d6365642f}}, refcount__gc = 1952671082, type = 47 '/', is_ref__gc = 109 'm'}, var = 1918989871, opline_num = 1918989871, op_array = 0x7777772f7261762f, jmp_addr = 0x7777772f7261762f, EA = {var = 1918989871, type = 2004317999}}}, {op_type = 1982819429, u = {constant = {value = {lval = 1918989871, dval = 3.0265456792300576e+267, str = {val = 0x7777772f7261762f <Address 0x7777772f7261762f out of bounds>, len = 1667589167}, ht = 0x7777772f7261762f, obj = {handle = 1918989871, handlers = 0x6f72702d6365642f}}, refcount__gc = 1952671082, type = 47 '/', is_ref__gc = 99 'c'}, var = 1918989871, opline_num = 1918989871, op_array = 0x7777772f7261762f, jmp_addr = 0x7777772f7261762f, EA = {var = 1918989871, type = 2004317999}}}, {op_type = 795766637, u = {constant = {value = {lval = 1869361004, dval = 3.680156537877503e+180, str = {val = 0x656c61636f6c2f6c <Address 0x656c61636f6c2f6c out of bounds>, len = 1969368947}, ht = 0x656c61636f6c2f6c, obj = {handle = 1869361004, handlers = 0x2f646c6975622f73}}, refcount__gc = 1935764579, type = 115 's', is_ref__gc = 101 'e'}, var = 1869361004, opline_num = 1869361004, op_array = 0x656c61636f6c2f6c, jmp_addr = 0x656c61636f6c2f6c, EA = {var = 1869361004, type = 1701601635}}}, {op_type = 1633906540, u = {constant = {value = {lval = 1110404463, dval = 1.5743090296977124e+108, str = {val = 0x56657361422f6d6f <Address 0x56657361422f6d6f out of bounds>, len = 1634300513}, ht = 0x56657361422f6d6f, obj = {handle = 1110404463, handlers = 0x73656c6261697261}}, refcount__gc = 1885892654, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 1110404463, opline_num = 1110404463, op_array = 0x56657361422f6d6f, jmp_addr = 0x56657361422f6d6f, EA = {var = 1110404463, type = 1449489249}}}, {op_type = 0, u = {constant = {value = {lval = 0, dval = 0, str = {val = 0x0, len = 0}, ht = 0x0, obj = {handle = 0, handlers = 0x0}}, refcount__gc = 0, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 0, opline_num = 0, op_array = 0x0, jmp_addr = 0x0, EA = {var = 0, type = 0}}}, {op_type = 1, u = {constant = {value = {lval = 1, dval = 2.4190752017053511e-312, str = {val = 0x7200000001 <Address 0x7200000001 out of bounds>, len = 204655064}, ht = 0x7200000001, obj = {handle = 1, handlers = 0x3df0c32c9d8}}, refcount__gc = 1, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 1, opline_num = 1, op_array = 0x7200000001, jmp_addr = 0x7200000001, EA = {var = 1, type = 114}}}, {op_type = 204655008, u = {constant = {value = {lval = 8192, dval = 4.0473857707314917e-320, str = {val = 0x2000 <Address 0x2000 out of bounds>, len = 204655072}, ht = 0x2000, obj = {handle = 8192, handlers = 0x3df0c32c9e0}}, refcount__gc = 33, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 8192, opline_num = 8192, op_array = 0x2000, jmp_addr = 0x2000, EA = {var = 8192, type = 0}}}, {op_type = -1815949888, u = {constant = {value = {lval = 204654912, dval = 2.1029989418078567e-311, str = {val = 0x3df0c32c940 "\220\336R\212_\003", len = 204654920}, ht = 0x3df0c32c940, obj = {handle = 204654912, handlers = 0x3df0c32c948}}, refcount__gc = 4294967208, type = 255 '\377', is_ref__gc = 255 '\377'}, var = 204654912, opline_num = 204654912, op_array = 0x3df0c32c940, jmp_addr = 0x3df0c32c940, EA = {var = 204654912, type = 991}}}, {op_type = 204655064, u = {constant = {value = {lval = 2320686736, dval = 1.8324289391940471e-311, str = {val = 0x35f8a52de90 "H\211\\$\320H\211l$\330\061\300L\211d$\340L\211l$\350H\211\315L\211t$\360L\211|$\370H\201\354", <incomplete sequence \370>, len = 1728032736}, ht = 0x35f8a52de90, obj = {handle = 2320686736, handlers = 0x7266ffafe0}}, refcount__gc = 4, type = 114 'r', is_ref__gc = 0 '\000'}, var = 2320686736, opline_num = 2320686736, op_array = 0x35f8a52de90, jmp_addr = 0x35f8a52de90, EA = {var = 2320686736, type = 863}}}, {op_type = 204655064, u = {constant = {value = {lval = 1024, dval = 5.0592322134143646e-321, str = {val = 0x400 <Address 0x400 out of bounds>, len = 1735701416}, ht = 0x400, obj = {handle = 1024, handlers = 0x726774b3a8}}, refcount__gc = 1735701792, type = 114 'r', is_ref__gc = 0 '\000'}, var = 1024, opline_num = 1024, op_array = 0x400, jmp_addr = 0x400, EA = {var = 1024, type = 0}}}, {op_type = 204665636, u = {constant = {value = {lval = 2259125328, dval = 1.8323985238172446e-311, str = {val = 0x35f86a78450 "B\315\376\377B\315\376\377\300\320\376\377X\321\376\377\260\316\376\377@\320\376\377", len = -2035846503}, ht = 0x35f86a78450, obj = {handle = 2259125328, handlers = 0x35f86a77299}}, refcount__gc = 204664496, type = 223 '\337', is_ref__gc = 3 '\003'}, var = 2259125328, opline_num = 2259125328, op_array = 0x35f86a78450, jmp_addr = 0x35f86a78450, EA = {var = 2259125328, type = 863}}}, {op_type = -2035929676, u = {constant = {value = {lval = 204655072, dval = 2.1029989418869072e-311, str = {val = 0x3df0c32c9e0 "`\334\062\f\337\003", len = 204655081}, ht = 0x3df0c32c9e0, obj = {handle = 204655072, handlers = 0x3df0c32c9e9}}, refcount__gc = 33, type = 33 '!', is_ref__gc = 0 '\000'}, var = 204655072, opline_num = 204655072, op_array = 0x3df0c32c9e0, jmp_addr = 0x3df0c32c9e0, EA = {var = 204655072, type = 991}}}, {op_type = -1979307776, u = {constant = {value = {lval = 204655098, dval = 2.1029989418997529e-311, str = {val = 0x3df0c32c9fa "2\f\337\003", len = 204655164}, ht = 0x3df0c32c9fa, obj = {handle = 204655098, handlers = 0x3df0c32ca3c}}, refcount__gc = 204659872, type = 223 '\337', is_ref__gc = 3 '\003'}, var = 204655098, opline_num = 204655098, op_array = 0x3df0c32c9fa, jmp_addr = 0x3df0c32c9fa, EA = {var = 204655098, type = 991}}}, {op_type = 204659800, u = {constant = {value = {lval = 204659808, dval = 2.1029989442268021e-311, str = {val = 0x3df0c32dc60 "@K\027gr", len = -1979307776}, ht = 0x3df0c32dc60, obj = {handle = 204659808, handlers = 0x8bc10e9a8a062900}}, refcount__gc = 204664496, type = 223 '\337', is_ref__gc = 3 '\003'}, var = 204659808, opline_num = 204659808, op_array = 0x3df0c32dc60, jmp_addr = 0x3df0c32dc60, EA = {var = 204659808, type = 991}}}, {op_type = 204655212, u = {constant = {value = {lval = 204659920, dval = 2.1029989442821375e-311, str = {val = 0x3df0c32dcd0 "", len = 204659848}, ht = 0x3df0c32dcd0, obj = {handle = 204659920, handlers = 0x3df0c32dc88}}, refcount__gc = 204659856, type = 223 '\337', is_ref__gc = 3 '\003'}, var = 204659920, opline_num = 204659920, op_array = 0x3df0c32dcd0, jmp_addr = 0x3df0c32dcd0, EA = {var = 204659920, type = 991}}}, {op_type = 1895003256, u = {constant = {value = {lval = 204664544, dval = 2.102998946566697e-311, str = {val = 0x3df0c32eee0  <incomplete sequence \375>, len = -1918418996}, ht = 0x3df0c32eee0, obj = {handle = 204664544, handlers = 0x35f8da73fcc}}, refcount__gc = 204659839, type = 223 '\337', is_ref__gc = 3 '\003'}, var = 204664544, opline_num = 204664544, op_array = 0x3df0c32eee0, jmp_addr = 0x3df0c32eee0, EA = {var = 204664544, type = 991}}}, {op_type = 204655836, u = {constant = {value = {lval = 204655744, dval = 2.1029989422189193e-311, str = {val = 0x3df0c32cc80 "/var/www/dec-project/init/../common/model/locales/build/classes/locales/om/BaseVariables.php", len = -1918418572}, ht = 0x3df0c32cc80, obj = {handle = 204655744, handlers = 0x35f8da74174}}, refcount__gc = 40, type = 48 '0', is_ref__gc = 0 '\000'}, var = 204655744, opline_num = 204655744, op_array = 0x3df0c32cc80, jmp_addr = 0x3df0c32cc80, EA = {var = 204655744, type = 991}}}, {op_type = 204655408, u = {constant = {value = {lval = 204655216, dval = 2.1029989419580527e-311, str = {val = 0x3df0c32ca70 "", len = 0}, ht = 0x3df0c32ca70, obj = {handle = 204655216, handlers = 0x5c00000000}}, refcount__gc = 0, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 204655216, opline_num = 204655216, op_array = 0x3df0c32ca70, jmp_addr = 0x3df0c32ca70, EA = {var = 204655216, type = 991}}}, {op_type = 0, u = {constant = {value = {lval = 0, dval = 0, str = {val = 0x0, len = 204655476}, ht = 0x0, obj = {handle = 0, handlers = 0x3df0c32cb74}}, refcount__gc = 1895003256, type = 95 '_', is_ref__gc = 3 '\003'}, var = 0, opline_num = 0, op_array = 0x0, jmp_addr = 0x0, EA = {var = 0, type = 0}}}, {op_type = 204659848, u = {constant = {value = {lval = 0, dval = 0, str = {val = 0x0, len = 0}, ht = 0x0, obj = {handle = 0, handlers = 0x0}}, refcount__gc = 0, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 0, opline_num = 0, op_array = 0x0, jmp_addr = 0x0, EA = {var = 0, type = 0}}}, {op_type = 0, u = {constant = {value = {lval = 0, dval = 0, str = {val = 0x0, len = 0}, ht = 0x0, obj = {handle = 0, handlers = 0x0}}, refcount__gc = 0, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 0, opline_num = 0, op_array = 0x0, jmp_addr = 0x0, EA = {var = 0, type = 0}}}, {op_type = 0, u = {constant = {value = {lval = 0, dval = 0, str = {val = 0x0, len = 0}, ht = 0x0, obj = {handle = 0, handlers = 0x0}}, refcount__gc = 0, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 0, opline_num = 0, op_array = 0x0, jmp_addr = 0x0, EA = {var = 0, type = 0}}}, {op_type = 0, u = {constant = {value = {lval = 0, dval = 0, str = {val = 0x0, len = 0}, ht = 0x0, obj = {handle = 0, handlers = 0x0}}, refcount__gc = 0, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 0, opline_num = 0, op_array = 0x0, jmp_addr = 0x0, EA = {var = 0, type = 0}}}, {op_type = 0, u = {constant = {value = {lval = 0, dval = 0, str = {val = 0x0, len = -2055938091}, ht = 0x0, obj = {handle = 0, handlers = 0x35f8574dfd5}}, refcount__gc = 1918989871, type = 47 '/', is_ref__gc = 119 'w'}, var = 0, opline_num = 0, op_array = 0x0, jmp_addr = 0x0, EA = {var = 0, type = 0}}}, {op_type = 1667589167, u = {constant = {value = {lval = 1952671082, dval = 7.2743825298247653e+199, str = {val = 0x696e692f7463656a <Address 0x696e692f7463656a out of bounds>, len = 774778740}, ht = 0x696e692f7463656a, obj = {handle = 1952671082, handlers = 0x2f2e2e2f2e2e2f74}}, refcount__gc = 761488740, type = 112 'p', is_ref__gc = 114 'r'}, var = 1952671082, opline_num = 1952671082, op_array = 0x696e692f7463656a, jmp_addr = 0x696e692f7463656a, EA = {var = 1952671082, type = 1768843567}}}, {op_type = 796156773, u = {constant = {value = {lval = 1769353068, dval = 2.7304959034656102e+257, str = {val = 0x75622f6169762f6c <Address 0x75622f6169762f6c out of bounds>, len = 795110505}, ht = 0x75622f6169762f6c, obj = {handle = 1769353068, handlers = 0x73616c632f646c69}}, refcount__gc = 7562611, type = 47 '/', is_ref__gc = 118 'v'}, var = 1769353068, opline_num = 1769353068, op_array = 0x75622f6169762f6c, jmp_addr = 0x75622f6169762f6c, EA = {var = 1769353068, type = 1969368929}}}, {op_type = 2004317999, u = {constant = {value = {lval = 1869770797, dval = 4.443877029786674e+252, str = {val = 0x7463656a6f72702d <Address 0x7463656a6f72702d out of bounds>, len = 1768843567}, ht = 0x7463656a6f72702d, obj = {handle = 1869770797, handlers = 0x2e2e2f74696e692f}}, refcount__gc = 1836016431, type = 109 'm', is_ref__gc = 111 'o'}, var = 1869770797, opline_num = 1869770797, op_array = 0x7463656a6f72702d, jmp_addr = 0x7463656a6f72702d, EA = {var = 1869770797, type = 1952671082}}}, {op_type = 1701080941, u = {constant = {value = {lval = 1701601635, dval = 2.7305371073458502e+257, str = {val = 0x75622f73656c6163 <Address 0x75622f73656c6163 out of bounds>, len = 795110505}, ht = 0x75622f73656c6163, obj = {handle = 1701601635, handlers = 0x73616c632f646c69}}, refcount__gc = 7562611, type = 47 '/', is_ref__gc = 118 'v'}, var = 1701601635, opline_num = 1701601635, op_array = 0x75622f73656c6163, jmp_addr = 0x75622f73656c6163, EA = {var = 1701601635, type = 1969368947}}}, {op_type = 2004317999, u = {constant = {value = {lval = 1869770797, dval = 4.443877029786674e+252, str = {val = 0x7463656a6f72702d <Address 0x7463656a6f72702d out of bounds>, len = 1768843567}, ht = 0x7463656a6f72702d, obj = {handle = 1869770797, handlers = 0x2e2e2f74696e692f}}, refcount__gc = 791555631, type = 100 'd', is_ref__gc = 101 'e'}, var = 1869770797, opline_num = 1869770797, op_array = 0x7463656a6f72702d, jmp_addr = 0x7463656a6f72702d, EA = {var = 1869770797, type = 1952671082}}}, {op_type = 1785688688, u = {constant = {value = {lval = 1701080941, dval = 1.0613568350524971e+200, str = {val = 0x69762f6c65646f6d <Address 0x69762f6c65646f6d out of bounds>, len = 1969368929}, ht = 0x69762f6c65646f6d, obj = {handle = 1701080941, handlers = 0x2f646c6975622f61}}, refcount__gc = 1935764579, type = 115 's', is_ref__gc = 101 'e'}, var = 1701080941, opline_num = 1701080941, op_array = 0x69762f6c65646f6d, jmp_addr = 0x69762f6c65646f6d, EA = {var = 1701080941, type = 1769353068}}}, {op_type = 1918989871, u = {constant = {value = {lval = 1667589167, dval = 6.9886786021020898e+228, str = {val = 0x6f72702d6365642f <Address 0x6f72702d6365642f out of bounds>, len = 1952671082}, ht = 0x6f72702d6365642f, obj = {handle = 1667589167, handlers = 0x696e692f7463656a}}, refcount__gc = 774778740, type = 47 '/', is_ref__gc = 58 ':'}, var = 1667589167, opline_num = 1667589167, op_array = 0x6f72702d6365642f, jmp_addr = 0x6f72702d6365642f, EA = {var = 1667589167, type = 1869770797}}}, {op_type = 1999598177, u = {constant = {value = {lval = 1882022757, dval = 3.427932957574782e+180, str = {val = 0x656a6f72702d6365 <Address 0x656a6f72702d6365 out of bounds>, len = 1764717667}, ht = 0x656a6f72702d6365, obj = {handle = 1882022757, handlers = 0x2f74696e692f7463}}, refcount__gc = 1815031342, type = 105 'i', is_ref__gc = 98 'b'}, var = 1882022757, opline_num = 1882022757, op_array = 0x656a6f72702d6365, jmp_addr = 0x656a6f72702d6365, EA = {var = 1882022757, type = 1701474162}}}, {op_type = 1966029358, u = {constant = {value = {lval = 1701994856, dval = 3.0352626941501122e+233, str = {val = 0x7068702f65726168 <Address 0x7068702f65726168 out of bounds>, len = 204655360}, ht = 0x7068702f65726168, obj = {handle = 1701994856, handlers = 0x3df0c32cb00}}, refcount__gc = 1920169263, type = 47 '/', is_ref__gc = 115 's'}, var = 1701994856, opline_num = 1701994856, op_array = 0x7068702f65726168, jmp_addr = 0x7068702f65726168, EA = {var = 1701994856, type = 1885892655}}}, {op_type = -2055938283, u = {constant = {value = {lval = 1701867378, dval = 9.7075563947439457e+252, str = {val = 0x74752f6c65706f72 <Address 0x74752f6c65706f72 out of bounds>, len = 1345285225}, ht = 0x74752f6c65706f72, obj = {handle = 1701867378, handlers = 0x65706f72502f6c69}}, refcount__gc = 1819231084, type = 117 'u', is_ref__gc = 109 'm'}, var = 1701867378, opline_num = 1701867378, op_array = 0x74752f6c65706f72, jmp_addr = 0x74752f6c65706f72, EA = {var = 1701867378, type = 1953836908}}}, {op_type = 204655408, u = {constant = {value = {lval = 1918989871, dval = 3.0265456792300576e+267, str = {val = 0x7777772f7261762f <Address 0x7777772f7261762f out of bounds>, len = 1667589167}, ht = 0x7777772f7261762f, obj = {handle = 1918989871, handlers = 0x6f72702d6365642f}}, refcount__gc = 1952671082, type = 47 '/', is_ref__gc = 105 'i'}, var = 1918989871, opline_num = 1918989871, op_array = 0x7777772f7261762f, jmp_addr = 0x7777772f7261762f, EA = {var = 1918989871, type = 2004317999}}}, {op_type = 774778740, u = {constant = {value = {lval = 795766637, dval = 2.6498883947675383e+180, str = {val = 0x65646f6d2f6e6f6d <Address 0x65646f6d2f6e6f6d out of bounds>, len = 1869361004}, ht = 0x65646f6d2f6e6f6d, obj = {handle = 795766637, handlers = 0x656c61636f6c2f6c}}, refcount__gc = 1969368947, type = 105 'i', is_ref__gc = 108 'l'}, var = 795766637, opline_num = 795766637, op_array = 0x65646f6d2f6e6f6d, jmp_addr = 0x65646f6d2f6e6f6d, EA = {var = 795766637, type = 1701080941}}}, {op_type = 1935764579, u = {constant = {value = {lval = 1633906540, dval = 4.0895684331181495e-80, str = {val = 0x2f73656c61636f6c <Address 0x2f73656c61636f6c out of bounds>, len = 1110404463}, ht = 0x2f73656c61636f6c, obj = {handle = 1633906540, handlers = 0x56657361422f6d6f}}, refcount__gc = 1634300513, type = 98 'b', is_ref__gc = 108 'l'}, var = 1633906540, opline_num = 1633906540, op_array = 0x2f73656c61636f6c, jmp_addr = 0x2f73656c61636f6c, EA = {var = 1633906540, type = 796091756}}}, {op_type = 1885892654, u = {constant = {value = {lval = 1738735616, dval = 2.4276656970510726e-312, str = {val = 0x7267a30000 "\344\021", len = -2055949319}, ht = 0x7267a30000, obj = {handle = 1738735616, handlers = 0x35f8574b3f9}}, refcount__gc = 1733670624, type = 114 'r', is_ref__gc = 0 '\000'}, var = 1738735616, opline_num = 1738735616, op_array = 0x7267a30000, jmp_addr = 0x7267a30000, EA = {var = 1738735616, type = 114}}}, {op_type = 0, u = {constant = {value = {lval = 1738770720, dval = 2.4276658704878769e-312, str = {val = 0x7267a38920 "", len = 2091060600}, ht = 0x7267a38920, obj = {handle = 1738770720, handlers = 0x35f7ca30d78}}, refcount__gc = 2091060256, type = 95 '_', is_ref__gc = 3 '\003'}, var = 1738770720, opline_num = 1738770720, op_array = 0x7267a38920, jmp_addr = 0x7267a38920, EA = {var = 1738770720, type = 114}}}, {op_type = 0, u = {constant = {value = {lval = 1739368224, dval = 2.4276688225498735e-312, str = {val = 0x7267aca720 "\b", len = 1739367920}, ht = 0x7267aca720, obj = {handle = 1739368224, handlers = 0x7267aca5f0}}, refcount__gc = 1729579840, type = 114 'r', is_ref__gc = 0 '\000'}, var = 1739368224, opline_num = 1739368224, op_array = 0x7267aca720, jmp_addr = 0x7267aca720, EA = {var = 1739368224, type = 114}}}, {op_type = 204656096, u = {constant = {value = {lval = 1739367480, dval = 2.4276688188740251e-312, str = {val = 0x7267aca438 "(<\305gr", len = 2091060208}, ht = 0x7267aca438, obj = {handle = 1739367480, handlers = 0x35f7ca30bf0}}, refcount__gc = 1, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 1739367480, opline_num = 1739367480, op_array = 0x7267aca438, jmp_addr = 0x7267aca438, EA = {var = 1739367480, type = 114}}}, {op_type = 204656096, u = {constant = {value = {lval = 2091059648, dval = 1.8323154883385117e-311, str = {val = 0x35f7ca309c0 "\361\v", len = 1738978728}, ht = 0x35f7ca309c0, obj = {handle = 2091059648, handlers = 0x7267a6b5a8}}, refcount__gc = 1, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 2091059648, opline_num = 2091059648, op_array = 0x35f7ca309c0, jmp_addr = 0x35f7ca309c0, EA = {var = 2091059648, type = 863}}}, {op_type = 204661520, u = {constant = {value = {lval = 8, dval = 3.9525251667299724e-323, str = {val = 0x8 <Address 0x8 out of bounds>, len = -2055945344}, ht = 0x8, obj = {handle = 8, handlers = 0x35f8574c380}}, refcount__gc = 1729579840, type = 114 'r', is_ref__gc = 0 '\000'}, var = 8, opline_num = 8, op_array = 0x8, jmp_addr = 0x8, EA = {var = 8, type = 0}}}, {op_type = -1917956777, u = {constant = {value = {lval = 1738777624, dval = 2.4276659045981691e-312, str = {val = 0x7267a3a418 "\226+@\201f\223\315\033A", len = 96}, ht = 0x7267a3a418, obj = {handle = 1738777624, handlers = 0x60}}, refcount__gc = 2481893016, type = 95 '_', is_ref__gc = 3 '\003'}, var = 1738777624, opline_num = 1738777624, op_array = 0x7267a3a418, jmp_addr = 0x7267a3a418, EA = {var = 1738777624, type = 114}}}, {op_type = -1813074264, u = {constant = {value = {lval = 204661184, dval = 2.1029989449066365e-311, str = {val = 0x3df0c32e1c0 "", len = -1918422170}, ht = 0x3df0c32e1c0, obj = {handle = 204661184, handlers = 0x35f8da73366}}, refcount__gc = 204661648, type = 6 '\006', is_ref__gc = 0 '\000'}, var = 204661184, opline_num = 204661184, op_array = 0x3df0c32e1c0, jmp_addr = 0x3df0c32e1c0, EA = {var = 204661184, type = 991}}}, {op_type = -1813074328, u = {constant = {value = {lval = 1927489768, dval = 1.8322346740801093e-311, str = {val = 0x35f72e328e8 "searchParams.inc.php", len = 0}, ht = 0x35f72e328e8, obj = {handle = 1927489768, handlers = 0x600000000}}, refcount__gc = 0, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 1927489768, opline_num = 1927489768, op_array = 0x35f72e328e8, jmp_addr = 0x35f72e328e8, EA = {var = 1927489768, type = 863}}}, {op_type = -827377782, u = {constant = {value = {lval = 204656944, dval = 2.1029989428117981e-311, str = {val = 0x3df0c32d130 "", len = 82}, ht = 0x3df0c32d130, obj = {handle = 204656944, handlers = 0x52}}, refcount__gc = 0, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 204656944, opline_num = 204656944, op_array = 0x3df0c32d130, jmp_addr = 0x3df0c32d130, EA = {var = 204656944, type = 991}}}, {op_type = 204656912, u = {constant = {value = {lval = 0, dval = 0, str = {val = 0x0, len = 204656832}, ht = 0x0, obj = {handle = 0, handlers = 0x3df0c32d0c0}}, refcount__gc = 0, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 0, opline_num = 0, op_array = 0x0, jmp_addr = 0x0, EA = {var = 0, type = 0}}}, {op_type = 204656304, u = {constant = {value = {lval = 204656256, dval = 2.102998942471881e-311, str = {val = 0x3df0c32ce80 "\360\266\254gr", len = 204656292}, ht = 0x3df0c32ce80, obj = {handle = 204656256, handlers = 0x3df0c32cea4}}, refcount__gc = 204656300, type = 223 '\337', is_ref__gc = 3 '\003'}, var = 204656256, opline_num = 204656256, op_array = 0x3df0c32ce80, jmp_addr = 0x3df0c32ce80, EA = {var = 204656256, type = 991}}}, {op_type = 0, u = {constant = {value = {lval = 204656296, dval = 2.1029989424916436e-311, str = {val = 0x3df0c32cea8 "", len = 204656321}, ht = 0x3df0c32cea8, obj = {handle = 204656296, handlers = 0x3df0c32cec1}}, refcount__gc = 1729579840, type = 114 'r', is_ref__gc = 0 '\000'}, var = 204656296, opline_num = 204656296, op_array = 0x3df0c32cea8, jmp_addr = 0x3df0c32cea8, EA = {var = 204656296, type = 991}}}, {op_type = -1917956777, u = {constant = {value = {lval = 1739372272, dval = 2.4276688425496508e-312, str = {val = 0x7267acb6f0 "\226+@\201f\223\315\033\301", len = 1739372272}, ht = 0x7267acb6f0, obj = {handle = 1739372272, handlers = 0x7267acb6f0}}, refcount__gc = 4, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 1739372272, opline_num = 1739372272, op_array = 0x7267acb6f0, jmp_addr = 0x7267acb6f0, EA = {var = 1739372272, type = 114}}}, {op_type = -1910757320, u = {constant = {value = {lval = 204661520, dval = 2.1029989450726425e-311, str = {val = 0x3df0c32e310 "", len = 0}, ht = 0x3df0c32e310, obj = {handle = 204661520, handlers = 0x1400000000}}, refcount__gc = 204661648, type = 223 '\337', is_ref__gc = 3 '\003'}, var = 204661520, opline_num = 204661520, op_array = 0x3df0c32e310, jmp_addr = 0x3df0c32e310, EA = {var = 204661520, type = 991}}}, {op_type = -1917958511, u = {constant = {value = {lval = 0, dval = 0, str = {val = 0x0, len = 0}, ht = 0x0, obj = {handle = 0, handlers = 0x0}}, refcount__gc = 0, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 0, opline_num = 0, op_array = 0x0, jmp_addr = 0x0, EA = {var = 0, type = 0}}}, {op_type = 204661648, u = {constant = {value = {lval = 204661520, dval = 2.1029989450726425e-311, str = {val = 0x3df0c32e310 "", len = -2055936005}, ht = 0x3df0c32e310, obj = {handle = 204661520, handlers = 0x35f8574e7fb}}, refcount__gc = 2, type = 137 '\211', is_ref__gc = 208 '\320'}, var = 204661520, opline_num = 204661520, op_array = 0x3df0c32e310, jmp_addr = 0x3df0c32e310, EA = {var = 204661520, type = 991}}}, {op_type = -2055948929, u = {constant = {value = {lval = 16, dval = 2.1028978288544899e-311, str = {val = 0x3df00000010 <Address 0x3df00000010 out of bounds>, len = 204661520}, ht = 0x3df00000010, obj = {handle = 16, handlers = 0x3df0c32e310}}, refcount__gc = 1739367560, type = 114 'r', is_ref__gc = 0 '\000'}, var = 16, opline_num = 16, op_array = 0x3df00000010, jmp_addr = 0x3df00000010, EA = {var = 16, type = 991}}}, {op_type = -1917956777, u = {constant = {value = {lval = 2090754096, dval = 1.8323153373757655e-311, str = {val = 0x35f7c9e6030 "\016", len = 1733523472}, ht = 0x35f7c9e6030, obj = {handle = 2090754096, handlers = 0x7267537810}}, refcount__gc = 2091059480, type = 95 '_', is_ref__gc = 3 '\003'}, var = 2090754096, opline_num = 2090754096, op_array = 0x35f7c9e6030, jmp_addr = 0x35f7c9e6030, EA = {var = 2090754096, type = 863}}}, {op_type = 204671824, u = {constant = {value = {lval = 1918989871, dval = 3.0265456792300576e+267, str = {val = 0x7777772f7261762f <Address 0x7777772f7261762f out of bounds>, len = 1667589167}, ht = 0x7777772f7261762f, obj = {handle = 1918989871, handlers = 0x6f72702d6365642f}}, refcount__gc = 1952671082, type = 47 '/', is_ref__gc = 116 't'}, var = 1918989871, opline_num = 1918989871, op_array = 0x7777772f7261762f, jmp_addr = 0x7777772f7261762f, EA = {var = 1918989871, type = 2004317999}}}, {op_type = 1684300335, u = {constant = {value = {lval = 1849779570, dval = 4.2513615022905589e+257, str = {val = 0x756c50646e416572 <Address 0x756c50646e416572 out of bounds>, len = 1818585458}, ht = 0x756c50646e416572, obj = {handle = 1849779570, handlers = 0x68702e736c656972}}, refcount__gc = 1936523376, type = 46 '.', is_ref__gc = 112 'p'}, var = 1849779570, opline_num = 1849779570, op_array = 0x756c50646e416572, jmp_addr = 0x756c50646e416572, EA = {var = 1849779570, type = 1970032740}}}, {op_type = 204603392, u = {constant = {value = {lval = 1729579840, dval = 2.4276204615072464e-312, str = {val = 0x7267174b40 "\001", len = 1878443800}, ht = 0x7267174b40, obj = {handle = 1729579840, handlers = 0x35f6ff6c718}}, refcount__gc = 1878443568, type = 95 '_', is_ref__gc = 3 '\003'}, var = 1729579840, opline_num = 1729579840, op_array = 0x7267174b40, jmp_addr = 0x7267174b40, EA = {var = 1729579840, type = 114}}}, {op_type = 1739098040, u = {constant = {value = {lval = 1739361592, dval = 2.4276687897834398e-312, str = {val = 0x7267ac8d38 "\002", len = 204657120}, ht = 0x7267ac8d38, obj = {handle = 1739361592, handlers = 0x3df0c32d1e0}}, refcount__gc = 1, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 1739361592, opline_num = 1739361592, op_array = 0x7267ac8d38, jmp_addr = 0x7267ac8d38, EA = {var = 1739361592, type = 114}}}, {op_type = -2055927290, u = {constant = {value = {lval = 1878443800, dval = 1.8322104421522535e-311, str = {val = 0x35f6ff6c718 "88\363o_\003", len = 1878443568}, ht = 0x35f6ff6c718, obj = {handle = 1878443800, handlers = 0x35f6ff6c630}}, refcount__gc = 1739098040, type = 114 'r', is_ref__gc = 0 '\000'}, var = 1878443800, opline_num = 1878443800, op_array = 0x35f6ff6c718, jmp_addr = 0x35f6ff6c718, EA = {var = 1878443800, type = 863}}}, {op_type = -2055950310, u = {constant = {value = {lval = 1739348224, dval = 2.4276687237367443e-312, str = {val = 0x7267ac5900 "\226+@\201f\223\315\033\071", len = 1739348224}, ht = 0x7267ac5900, obj = {handle = 1739348224, handlers = 0x7267ac5900}}, refcount__gc = 1729579840, type = 114 'r', is_ref__gc = 0 '\000'}, var = 1739348224, opline_num = 1739348224, op_array = 0x7267ac5900, jmp_addr = 0x7267ac5900, EA = {var = 1739348224, type = 114}}}, {op_type = 1739348184, u = {constant = {value = {lval = 3, dval = 1.4821969375237396e-323, str = {val = 0x3 <Address 0x3 out of bounds>, len = 1878209184}, ht = 0x3, obj = {handle = 3, handlers = 0x35f6ff332a0}}, refcount__gc = 204657120, type = 223 '\337', is_ref__gc = 3 '\003'}, var = 3, opline_num = 3, op_array = 0x3, jmp_addr = 0x3, EA = {var = 3, type = 0}}}, {op_type = 1739347784, u = {constant = {value = {lval = 1729579840, dval = 2.4276204615072464e-312, str = {val = 0x7267174b40 "\001", len = -1917956777}, ht = 0x7267174b40, obj = {handle = 1729579840, handlers = 0x35f8dae4d57}}, refcount__gc = 1739361552, type = 114 'r', is_ref__gc = 0 '\000'}, var = 1729579840, opline_num = 1729579840, op_array = 0x7267174b40, jmp_addr = 0x7267174b40, EA = {var = 1729579840, type = 114}}}, {op_type = 1739361552, u = {constant = {value = {lval = 1739344928, dval = 2.4276687074523406e-312, str = {val = 0x7267ac4c20 "\020", len = 1739361464}, ht = 0x7267ac4c20, obj = {handle = 1739344928, handlers = 0x7267ac8cb8}}, refcount__gc = 1878443488, type = 95 '_', is_ref__gc = 3 '\003'}, var = 1739344928, opline_num = 1739344928, op_array = 0x7267ac4c20, jmp_addr = 0x7267ac4c20, EA = {var = 1739344928, type = 114}}}, {op_type = 1739360568, u = {constant = {value = {lval = 1739344928, dval = 2.4276687074523406e-312, str = {val = 0x7267ac4c20 "\020", len = 1878206768}, ht = 0x7267ac4c20, obj = {handle = 1739344928, handlers = 0x35f6ff32930}}, refcount__gc = 0, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 1739344928, opline_num = 1739344928, op_array = 0x7267ac4c20, jmp_addr = 0x7267ac4c20, EA = {var = 1739344928, type = 114}}}, {op_type = -2055948929, u = {constant = {value = {lval = 1729579840, dval = 2.4276204615072464e-312, str = {val = 0x7267174b40 "\001", len = 77}, ht = 0x7267174b40, obj = {handle = 1729579840, handlers = 0x4d}}, refcount__gc = 1739361464, type = 114 'r', is_ref__gc = 0 '\000'}, var = 1729579840, opline_num = 1729579840, op_array = 0x7267174b40, jmp_addr = 0x7267174b40, EA = {var = 1729579840, type = 114}}}, {op_type = 204657120, u = {constant = {value = {lval = 204657120, dval = 2.1029989428987537e-311, str = {val = 0x3df0c32d1e0 "", len = 1878206720}, ht = 0x3df0c32d1e0, obj = {handle = 204657120, handlers = 0x35f6ff32900}}, refcount__gc = 0, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 204657120, opline_num = 204657120, op_array = 0x3df0c32d1e0, jmp_addr = 0x3df0c32d1e0, EA = {var = 204657120, type = 991}}}, {op_type = 204657120, u = {constant = {value = {lval = 204657120, dval = 2.1029989428987537e-311, str = {val = 0x3df0c32d1e0 "", len = -1979307776}, ht = 0x3df0c32d1e0, obj = {handle = 204657120, handlers = 0x8bc10e9a8a062900}}, refcount__gc = 1739344880, type = 114 'r', is_ref__gc = 0 '\000'}, var = 204657120, opline_num = 204657120, op_array = 0x3df0c32d1e0, jmp_addr = 0x3df0c32d1e0, EA = {var = 204657120, type = 991}}}, {op_type = 204656972, u = {constant = {value = {lval = 204661680, dval = 2.102998945151693e-311, str = {val = 0x3df0c32e3b0 "H\362\363p_\003", len = 204661608}, ht = 0x3df0c32e3b0, obj = {handle = 204661680, handlers = 0x3df0c32e368}}, refcount__gc = 204661616, type = 223 '\337', is_ref__gc = 3 '\003'}, var = 204661680, opline_num = 204661680, op_array = 0x3df0c32e3b0, jmp_addr = 0x3df0c32e3b0, EA = {var = 204661680, type = 991}}}, {op_type = 1927489768, u = {constant = {value = {lval = 204666304, dval = 2.1029989474362526e-311, str = {val = 0x3df0c32f5c0  <incomplete sequence \375>, len = 0}, ht = 0x3df0c32f5c0, obj = {handle = 204666304, handlers = 0x0}}, refcount__gc = 0, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 204666304, opline_num = 204666304, op_array = 0x3df0c32f5c0, jmp_addr = 0x3df0c32f5c0, EA = {var = 204666304, type = 991}}}, {op_type = 0, u = {constant = {value = {lval = 0, dval = 0, str = {val = 0x0, len = 0}, ht = 0x0, obj = {handle = 0, handlers = 0x0}}, refcount__gc = 0, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 0, opline_num = 0, op_array = 0x0, jmp_addr = 0x0, EA = {var = 0, type = 0}}}, {op_type = 0, u = {constant = {value = {lval = 3801088, dval = 1.8779869976194121e-317, str = {val = 0x3a0000 <Address 0x3a0000 out of bounds>, len = 0}, ht = 0x3a0000, obj = {handle = 3801088, handlers = 0x0}}, refcount__gc = 0, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 3801088, opline_num = 3801088, op_array = 0x3a0000, jmp_addr = 0x3a0000, EA = {var = 3801088, type = 0}}}, {op_type = 0, u = {constant = {value = {lval = 0, dval = 0, str = {val = 0x0, len = 0}, ht = 0x0, obj = {handle = 0, handlers = 0x0}}, refcount__gc = 0, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 0, opline_num = 0, op_array = 0x0, jmp_addr = 0x0, EA = {var = 0, type = 0}}}, {op_type = 0, u = {constant = {value = {lval = 0, dval = 0, str = {val = 0x0, len = 0}, ht = 0x0, obj = {handle = 0, handlers = 0x0}}, refcount__gc = 0, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 0, opline_num = 0, op_array = 0x0, jmp_addr = 0x0, EA = {var = 0, type = 0}}}, {op_type = 0, u = {constant = {value = {lval = 0, dval = 0, str = {val = 0x0, len = 0}, ht = 0x0, obj = {handle = 0, handlers = 0x0}}, refcount__gc = 0, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 0, opline_num = 0, op_array = 0x0, jmp_addr = 0x0, EA = {var = 0, type = 0}}}, {op_type = 0, u = {constant = {value = {lval = 0, dval = 0, str = {val = 0x0, len = 0}, ht = 0x0, obj = {handle = 0, handlers = 0x0}}, refcount__gc = 0, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 0, opline_num = 0, op_array = 0x0, jmp_addr = 0x0, EA = {var = 0, type = 0}}}, {op_type = 0, u = {constant = {value = {lval = 0, dval = 0, str = {val = 0x0, len = 0}, ht = 0x0, obj = {handle = 0, handlers = 0x0}}, refcount__gc = 1729579840, type = 114 'r', is_ref__gc = 0 '\000'}, var = 0, opline_num = 0, op_array = 0x0, jmp_addr = 0x0, EA = {var = 0, type = 0}}}, {op_type = -1917956777, u = {constant = {value = {lval = 1746800800, dval = 2.4277055443544905e-312, str = {val = 0x72681e10a0 "\226+@\201f\223\315\033y", len = 1746800800}, ht = 0x72681e10a0, obj = {handle = 1746800800, handlers = 0x72681e10a0}}, refcount__gc = 1741016416, type = 114 'r', is_ref__gc = 0 '\000'}, var = 1746800800, opline_num = 1746800800, op_array = 0x72681e10a0, jmp_addr = 0x72681e10a0, EA = {var = 1746800800, type = 114}}}, {op_type = -2053785832, u = {constant = {value = {lval = 1165, dval = 5.7558647740505222e-321, str = {val = 0x48d <Address 0x48d out of bounds>, len = 0}, ht = 0x48d, obj = {handle = 1165, handlers = 0x0}}, refcount__gc = 1746800840, type = 114 'r', is_ref__gc = 0 '\000'}, var = 1165, opline_num = 1165, op_array = 0x48d, jmp_addr = 0x48d, EA = {var = 1165, type = 0}}}, {op_type = 16, u = {constant = {value = {lval = 1165, dval = 5.7558647740505222e-321, str = {val = 0x48d <Address 0x48d out of bounds>, len = -1918036068}, ht = 0x48d, obj = {handle = 1165, handlers = 0x35f8dad179c}}, refcount__gc = 16, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 1165, opline_num = 1165, op_array = 0x48d, jmp_addr = 0x48d, EA = {var = 1165, type = 0}}}, {op_type = 204657312, u = {constant = {value = {lval = 16, dval = 4.4438755078556982e+252, str = {val = 0x7463656a00000010 <Address 0x7463656a00000010 out of bounds>, len = 1746800440}, ht = 0x7463656a00000010, obj = {handle = 16, handlers = 0x72681e0f38}}, refcount__gc = 1976505936, type = 95 '_', is_ref__gc = 3 '\003'}, var = 16, opline_num = 16, op_array = 0x7463656a00000010, jmp_addr = 0x7463656a00000010, EA = {var = 16, type = 1952671082}}}, {op_type = 1746799912, u = {constant = {value = {lval = 1746800560, dval = 2.427705543168733e-312, str = {val = 0x72681e0fb0 "\002V\254gr", len = 204657856}, ht = 0x72681e0fb0, obj = {handle = 1746800560, handlers = 0x3df0c32d4c0}}, refcount__gc = 0, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 1746800560, opline_num = 1746800560, op_array = 0x72681e0fb0, jmp_addr = 0x72681e0fb0, EA = {var = 1746800560, type = 114}}}, {op_type = -2055927290, u = {constant = {value = {lval = 1746800440, dval = 2.4277055425758542e-312, str = {val = 0x72681e0f38 "H\366\004\023\366\346\032", len = 1976505936}, ht = 0x72681e0f38, obj = {handle = 1746800440, handlers = 0x35f75cf1650}}, refcount__gc = 1746799912, type = 114 'r', is_ref__gc = 0 '\000'}, var = 1746800440, opline_num = 1746800440, op_array = 0x72681e0f38, jmp_addr = 0x72681e0f38, EA = {var = 1746800440, type = 114}}}, {op_type = -2055950310, u = {constant = {value = {lval = 1741015344, dval = 2.4276769604039392e-312, str = {val = 0x7267c5c930 "\270", len = -2055950310}, ht = 0x7267c5c930, obj = {handle = 1741015344, handlers = 0x35f8574b01a}}, refcount__gc = 1935764579, type = 115 's', is_ref__gc = 101 'e'}, var = 1741015344, opline_num = 1741015344, op_array = 0x7267c5c930, jmp_addr = 0x7267c5c930, EA = {var = 1741015344, type = 114}}}, {op_type = 1738251960, u = {constant = {value = {lval = 1729579840, dval = 2.4276204615072464e-312, str = {val = 0x7267174b40 "\001", len = -1917956777}, ht = 0x7267174b40, obj = {handle = 1729579840, handlers = 0x35f8dae4d57}}, refcount__gc = 1746799240, type = 114 'r', is_ref__gc = 0 '\000'}, var = 1729579840, opline_num = 1729579840, op_array = 0x7267174b40, jmp_addr = 0x7267174b40, EA = {var = 1729579840, type = 114}}}, {op_type = 1746799240, u = {constant = {value = {lval = 1729579840, dval = 2.4276204615072464e-312, str = {val = 0x7267174b40 "\001", len = -1917956777}, ht = 0x7267174b40, obj = {handle = 1729579840, handlers = 0x35f8dae4d57}}, refcount__gc = 1746800520, type = 114 'r', is_ref__gc = 0 '\000'}, var = 1729579840, opline_num = 1729579840, op_array = 0x7267174b40, jmp_addr = 0x7267174b40, EA = {var = 1729579840, type = 114}}}, {op_type = 1746800520, u = {constant = {value = {lval = 1746797536, dval = 2.4277055282281878e-312, str = {val = 0x72681e03e0 "\b", len = 1746800440}, ht = 0x72681e03e0, obj = {handle = 1746797536, handlers = 0x72681e0f38}}, refcount__gc = 1976505864, type = 95 '_', is_ref__gc = 3 '\003'}, var = 1746797536, opline_num = 1746797536, op_array = 0x72681e03e0, jmp_addr = 0x72681e03e0, EA = {var = 1746797536, type = 114}}}, {op_type = 1746799912, u = {constant = {value = {lval = 1746797536, dval = 2.4277055282281878e-312, str = {val = 0x72681e03e0 "\b", len = 1976502192}, ht = 0x72681e03e0, obj = {handle = 1746797536, handlers = 0x35f75cf07b0}}, refcount__gc = 0, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 1746797536, opline_num = 1746797536, op_array = 0x72681e03e0, jmp_addr = 0x72681e03e0, EA = {var = 1746797536, type = 114}}}, {op_type = -2055948929, u = {constant = {value = {lval = 1729579840, dval = 2.4276204615072464e-312, str = {val = 0x7267174b40 "\001", len = 72}, ht = 0x7267174b40, obj = {handle = 1729579840, handlers = 0x48}}, refcount__gc = 1746800440, type = 114 'r', is_ref__gc = 0 '\000'}, var = 1729579840, opline_num = 1729579840, op_array = 0x7267174b40, jmp_addr = 0x7267174b40, EA = {var = 1729579840, type = 114}}}, {op_type = 204657856, u = {constant = {value = {lval = 204657856, dval = 2.102998943262386e-311, str = {val = 0x3df0c32d4c0  <incomplete sequence \360>, len = 1976502144}, ht = 0x3df0c32d4c0, obj = {handle = 204657856, handlers = 0x35f75cf0780}}, refcount__gc = 0, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 204657856, opline_num = 204657856, op_array = 0x3df0c32d4c0, jmp_addr = 0x3df0c32d4c0, EA = {var = 204657856, type = 991}}}, {op_type = 204657856, u = {constant = {value = {lval = 204657856, dval = 2.102998943262386e-311, str = {val = 0x3df0c32d4c0  <incomplete sequence \360>, len = 0}, ht = 0x3df0c32d4c0, obj = {handle = 204657856, handlers = 0x0}}, refcount__gc = 1746797488, type = 114 'r', is_ref__gc = 0 '\000'}, var = 204657856, opline_num = 204657856, op_array = 0x3df0c32d4c0, jmp_addr = 0x3df0c32d4c0, EA = {var = 204657856, type = 991}}}, {op_type = -2055946052, u = {constant = {value = {lval = 204657999, dval = 2.1029989433330374e-311, str = {val = 0x3df0c32d54f "", len = -2055949319}, ht = 0x3df0c32d54f, obj = {handle = 204657999, handlers = 0x35f8574b3f9}}, refcount__gc = 1976503168, type = 95 '_', is_ref__gc = 3 '\003'}, var = 204657999, opline_num = 204657999, op_array = 0x3df0c32d54f, jmp_addr = 0x3df0c32d54f, EA = {var = 204657999, type = 991}}}, {op_type = 1738520968, u = {constant = {value = {lval = 204657664, dval = 2.1029989431675254e-311, str = {val = 0x3df0c32d400 "\030\325\062\f\337\003", len = 1976502488}, ht = 0x3df0c32d400, obj = {handle = 204657664, handlers = 0x35f75cf08d8}}, refcount__gc = 1976502144, type = 95 '_', is_ref__gc = 3 '\003'}, var = 204657664, opline_num = 204657664, op_array = 0x3df0c32d400, jmp_addr = 0x3df0c32d400, EA = {var = 204657664, type = 991}}}, {op_type = 1746770520, u = {constant = {value = {lval = 204657944, dval = 2.1029989433058638e-311, str = {val = 0x3df0c32d518 "WM\256\215_\003", len = 204657704}, ht = 0x3df0c32d518, obj = {handle = 204657944, handlers = 0x3df0c32d428}}, refcount__gc = 1746797488, type = 114 'r', is_ref__gc = 0 '\000'}, var = 204657944, opline_num = 204657944, op_array = 0x3df0c32d518, jmp_addr = 0x3df0c32d518, EA = {var = 204657944, type = 991}}}, {op_type = 204657856, u = {constant = {value = {lval = 1738251048, dval = 2.4276633029670539e-312, str = {val = 0x72679b9b28 "", len = 1976501984}, ht = 0x72679b9b28, obj = {handle = 1738251048, handlers = 0x35f75cf06e0}}, refcount__gc = 1, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 1738251048, opline_num = 1738251048, op_array = 0x72679b9b28, jmp_addr = 0x72679b9b28, EA = {var = 1738251048, type = 114}}}, {op_type = 204657856, u = {constant = {value = {lval = 1976501016, dval = 1.8322588888540059e-311, str = {val = 0x35f75cf0318 "\261\006", len = 1746770648}, ht = 0x35f75cf0318, obj = {handle = 1976501016, handlers = 0x72681d9ad8}}, refcount__gc = 1, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 1976501016, opline_num = 1976501016, op_array = 0x35f75cf0318, jmp_addr = 0x35f75cf0318, EA = {var = 1976501016, type = 863}}}, {op_type = 204663280, u = {constant = {value = {lval = 8, dval = 3.9525251667299724e-323, str = {val = 0x8 <Address 0x8 out of bounds>, len = -2055945344}, ht = 0x8, obj = {handle = 8, handlers = 0x35f8574c380}}, refcount__gc = 8, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 8, opline_num = 8, op_array = 0x8, jmp_addr = 0x8, EA = {var = 8, type = 0}}}, {op_type = -1813074368, u = {constant = {value = {lval = 1735580432, dval = 2.4276501083708655e-312, str = {val = 0x726772db10 "1", len = 208}, ht = 0x726772db10, obj = {handle = 1735580432, handlers = 0xd0}}, refcount__gc = 2481893016, type = 95 '_', is_ref__gc = 3 '\003'}, var = 1735580432, opline_num = 1735580432, op_array = 0x726772db10, jmp_addr = 0x726772db10, EA = {var = 1735580432, type = 114}}}, {op_type = -1813074264, u = {constant = {value = {lval = 204662944, dval = 2.102998945776192e-311, str = {val = 0x3df0c32e8a0 "", len = 195}, ht = 0x3df0c32e8a0, obj = {handle = 204662944, handlers = 0xc3}}, refcount__gc = 204663408, type = 13 '\r', is_ref__gc = 0 '\000'}, var = 204662944, opline_num = 204662944, op_array = 0x3df0c32e8a0, jmp_addr = 0x3df0c32e8a0, EA = {var = 204662944, type = 991}}}, {op_type = -2055945007, u = {constant = {value = {lval = 240, dval = 1.1857575500189917e-321, str = {val = 0xf0 <Address 0xf0 out of bounds>, len = 0}, ht = 0xf0, obj = {handle = 240, handlers = 0xd00000000}}, refcount__gc = 0, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 240, opline_num = 240, op_array = 0xf0, jmp_addr = 0xf0, EA = {var = 240, type = 0}}}, {op_type = 758569200, u = {constant = {value = {lval = 2481892928, dval = 1.8325085856354112e-311, str = {val = 0x35f93eeae40 "", len = 195}, ht = 0x35f93eeae40, obj = {handle = 2481892928, handlers = 0xc3}}, refcount__gc = 0, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 2481892928, opline_num = 2481892928, op_array = 0x35f93eeae40, jmp_addr = 0x35f93eeae40, EA = {var = 2481892928, type = 863}}}, {op_type = 240, u = {constant = {value = {lval = 0, dval = 0, str = {val = 0x0, len = -1816118736}, ht = 0x0, obj = {handle = 0, handlers = 0x35f93c03a30}}, refcount__gc = 1729579840, type = 114 'r', is_ref__gc = 0 '\000'}, var = 0, opline_num = 0, op_array = 0x0, jmp_addr = 0x0, EA = {var = 0, type = 0}}}, {op_type = -1917956777, u = {constant = {value = {lval = 1746800920, dval = 2.4277055449473693e-312, str = {val = 0x72681e1118 "\226+@\201f\223\315", <incomplete sequence \331>, len = 1746800920}, ht = 0x72681e1118, obj = {handle = 1746800920, handlers = 0x72681e1118}}, refcount__gc = 1735640048, type = 114 'r', is_ref__gc = 0 '\000'}, var = 1746800920, opline_num = 1746800920, op_array = 0x72681e1118, jmp_addr = 0x72681e1118, EA = {var = 1746800920, type = 114}}}, {op_type = -1910758768, u = {constant = {value = {lval = 4, dval = 1.9762625833649862e-323, str = {val = 0x4 <Address 0x4 out of bounds>, len = 1976500920}, ht = 0x4, obj = {handle = 4, handlers = 0x35f75cf02b8}}, refcount__gc = 1729579840, type = 114 'r', is_ref__gc = 0 '\000'}, var = 4, opline_num = 4, op_array = 0x4, jmp_addr = 0x4, EA = {var = 4, type = 0}}}, {op_type = -1917956777, u = {constant = {value = {lval = 1746801136, dval = 2.4277055460145511e-312, str = {val = 0x72681e11f0 "\226+@\201f\223\315\033\301", len = 1746801136}, ht = 0x72681e11f0, obj = {handle = 1746801136, handlers = 0x72681e11f0}}, refcount__gc = 4, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 1746801136, opline_num = 1746801136, op_array = 0x72681e11f0, jmp_addr = 0x72681e11f0, EA = {var = 1746801136, type = 114}}}, {op_type = -1910757320, u = {constant = {value = {lval = 204663280, dval = 2.1029989459421981e-311, str = {val = 0x3df0c32e9f0 "", len = 0}, ht = 0x3df0c32e9f0, obj = {handle = 204663280, handlers = 0x0}}, refcount__gc = 204663408, type = 223 '\337', is_ref__gc = 3 '\003'}, var = 204663280, opline_num = 204663280, op_array = 0x3df0c32e9f0, jmp_addr = 0x3df0c32e9f0, EA = {var = 204663280, type = 991}}}, {op_type = -1917958511, u = {constant = {value = {lval = 0, dval = 0, str = {val = 0x0, len = 0}, ht = 0x0, obj = {handle = 0, handlers = 0x0}}, refcount__gc = 0, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 0, opline_num = 0, op_array = 0x0, jmp_addr = 0x0, EA = {var = 0, type = 0}}}, {op_type = 204663408, u = {constant = {value = {lval = 204663280, dval = 2.1029989459421981e-311, str = {val = 0x3df0c32e9f0 "", len = -2055936005}, ht = 0x3df0c32e9f0, obj = {handle = 204663280, handlers = 0x35f8574e7fb}}, refcount__gc = 2, type = 86 'V', is_ref__gc = 169 '\251'}, var = 204663280, opline_num = 204663280, op_array = 0x3df0c32e9f0, jmp_addr = 0x3df0c32e9f0, EA = {var = 204663280, type = 991}}}, {op_type = -2055936005, u = {constant = {value = {lval = 2, dval = 2.7409507279889125e-271, str = {val = 0x7c288e700000002 <Address 0x7c288e700000002 out of bounds>, len = 204663280}, ht = 0x7c288e700000002, obj = {handle = 2, handlers = 0x3df0c32e9f0}}, refcount__gc = 1746797088, type = 114 'r', is_ref__gc = 0 '\000'}, var = 2, opline_num = 2, op_array = 0x7c288e700000002, jmp_addr = 0x7c288e700000002, EA = {var = 2, type = 130189543}}}, {op_type = 204663296, u = {constant = {value = {lval = 1976066096, dval = 1.8322586739749752e-311, str = {val = 0x35f75c86030 "\a", len = 1733656680}, ht = 0x35f75c86030, obj = {handle = 1976066096, handlers = 0x7267558068}}, refcount__gc = 1976500800, type = 95 '_', is_ref__gc = 3 '\003'}, var = 1976066096, opline_num = 1976066096, op_array = 0x35f75c86030, jmp_addr = 0x35f75c86030, EA = {var = 1976066096, type = 863}}}, {op_type = 204671824, u = {constant = {value = {lval = 204671824, dval = 2.1029989501634949e-311, str = {val = 0x3df0c330b50 "\300 \034\216_\003", len = 204671824}, ht = 0x3df0c330b50, obj = {handle = 204671824, handlers = 0x3df0c330b50}}, refcount__gc = 204671824, type = 223 '\337', is_ref__gc = 3 '\003'}, var = 204671824, opline_num = 204671824, op_array = 0x3df0c330b50, jmp_addr = 0x3df0c330b50, EA = {var = 204671824, type = 991}}}, {op_type = -1918408171, u = {constant = {value = {lval = 2493208304, dval = 1.8325141761739625e-311, str = {val = 0x35f949b56f0 "@\361É?_\003", len = -2055949319}, ht = 0x35f949b56f0, obj = {handle = 2493208304, handlers = 0x358574b3f9}}, refcount__gc = 2058362976, type = 95 '_', is_ref__gc = 3 '\003'}, var = 2493208304, opline_num = 2493208304, op_array = 0x35f949b56f0, jmp_addr = 0x35f949b56f0, EA = {var = 2493208304, type = 863}}}, {op_type = 1735295472, u = {constant = {value = {lval = 204658432, dval = 2.1029989435469678e-311, str = {val = 0x3df0c32d700 "_\003d\003j\003m\003o\003\335", <incomplete sequence \370>, len = 2058338792}, ht = 0x3df0c32d700, obj = {handle = 204658432, handlers = 0x35f7aafc1e8}}, refcount__gc = 2058338448, type = 95 '_', is_ref__gc = 3 '\003'}, var = 204658432, opline_num = 204658432, op_array = 0x3df0c32d700, jmp_addr = 0x3df0c32d700, EA = {var = 204658432, type = 991}}}, {op_type = 0, u = {constant = {value = {lval = 1735288112, dval = 2.4276486641181696e-312, str = {val = 0x72676e6530 "\b", len = 204658584}, ht = 0x72676e6530, obj = {handle = 1735288112, handlers = 0x3df0c32d798}}, refcount__gc = 204658344, type = 223 '\337', is_ref__gc = 3 '\003'}, var = 1735288112, opline_num = 1735288112, op_array = 0x72676e6530, jmp_addr = 0x72676e6530, EA = {var = 1735288112, type = 114}}}, {op_type = 204662736, u = {constant = {value = {lval = 204662736, dval = 2.1029989456734263e-311, str = {val = 0x3df0c32e7d0 "\377\037", len = 54}, ht = 0x3df0c32e7d0, obj = {handle = 204662736, handlers = 0x36}}, refcount__gc = 53, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 204662736, opline_num = 204662736, op_array = 0x3df0c32e7d0, jmp_addr = 0x3df0c32e7d0, EA = {var = 204662736, type = 991}}}, {op_type = -1910759232, u = {constant = {value = {lval = 65536, dval = 3.7826391402871111e-307, str = {val = 0x51000400010000 <Address 0x51000400010000 out of bounds>, len = 26607864}, ht = 0x51000400010000, obj = {handle = 65536, handlers = 0x24f0202019600f8}}, refcount__gc = 47121039, type = 247 '\367', is_ref__gc = 2 '\002'}, var = 65536, opline_num = 65536, op_array = 0x51000400010000, jmp_addr = 0x51000400010000, EA = {var = 65536, type = 5308420}}}, {op_type = 14484092, u = {constant = {value = {lval = 65536, dval = 3.7826391402871111e-307, str = {val = 0x51000400010000 <Address 0x51000400010000 out of bounds>, len = 23265497}, ht = 0x51000400010000, obj = {handle = 65536, handlers = 0x23b01ec016300d9}}, refcount__gc = 45154943, type = 233 '\351', is_ref__gc = 2 '\002'}, var = 65536, opline_num = 65536, op_array = 0x51000400010000, jmp_addr = 0x51000400010000, EA = {var = 65536, type = 5308420}}}, {op_type = 53543697, u = {constant = {value = {lval = 56886111, dval = 3.6342256749118899e-292, str = {val = 0x36d036a0364035f <Address 0x36d036a0364035f out of bounds>, len = 31261551}, ht = 0x36d036a0364035f, obj = {handle = 56886111, handlers = 0x18700f801dd036f}}, refcount__gc = 38732290, type = 143 '\217', is_ref__gc = 2 '\002'}, var = 56886111, opline_num = 56886111, op_array = 0x36d036a0364035f, jmp_addr = 0x36d036a0364035f, EA = {var = 56886111, type = 57475946}}}, {op_type = 50201301, u = {constant = {value = {lval = 34210213, dval = 3.0595111396460092e-296, str = {val = 0x2940255020a01a5 <Address 0x2940255020a01a5 out of bounds>, len = 50201301}, ht = 0x2940255020a01a5, obj = {handle = 34210213, handlers = 0x12600a102fe02d5}}, refcount__gc = 34537899, type = 90 'Z', is_ref__gc = 2 '\002'}, var = 34210213, opline_num = 34210213, op_array = 0x2940255020a01a5, jmp_addr = 0x2940255020a01a5, EA = {var = 34210213, type = 43254357}}}, {op_type = 50463450, u = {constant = {value = {lval = 31261018, dval = 5.1338328369871613e-301, str = {val = 0x19600f801dd015a <Address 0x19600f801dd015a out of bounds>, len = 38732290}, ht = 0x19600f801dd015a, obj = {handle = 31261018, handlers = 0x2cf028f024f0202}}, refcount__gc = 52101879, type = 227 '\343', is_ref__gc = 1 '\001'}, var = 31261018, opline_num = 31261018, op_array = 0x19600f801dd015a, jmp_addr = 0x19600f801dd015a, EA = {var = 31261018, type = 26607864}}}, {op_type = 33685910, u = {constant = {value = {lval = 17367759, dval = 5.3774485832181589e-299, str = {val = 0x2020196010902cf <Address 0x2020196010902cf out of bounds>, len = 42926671}, ht = 0x2020196010902cf, obj = {handle = 17367759, handlers = 0x2f702cf028f024f}}, refcount__gc = 795, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 17367759, opline_num = 17367759, op_array = 0x2020196010902cf, jmp_addr = 0x2020196010902cf, EA = {var = 17367759, type = 33685910}}}, {op_type = 424, u = {constant = {value = {lval = 1729579840, dval = 2.4276204615072464e-312, str = {val = 0x7267174b40 "\001", len = -1917956777}, ht = 0x7267174b40, obj = {handle = 1729579840, handlers = 0x35f8dae4d57}}, refcount__gc = 1741011800, type = 114 'r', is_ref__gc = 0 '\000'}, var = 1729579840, opline_num = 1729579840, op_array = 0x7267174b40, jmp_addr = 0x7267174b40, EA = {var = 1729579840, type = 114}}}, {op_type = 1741011800, u = {constant = {value = {lval = 4, dval = 1.9762625833649862e-323, str = {val = 0x4 <Address 0x4 out of bounds>, len = -1910758576}, ht = 0x4, obj = {handle = 4, handlers = 0x35f8e1c2350}}, refcount__gc = 16, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 4, opline_num = 4, op_array = 0x4, jmp_addr = 0x4, EA = {var = 4, type = 0}}}, {op_type = 0, u = {constant = {value = {lval = 1741011840, dval = 2.427676943091879e-312, str = {val = 0x7267c5bb80 "\301\023\067\344(\347\032", len = -1910758576}, ht = 0x7267c5bb80, obj = {handle = 1741011840, handlers = 0x35f8e1c2350}}, refcount__gc = 22, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 1741011840, opline_num = 1741011840, op_array = 0x7267c5bb80, jmp_addr = 0x7267c5bb80, EA = {var = 1741011840, type = 114}}}, {op_type = 0, u = {constant = {value = {lval = 1738435728, dval = 2.4276642154074886e-312, str = {val = 0x72679e6c90 "/**\n\t * The value for the domain field.\n\t * @var        string\n\t */", len = 16}, ht = 0x72679e6c90, obj = {handle = 1738435728, handlers = 0x10}}, refcount__gc = 6, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 1738435728, opline_num = 1738435728, op_array = 0x72679e6c90, jmp_addr = 0x72679e6c90, EA = {var = 1738435728, type = 114}}}, {op_type = -1918036068, u = {constant = {value = {lval = 16, dval = 1.8312823676109351e-311, str = {val = 0x35f00000010 <Address 0x35f00000010 out of bounds>, len = 204658768}, ht = 0x35f00000010, obj = {handle = 16, handlers = 0x3df0c32d850}}, refcount__gc = 2377489897, type = 95 '_', is_ref__gc = 3 '\003'}, var = 16, opline_num = 16, op_array = 0x35f00000010, jmp_addr = 0x35f00000010, EA = {var = 16, type = 863}}}, {op_type = 22, u = {constant = {value = {lval = 2384208064, dval = 1.8324603228999901e-311, str = {val = 0x35f8e1c20c0 "\370!\272gr", len = 0}, ht = 0x35f8e1c20c0, obj = {handle = 2384208064, handlers = 0x0}}, refcount__gc = 2377489897, type = 95 '_', is_ref__gc = 3 '\003'}, var = 2384208064, opline_num = 2384208064, op_array = 0x35f8e1c20c0, jmp_addr = 0x35f8e1c20c0, EA = {var = 2384208064, type = 863}}}, {op_type = -1910868416, u = {constant = {value = {lval = 1741997152, dval = 2.4276818111799754e-312, str = {val = 0x7267d4c460 "/**\n\t * The Peer class.\n\t * Instance provides a convenient way of calling static methods on a class\n\t * that calling code may not be able to identify.\n\t * @var        VariablesPeer\n\t */", len = -1918025516}, ht = 0x7267d4c460, obj = {handle = 1741997152, handlers = 0x35f8dad40d4}}, refcount__gc = 1745959808, type = 114 'r', is_ref__gc = 0 '\000'}, var = 1741997152, opline_num = 1741997152, op_array = 0x7267d4c460, jmp_addr = 0x7267d4c460, EA = {var = 1741997152, type = 114}}}, {op_type = 2, u = {constant = {value = {lval = 1741928872, dval = 2.4276814738319524e-312, str = {val = 0x7267d3b9a8 "\340>6y>-\231t\021", len = 0}, ht = 0x7267d3b9a8, obj = {handle = 1741928872, handlers = 0x0}}, refcount__gc = 1745959808, type = 114 'r', is_ref__gc = 0 '\000'}, var = 1741928872, opline_num = 1741928872, op_array = 0x7267d3b9a8, jmp_addr = 0x7267d3b9a8, EA = {var = 1741928872, type = 114}}}, {op_type = -1918025474, u = {constant = {value = {lval = 1745959808, dval = 2.4277013893019342e-312, str = {val = 0x7268113b80 "@v\032\216_\003", len = -1918331033}, ht = 0x7268113b80, obj = {handle = 1745959808, handlers = 0x35f8da89767}}, refcount__gc = 4, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 1745959808, opline_num = 1745959808, op_array = 0x7268113b80, jmp_addr = 0x7268113b80, EA = {var = 1745959808, type = 114}}}, {op_type = 680, u = {constant = {value = {lval = 0, dval = 0, str = {val = 0x0, len = 0}, ht = 0x0, obj = {handle = 0, handlers = 0x0}}, refcount__gc = 2377489897, type = 95 '_', is_ref__gc = 3 '\003'}, var = 0, opline_num = 0, op_array = 0x0, jmp_addr = 0x0, EA = {var = 0, type = 0}}}, {op_type = 128, u = {constant = {value = {lval = 1741928872, dval = 2.4276814738319524e-312, str = {val = 0x7267d3b9a8 "\340>6y>-\231t\021", len = 204665104}, ht = 0x7267d3b9a8, obj = {handle = 1741928872, handlers = 0x3df0c32f110}}, refcount__gc = 16, type = 95 '_', is_ref__gc = 3 '\003'}, var = 1741928872, opline_num = 1741928872, op_array = 0x7267d3b9a8, jmp_addr = 0x7267d3b9a8, EA = {var = 1741928872, type = 114}}}, {op_type = 2, u = {constant = {value = {lval = 204658960, dval = 2.1029989438078345e-311, str = {val = 0x3df0c32d910  <incomplete sequence \375>, len = -1918317294}, ht = 0x3df0c32d910, obj = {handle = 204658960, handlers = 0x35f8da8cd12}}, refcount__gc = 1738433624, type = 114 'r', is_ref__gc = 0 '\000'}, var = 204658960, opline_num = 204658960, op_array = 0x3df0c32d910, jmp_addr = 0x3df0c32d910, EA = {var = 204658960, type = 991}}}, {op_type = -1918318251, u = {constant = {value = {lval = 1741997152, dval = 2.4276818111799754e-312, str = {val = 0x7267d4c460 "/**\n\t * The Peer class.\n\t * Instance provides a convenient way of calling static methods on a class\n\t * that calling code may not be able to identify.\n\t * @var        VariablesPeer\n\t */", len = -1918317581}, ht = 0x7267d4c460, obj = {handle = 1741997152, handlers = 0x35f8da8cbf3}}, refcount__gc = 64775, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 1741997152, opline_num = 1741997152, op_array = 0x7267d4c460, jmp_addr = 0x7267d4c460, EA = {var = 1741997152, type = 114}}}, {op_type = 1745959808, u = {constant = {value = {lval = 9, dval = 4.4465908125712189e-323, str = {val = 0x9 <Address 0x9 out of bounds>, len = 1}, ht = 0x9, obj = {handle = 9, handlers = 0x1}}, refcount__gc = 4064, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 9, opline_num = 9, op_array = 0x9, jmp_addr = 0x9, EA = {var = 9, type = 0}}}, {op_type = 0, u = {constant = {value = {lval = 204665088, dval = 2.1029989468354687e-311, str = {val = 0x3df0c32f100 "w", len = -1918345191}, ht = 0x3df0c32f100, obj = {handle = 204665088, handlers = 0x35f8da86019}}, refcount__gc = 16, type = 223 '\337', is_ref__gc = 3 '\003'}, var = 204665088, opline_num = 204665088, op_array = 0x3df0c32f100, jmp_addr = 0x3df0c32f100, EA = {var = 204665088, type = 991}}}, {op_type = 0, u = {constant = {value = {lval = 29456, dval = 1.4553197663899758e-319, str = {val = 0x7310 <Address 0x7310 out of bounds>, len = -1918291560}, ht = 0x7310, obj = {handle = 29456, handlers = 0x35f8da93198}}, refcount__gc = 4064, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 29456, opline_num = 29456, op_array = 0x7310, jmp_addr = 0x7310, EA = {var = 29456, type = 0}}}, {op_type = 204659128, u = {constant = {value = {lval = 0, dval = 0, str = {val = 0x0, len = 29456}, ht = 0x0, obj = {handle = 0, handlers = 0x7310}}, refcount__gc = 2, type = 223 '\337', is_ref__gc = 3 '\003'}, var = 0, opline_num = 0, op_array = 0x0, jmp_addr = 0x0, EA = {var = 0, type = 0}}}, {op_type = -1801822208, u = {constant = {value = {lval = 1729579840, dval = 2.4276204615072464e-312, str = {val = 0x7267174b40 "\001", len = -1917956777}, ht = 0x7267174b40, obj = {handle = 1729579840, handlers = 0x35f8dae4d57}}, refcount__gc = 16, type = 114 'r', is_ref__gc = 0 '\000'}, var = 1729579840, opline_num = 1729579840, op_array = 0x7267174b40, jmp_addr = 0x7267174b40, EA = {var = 1729579840, type = 114}}}, {op_type = 0, u = {constant = {value = {lval = 1738436208, dval = 2.4276642177790037e-312, str = {val = 0x72679e6e70 "\b\300\376A\222\016\252\314\f", len = -1910757440}, ht = 0x72679e6e70, obj = {handle = 1738436208, handlers = 0x35f8e1c27c0}}, refcount__gc = 1935764579, type = 115 's', is_ref__gc = 101 'e'}, var = 1738436208, opline_num = 1738436208, op_array = 0x72679e6e70, jmp_addr = 0x72679e6e70, EA = {var = 1738436208, type = 114}}}, {op_type = 204656448, u = {constant = {value = {lval = 204656448, dval = 2.1029989425667416e-311, str = {val = 0x3df0c32cf40 "/var/www/dec-project/tmp/bdd/genreAndPluriels.php", len = 50}, ht = 0x3df0c32cf40, obj = {handle = 204656448, handlers = 0x32}}, refcount__gc = 1, type = 114 'r', is_ref__gc = 0 '\000'}, var = 204656448, opline_num = 204656448, op_array = 0x3df0c32cf40, jmp_addr = 0x3df0c32cf40, EA = {var = 204656448, type = 991}}}, {op_type = -1801792770, u = {constant = {value = {lval = 1, dval = 2.4190752017053511e-312, str = {val = 0x7200000001 <Address 0x7200000001 out of bounds>, len = 1}, ht = 0x7200000001, obj = {handle = 1, handlers = 0x100000001}}, refcount__gc = 204659312, type = 223 '\337', is_ref__gc = 3 '\003'}, var = 1, opline_num = 1, op_array = 0x7200000001, jmp_addr = 0x7200000001, EA = {var = 1, type = 114}}}, {op_type = 12, u = {constant = {value = {lval = 204659320, dval = 2.1029989439856981e-311, str = {val = 0x3df0c32da78 "\300\037\034\216_\003", len = 1741928872}, ht = 0x3df0c32da78, obj = {handle = 204659320, handlers = 0x7267d3b9a8}}, refcount__gc = 2384209568, type = 95 '_', is_ref__gc = 3 '\003'}, var = 204659320, opline_num = 204659320, op_array = 0x3df0c32da78, jmp_addr = 0x3df0c32da78, EA = {var = 204659320, type = 991}}}, {op_type = 85, u = {constant = {value = {lval = 204659320, dval = 2.1029989439856981e-311, str = {val = 0x3df0c32da78 "\300\037\034\216_\003", len = 84}, ht = 0x3df0c32da78, obj = {handle = 204659320, handlers = 0x54}}, refcount__gc = 1729579840, type = 114 'r', is_ref__gc = 0 '\000'}, var = 204659320, opline_num = 204659320, op_array = 0x3df0c32da78, jmp_addr = 0x3df0c32da78, EA = {var = 204659320, type = 991}}}, {op_type = -1917955745, u = {constant = {value = {lval = 1738438896, dval = 2.4276642310594883e-312, str = {val = 0x72679e78f0 "\226+@\201f\223\315\033\021\002", len = -1917958511}, ht = 0x72679e78f0, obj = {handle = 1738438896, handlers = 0x35f8dae4691}}, refcount__gc = 204659440, type = 223 '\337', is_ref__gc = 3 '\003'}, var = 1738438896, opline_num = 1738438896, op_array = 0x72679e78f0, jmp_addr = 0x72679e78f0, EA = {var = 1738438896, type = 114}}}, {op_type = -1910759488, u = {constant = {value = {lval = 2384207880, dval = 1.832460322809082e-311, str = {val = 0x35f8e1c2008 "", len = 0}, ht = 0x35f8e1c2008, obj = {handle = 2384207880, handlers = 0x0}}, refcount__gc = 1741996312, type = 114 'r', is_ref__gc = 0 '\000'}, var = 2384207880, opline_num = 2384207880, op_array = 0x35f8e1c2008, jmp_addr = 0x35f8e1c2008, EA = {var = 2384207880, type = 863}}}, {op_type = -1918093851, u = {constant = {value = {lval = 204659440, dval = 2.102998944044986e-311, str = {val = 0x3df0c32daf0 "", len = -1910759488}, ht = 0x3df0c32daf0, obj = {handle = 204659440, handlers = 0x35f8e1c1fc0}}, refcount__gc = 204659440, type = 223 '\337', is_ref__gc = 3 '\003'}, var = 204659440, opline_num = 204659440, op_array = 0x3df0c32daf0, jmp_addr = 0x3df0c32daf0, EA = {var = 204659440, type = 991}}}, {op_type = -1918244659, u = {constant = {value = {lval = 2384209568, dval = 1.8324603236430648e-311, str = {val = 0x35f8e1c26a0 "", len = -1910757728}, ht = 0x35f8e1c26a0, obj = {handle = 2384209568, handlers = 0x35f8e1c26a0}}, refcount__gc = 1741996312, type = 114 'r', is_ref__gc = 0 '\000'}, var = 2384209568, opline_num = 2384209568, op_array = 0x35f8e1c26a0, jmp_addr = 0x35f8e1c26a0, EA = {var = 2384209568, type = 863}}}, {op_type = -1918243210, u = {constant = {value = {lval = 204659704, dval = 2.1029989441754193e-311, str = {val = 0x3df0c32dbf8 "\200\361\062\f\337\003", len = 8}, ht = 0x3df0c32dbf8, obj = {handle = 204659704, handlers = 0x3df00000008}}, refcount__gc = 0, type = 114 'r', is_ref__gc = 0 '\000'}, var = 204659704, opline_num = 204659704, op_array = 0x3df0c32dbf8, jmp_addr = 0x3df0c32dbf8, EA = {var = 204659704, type = 991}}}, {op_type = 0, u = {constant = {value = {lval = 0, dval = 0, str = {val = 0x0, len = 0}, ht = 0x0, obj = {handle = 0, handlers = 0x0}}, refcount__gc = 0, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 0, opline_num = 0, op_array = 0x0, jmp_addr = 0x0, EA = {var = 0, type = 0}}}, {op_type = 0, u = {constant = {value = {lval = 0, dval = 1.83128236760303e-311, str = {val = 0x35f00000000 <Address 0x35f00000000 out of bounds>, len = 0}, ht = 0x35f00000000, obj = {handle = 0, handlers = 0x4000000000}}, refcount__gc = 1745856320, type = 114 'r', is_ref__gc = 0 '\000'}, var = 0, opline_num = 0, op_array = 0x35f00000000, jmp_addr = 0x35f00000000, EA = {var = 0, type = 863}}}, {op_type = 0, u = {constant = {value = {lval = 0, dval = 0, str = {val = 0x0, len = 0}, ht = 0x0, obj = {handle = 0, handlers = 0x0}}, refcount__gc = 1, type = 255 '\377', is_ref__gc = 255 '\377'}, var = 0, opline_num = 0, op_array = 0x0, jmp_addr = 0x0, EA = {var = 0, type = 0}}}, {op_type = 1, u = {constant = {value = {lval = 1, dval = 4.9406564584124654e-324, str = {val = 0x1 <Address 0x1 out of bounds>, len = 1}, ht = 0x1, obj = {handle = 1, handlers = 0x100000001}}, refcount__gc = 8, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 1, opline_num = 1, op_array = 0x1, jmp_addr = 0x1, EA = {var = 1, type = 0}}}, {op_type = 0, u = {constant = {value = {lval = 8, dval = 3.9525251667299724e-323, str = {val = 0x8 <Address 0x8 out of bounds>, len = 0}, ht = 0x8, obj = {handle = 8, handlers = 0x0}}, refcount__gc = 204665216, type = 223 '\337', is_ref__gc = 3 '\003'}, var = 8, opline_num = 8, op_array = 0x8, jmp_addr = 0x8, EA = {var = 8, type = 0}}}, {op_type = 204665088, u = {constant = {value = {lval = 8, dval = 3.9525251667299724e-323, str = {val = 0x8 <Address 0x8 out of bounds>, len = -1919598815}, ht = 0x8, obj = {handle = 8, handlers = 0x35f8d953f21}}, refcount__gc = 204664752, type = 223 '\337', is_ref__gc = 3 '\003'}, var = 8, opline_num = 8, op_array = 0x8, jmp_addr = 0x8, EA = {var = 8, type = 0}}}, {op_type = 171, u = {constant = {value = {lval = 204665088, dval = 2.1029989468354687e-311, str = {val = 0x3df0c32f100 "w", len = 204671824}, ht = 0x3df0c32f100, obj = {handle = 204665088, handlers = 0x3df0c330b50}}, refcount__gc = 1741996312, type = 114 'r', is_ref__gc = 0 '\000'}, var = 204665088, opline_num = 204665088, op_array = 0x3df0c32f100, jmp_addr = 0x3df0c32f100, EA = {var = 204665088, type = 991}}}, {op_type = 0, u = {constant = {value = {lval = 1895003256, dval = 1.8322186236105769e-311, str = {val = 0x35f70f37478 "locales/om/BaseVariables.php", len = 386803274}, ht = 0x35f70f37478, obj = {handle = 1895003256, handlers = 0x944f6de7170e264a}}, refcount__gc = 0, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 1895003256, opline_num = 1895003256, op_array = 0x35f70f37478, jmp_addr = 0x35f70f37478, EA = {var = 1895003256, type = 863}}}, {op_type = 204665216, u = {constant = {value = {lval = 204665088, dval = 2.1029989468354687e-311, str = {val = 0x3df0c32f100 "w", len = 8}, ht = 0x3df0c32f100, obj = {handle = 204665088, handlers = 0x8}}, refcount__gc = 2692621898, type = 130 '\202', is_ref__gc = 117 'u'}, var = 204665088, opline_num = 204665088, op_array = 0x3df0c32f100, jmp_addr = 0x3df0c32f100, EA = {var = 204665088, type = 991}}}, {op_type = 1783768650, u = {constant = {value = {lval = 0, dval = 2.4190752017004104e-312, str = {val = 0x7200000000 <Address 0x7200000000 out of bounds>, len = -1917956777}, ht = 0x7200000000, obj = {handle = 0, handlers = 0x35f8dae4d57}}, refcount__gc = 1741995880, type = 114 'r', is_ref__gc = 0 '\000'}, var = 0, opline_num = 0, op_array = 0x7200000000, jmp_addr = 0x7200000000, EA = {var = 0, type = 114}}}, {op_type = 1741995880, u = {constant = {value = {lval = 1739457600, dval = 2.4276692641259851e-312, str = {val = 0x7267ae0440 "", len = -1816062614}, ht = 0x7267ae0440, obj = {handle = 1739457600, handlers = 0x35f93c1156a}}, refcount__gc = 4, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 1739457600, opline_num = 1739457600, op_array = 0x7267ae0440, jmp_addr = 0x7267ae0440, EA = {var = 1739457600, type = 114}}}, {op_type = 1895002376, u = {constant = {value = {lval = 1729579840, dval = 2.4276204615072464e-312, str = {val = 0x7267174b40 "\001", len = -1917956777}, ht = 0x7267174b40, obj = {handle = 1729579840, handlers = 0x35f8dae4d57}}, refcount__gc = 1741996080, type = 114 'r', is_ref__gc = 0 '\000'}, var = 1729579840, opline_num = 1729579840, op_array = 0x7267174b40, jmp_addr = 0x7267174b40, EA = {var = 1729579840, type = 114}}}, {op_type = 1741996080, u = {constant = {value = {lval = 4, dval = 1.9762625833649862e-323, str = {val = 0x4 <Address 0x4 out of bounds>, len = 204655540}, ht = 0x4, obj = {handle = 4, handlers = 0x3df0c32cbb4}}, refcount__gc = 204603450, type = 223 '\337', is_ref__gc = 3 '\003'}, var = 4, opline_num = 4, op_array = 0x4, jmp_addr = 0x4, EA = {var = 4, type = 0}}}, {op_type = 0, u = {constant = {value = {lval = 204665216, dval = 2.1029989468987091e-311, str = {val = 0x3df0c32f180 "L\201xgr\001", len = 204664544}, ht = 0x3df0c32f180, obj = {handle = 204665216, handlers = 0x3df0c32eee0}}, refcount__gc = 0, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 204665216, opline_num = 204665216, op_array = 0x3df0c32f180, jmp_addr = 0x3df0c32f180, EA = {var = 204665216, type = 991}}}, {op_type = 0, u = {constant = {value = {lval = 8191, dval = 4.0468917050856504e-320, str = {val = 0x1fff <Address 0x1fff out of bounds>, len = 8}, ht = 0x1fff, obj = {handle = 8191, handlers = 0x8}}, refcount__gc = 0, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 8191, opline_num = 8191, op_array = 0x1fff, jmp_addr = 0x1fff, EA = {var = 8191, type = 0}}}, {op_type = -2055937305, u = {constant = {value = {lval = 2, dval = 9.9608454655769869e+174, str = {val = 0x6444230000000002 <Address 0x6444230000000002 out of bounds>, len = 1734806832}, ht = 0x6444230000000002, obj = {handle = 2, handlers = 0x7267670d30}}, refcount__gc = 2107479712, type = 95 '_', is_ref__gc = 3 '\003'}, var = 2, opline_num = 2, op_array = 0x6444230000000002, jmp_addr = 0x6444230000000002, EA = {var = 2, type = 1682187008}}}, {op_type = 204665088, u = {constant = {value = {lval = 1741996312, dval = 2.4276818070298239e-312, str = {val = 0x7267d4c118 "\002", len = 204671824}, ht = 0x7267d4c118, obj = {handle = 1741996312, handlers = 0x80c330b50}}, refcount__gc = 1861378096, type = 95 '_', is_ref__gc = 3 '\003'}, var = 1741996312, opline_num = 1741996312, op_array = 0x7267d4c118, jmp_addr = 0x7267d4c118, EA = {var = 1741996312, type = 114}}}, {op_type = 1895003256, u = {constant = {value = {lval = 1895002256, dval = 1.8322186231165113e-311, str = {val = 0x35f70f37090 "", len = 204671824}, ht = 0x35f70f37090, obj = {handle = 1895002256, handlers = 0x3df0c330b50}}, refcount__gc = 204671824, type = 223 '\337', is_ref__gc = 3 '\003'}, var = 1895002256, opline_num = 1895002256, op_array = 0x35f70f37090, jmp_addr = 0x35f70f37090, EA = {var = 1895002256, type = 863}}}, {op_type = 1734864984, u = {constant = {value = {lval = 4294967295, dval = 2.1219957904712067e-314, str = {val = 0xffffffff <Address 0xffffffff out of bounds>, len = -1910757320}, ht = 0xffffffff, obj = {handle = 4294967295, handlers = 0x35f8e1c2838}}, refcount__gc = 204665296, type = 223 '\337', is_ref__gc = 3 '\003'}, var = 4294967295, opline_num = 4294967295, op_array = 0xffffffff, jmp_addr = 0xffffffff, EA = {var = 4294967295, type = 0}}}, {op_type = 0, u = {constant = {value = {lval = 0, dval = 0, str = {val = 0x0, len = -1917958511}, ht = 0x0, obj = {handle = 0, handlers = 0x35f8dae4691}}, refcount__gc = 0, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 0, opline_num = 0, op_array = 0x0, jmp_addr = 0x0, EA = {var = 0, type = 0}}}, {op_type = 0, u = {constant = {value = {lval = 0, dval = 0, str = {val = 0x0, len = 0}, ht = 0x0, obj = {handle = 0, handlers = 0x0}}, refcount__gc = 1740180784, type = 114 'r', is_ref__gc = 0 '\000'}, var = 0, opline_num = 0, op_array = 0x0, jmp_addr = 0x0, EA = {var = 0, type = 0}}}, {op_type = -2055936005, u = {constant = {value = {lval = 2, dval = -1726.3876953125005, str = {val = 0xc09af98d00000002 <Address 0xc09af98d00000002 out of bounds>, len = 6}, ht = 0xc09af98d00000002, obj = {handle = 2, handlers = 0x6}}, refcount__gc = 12, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 2, opline_num = 2, op_array = 0xc09af98d00000002, jmp_addr = 0xc09af98d00000002, EA = {var = 2, type = 3231381901}}}}
        yyvs = 0x35f948877a5
        yyvsp = 0x3df0c32c5e0
        yystacksize = 200
        yyval = {op_type = 204666848, u = {constant = {value = {lval = 1, dval = 2.4190752017053511e-312, str = {val = 0x7200000001 <Address 0x7200000001 out of bounds>, len = 1744159904}, ht = 0x7200000001, obj = {handle = 1, handlers = 0x7267f5c4a0}}, refcount__gc = 7, type = 3 '\003', is_ref__gc = 0 '\000'}, var = 1, opline_num = 1, op_array = 0x7200000001, jmp_addr = 0x7200000001, EA = {var = 1, type = 114}}}
        yylen = 991
#3  0x0000035f8da9ee22 in compile_file (file_handle=<incomplete type>, type=5000) at Zend/zend_language_scanner.l:364
        original_lex_state = {yy_leng = 2, yy_start = <incomplete type>, yy_text = <incomplete type>, yy_cursor = <incomplete type>, yy_marker = <incomplete type>, yy_limit = <incomplete type>, yy_state = 0, state_stack = {top = 0, max = 863, elements = 0x4000000000}, in = <incomplete type>, lineno = 0, filename = 0x0}
        original_active_op_array = 0x0
        retval = 0x0
        compiler_result = 204666848
        compilation_successful = 1 '\001'
        retval_znode = {op_type = 0, u = {constant = {value = {lval = 1, dval = -nan(0xfffff00000001), str = {val = 0xffffffff00000001 <Address 0xffffffff00000001 out of bounds>, len = 1}, ht = 0xffffffff00000001, obj = {handle = 1, handlers = 0x1}}, refcount__gc = 1894651928, type = 95 '_', is_ref__gc = 3 '\003'}, var = 1, opline_num = 1, op_array = 0xffffffff00000001, jmp_addr = 0xffffffff00000001, EA = {var = 1, type = 4294967295}}}
        original_in_compilation = 0 '\000'
#4  0x0000035f8d953f21 in phar_compile_file (file_handle=<incomplete type>, type=114) at /tmp/buildd/php5-5.3.3/ext/phar/phar.c:3393
        __orig_bailout = <incomplete type>
        __bailout = {{__jmpbuf = {0, 2, 1744095272, 114, 387589706, 2488233447, 1895035464, 863}, __mask_was_saved = 1783768650, __saved_mask = {__val = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2478904682, 863, 0, 0, 0, 0}}}}
        res = 0x3df0c330b50
        name = 0x2 <Address 0x2 out of bounds>
        failed = 0
        phar = 0x7267667bd0
#5  0x0000035f8574e2e7 in ?? () from /usr/lib/php5/20090626/xcache.so
No symbol table info available.
#6  0x0000035f85754434 in ?? () from /usr/lib/php5/20090626/xcache.so
No symbol table info available.
#7  0x0000035f8da9e6ae in compile_filename (type=2, filename=0x7267edd148) at Zend/zend_language_scanner.l:407
        file_handle = {type = 1749232384, filename = 0x4 <Address 0x4 out of bounds>, opened_path = 0x7267f4c828 "/var/www/dec-project/init/../../dec-project/tmp/bdd/genreAndPluriels.php", handle = {fd = 1743757888, fp = 0x7267efa240, stream = {handle = 0x7267efa240, isatty = 1745959808, mmap = {len = 0, pos = 251781, map = 0x0, buf = 0x0, old_handle = 0x35f9484a000, old_closer = 0}, reader = 0, fsizer = 0x35f8da88a90 <_php_stream_read>, closer = 0x35f8da70490 <php_zend_stream_fsizer>}}, free_filename = 128 '\200'}
        tmp = {value = {lval = 2376111672, dval = 1.8324563227508476e-311, str = {val = 0x35f8da09638 "H\203\304\020[\303f\220SH\211\363H\215\065\320m\025", len = 1744095272}, ht = 0x35f8da09638, obj = {handle = 2376111672, handlers = 0x7267f4c828}}, refcount__gc = 2376860979, type = 72 'H', is_ref__gc = 0 '\000'}
        retval = 0x2
#8  0x0000035f8daf2d42 in ZEND_INCLUDE_OR_EVAL_SPEC_CV_HANDLER (execute_data=0x7267ba2568) at /tmp/buildd/php5-5.3.3/Zend/zend_vm_execute.h:22475
        opline = 0x35f70f3f248
        new_op_array = 0x1388
        return_value_used = 1
        inc_filename = 0x7267edd148
        tmp_inc_filename = {value = {lval = 1738384720, dval = 2.427663963394484e-312, str = {val = 0x72679da550 "\002\303\352gr", len = 0}, ht = 0x72679da550, obj = {handle = 1738384720, handlers = 0x0}}, refcount__gc = 2377403483, type = 95 '_', is_ref__gc = 3 '\003'}
        failure_retval = 0 '\000'
#9  0x0000035f8daec430 in execute (op_array=0x72679da550) at /tmp/buildd/php5-5.3.3/Zend/zend_vm_execute.h:107
        ret = -1803010047
        execute_data = 0x7267ba2568
        nested = 0 '\000'
        original_in_execution = 0 '\000'
#10 0x0000035f8dac3c1d in zend_execute_scripts (type=0, retval=0x3df0c32fa80, file_count=3) at /tmp/buildd/php5-5.3.3/Zend/zend.c:1266
        files = {{gp_offset = 0, fp_offset = 0, overflow_arg_area = 0x28, reg_save_area = 0x3df0c32fb10}}
        i = 1
        file_handle = 0x3df0c331e30
        orig_op_array = 0x0
        orig_retval_ptr_ptr = 0x35f8e1c2490
#11 0x0000035f8da6f258 in php_execute_script (primary_file=0x726765c7a8) at /tmp/buildd/php5-5.3.3/main/main.c:2289
        __orig_bailout = 0x72681d9ad8
        __bailout = {{__jmpbuf = {1713, 0, 64775, 4326208, 1324373834, 0, 1272, 0}, __mask_was_saved = 0, __saved_mask = {__val = {2418905319, 863, 0, 0, 2315659520, 1, 204663280, 991, 2376840578, 863, 2107428912, 863, 204663280, 991, 1746797088, 114}}}}
        prepend_file_p = 0x0
        append_file_p = 0x0
        prepend_file = {type = 1746797488, filename = 0x35f8daaeae0 "ATH\211\320I\211\314USH\211\363H\203\354 \213n\030H\213J\020H\213\060\213R\bL\215D$\030\350\350\216\333\377\203\370\377\017\204\377\002", opened_path = 0x3df0c32eb00 "h\264\246gr", handle = {fd = -1918177611, fp = 0x35f8daaeeb5, stream = {handle = 0x35f8daaeeb5, isatty = 1740254320, mmap = {len = 1729582256, pos = 2481892928, map = 0x72681e0da8, buf = 0x7267a6b428 "\270", old_handle = 0x7267a6b468, old_closer = 0x72681e03e0}, reader = 0x35f8dad2661 <zend_hash_merge_ex+113>, fsizer = 0x35f902d892f, closer = 0x72671754b0}}, free_filename = 20 '\024'}
        append_file = {type = ZEND_HANDLE_FILENAME, filename = 0x72704eb0159a647c <Address 0x72704eb0159a647c out of bounds>, opened_path = 0x646c69756270616d <Address 0x646c69756270616d out of bounds>, handle = {fd = 29285, fp = 0x7265, stream = {handle = 0x7265, isatty = 0, mmap = {len = 4, pos = 1740254320, map = 0x35f8dad2339, buf = 0x1009ccc58 <Address 0x1009ccc58 out of bounds>, old_handle = 0x3df0c32eb68, old_closer = 0x35f75cf06d0}, reader = 0xb00000070, fsizer = 0x35f93eeae98, closer = 0x7267acb550}}, free_filename = 2 '\002'}
        retval = 0
#12 0x0000035f8db5186d in php_handler (r=0x35f8db5186d) at /tmp/buildd/php5-5.3.3/sapi/apache2handler/sapi_apache2.c:688
        __bailout = {{__jmpbuf = {1726880920, 114, 1726366536, 114, 387327562, 2488233447, 1732598696, 114}, __mask_was_saved = 874391114, __saved_mask = {__val = {0, 4294967295, 4294967295, 4294967295, 0, 0, 23, 0, 1734718880, 114, 1734714208, 114, 24, 0, 0, 0}}}}
        ctx = 0x7267667b38
        conf = 0x7267455ba8
        brigade = 0x0
        bucket = 0x35f94884001
        rv = -1803010047
        parent_req = 0x1
#13 0x0000007266bee668 in ap_run_handler (r=0x7267455ba8) at config.c:159
        pHook = <optimized out>
        n = <optimized out>
        rv = -1
#14 0x0000007266beeade in ap_invoke_handler (r=0x7267455ba8) at config.c:377
        handler = <optimized out>
        p = <optimized out>
        result = <optimized out>
        old_handler = 0x0
        ignore = <optimized out>
#15 0x0000007266bfdd2c in ap_internal_redirect (new_uri=<optimized out>, r=<optimized out>) at http_request.c:554
        new = 0x7267455ba8
        access_status = <optimized out>
#16 0x0000035f8b3b1a05 in handler_redirect (r=0x726745c610) at mod_rewrite.c:4860
No locals.
#17 0x0000007266bee668 in ap_run_handler (r=0x726745c610) at config.c:159
        pHook = <optimized out>
        n = <optimized out>
        rv = -1
#18 0x0000007266beeade in ap_invoke_handler (r=0x726745c610) at config.c:377
        handler = <optimized out>
        p = <optimized out>
        result = <optimized out>
        old_handler = 0x35f8b3b7bdd "redirect-handler"
        ignore = <optimized out>
#19 0x0000007266bfe6b0 in ap_process_request (r=0x726745c610) at http_request.c:282
        access_status = <optimized out>
#20 0x0000007266bfb4f8 in ap_process_http_connection (c=0x726743f480) at http_core.c:190
        r = 0x726745c610
        csd = 0x0
#21 0x0000007266bf50e8 in ap_run_process_connection (c=0x726743f480) at connection.c:43
        pHook = <optimized out>
        n = <optimized out>
        rv = -1
#22 0x0000007266c032af in child_main (child_num_arg=<optimized out>) at prefork.c:667
        current_conn = 0x726743f480
        csd = 0x726743f290
        ptrans = 0x726743f218
        allocator = 0x726743d110
        status = <optimized out>
        i = <optimized out>
        lr = <optimized out>
        pollset = 0x726743d310
        sbh = 0x726743d308
        bucket_alloc = 0x7267443238
        last_poll_idx = 1
#23 0x0000007266c03a0a in make_child (slot=1, s=0x7266e37758) at prefork.c:768
        pid = 0
#24 make_child (s=0x7266e37758, slot=1) at prefork.c:696
No locals.
#25 0x0000007266c045bf in perform_idle_server_maintenance (p=<optimized out>) at prefork.c:903
        i = <optimized out>
        idle_count = <optimized out>
        ws = <optimized out>
        free_length = <optimized out>
        free_slots = {1, 19, 85, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 103, 104, 106, 107, 108, 110, 111, 112, 113, 115, 116, 117, 118, 119, 120, 121}
        last_non_dead = <optimized out>
        total_non_dead = <optimized out>
#26 ap_mpm_run (_pconf=<optimized out>, plog=<optimized out>, s=<optimized out>) at prefork.c:1107
        status = 0
        pid = {pid = -1, in = 0x0, out = 0x0, err = 0x7266e2ae30}
        child_slot = <optimized out>
        exitwhy = APR_PROC_EXIT
        processed_status = <optimized out>
        index = <optimized out>
        remaining_children_to_start = 0
        rv = <optimized out>
#27 0x0000007266bd9698 in main (argc=3, argv=0x3df0c3324a8) at main.c:755
        c = 0 '\000'
        configtestonly = <optimized out>
        confname = 0x7266c05ffa "apache2.conf"
        def_server_root = 0x7266c05fed "/etc/apache2"
        temp_error_log = 0x0
        error = <optimized out>
        process = 0x7266e2f038
        server_conf = 0x7266e37758
        pglobal = <optimized out>
        pconf = 0x7266e30f58
        plog = 0x7266e650f8
        ptemp = 0x7266e38f98
        pcommands = 0x7266e32f68
        opt = 0x7266e33058
        rv = 0
        mod = <optimized out>
        optarg = 0x3 <Address 0x3 out of bounds>
        signal_server = <optimized out>



[New LWP 31228]
Core was generated by `/usr/sbin/apache2 -k start'.
Program terminated with signal 3, Quit.
#0  0x000002c3429d89d3 in ?? ()

Thread 1 (LWP 31228):
#0  0x000002c3429d89d3 in ?? ()
No symbol table info available.
#1  0x00000000ffffffff in ?? ()
No symbol table info available.
#2  0x000002c33cc59927 in ?? ()
No symbol table info available.
#3  0x0000000000000007 in ?? ()
No symbol table info available.
#4  0x0000000000000000 in ?? ()
No symbol table info available.



[New LWP 21696]
[Thread debugging using libthread_db enabled]
Core was generated by `/usr/sbin/apache2 -k start'.
Program terminated with signal 9, Killed.
#0  0x0000027776831720 in ?? ()

Thread 1 (Thread 0x27784770740 (LWP 21696)):
#0  0x0000027776831720 in ?? ()
No symbol table info available.
#1  0x000002777b85f53f in ?? () from /usr/lib/libcrypto.so.0.9.8
No symbol table info available.
#2  0x0000027779656a29 in Curl_ossl_cleanup () from /usr/lib/libcurl.so.4
No symbol table info available.
#3  0x000002777966ba72 in Curl_ssl_cleanup () from /usr/lib/libcurl.so.4
No symbol table info available.
#4  0x000002777965f2a5 in curl_global_cleanup () from /usr/lib/libcurl.so.4
No symbol table info available.
#5  0x0000027779891769 in zm_shutdown_curl (type=9, module_number=1) at /tmp/buildd/php5-5.3.3/ext/curl/interface.c:869
No locals.
#6  0x000002777d884bff in module_destructor (module=0x49dbdd960) at /tmp/buildd/php5-5.3.3/Zend/zend_API.c:2098
No locals.
#7  0x000002777d88ba22 in zend_hash_apply_deleter (ht=0x2777df7d9c0, p=0x49dbdd900) at /tmp/buildd/php5-5.3.3/Zend/zend_hash.c:813
        retval = 0x0
#8  0x000002777d88bca8 in zend_hash_graceful_reverse_destroy (ht=0x2777df7d9c0) at /tmp/buildd/php5-5.3.3/Zend/zend_hash.c:848
        p = 0x1
#9  0x000002777d87f945 in zend_shutdown () at /tmp/buildd/php5-5.3.3/Zend/zend.c:831
No locals.
#10 0x000002777d82a40d in php_module_shutdown () at /tmp/buildd/php5-5.3.3/main/main.c:2167
No locals.
#11 0x000002777d82a4b9 in php_module_shutdown_wrapper (sapi_globals=0x9) at /tmp/buildd/php5-5.3.3/main/main.c:2139
No locals.
#12 0x000002777d90b5d1 in php_apache_child_shutdown (tmp=0x9) at /tmp/buildd/php5-5.3.3/sapi/apache2handler/sapi_apache2.c:399
No locals.
#13 0x0000027783ee546b in run_cleanups () from /usr/lib/libapr-1.so.0
No symbol table info available.
#14 0x0000027783ee4339 in apr_pool_destroy () from /usr/lib/libapr-1.so.0
No symbol table info available.
#15 0x000000049d5e9f6e in clean_child_exit (code=0) at prefork.c:196
No locals.
#16 0x000000049d5ea48b in just_die (sig=<optimized out>) at prefork.c:328
No locals.
#17 <signal handler called>
No symbol table info available.
#18 0x0000027783a0c9d3 in poll () from /lib/libc.so.6
No symbol table info available.
#19 0x000002777682884f in ?? ()
No symbol table info available.
#20 0x0000038801b63a90 in ?? ()
No symbol table info available.
#21 0x4faa7a9a768337d7 in ?? ()
No symbol table info available.
#22 0x0001000900000030 in ?? ()
No symbol table info available.
#23 0x0000000000000000 in ?? ()
No symbol table info available.



[New LWP 21482]
[Thread debugging using libthread_db enabled]
Core was generated by `/usr/sbin/apache2 -k start'.
Program terminated with signal 9, Killed.
#0  0x00000296520bb720 in ?? ()

Thread 1 (Thread 0x2965fffa740 (LWP 21482)):
#0  0x00000296520bb720 in ?? ()
No symbol table info available.
#1  0x00000296570e953f in ?? () from /usr/lib/libcrypto.so.0.9.8
No symbol table info available.
#2  0x0000029654ee0a29 in Curl_ossl_cleanup () from /usr/lib/libcurl.so.4
No symbol table info available.
#3  0x0000029654ef5a72 in Curl_ssl_cleanup () from /usr/lib/libcurl.so.4
No symbol table info available.
#4  0x0000029654ee92a5 in curl_global_cleanup () from /usr/lib/libcurl.so.4
No symbol table info available.
#5  0x000002965511b769 in zm_shutdown_curl (type=9, module_number=1) at /tmp/buildd/php5-5.3.3/ext/curl/interface.c:869
No locals.
#6  0x000002965910ec7f in module_destructor (module=0x6d7c8adc30) at /tmp/buildd/php5-5.3.3/Zend/zend_API.c:2098
No locals.
#7  0x0000029659115aa2 in zend_hash_apply_deleter (ht=0x296598079c0, p=0x6d7c8adbd0) at /tmp/buildd/php5-5.3.3/Zend/zend_hash.c:813
        retval = 0x0
#8  0x0000029659115d28 in zend_hash_graceful_reverse_destroy (ht=0x296598079c0) at /tmp/buildd/php5-5.3.3/Zend/zend_hash.c:848
        p = 0x1
#9  0x00000296591099c5 in zend_shutdown () at /tmp/buildd/php5-5.3.3/Zend/zend.c:831
No locals.
#10 0x00000296590b445d in php_module_shutdown () at /tmp/buildd/php5-5.3.3/main/main.c:2167
No locals.
#11 0x00000296590b4509 in php_module_shutdown_wrapper (sapi_globals=0x9) at /tmp/buildd/php5-5.3.3/main/main.c:2139
No locals.
#12 0x0000029659195651 in php_apache_child_shutdown (tmp=0x9) at /tmp/buildd/php5-5.3.3/sapi/apache2handler/sapi_apache2.c:399
No locals.
#13 0x000002965f76f46b in run_cleanups () from /usr/lib/libapr-1.so.0
No symbol table info available.
#14 0x000002965f76e339 in apr_pool_destroy () from /usr/lib/libapr-1.so.0
No symbol table info available.
#15 0x0000006d7c2bdf6e in clean_child_exit (code=0) at prefork.c:196
No locals.
#16 0x0000006d7c2be48b in just_die (sig=<optimized out>) at prefork.c:328
No locals.
#17 <signal handler called>
No symbol table info available.
#18 0x000002965f2969d3 in poll () from /lib/libc.so.6
No symbol table info available.
#19 0x00000296520b284f in ?? ()
No symbol table info available.
#20 0x000002965f52fe40 in ?? () from /lib/libc.so.6
No symbol table info available.
#21 0xffffffff000000c8 in ?? ()
No symbol table info available.
#22 0x0001000900000030 in ?? ()
No symbol table info available.
#23 0x0000006d7cc9c548 in ?? ()
No symbol table info available.
#24 0x0000000000000000 in ?? ()
No symbol table info available.



[New LWP 20945]
[Thread debugging using libthread_db enabled]
Core was generated by `/usr/sbin/apache2 -k start'.
Program terminated with signal 9, Killed.
#0  0x0000027776831720 in ?? ()

Thread 1 (Thread 0x27784770740 (LWP 20945)):
#0  0x0000027776831720 in ?? ()
No symbol table info available.
#1  0x000002777b85f53f in ?? () from /usr/lib/libcrypto.so.0.9.8
No symbol table info available.
#2  0x0000027779656a29 in Curl_ossl_cleanup () from /usr/lib/libcurl.so.4
No symbol table info available.
#3  0x000002777966ba72 in Curl_ssl_cleanup () from /usr/lib/libcurl.so.4
No symbol table info available.
#4  0x000002777965f2a5 in curl_global_cleanup () from /usr/lib/libcurl.so.4
No symbol table info available.
#5  0x0000027779891769 in zm_shutdown_curl (type=9, module_number=1) at /tmp/buildd/php5-5.3.3/ext/curl/interface.c:869
No locals.
#6  0x000002777d884bff in module_destructor (module=0x49dbdd960) at /tmp/buildd/php5-5.3.3/Zend/zend_API.c:2098
No locals.
#7  0x000002777d88ba22 in zend_hash_apply_deleter (ht=0x2777df7d9c0, p=0x49dbdd900) at /tmp/buildd/php5-5.3.3/Zend/zend_hash.c:813
        retval = 0x49e42a766
#8  0x000002777d88bca8 in zend_hash_graceful_reverse_destroy (ht=0x2777df7d9c0) at /tmp/buildd/php5-5.3.3/Zend/zend_hash.c:848
        p = 0x1
#9  0x000002777d87f945 in zend_shutdown () at /tmp/buildd/php5-5.3.3/Zend/zend.c:831
No locals.
#10 0x000002777d82a40d in php_module_shutdown () at /tmp/buildd/php5-5.3.3/main/main.c:2167
No locals.
#11 0x000002777d82a4b9 in php_module_shutdown_wrapper (sapi_globals=0x9) at /tmp/buildd/php5-5.3.3/main/main.c:2139
No locals.
#12 0x000002777d90b5d1 in php_apache_child_shutdown (tmp=0x9) at /tmp/buildd/php5-5.3.3/sapi/apache2handler/sapi_apache2.c:399
No locals.
#13 0x0000027783ee546b in run_cleanups () from /usr/lib/libapr-1.so.0
No symbol table info available.
#14 0x0000027783ee4339 in apr_pool_destroy () from /usr/lib/libapr-1.so.0
No symbol table info available.
#15 0x000000049d5e9f6e in clean_child_exit (code=0) at prefork.c:196
No locals.
#16 0x000000049d5ea48b in just_die (sig=<optimized out>) at prefork.c:328
No locals.
#17 <signal handler called>
No symbol table info available.
#18 0x000002778433787e in ?? () from /lib/x86_64-linux-gnu/libpcre.so.3
No symbol table info available.
#19 0x0000027784337ceb in ?? () from /lib/x86_64-linux-gnu/libpcre.so.3
No symbol table info available.
#20 0x000002778433960e in ?? () from /lib/x86_64-linux-gnu/libpcre.so.3
No symbol table info available.
#21 0x00000277843407ba in ?? () from /lib/x86_64-linux-gnu/libpcre.so.3
No symbol table info available.
#22 0x000002778434877c in pcre_exec () from /lib/x86_64-linux-gnu/libpcre.so.3
No symbol table info available.
#23 0x000002777d673aa8 in php_pcre_match_impl (pce=0x38801b63df8, subject=0x49eaea068 "#technicalSheet~ft.*&id=([^<]*)&#i", subject_len=4, return_value=0x200000006, subpats=0x0, global=0, use_flags=2103919725, flags=0, start_offset=0) at /tmp/buildd/php5-5.3.3/ext/pcre/php_pcre.c:618
        result_set = 0x49e42a780
        match_sets = 0x38801b63df8
        extra = 0x9eaea068
        extra_data = {flags = 28720640, study_data = 0x12, match_limit = 28720688, callout_data = 0x186a0, tables = 0x0, match_limit_recursion = 28720736}
        exoptions = 904
        count = 0
        num_subpats = 631
        matched = -1633109232
        g_notempty = 0
        stringlist = 0x38801b63e30
        subpat_names = 0x0
        i = 0
        rc = 1
        subpats_order = 0
        offset_capture = 0
        flags = 2656372240
        start_offset = 0
#24 0x000002777d67446d in php_do_pcre_match (ht=3, return_value=0x49e9f4238, return_value_ptr=0x49ea8bb48, this_ptr=0x4, return_value_used=0, global=0) at /tmp/buildd/php5-5.3.3/ext/pcre/php_pcre.c:512
        regex = 0x49ea8bb10 "/var/www/via/tmp//www.via-mobilis.ro/technicalSheet/ft3/technicalSheet~ft3&ft=piesa-dezmembrari-vehicule-de-mare-tonaj-pneuri&a=michelin&b=second-hand&id=463036&"
        subject = 0x49eada950 "\360f\237\236\004"
        regex_len = 4
        subject_len = -1632722840
        pce = 0x1
        subpats = 0x0
        flags = 0
        start_offset = 2106193553
#25 0x000002777d8d039a in zend_do_fcall_common_helper_SPEC (execute_data=0x49e02b878) at /tmp/buildd/php5-5.3.3/Zend/zend_vm_execute.h:316
        opline = 0x277679bfb40
        should_change_scope = 104 'h'
#26 0x000002777d8a7430 in execute (op_array=0x49e013bd8) at /tmp/buildd/php5-5.3.3/Zend/zend_vm_execute.h:107
        ret = 1
        execute_data = 0x49e02b878
        nested = 0 '\000'
        original_in_execution = 0 '\000'
#27 0x000002777d87ec1d in zend_execute_scripts (type=631, retval=0x38801b64050, file_count=3) at /tmp/buildd/php5-5.3.3/Zend/zend.c:1266
        files = {{gp_offset = 0, fp_offset = 0, overflow_arg_area = 0x38800000028, reg_save_area = 0x38801b640e0}}
        i = 1
        file_handle = 0x38801b66400
        orig_op_array = 0x0
        orig_retval_ptr_ptr = 0x2777df7d490
#28 0x000002777d82a258 in php_execute_script (primary_file=0x0) at /tmp/buildd/php5-5.3.3/main/main.c:2289
        __orig_bailout = 0x2777d87f945
        __bailout = {{__jmpbuf = {28716880, 904, 2105713677, 631, 0, 0, 2105713849, 631}, __mask_was_saved = -1211975742, __saved_mask = {__val = {2648857656, 4, 2648857376, 4, 2648857744, 4, 28716944, 904, 2213430073, 631, 780521632, 1819112552, 2648857624, 4, 1819112552, 38}}}}
        prepend_file_p = 0x0
        append_file_p = 0x0
        prepend_file = {type = 2661858224, filename = 0x49ea8bb48 "technicalSheet~ft3&ft=piesa-dezmembrari-vehicule-de-mare-tonaj-pneuri&a=michelin&b=second-hand&id=463036&", opened_path = 0x1 <Address 0x1 out of bounds>, handle = {fd = 4, fp = 0x4, stream = {handle = 0x4, isatty = 28718192, mmap = {len = 2217965694, pos = 514, map = 0x33, buf = 0x0, old_handle = 0x0, old_closer = 0}, reader = 0, fsizer = 0x38801b63180, closer = 0x50}}, free_filename = 32 ' '}
        append_file = {type = ZEND_HANDLE_FD, filename = 0x0, opened_path = 0x0, handle = {fd = 2, fp = 0x27700000002, stream = {handle = 0x27700000002, isatty = 0, mmap = {len = 0, pos = 2, map = 0x0, buf = 0x3c <Address 0x3c out of bounds>, old_handle = 0x49e42a766, old_closer = 0x1}, reader = 0x49e42a730, fsizer = 0, closer = 0x49ea8bbb0}}, free_filename = 0 '\000'}
        retval = 0
#29 0x000002777d90c86d in php_handler (r=0x2777d90c86d) at /tmp/buildd/php5-5.3.3/sapi/apache2handler/sapi_apache2.c:688
        __bailout = {{__jmpbuf = {2643248952, 4, 2644026960, 4, 347986395, 2472369835, 2656293488, 4}, __mask_was_saved = -1749689893, __saved_mask = {__val = {0, 4294967295, 4294967295, 4294967295, 0, 0, 23, 0, 2656300712, 4, 2656297144, 4, 24, 0, 0, 0}}}}
        ctx = 0x49dfbdd58
        conf = 0x49e53d270
        brigade = 0x0
        bucket = 0x1
        rv = 1
        parent_req = 0x1
#30 0x000000049d5d5668 in ap_run_handler (r=0x49e53d270) at config.c:159
        pHook = <optimized out>
        n = <optimized out>
        rv = -1
#31 0x000000049d5d5ade in ap_invoke_handler (r=0x49e53d270) at config.c:377
        handler = <optimized out>
        p = <optimized out>
        result = <optimized out>
        old_handler = 0x0
        ignore = <optimized out>
#32 0x000000049d5e4d2c in ap_internal_redirect (new_uri=<optimized out>, r=<optimized out>) at http_request.c:554
        new = 0x49e53d270
        access_status = <optimized out>
#33 0x000002777b16ca05 in handler_redirect (r=0x49de39d20) at mod_rewrite.c:4860
No locals.
#34 0x000000049d5d5668 in ap_run_handler (r=0x49de39d20) at config.c:159
        pHook = <optimized out>
        n = <optimized out>
        rv = -1
#35 0x000000049d5d5ade in ap_invoke_handler (r=0x49de39d20) at config.c:377
        handler = <optimized out>
        p = <optimized out>
        result = <optimized out>
        old_handler = 0x2777b172bdd "redirect-handler"
        ignore = <optimized out>
#36 0x000000049d5e56b0 in ap_process_request (r=0x49de39d20) at http_request.c:282
        access_status = <optimized out>
#37 0x000000049d5e24f8 in ap_process_http_connection (c=0x49de27e90) at http_core.c:190
        r = 0x49de39d20
        csd = 0x0
#38 0x000000049d5dc0e8 in ap_run_process_connection (c=0x49de27e90) at connection.c:43
        pHook = <optimized out>
        n = <optimized out>
        rv = -1
#39 0x000000049d5ea2af in child_main (child_num_arg=<optimized out>) at prefork.c:667
        current_conn = 0x49de27e90
        csd = 0x49de27ca0
        ptrans = 0x49de27c28
        allocator = 0x49de25b20
        status = <optimized out>
        i = <optimized out>
        lr = <optimized out>
        pollset = 0x49de25d20
        sbh = 0x49de25d18
        bucket_alloc = 0x49de2bc48
        last_poll_idx = 1
#40 0x000000049d5eaa0a in make_child (slot=9, s=0x49d8221f8) at prefork.c:768
        pid = 0
#41 make_child (s=0x49d8221f8, slot=9) at prefork.c:696
No locals.
#42 0x000000049d5eb5bf in perform_idle_server_maintenance (p=<optimized out>) at prefork.c:903
        i = <optimized out>
        idle_count = <optimized out>
        ws = <optimized out>
        free_length = <optimized out>
        free_slots = {9, 19, 59, 63, 64, 65, 68, 71, 72, 73, 74, 75, 76, 77, 78, 79, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104}
        last_non_dead = <optimized out>
        total_non_dead = <optimized out>
#43 ap_mpm_run (_pconf=<optimized out>, plog=<optimized out>, s=<optimized out>) at prefork.c:1107
        status = 0
        pid = {pid = -1, in = 0x0, out = 0x0, err = 0x49d8158d0}
        child_slot = <optimized out>
        exitwhy = APR_PROC_EXIT
        processed_status = <optimized out>
        index = <optimized out>
        remaining_children_to_start = 0
        rv = <optimized out>
#44 0x000000049d5c0698 in main (argc=3, argv=0x38801b66a78) at main.c:755
        c = 0 '\000'
        configtestonly = <optimized out>
        confname = 0x49d5ecffa "apache2.conf"
        def_server_root = 0x49d5ecfed "/etc/apache2"
        temp_error_log = 0x0
        error = <optimized out>
        process = 0x49d819ad8
        server_conf = 0x49d8221f8
        pglobal = <optimized out>
        pconf = 0x49d81b9f8
        plog = 0x49d84fb98
        ptemp = 0x49d823a38
        pcommands = 0x49d81da08
        opt = 0x49d81daf8
        rv = 0
        mod = <optimized out>
        optarg = 0x3 <Address 0x3 out of bounds>
        signal_server = <optimized out>



[New LWP 22675]
[Thread debugging using libthread_db enabled]
Core was generated by `/usr/sbin/apache2 -k start'.
Program terminated with signal 7, Bus error.
#0  lex_scan (zendlval=0x3f588335198) at /tmp/buildd/php5-5.3.3/Zend/zend_language_scanner.c:2127
	in /tmp/buildd/php5-5.3.3/Zend/zend_language_scanner.c

Thread 1 (Thread 0x39c443cf740 (LWP 22675)):
#0  lex_scan (zendlval=0x3f588335198) at /tmp/buildd/php5-5.3.3/Zend/zend_language_scanner.c:2127
        yybm = "\000\000\000\000\000\000\000\000\000\300@\000\000@", '\000' <repeats 18 times>"\300, ", '\000' <repeats 15 times>, "8888888888\000\000\000\000\000\000\000((((((", '\b' <repeats 20 times>, "\000\000\000\000\b\000((((((", '\b' <repeats 20 times>, "\000\000\000\000", '\b' <repeats 129 times>
        yych = 70 'F'
        yyaccept = 1143552326
#1  0x0000039c3d4c3db0 in zendlex (zendlval=0x3f588335190) at /tmp/buildd/php5-5.3.3/Zend/zend_compile.c:4947
        retval = 1143552310
#2  0x0000039c3d4adfd7 in zendparse () at /tmp/buildd/php5-5.3.3/Zend/zend_language_parser.c:3280
        zendchar = 1013
        zendlval = {op_type = 1, u = {constant = {value = {lval = 1, dval = 1.2944174324937568e-312, str = {val = 0x3d00000001 <Address 0x3d00000001 out of bounds>, len = 1143552309}, ht = 0x3d00000001, obj = {handle = 1, handlers = 0x39c44293935}}, refcount__gc = 1, type = 156 '\234', is_ref__gc = 3 '\003'}, var = 1, opline_num = 1, op_array = 0x3d00000001, jmp_addr = 0x3d00000001, EA = {var = 1, type = 61}}}
        yystate = 0
        yyn = 1143552310
        yyresult = -2009909632
        yyerrstatus = 1013
        yytoken = 1143552310
        yymsgbuf = "\001\000\000\000\001\000\000\000\020R3\210\365\003\000\000\000\000\000\000\000\000\000\000\030R3\210\365\003\000\000xV/E=\000\000\000\240ƽ=\234\003\000\000 \000\000\000\000\000\000\000\030R3\210\365\003\000\000\037\000\000\000\000\000\000\000\060\337\363D=\000\000\000W\355O=\234\003\000\000\250\026PE=\000\000\000\250\026PE=\000\000\000\310^/E=\000\000\000p\301<E=\000\000\000\240ƽ=\234\003\000"
        yymsg = 0x3f588334e80 ""
        yymsg_alloc = 2285064624
        yyssa = {-31218, 17401, 924, 0, 0, 2, 4, 48, 63, 193, 329, 465, 553, 627, 684, 193, 328, 464, 553, 627, 684, 868, 874, 877, 879, 477, 173, 303, 421, 522, 597, 660, 725, 766, 171, 302, 214, 352, 483, 565, 795, 17246, 924, 0, 0, 0, 0, 0, 11958, 15703, 924, 0, 11958, 15703, 924, 0, 22288, -30669, 1013, 0, 11958, 15703, 924, 0, -27976, 17246, 924, 0, 21584, -30669, 1013, 0, 11958, 15703, 924, 0 <repeats 13 times>, 21692, -30669, 1013, 0, 21632, -30669, 1013, 0, 0, 0, 0, 0, -8400, 17651, 61, 0, -4777, 15695, 924, 0, 23176, 17707, 61, 0, 23176, 17707, 61, 0, 21544, -30669, 1013, 0, -15536, 15805, 924, 0, 7, 0, 0, 0, 0, 0, 0, 0, -12016, 17707, 61, 0, 16, 0, 0, 0, 7, 0, 0, 0, -18532, 15694, 924, 0, 16, 0, 0, 0, 20464, -30669, 1013, 0, 6144, 0, 3, 0, 7, 0, 0, 0, -16192, 15805, 924, 0, 0, 0, 0, 0, 15849, 15703, 924, 0, 5696, 15804, 924, 0, 22976, 17707, 61, 0, -7980, 15694, 924, 0, 30104, 17796, 61, 0, 2, 0, 1, 0, 22136, 17711, 61, 0}
        yyss = 0x130e
        yyssp = 0x3f588334e90
        yyvsa = {{op_type = -2009902992, u = {constant = {value = {lval = 0, dval = 0, str = {val = 0x0, len = 0}, ht = 0x0, obj = {handle = 0, handlers = 0x0}}, refcount__gc = 0, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 0, opline_num = 0, op_array = 0x0, jmp_addr = 0x0, EA = {var = 0, type = 0}}}, {op_type = 0, u = {constant = {value = {lval = 0, dval = 0, str = {val = 0x0, len = 890666965}, ht = 0x0, obj = {handle = 0, handlers = 0x39c35167fd5}}, refcount__gc = 1918989871, type = 47 '/', is_ref__gc = 119 'w'}, var = 0, opline_num = 0, op_array = 0x0, jmp_addr = 0x0, EA = {var = 0, type = 0}}}, {op_type = 1634301487, u = {constant = {value = {lval = 1982819429, dval = 9.0354069705886649e+164, str = {val = 0x622f6169762f6c65 <Address 0x622f6169762f6c65 out of bounds>, len = 1684826485}, ht = 0x622f6169762f6c65, obj = {handle = 1982819429, handlers = 0x616c632f646c6975}}, refcount__gc = 1936028531, type = 0 '\000', is_ref__gc = 47 '/'}, var = 1982819429, opline_num = 1982819429, op_array = 0x622f6169762f6c65, jmp_addr = 0x622f6169762f6c65, EA = {var = 1982819429, type = 1647272297}}}, {op_type = 2004299634, u = {constant = {value = {lval = 1, dval = 1.2944174324937568e-312, str = {val = 0x3d00000001 <Address 0x3d00000001 out of bounds>, len = 1143083008}, ht = 0x3d00000001, obj = {handle = 1, handlers = 0x39c44221000}}, refcount__gc = 6, type = 156 '\234', is_ref__gc = 3 '\003'}, var = 1, opline_num = 1, op_array = 0x3d00000001, jmp_addr = 0x3d00000001, EA = {var = 1, type = 61}}}, {op_type = 1, u = {constant = {value = {lval = 1, dval = 1.2944174324937568e-312, str = {val = 0x3d00000001 <Address 0x3d00000001 out of bounds>, len = 1143083020}, ht = 0x3d00000001, obj = {handle = 1, handlers = 0x39c4422100c}}, refcount__gc = 1, type = 156 '\234', is_ref__gc = 3 '\003'}, var = 1, opline_num = 1, op_array = 0x3d00000001, jmp_addr = 0x3d00000001, EA = {var = 1, type = 61}}}, {op_type = 1, u = {constant = {value = {lval = 1, dval = 1.2944174324937568e-312, str = {val = 0x3d00000001 <Address 0x3d00000001 out of bounds>, len = 1143083026}, ht = 0x3d00000001, obj = {handle = 1, handlers = 0x39c44221012}}, refcount__gc = 1, type = 156 '\234', is_ref__gc = 3 '\003'}, var = 1, opline_num = 1, op_array = 0x3d00000001, jmp_addr = 0x3d00000001, EA = {var = 1, type = 61}}}, {op_type = 1, u = {constant = {value = {lval = 2, dval = 9.8813129168249309e-324, str = {val = 0x2 <Address 0x2 out of bounds>, len = 40}, ht = 0x2, obj = {handle = 2, handlers = 0x28}}, refcount__gc = 0, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 2, opline_num = 2, op_array = 0x2, jmp_addr = 0x2, EA = {var = 2, type = 0}}}, {op_type = 0, u = {constant = {value = {lval = 1, dval = 1.2944174324937568e-312, str = {val = 0x3d00000001 <Address 0x3d00000001 out of bounds>, len = 1143552297}, ht = 0x3d00000001, obj = {handle = 1, handlers = 0x39c44293929}}, refcount__gc = 3, type = 156 '\234', is_ref__gc = 3 '\003'}, var = 1, opline_num = 1, op_array = 0x3d00000001, jmp_addr = 0x3d00000001, EA = {var = 1, type = 61}}}, {op_type = 1, u = {constant = {value = {lval = 1, dval = 1.2944174324937568e-312, str = {val = 0x3d00000001 <Address 0x3d00000001 out of bounds>, len = 6615}, ht = 0x3d00000001, obj = {handle = 1, handlers = 0x19d7}}, refcount__gc = 3, type = 156 '\234', is_ref__gc = 3 '\003'}, var = 1, opline_num = 1, op_array = 0x3d00000001, jmp_addr = 0x3d00000001, EA = {var = 1, type = 61}}}, {op_type = 1, u = {constant = {value = {lval = 1, dval = 1.2944174324937568e-312, str = {val = 0x3d00000001 <Address 0x3d00000001 out of bounds>, len = 1143552231}, ht = 0x3d00000001, obj = {handle = 1, handlers = 0x39c442938e7}}, refcount__gc = 1, type = 156 '\234', is_ref__gc = 3 '\003'}, var = 1, opline_num = 1, op_array = 0x3d00000001, jmp_addr = 0x3d00000001, EA = {var = 1, type = 61}}}, {op_type = 1, u = {constant = {value = {lval = 2, dval = 9.8813129168249309e-324, str = {val = 0x2 <Address 0x2 out of bounds>, len = 245960}, ht = 0x2, obj = {handle = 2, handlers = 0x3c0c8}}, refcount__gc = 0, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 2, opline_num = 2, op_array = 0x2, jmp_addr = 0x2, EA = {var = 2, type = 0}}}, {op_type = 0, u = {constant = {value = {lval = 1, dval = 1.2944174324937568e-312, str = {val = 0x3d00000001 <Address 0x3d00000001 out of bounds>, len = 1143552243}, ht = 0x3d00000001, obj = {handle = 1, handlers = 0x39c442938f3}}, refcount__gc = 1, type = 156 '\234', is_ref__gc = 3 '\003'}, var = 1, opline_num = 1, op_array = 0x3d00000001, jmp_addr = 0x3d00000001, EA = {var = 1, type = 61}}}, {op_type = 1, u = {constant = {value = {lval = 2, dval = 9.8813129168249309e-324, str = {val = 0x2 <Address 0x2 out of bounds>, len = 245960}, ht = 0x2, obj = {handle = 2, handlers = 0x3c0c8}}, refcount__gc = 0, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 2, opline_num = 2, op_array = 0x2, jmp_addr = 0x2, EA = {var = 2, type = 0}}}, {op_type = 0, u = {constant = {value = {lval = 1, dval = 1.2944174324937568e-312, str = {val = 0x3d00000001 <Address 0x3d00000001 out of bounds>, len = 1143552297}, ht = 0x3d00000001, obj = {handle = 1, handlers = 0x39c44293929}}, refcount__gc = 3, type = 156 '\234', is_ref__gc = 3 '\003'}, var = 1, opline_num = 1, op_array = 0x3d00000001, jmp_addr = 0x3d00000001, EA = {var = 1, type = 61}}}, {op_type = 1, u = {constant = {value = {lval = 1, dval = 1.2944174324937568e-312, str = {val = 0x3d00000001 <Address 0x3d00000001 out of bounds>, len = 1162145408}, ht = 0x3d00000001, obj = {handle = 1, handlers = 0x3d4544ee80}}, refcount__gc = 10, type = 156 '\234', is_ref__gc = 3 '\003'}, var = 1, opline_num = 1, op_array = 0x3d00000001, jmp_addr = 0x3d00000001, EA = {var = 1, type = 61}}}, {op_type = 1, u = {constant = {value = {lval = 1, dval = 1.2944174324937568e-312, str = {val = 0x3d00000001 <Address 0x3d00000001 out of bounds>, len = 1143552289}, ht = 0x3d00000001, obj = {handle = 1, handlers = 0x39c44293921}}, refcount__gc = 1, type = 156 '\234', is_ref__gc = 3 '\003'}, var = 1, opline_num = 1, op_array = 0x3d00000001, jmp_addr = 0x3d00000001, EA = {var = 1, type = 61}}}, {op_type = 1, u = {constant = {value = {lval = 1, dval = 1.2944174324937568e-312, str = {val = 0x3d00000001 <Address 0x3d00000001 out of bounds>, len = 496}, ht = 0x3d00000001, obj = {handle = 1, handlers = 0x1f0}}, refcount__gc = 1, type = 156 '\234', is_ref__gc = 3 '\003'}, var = 1, opline_num = 1, op_array = 0x3d00000001, jmp_addr = 0x3d00000001, EA = {var = 1, type = 61}}}, {op_type = 1, u = {constant = {value = {lval = 0, dval = 0, str = {val = 0x0, len = 0}, ht = 0x0, obj = {handle = 0, handlers = 0x0}}, refcount__gc = 0, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 0, opline_num = 0, op_array = 0x0, jmp_addr = 0x0, EA = {var = 0, type = 0}}}, {op_type = 0, u = {constant = {value = {lval = 0, dval = 0, str = {val = 0x0, len = 0}, ht = 0x0, obj = {handle = 0, handlers = 0x0}}, refcount__gc = 0, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 0, opline_num = 0, op_array = 0x0, jmp_addr = 0x0, EA = {var = 0, type = 0}}}, {op_type = 0, u = {constant = {value = {lval = 0, dval = 0, str = {val = 0x0, len = 0}, ht = 0x0, obj = {handle = 0, handlers = 0x0}}, refcount__gc = 0, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 0, opline_num = 0, op_array = 0x0, jmp_addr = 0x0, EA = {var = 0, type = 0}}}, {op_type = 0, u = {constant = {value = {lval = 0, dval = 0, str = {val = 0x0, len = 0}, ht = 0x0, obj = {handle = 0, handlers = 0x0}}, refcount__gc = 0, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 0, opline_num = 0, op_array = 0x0, jmp_addr = 0x0, EA = {var = 0, type = 0}}}, {op_type = 0, u = {constant = {value = {lval = 0, dval = 0, str = {val = 0x0, len = 890666965}, ht = 0x0, obj = {handle = 0, handlers = 0x39c35167fd5}}, refcount__gc = 1918989871, type = 47 '/', is_ref__gc = 119 'w'}, var = 0, opline_num = 0, op_array = 0x0, jmp_addr = 0x0, EA = {var = 0, type = 0}}}, {op_type = 1634301487, u = {constant = {value = {lval = 1982819429, dval = 9.0354069705886649e+164, str = {val = 0x622f6169762f6c65 <Address 0x622f6169762f6c65 out of bounds>, len = 1684826485}, ht = 0x622f6169762f6c65, obj = {handle = 1982819429, handlers = 0x616c632f646c6975}}, refcount__gc = 1936028531, type = 0 '\000', is_ref__gc = 47 '/'}, var = 1982819429, opline_num = 1982819429, op_array = 0x622f6169762f6c65, jmp_addr = 0x622f6169762f6c65, EA = {var = 1982819429, type = 1647272297}}}, {op_type = 1028182886, u = {constant = {value = {lval = 775578994, dval = 1.4812019791890295e+248, str = {val = 0x73752f3a2e3a6572 <Address 0x73752f3a2e3a6572 out of bounds>, len = 1752379250}, ht = 0x73752f3a2e3a6572, obj = {handle = 775578994, handlers = 0x2f65726168732f72}}, refcount__gc = 611504184, type = 156 '\234', is_ref__gc = 3 '\003'}, var = 775578994, opline_num = 775578994, op_array = 0x73752f3a2e3a6572, jmp_addr = 0x73752f3a2e3a6572, EA = {var = 775578994, type = 1937059642}}}, {op_type = 0, u = {constant = {value = {lval = 1, dval = 1.2944174324937568e-312, str = {val = 0x3d00000001 <Address 0x3d00000001 out of bounds>, len = 890666773}, ht = 0x3d00000001, obj = {handle = 1, handlers = 0x39c35167f15}}, refcount__gc = 2285059008, type = 245 '\365', is_ref__gc = 3 '\003'}, var = 1, opline_num = 1, op_array = 0x3d00000001, jmp_addr = 0x3d00000001, EA = {var = 1, type = 61}}}, {op_type = 0, u = {constant = {value = {lval = 0, dval = 0, str = {val = 0x0, len = -2009908320}, ht = 0x0, obj = {handle = 0, handlers = 0x3f588333ba0}}, refcount__gc = 2285059040, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 0, opline_num = 0, op_array = 0x0, jmp_addr = 0x0, EA = {var = 0, type = 0}}}, {op_type = -2009908400, u = {constant = {value = {lval = 0, dval = 0, str = {val = 0x0, len = -2009908928}, ht = 0x0, obj = {handle = 0, handlers = 0x3f588333940}}, refcount__gc = 2285058320, type = 245 '\365', is_ref__gc = 3 '\003'}, var = 0, opline_num = 0, op_array = 0x0, jmp_addr = 0x0, EA = {var = 0, type = 0}}}, {op_type = -2009908940, u = {constant = {value = {lval = 2285058364, dval = 2.1507107050842155e-311, str = {val = 0x3f58833393c "\034", len = 0}, ht = 0x3f58833393c, obj = {handle = 2285058364, handlers = 0x0}}, refcount__gc = 2285058360, type = 245 '\365', is_ref__gc = 3 '\003'}, var = 2285058364, opline_num = 2285058364, op_array = 0x3f58833393c, jmp_addr = 0x3f58833393c, EA = {var = 2285058364, type = 1013}}}, {op_type = -2009908911, u = {constant = {value = {lval = 2285058396, dval = 2.1507107051000256e-311, str = {val = 0x3f58833395c "\024", len = 0}, ht = 0x3f58833395c, obj = {handle = 2285058396, handlers = 0x0}}, refcount__gc = 2285058392, type = 245 '\365', is_ref__gc = 3 '\003'}, var = 2285058396, opline_num = 2285058396, op_array = 0x3f58833395c, jmp_addr = 0x3f58833395c, EA = {var = 2285058396, type = 1013}}}, {op_type = -2009908879, u = {constant = {value = {lval = 2285058408, dval = 2.1507107051059543e-311, str = {val = 0x3f588333968 "", len = -2009908863}, ht = 0x3f588333968, obj = {handle = 2285058408, handlers = 0x3f588333981}}, refcount__gc = 4, type = 61 '=', is_ref__gc = 0 '\000'}, var = 2285058408, opline_num = 2285058408, op_array = 0x3f588333968, jmp_addr = 0x3f588333968, EA = {var = 2285058408, type = 1013}}}, {op_type = 0, u = {constant = {value = {lval = 1, dval = 1.2944174324937568e-312, str = {val = 0x3d00000001 <Address 0x3d00000001 out of bounds>, len = 0}, ht = 0x3d00000001, obj = {handle = 1, handlers = 0x0}}, refcount__gc = 1035847328, type = 156 '\234', is_ref__gc = 3 '\003'}, var = 1, opline_num = 1, op_array = 0x3d00000001, jmp_addr = 0x3d00000001, EA = {var = 1, type = 61}}}, {op_type = 0, u = {constant = {value = {lval = 1, dval = 1.2944174324937568e-312, str = {val = 0x3d00000001 <Address 0x3d00000001 out of bounds>, len = 0}, ht = 0x3d00000001, obj = {handle = 1, handlers = 0xe00000000}}, refcount__gc = 5, type = 61 '=', is_ref__gc = 0 '\000'}, var = 1, opline_num = 1, op_array = 0x3d00000001, jmp_addr = 0x3d00000001, EA = {var = 1, type = 61}}}, {op_type = 1, u = {constant = {value = {lval = 1, dval = 1.2944174324937568e-312, str = {val = 0x3d00000001 <Address 0x3d00000001 out of bounds>, len = 0}, ht = 0x3d00000001, obj = {handle = 1, handlers = 0x3d00000000}}, refcount__gc = 6, type = 61 '=', is_ref__gc = 0 '\000'}, var = 1, opline_num = 1, op_array = 0x3d00000001, jmp_addr = 0x3d00000001, EA = {var = 1, type = 61}}}, {op_type = 1, u = {constant = {value = {lval = 4, dval = 1.9762625833649862e-323, str = {val = 0x4 <Address 0x4 out of bounds>, len = 80}, ht = 0x4, obj = {handle = 4, handlers = 0x200000050}}, refcount__gc = 0, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 4, opline_num = 4, op_array = 0x4, jmp_addr = 0x4, EA = {var = 4, type = 0}}}, {op_type = 0, u = {constant = {value = {lval = 4, dval = 1.9762625833649862e-323, str = {val = 0x4 <Address 0x4 out of bounds>, len = 1}, ht = 0x4, obj = {handle = 4, handlers = 0x1}}, refcount__gc = 0, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 4, opline_num = 4, op_array = 0x4, jmp_addr = 0x4, EA = {var = 4, type = 0}}}, {op_type = 0, u = {constant = {value = {lval = 1, dval = 1.2944174324937568e-312, str = {val = 0x3d00000001 <Address 0x3d00000001 out of bounds>, len = 1166331728}, ht = 0x3d00000001, obj = {handle = 1, handlers = 0x3d4584cf50}}, refcount__gc = 8, type = 61 '=', is_ref__gc = 0 '\000'}, var = 1, opline_num = 1, op_array = 0x3d00000001, jmp_addr = 0x3d00000001, EA = {var = 1, type = 61}}}, {op_type = 1, u = {constant = {value = {lval = 1, dval = 1.2944174324937568e-312, str = {val = 0x3d00000001 <Address 0x3d00000001 out of bounds>, len = 1166320952}, ht = 0x3d00000001, obj = {handle = 1, handlers = 0x3d4584a538}}, refcount__gc = 3, type = 61 '=', is_ref__gc = 0 '\000'}, var = 1, opline_num = 1, op_array = 0x3d00000001, jmp_addr = 0x3d00000001, EA = {var = 1, type = 61}}}, {op_type = 1, u = {constant = {value = {lval = 1, dval = 1.2944174324937568e-312, str = {val = 0x3d00000001 <Address 0x3d00000001 out of bounds>, len = 1166739840}, ht = 0x3d00000001, obj = {handle = 1, handlers = 0x3d458b0980}}, refcount__gc = 1, type = 61 '=', is_ref__gc = 0 '\000'}, var = 1, opline_num = 1, op_array = 0x3d00000001, jmp_addr = 0x3d00000001, EA = {var = 1, type = 61}}}, {op_type = 1, u = {constant = {value = {lval = 4, dval = 1.9762625833649862e-323, str = {val = 0x4 <Address 0x4 out of bounds>, len = 2960}, ht = 0x4, obj = {handle = 4, handlers = 0x1000000b90}}, refcount__gc = 0, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 4, opline_num = 4, op_array = 0x4, jmp_addr = 0x4, EA = {var = 4, type = 0}}}, {op_type = 0, u = {constant = {value = {lval = 16, dval = 1.2944174325678666e-312, str = {val = 0x3d00000010 <Address 0x3d00000010 out of bounds>, len = 1}, ht = 0x3d00000010, obj = {handle = 16, handlers = 0x1}}, refcount__gc = 4, type = 61 '=', is_ref__gc = 0 '\000'}, var = 16, opline_num = 16, op_array = 0x3d00000010, jmp_addr = 0x3d00000010, EA = {var = 16, type = 61}}}, {op_type = 1, u = {constant = {value = {lval = 1, dval = 1.2944174324937568e-312, str = {val = 0x3d00000001 <Address 0x3d00000001 out of bounds>, len = 1166739496}, ht = 0x3d00000001, obj = {handle = 1, handlers = 0x3d458b0828}}, refcount__gc = 4, type = 61 '=', is_ref__gc = 0 '\000'}, var = 1, opline_num = 1, op_array = 0x3d00000001, jmp_addr = 0x3d00000001, EA = {var = 1, type = 61}}}, {op_type = 1, u = {constant = {value = {lval = 2285063536, dval = 2.150710707639523e-311, str = {val = 0x3f588334d70 "\240a3\210\365\003", len = -2009903832}, ht = 0x3f588334d70, obj = {handle = 2285063536, handlers = 0x3f588334d28}}, refcount__gc = 2285063472, type = 245 '\365', is_ref__gc = 3 '\003'}, var = 2285063536, opline_num = 2285063536, op_array = 0x3f588334d70, jmp_addr = 0x3f588334d70, EA = {var = 2285063536, type = 1013}}}, {op_type = 761548584, u = {constant = {value = {lval = 2285068160, dval = 2.1507107099240825e-311, str = {val = 0x3f588335f80 "", len = 1028186060}, ht = 0x3f588335f80, obj = {handle = 2285068160, handlers = 0x39c3d48dfcc}}, refcount__gc = 2285063455, type = 245 '\365', is_ref__gc = 3 '\003'}, var = 2285068160, opline_num = 2285068160, op_array = 0x3f588335f80, jmp_addr = 0x3f588335f80, EA = {var = 2285068160, type = 1013}}}, {op_type = -2009907838, u = {constant = {value = {lval = 2285059360, dval = 2.1507107055763048e-311, str = {val = 0x3f588333d20 "è??E=", len = 1028186484}, ht = 0x3f588333d20, obj = {handle = 2285059360, handlers = 0x39c3d48e174}}, refcount__gc = 40, type = 48 '0', is_ref__gc = 0 '\000'}, var = 2285059360, opline_num = 2285059360, op_array = 0x3f588333d20, jmp_addr = 0x3f588333d20, EA = {var = 2285059360, type = 1013}}}, {op_type = -2009908272, u = {constant = {value = {lval = 2285058832, dval = 2.1507107053154382e-311, str = {val = 0x3f588333b10 "", len = 1028159490}, ht = 0x3f588333b10, obj = {handle = 2285058832, handlers = 0x39c3d487802}}, refcount__gc = 0, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 2285058832, opline_num = 2285058832, op_array = 0x3f588333b10, jmp_addr = 0x3f588333b10, EA = {var = 2285058832, type = 1013}}}, {op_type = 0, u = {constant = {value = {lval = 0, dval = 0, str = {val = 0x0, len = -2009908272}, ht = 0x0, obj = {handle = 0, handlers = 0x3f588333bd0}}, refcount__gc = 761548584, type = 156 '\234', is_ref__gc = 3 '\003'}, var = 0, opline_num = 0, op_array = 0x0, jmp_addr = 0x0, EA = {var = 0, type = 0}}}, {op_type = -2009903832, u = {constant = {value = {lval = 0, dval = 0, str = {val = 0x0, len = 0}, ht = 0x0, obj = {handle = 0, handlers = 0x0}}, refcount__gc = 2285061596, type = 245 '\365', is_ref__gc = 3 '\003'}, var = 0, opline_num = 0, op_array = 0x0, jmp_addr = 0x0, EA = {var = 0, type = 0}}}, {op_type = 245273856, u = {constant = {value = {lval = 2285061584, dval = 2.1507107066751068e-311, str = {val = 0x3f5883345d0 "0\337\363D=", len = -2009908260}, ht = 0x3f5883345d0, obj = {handle = 2285061584, handlers = 0x3f588333bdc}}, refcount__gc = 2285063536, type = 245 '\365', is_ref__gc = 3 '\003'}, var = 2285061584, opline_num = 2285061584, op_array = 0x3f5883345d0, jmp_addr = 0x3f5883345d0, EA = {var = 2285061584, type = 1013}}}, {op_type = -2009903832, u = {constant = {value = {lval = 2285063472, dval = 2.1507107076079028e-311, str = {val = 0x3f588334d30 "\240a3\210\365\003", len = 611504184}, ht = 0x3f588334d30, obj = {handle = 2285063472, handlers = 0x39c2472d038}}, refcount__gc = 2285068160, type = 245 '\365', is_ref__gc = 3 '\003'}, var = 2285063472, opline_num = 2285063472, op_array = 0x3f588334d30, jmp_addr = 0x3f588334d30, EA = {var = 2285063472, type = 1013}}}, {op_type = 1028186060, u = {constant = {value = {lval = 2285063455, dval = 2.1507107075995037e-311, str = {val = 0x3f588334d1f "", len = -2009907871}, ht = 0x3f588334d1f, obj = {handle = 2285063455, handlers = 0x3f588333d61}}, refcount__gc = 2285059360, type = 245 '\365', is_ref__gc = 3 '\003'}, var = 2285063455, opline_num = 2285063455, op_array = 0x3f588334d1f, jmp_addr = 0x3f588334d1f, EA = {var = 2285063455, type = 1013}}}, {op_type = 1028186484, u = {constant = {value = {lval = 40, dval = 1.018557979860957e-312, str = {val = 0x3000000028 <Address 0x3000000028 out of bounds>, len = -2009908064}, ht = 0x3000000028, obj = {handle = 40, handlers = 0x3f588333ca0}}, refcount__gc = 1156833072, type = 61 '=', is_ref__gc = 0 '\000'}, var = 40, opline_num = 40, op_array = 0x3000000028, jmp_addr = 0x3000000028, EA = {var = 40, type = 48}}}, {op_type = 1028648279, u = {constant = {value = {lval = 1166517984, dval = 1.30018079710032e-312, str = {val = 0x3d4587a6e0 "\031R\036\203\276\254\334ly", len = 1166517984}, ht = 0x3d4587a6e0, obj = {handle = 1166517984, handlers = 0x3d4587a6e0}}, refcount__gc = 0, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 1166517984, opline_num = 1166517984, op_array = 0x3d4587a6e0, jmp_addr = 0x3d4587a6e0, EA = {var = 1166517984, type = 61}}}, {op_type = 892819224, u = {constant = {value = {lval = 682, dval = 3.3695277046373014e-321, str = {val = 0x2aa <Address 0x2aa out of bounds>, len = 0}, ht = 0x2aa, obj = {handle = 682, handlers = 0x0}}, refcount__gc = 1166518024, type = 61 '=', is_ref__gc = 0 '\000'}, var = 682, opline_num = 682, op_array = 0x2aa, jmp_addr = 0x2aa, EA = {var = 682, type = 0}}}, {op_type = 16, u = {constant = {value = {lval = 682, dval = 3.3695277046373014e-321, str = {val = 0x2aa <Address 0x2aa out of bounds>, len = 1028568988}, ht = 0x2aa, obj = {handle = 682, handlers = 0x39c3d4eb79c}}, refcount__gc = 16, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 682, opline_num = 682, op_array = 0x2aa, jmp_addr = 0x2aa, EA = {var = 682, type = 0}}}, {op_type = -2009908096, u = {constant = {value = {lval = 0, dval = 0, str = {val = 0x0, len = 1169024008}, ht = 0x0, obj = {handle = 0, handlers = 0x3d45ade408}}, refcount__gc = 742609608, type = 156 '\234', is_ref__gc = 3 '\003'}, var = 0, opline_num = 0, op_array = 0x0, jmp_addr = 0x0, EA = {var = 0, type = 0}}}, {op_type = 1166517224, u = {constant = {value = {lval = 1166517744, dval = 1.3001807959145625e-312, str = {val = 0x3d4587a5f0 "\002\234\253E=", len = -2009907552}, ht = 0x3d4587a5f0, obj = {handle = 1166517744, handlers = 0x3f588333ea0}}, refcount__gc = 0, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 1166517744, opline_num = 1166517744, op_array = 0x3d4587a5f0, jmp_addr = 0x3d4587a5f0, EA = {var = 1166517744, type = 61}}}, {op_type = 890677766, u = {constant = {value = {lval = 1169024008, dval = 1.3001931785039805e-312, str = {val = 0x3d45ade408 "\270", len = 742609608}, ht = 0x3d45ade408, obj = {handle = 1169024008, handlers = 0x39c2c4352c8}}, refcount__gc = 1166517224, type = 61 '=', is_ref__gc = 0 '\000'}, var = 1169024008, opline_num = 1169024008, op_array = 0x3d45ade408, jmp_addr = 0x3d45ade408, EA = {var = 1169024008, type = 61}}}, {op_type = 890654746, u = {constant = {value = {lval = 1918989871, dval = 3.0265456792300576e+267, str = {val = 0x7777772f7261762f <Address 0x7777772f7261762f out of bounds>, len = 1634301487}, ht = 0x7777772f7261762f, obj = {handle = 1918989871, handlers = 0x646f6d2f6169762f}}, refcount__gc = 1982819429, type = 105 'i', is_ref__gc = 97 'a'}, var = 1918989871, opline_num = 1918989871, op_array = 0x7777772f7261762f, jmp_addr = 0x7777772f7261762f, EA = {var = 1918989871, type = 2004317999}}}, {op_type = 1684826485, u = {constant = {value = {lval = 1156833072, dval = 1.300132947277298e-312, str = {val = 0x3d44f3df30 "\001", len = 1028648279}, ht = 0x3d44f3df30, obj = {handle = 1156833072, handlers = 0x39c3d4fed57}}, refcount__gc = 1166516552, type = 61 '=', is_ref__gc = 0 '\000'}, var = 1156833072, opline_num = 1156833072, op_array = 0x3d44f3df30, jmp_addr = 0x3d44f3df30, EA = {var = 1156833072, type = 61}}}, {op_type = 1166516552, u = {constant = {value = {lval = 1156833072, dval = 1.300132947277298e-312, str = {val = 0x3d44f3df30 "\001", len = 1028648279}, ht = 0x3d44f3df30, obj = {handle = 1156833072, handlers = 0x39c3d4fed57}}, refcount__gc = 1166517704, type = 61 '=', is_ref__gc = 0 '\000'}, var = 1156833072, opline_num = 1156833072, op_array = 0x3d44f3df30, jmp_addr = 0x3d44f3df30, EA = {var = 1156833072, type = 61}}}, {op_type = 1166517704, u = {constant = {value = {lval = 1166513896, dval = 1.3001807769029164e-312, str = {val = 0x3d458796e8 "\b", len = 1169024008}, ht = 0x3d458796e8, obj = {handle = 1166513896, handlers = 0x3d45ade408}}, refcount__gc = 742609528, type = 156 '\234', is_ref__gc = 3 '\003'}, var = 1166513896, opline_num = 1166513896, op_array = 0x3d458796e8, jmp_addr = 0x3d458796e8, EA = {var = 1166513896, type = 61}}}, {op_type = 1166517224, u = {constant = {value = {lval = 1166513896, dval = 1.3001807769029164e-312, str = {val = 0x3d458796e8 "\b", len = 742605624}, ht = 0x3d458796e8, obj = {handle = 1166513896, handlers = 0x39c2c434338}}, refcount__gc = 0, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 1166513896, opline_num = 1166513896, op_array = 0x3d458796e8, jmp_addr = 0x3d458796e8, EA = {var = 1166513896, type = 61}}}, {op_type = 890656127, u = {constant = {value = {lval = 16, dval = 1.7898404593070731e+161, str = {val = 0x6169762f00000010 <Address 0x6169762f00000010 out of bounds>, len = 79}, ht = 0x6169762f00000010, obj = {handle = 16, handlers = 0x4f}}, refcount__gc = 1169024008, type = 61 '=', is_ref__gc = 0 '\000'}, var = 16, opline_num = 16, op_array = 0x6169762f00000010, jmp_addr = 0x6169762f00000010, EA = {var = 16, type = 1634301487}}}, {op_type = -2009907552, u = {constant = {value = {lval = 1, dval = 4.9406564584124654e-324, str = {val = 0x1 <Address 0x1 out of bounds>, len = 742605576}, ht = 0x1, obj = {handle = 1, handlers = 0x39c2c434308}}, refcount__gc = 0, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 1, opline_num = 1, op_array = 0x1, jmp_addr = 0x1, EA = {var = 1, type = 0}}}, {op_type = -2009907552, u = {constant = {value = {lval = 1, dval = 4.9406564584124654e-324, str = {val = 0x1 <Address 0x1 out of bounds>, len = -2009902128}, ht = 0x1, obj = {handle = 1, handlers = 0x3f5883353d0}}, refcount__gc = 1166513848, type = 61 '=', is_ref__gc = 0 '\000'}, var = 1, opline_num = 1, op_array = 0x1, jmp_addr = 0x1, EA = {var = 1, type = 0}}}, {op_type = 890659004, u = {constant = {value = {lval = 1, dval = 4.9406564584124654e-324, str = {val = 0x1 <Address 0x1 out of bounds>, len = 890655737}, ht = 0x1, obj = {handle = 1, handlers = 0x39c351653f9}}, refcount__gc = 1, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 1, opline_num = 1, op_array = 0x1, jmp_addr = 0x1, EA = {var = 1, type = 0}}}, {op_type = -2009905696, u = {constant = {value = {lval = 2285059920, dval = 2.1507107058529816e-311, str = {val = 0x3f588333f50 "\004", len = 742605920}, ht = 0x3f588333f50, obj = {handle = 2285059920, handlers = 0x39c2c434460}}, refcount__gc = 742605576, type = 156 '\234', is_ref__gc = 3 '\003'}, var = 2285059920, opline_num = 2285059920, op_array = 0x3f588333f50, jmp_addr = 0x3f588333f50, EA = {var = 2285059920, type = 1013}}}, {op_type = 0, u = {constant = {value = {lval = 1166514112, dval = 1.3001807779700982e-312, str = {val = 0x3d458797c0 "\b", len = 1166513808}, ht = 0x3d458797c0, obj = {handle = 1166514112, handlers = 0x3d45879690}}, refcount__gc = 1156833072, type = 61 '=', is_ref__gc = 0 '\000'}, var = 1166514112, opline_num = 1166514112, op_array = 0x3d458797c0, jmp_addr = 0x3d458797c0, EA = {var = 1166514112, type = 61}}}, {op_type = -2009907552, u = {constant = {value = {lval = 1166513368, dval = 1.3001807742942498e-312, str = {val = 0x3d458794d8 "\250~\210E=", len = 742605528}, ht = 0x3d458794d8, obj = {handle = 1166513368, handlers = 0x39c2c4342d8}}, refcount__gc = 1, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 1166513368, opline_num = 1166513368, op_array = 0x3d458794d8, jmp_addr = 0x3d458794d8, EA = {var = 1166513368, type = 61}}}, {op_type = -2009907552, u = {constant = {value = {lval = 742604968, dval = 1.9610910064550315e-311, str = {val = 0x39c2c4340a8 "\361\v", len = 1169024632}, ht = 0x39c2c4340a8, obj = {handle = 742604968, handlers = 0x3d45ade678}}, refcount__gc = 1, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 742604968, opline_num = 742604968, op_array = 0x39c2c4340a8, jmp_addr = 0x39c2c4340a8, EA = {var = 742604968, type = 924}}}, {op_type = -2009902128, u = {constant = {value = {lval = 8, dval = 3.9525251667299724e-323, str = {val = 0x8 <Address 0x8 out of bounds>, len = 890659712}, ht = 0x8, obj = {handle = 8, handlers = 0x39c35166380}}, refcount__gc = 1156833072, type = 61 '=', is_ref__gc = 0 '\000'}, var = 8, opline_num = 8, op_array = 0x8, jmp_addr = 0x8, EA = {var = 8, type = 0}}}, {op_type = 892819224, u = {constant = {value = {lval = 512, dval = 2.5296161067071823e-321, str = {val = 0x200 <Address 0x200 out of bounds>, len = 96}, ht = 0x200, obj = {handle = 512, handlers = 0x60}}, refcount__gc = 1168853616, type = 61 '=', is_ref__gc = 0 '\000'}, var = 512, opline_num = 512, op_array = 0x200, jmp_addr = 0x200, EA = {var = 512, type = 0}}}, {op_type = 1133530792, u = {constant = {value = {lval = 2285064832, dval = 2.1507107082798321e-311, str = {val = 0x3f588335280 "@", len = 82}, ht = 0x3f588335280, obj = {handle = 2285064832, handlers = 0x52}}, refcount__gc = 2285065296, type = 6 '\006', is_ref__gc = 0 '\000'}, var = 2285064832, opline_num = 2285064832, op_array = 0x3f588335280, jmp_addr = 0x3f588335280, EA = {var = 2285064832, type = 1013}}}, {op_type = 1133530728, u = {constant = {value = {lval = 128, dval = 6.3240402667679558e-322, str = {val = 0x80 <Address 0x80 out of bounds>, len = 0}, ht = 0x80, obj = {handle = 128, handlers = 0x600000000}}, refcount__gc = 0, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 128, opline_num = 128, op_array = 0x80, jmp_addr = 0x80, EA = {var = 128, type = 0}}}, {op_type = -827377782, u = {constant = {value = {lval = 1133530688, dval = 1.9612841494233592e-311, str = {val = 0x39c43904e40 "", len = 82}, ht = 0x39c43904e40, obj = {handle = 1133530688, handlers = 0x52}}, refcount__gc = 0, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 1133530688, opline_num = 1133530688, op_array = 0x39c43904e40, jmp_addr = 0x39c43904e40, EA = {var = 1133530688, type = 924}}}, {op_type = 394, u = {constant = {value = {lval = 0, dval = 0, str = {val = 0x0, len = 1130486320}, ht = 0x0, obj = {handle = 0, handlers = 0x39c4361da30}}, refcount__gc = 1156833072, type = 61 '=', is_ref__gc = 0 '\000'}, var = 0, opline_num = 0, op_array = 0x0, jmp_addr = 0x0, EA = {var = 0, type = 0}}}, {op_type = 1028648279, u = {constant = {value = {lval = 1166518264, dval = 1.3001807984837038e-312, str = {val = 0x3d4587a7f8 "\031R\036\203\276\254\334l9", len = 1166518264}, ht = 0x3d4587a7f8, obj = {handle = 1166518264, handlers = 0x3d4587a7f8}}, refcount__gc = 0, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 1166518264, opline_num = 1166518264, op_array = 0x3d4587a7f8, jmp_addr = 0x3d4587a7f8, EA = {var = 1166518264, type = 61}}}, {op_type = 1035846288, u = {constant = {value = {lval = 4, dval = 1.9762625833649862e-323, str = {val = 0x4 <Address 0x4 out of bounds>, len = 742604920}, ht = 0x4, obj = {handle = 4, handlers = 0x39c2c434078}}, refcount__gc = 1156833072, type = 61 '=', is_ref__gc = 0 '\000'}, var = 4, opline_num = 4, op_array = 0x4, jmp_addr = 0x4, EA = {var = 4, type = 0}}}, {op_type = 1028648279, u = {constant = {value = {lval = 1166518320, dval = 1.3001807987603806e-312, str = {val = 0x3d4587a830 "\031R\036\203\276\254\334l\301", len = 1166518320}, ht = 0x3d4587a830, obj = {handle = 1166518320, handlers = 0x3d4587a830}}, refcount__gc = 4, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 1166518320, opline_num = 1166518320, op_array = 0x3d4587a830, jmp_addr = 0x3d4587a830, EA = {var = 1166518320, type = 61}}}, {op_type = 1035847736, u = {constant = {value = {lval = 2285065168, dval = 2.1507107084458381e-311, str = {val = 0x3f5883353d0 "\030", len = 0}, ht = 0x3f5883353d0, obj = {handle = 2285065168, handlers = 0x0}}, refcount__gc = 2285065296, type = 245 '\365', is_ref__gc = 3 '\003'}, var = 2285065168, opline_num = 2285065168, op_array = 0x3f5883353d0, jmp_addr = 0x3f5883353d0, EA = {var = 2285065168, type = 1013}}}, {op_type = 1028646545, u = {constant = {value = {lval = 0, dval = 0, str = {val = 0x0, len = 0}, ht = 0x0, obj = {handle = 0, handlers = 0x0}}, refcount__gc = 0, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 0, opline_num = 0, op_array = 0x0, jmp_addr = 0x0, EA = {var = 0, type = 0}}}, {op_type = -2009902000, u = {constant = {value = {lval = 2285065168, dval = 2.1507107084458381e-311, str = {val = 0x3f5883353d0 "\030", len = 890669051}, ht = 0x3f5883353d0, obj = {handle = 2285065168, handlers = 0x39c351687fb}}, refcount__gc = 2, type = 137 '\211', is_ref__gc = 208 '\320'}, var = 2285065168, opline_num = 2285065168, op_array = 0x3f5883353d0, jmp_addr = 0x3f5883353d0, EA = {var = 2285065168, type = 1013}}}, {op_type = 890656127, u = {constant = {value = {lval = 16, dval = 1.2944174325678666e-312, str = {val = 0x3d00000010 <Address 0x3d00000010 out of bounds>, len = -2009902128}, ht = 0x3d00000010, obj = {handle = 16, handlers = 0x3f5883353d0}}, refcount__gc = 1166513448, type = 61 '=', is_ref__gc = 0 '\000'}, var = 16, opline_num = 16, op_array = 0x3d00000010, jmp_addr = 0x3d00000010, EA = {var = 16, type = 61}}}, {op_type = 1028648279, u = {constant = {value = {lval = 742391856, dval = 1.9610909011637135e-311, str = {val = 0x39c2c400030 "\016", len = 1169169512}, ht = 0x39c2c400030, obj = {handle = 742391856, handlers = 0x3d45b01c68}}, refcount__gc = 742604800, type = 156 '\234', is_ref__gc = 3 '\003'}, var = 742391856, opline_num = 742391856, op_array = 0x39c2c400030, jmp_addr = 0x39c2c400030, EA = {var = 742391856, type = 924}}}, {op_type = -2009891824, u = {constant = {value = {lval = 1918989871, dval = 3.0265456792300576e+267, str = {val = 0x7777772f7261762f <Address 0x7777772f7261762f out of bounds>, len = 1634301487}, ht = 0x7777772f7261762f, obj = {handle = 1918989871, handlers = 0x706d742f6169762f}}, refcount__gc = 1684300335, type = 47 '/', is_ref__gc = 103 'g'}, var = 1918989871, opline_num = 1918989871, op_array = 0x7777772f7261762f, jmp_addr = 0x7777772f7261762f, EA = {var = 1918989871, type = 2004317999}}}, {op_type = 779314541, u = {constant = {value = {lval = 1882090610, dval = 6.1063480757129438e-310, str = {val = 0x7068702e6c72 <Address 0x7068702e6c72 out of bounds>, len = 1028568988}, ht = 0x7068702e6c72, obj = {handle = 1882090610, handlers = 0x39c3d4eb79c}}, refcount__gc = 16, type = 61 '=', is_ref__gc = 0 '\000'}, var = 1882090610, opline_num = 1882090610, op_array = 0x7068702e6c72, jmp_addr = 0x7068702e6c72, EA = {var = 1882090610, type = 28776}}}, {op_type = -2009907072, u = {constant = {value = {lval = 1156833072, dval = 1.300132947277298e-312, str = {val = 0x3d44f3df30 "\001", len = 530066472}, ht = 0x3d44f3df30, obj = {handle = 1156833072, handlers = 0x39c1f982c28}}, refcount__gc = 530066240, type = 156 '\234', is_ref__gc = 3 '\003'}, var = 1156833072, opline_num = 1156833072, op_array = 0x3d44f3df30, jmp_addr = 0x3d44f3df30, EA = {var = 1156833072, type = 61}}}, {op_type = 1166504488, u = {constant = {value = {lval = 1166504208, dval = 1.3001807290378366e-312, str = {val = 0x3d45877110 "\002", len = -2009906528}, ht = 0x3d45877110, obj = {handle = 1166504208, handlers = 0x3f5883342a0}}, refcount__gc = 1, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 1166504208, opline_num = 1166504208, op_array = 0x3d45877110, jmp_addr = 0x3d45877110, EA = {var = 1166504208, type = 61}}}, {op_type = 890677766, u = {constant = {value = {lval = 530066472, dval = 1.9609859984857391e-311, str = {val = 0x39c1f982c28 "H\235\224\037\234\003", len = 530066240}, ht = 0x39c1f982c28, obj = {handle = 530066472, handlers = 0x39c1f982b40}}, refcount__gc = 1166504488, type = 61 '=', is_ref__gc = 0 '\000'}, var = 530066472, opline_num = 530066472, op_array = 0x39c1f982c28, jmp_addr = 0x39c1f982c28, EA = {var = 530066472, type = 924}}}, {op_type = 890654746, u = {constant = {value = {lval = 1166490304, dval = 1.3001806603429492e-312, str = {val = 0x3d45873ac0 "\031R\036\203\276\254\334l9", len = 1166490304}, ht = 0x3d45873ac0, obj = {handle = 1166490304, handlers = 0x3d45873ac0}}, refcount__gc = 1156833072, type = 61 '=', is_ref__gc = 0 '\000'}, var = 1166490304, opline_num = 1166490304, op_array = 0x3d45873ac0, jmp_addr = 0x3d45873ac0, EA = {var = 1166490304, type = 61}}}, {op_type = 1166490264, u = {constant = {value = {lval = 1156833072, dval = 1.300132947277298e-312, str = {val = 0x3d44f3df30 "\001", len = 1028648279}, ht = 0x3d44f3df30, obj = {handle = 1156833072, handlers = 0x39c3d4fed57}}, refcount__gc = 1166491296, type = 61 '=', is_ref__gc = 0 '\000'}, var = 1156833072, opline_num = 1156833072, op_array = 0x3d44f3df30, jmp_addr = 0x3d44f3df30, EA = {var = 1156833072, type = 61}}}, {op_type = 1166491296, u = {constant = {value = {lval = 1156833072, dval = 1.300132947277298e-312, str = {val = 0x3d44f3df30 "\001", len = 1028648279}, ht = 0x3d44f3df30, obj = {handle = 1156833072, handlers = 0x39c3d4fed57}}, refcount__gc = 1166504168, type = 61 '=', is_ref__gc = 0 '\000'}, var = 1156833072, opline_num = 1156833072, op_array = 0x3d44f3df30, jmp_addr = 0x3d44f3df30, EA = {var = 1156833072, type = 61}}}, {op_type = 1166504168, u = {constant = {value = {lval = 1166486280, dval = 1.3001806404617476e-312, str = {val = 0x3d45872b08 "\020", len = 1166504080}, ht = 0x3d45872b08, obj = {handle = 1166486280, handlers = 0x3d45877090}}, refcount__gc = 530066160, type = 156 '\234', is_ref__gc = 3 '\003'}, var = 1166486280, opline_num = 1166486280, op_array = 0x3d45872b08, jmp_addr = 0x3d45872b08, EA = {var = 1166486280, type = 61}}}, {op_type = 1166503184, u = {constant = {value = {lval = 1166486280, dval = 1.3001806404617476e-312, str = {val = 0x3d45872b08 "\020", len = 529829440}, ht = 0x3d45872b08, obj = {handle = 1166486280, handlers = 0x39c1f948e40}}, refcount__gc = 0, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 1166486280, opline_num = 1166486280, op_array = 0x3d45872b08, jmp_addr = 0x3d45872b08, EA = {var = 1166486280, type = 61}}}, {op_type = 890656127, u = {constant = {value = {lval = 1156833072, dval = 1.300132947277298e-312, str = {val = 0x3d44f3df30 "\001", len = 77}, ht = 0x3d44f3df30, obj = {handle = 1156833072, handlers = 0x4d}}, refcount__gc = 1166504080, type = 61 '=', is_ref__gc = 0 '\000'}, var = 1156833072, opline_num = 1156833072, op_array = 0x3d44f3df30, jmp_addr = 0x3d44f3df30, EA = {var = 1156833072, type = 61}}}, {op_type = -2009906528, u = {constant = {value = {lval = 2285060768, dval = 2.1507107062719493e-311, str = {val = 0x3f5883342a0 "\200", len = 529829392}, ht = 0x3f5883342a0, obj = {handle = 2285060768, handlers = 0x39c1f948e10}}, refcount__gc = 0, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 2285060768, opline_num = 2285060768, op_array = 0x3f5883342a0, jmp_addr = 0x3f5883342a0, EA = {var = 2285060768, type = 1013}}}, {op_type = -2009906528, u = {constant = {value = {lval = 2285060768, dval = 2.1507107062719493e-311, str = {val = 0x3f5883342a0 "\200", len = 1166489864}, ht = 0x3f5883342a0, obj = {handle = 2285060768, handlers = 0x3d45873908}}, refcount__gc = 1166486232, type = 61 '=', is_ref__gc = 0 '\000'}, var = 2285060768, opline_num = 2285060768, op_array = 0x3f5883342a0, jmp_addr = 0x3f5883342a0, EA = {var = 2285060768, type = 1013}}}, {op_type = 890659004, u = {constant = {value = {lval = 4, dval = 1.9762625833649862e-323, str = {val = 0x4 <Address 0x4 out of bounds>, len = 890655737}, ht = 0x4, obj = {handle = 4, handlers = 0x39c351653f9}}, refcount__gc = 529830520, type = 156 '\234', is_ref__gc = 3 '\003'}, var = 4, opline_num = 4, op_array = 0x4, jmp_addr = 0x4, EA = {var = 4, type = 0}}}, {op_type = 1166487792, u = {constant = {value = {lval = 2285060608, dval = 2.1507107061928988e-311, str = {val = 0x3f588334200 "P)\207E=", len = 529829736}, ht = 0x3f588334200, obj = {handle = 2285060608, handlers = 0x39c1f948f68}}, refcount__gc = 529829392, type = 156 '\234', is_ref__gc = 3 '\003'}, var = 2285060608, opline_num = 2285060608, op_array = 0x3f588334200, jmp_addr = 0x3f588334200, EA = {var = 2285060608, type = 1013}}}, {op_type = 1166490136, u = {constant = {value = {lval = 2285060856, dval = 2.150710706315427e-311, str = {val = 0x3f5883342f8 "\020", len = -2009906680}, ht = 0x3f5883342f8, obj = {handle = 2285060856, handlers = 0x3f588334208}}, refcount__gc = 1166486232, type = 61 '=', is_ref__gc = 0 '\000'}, var = 2285060856, opline_num = 2285060856, op_array = 0x3f5883342f8, jmp_addr = 0x3f5883342f8, EA = {var = 2285060856, type = 1013}}}, {op_type = 1166486232, u = {constant = {value = {lval = 1166485840, dval = 1.3001806382878588e-312, str = {val = 0x3d45872950 "", len = 529829344}, ht = 0x3d45872950, obj = {handle = 1166485840, handlers = 0x39c1f948de0}}, refcount__gc = 1, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 1166485840, opline_num = 1166485840, op_array = 0x3d45872950, jmp_addr = 0x3d45872950, EA = {var = 1166485840, type = 61}}}, {op_type = -2009906528, u = {constant = {value = {lval = 529828784, dval = 1.9609858810522639e-311, str = {val = 0x39c1f948bb0 "\016\201", len = 1166485920}, ht = 0x39c1f948bb0, obj = {handle = 529828784, handlers = 0x3d458729a0}}, refcount__gc = 1, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 529828784, opline_num = 529828784, op_array = 0x39c1f948bb0, jmp_addr = 0x39c1f948bb0, EA = {var = 529828784, type = 924}}}, {op_type = -2009901104, u = {constant = {value = {lval = 8, dval = 3.9525251667299724e-323, str = {val = 0x8 <Address 0x8 out of bounds>, len = 890659712}, ht = 0x8, obj = {handle = 8, handlers = 0x39c35166380}}, refcount__gc = 1168844216, type = 61 '=', is_ref__gc = 0 '\000'}, var = 8, opline_num = 8, op_array = 0x8, jmp_addr = 0x8, EA = {var = 8, type = 0}}}, {op_type = 13, u = {constant = {value = {lval = 627703856, dval = 1.9610342377629233e-311, str = {val = 0x39c256a0030 "\a", len = 96}, ht = 0x39c256a0030, obj = {handle = 627703856, handlers = 0x60}}, refcount__gc = 1133530776, type = 156 '\234', is_ref__gc = 3 '\003'}, var = 627703856, opline_num = 627703856, op_array = 0x39c256a0030, jmp_addr = 0x39c256a0030, EA = {var = 627703856, type = 924}}}, {op_type = 1133530792, u = {constant = {value = {lval = 2285065856, dval = 2.1507107087857553e-311, str = {val = 0x3f588335680 "\220", len = 80}, ht = 0x3f588335680, obj = {handle = 2285065856, handlers = 0x50}}, refcount__gc = 2285066320, type = 6 '\006', is_ref__gc = 0 '\000'}, var = 2285065856, opline_num = 2285065856, op_array = 0x3f588335680, jmp_addr = 0x3f588335680, EA = {var = 2285065856, type = 1013}}}, {op_type = 1133530728, u = {constant = {value = {lval = 128, dval = 6.3240402667679558e-322, str = {val = 0x80 <Address 0x80 out of bounds>, len = 0}, ht = 0x80, obj = {handle = 128, handlers = 0x600000000}}, refcount__gc = 1156833072, type = 61 '=', is_ref__gc = 0 '\000'}, var = 128, opline_num = 128, op_array = 0x80, jmp_addr = 0x80, EA = {var = 128, type = 0}}}, {op_type = 1028648279, u = {constant = {value = {lval = 1166512688, dval = 1.3001807709346034e-312, str = {val = 0x3d45879230 "\031R\036\203\276\254\334ly", len = 1166512688}, ht = 0x3d45879230, obj = {handle = 1166512688, handlers = 0x3d45879230}}, refcount__gc = 0, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 1166512688, opline_num = 1166512688, op_array = 0x3d45879230, jmp_addr = 0x3d45879230, EA = {var = 1166512688, type = 61}}}, {op_type = 892819224, u = {constant = {value = {lval = 678, dval = 3.3497650788036516e-321, str = {val = 0x2a6 <Address 0x2a6 out of bounds>, len = 0}, ht = 0x2a6, obj = {handle = 678, handlers = 0x0}}, refcount__gc = 1166512728, type = 61 '=', is_ref__gc = 0 '\000'}, var = 678, opline_num = 678, op_array = 0x2a6, jmp_addr = 0x2a6, EA = {var = 678, type = 0}}}, {op_type = 16, u = {constant = {value = {lval = 678, dval = 3.3497650788036516e-321, str = {val = 0x2a6 <Address 0x2a6 out of bounds>, len = 1028568988}, ht = 0x2a6, obj = {handle = 678, handlers = 0x39c3d4eb79c}}, refcount__gc = 16, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 678, opline_num = 678, op_array = 0x2a6, jmp_addr = 0x2a6, EA = {var = 678, type = 0}}}, {op_type = -2009906336, u = {constant = {value = {lval = 4, dval = 1.9762625833649862e-323, str = {val = 0x4 <Address 0x4 out of bounds>, len = 1166512328}, ht = 0x4, obj = {handle = 4, handlers = 0x3d458790c8}}, refcount__gc = 695097744, type = 156 '\234', is_ref__gc = 3 '\003'}, var = 4, opline_num = 4, op_array = 0x4, jmp_addr = 0x4, EA = {var = 4, type = 0}}}, {op_type = 1169024216, u = {constant = {value = {lval = 1166512448, dval = 1.3001807697488458e-312, str = {val = 0x3d45879140 "\002`\232E=", len = -2009905792}, ht = 0x3d45879140, obj = {handle = 1166512448, handlers = 0x3f588334580}}, refcount__gc = 0, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 1166512448, opline_num = 1166512448, op_array = 0x3d45879140, jmp_addr = 0x3d45879140, EA = {var = 1166512448, type = 61}}}, {op_type = 890677766, u = {constant = {value = {lval = 1166512328, dval = 1.3001807691559671e-312, str = {val = 0x3d458790c8 "H\366\004\023\366\346\032", len = 695097744}, ht = 0x3d458790c8, obj = {handle = 1166512328, handlers = 0x39c296e5990}}, refcount__gc = 1169024216, type = 61 '=', is_ref__gc = 0 '\000'}, var = 1166512328, opline_num = 1166512328, op_array = 0x3d458790c8, jmp_addr = 0x3d458790c8, EA = {var = 1166512328, type = 61}}}, {op_type = 890654746, u = {constant = {value = {lval = 1166510688, dval = 1.3001807610532905e-312, str = {val = 0x3d45878a60 "\031R\036\203\276\254\334lQ", len = 1166510688}, ht = 0x3d45878a60, obj = {handle = 1166510688, handlers = 0x3d45878a60}}, refcount__gc = 0, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 1166510688, opline_num = 1166510688, op_array = 0x3d45878a60, jmp_addr = 0x3d45878a60, EA = {var = 1166510688, type = 61}}}, {op_type = 1166510648, u = {constant = {value = {lval = 1156833072, dval = 1.300132947277298e-312, str = {val = 0x3d44f3df30 "\001", len = 1028648279}, ht = 0x3d44f3df30, obj = {handle = 1156833072, handlers = 0x39c3d4fed57}}, refcount__gc = 1166511256, type = 61 '=', is_ref__gc = 0 '\000'}, var = 1156833072, opline_num = 1156833072, op_array = 0x3d44f3df30, jmp_addr = 0x3d44f3df30, EA = {var = 1156833072, type = 61}}}, {op_type = 1166511256, u = {constant = {value = {lval = 1156833072, dval = 1.300132947277298e-312, str = {val = 0x3d44f3df30 "\001", len = 1028648279}, ht = 0x3d44f3df30, obj = {handle = 1156833072, handlers = 0x39c3d4fed57}}, refcount__gc = 1166512408, type = 61 '=', is_ref__gc = 0 '\000'}, var = 1156833072, opline_num = 1156833072, op_array = 0x3d44f3df30, jmp_addr = 0x3d44f3df30, EA = {var = 1156833072, type = 61}}}, {op_type = 1166512408, u = {constant = {value = {lval = 1166508840, dval = 1.3001807519229573e-312, str = {val = 0x3d45878328 "\b", len = 1166512328}, ht = 0x3d45878328, obj = {handle = 1166508840, handlers = 0x3d458790c8}}, refcount__gc = 695097672, type = 156 '\234', is_ref__gc = 3 '\003'}, var = 1166508840, opline_num = 1166508840, op_array = 0x3d45878328, jmp_addr = 0x3d45878328, EA = {var = 1166508840, type = 61}}}, {op_type = 1169024216, u = {constant = {value = {lval = 1166508840, dval = 1.3001807519229573e-312, str = {val = 0x3d45878328 "\b", len = 695094008}, ht = 0x3d45878328, obj = {handle = 1166508840, handlers = 0x39c296e4af8}}, refcount__gc = 0, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 1166508840, opline_num = 1166508840, op_array = 0x3d45878328, jmp_addr = 0x3d45878328, EA = {var = 1166508840, type = 61}}}, {op_type = 890656127, u = {constant = {value = {lval = 1156833072, dval = 1.300132947277298e-312, str = {val = 0x3d44f3df30 "\001", len = 72}, ht = 0x3d44f3df30, obj = {handle = 1156833072, handlers = 0x48}}, refcount__gc = 1166512328, type = 61 '=', is_ref__gc = 0 '\000'}, var = 1156833072, opline_num = 1156833072, op_array = 0x3d44f3df30, jmp_addr = 0x3d44f3df30, EA = {var = 1156833072, type = 61}}}, {op_type = -2009905792, u = {constant = {value = {lval = 2285061504, dval = 2.1507107066355816e-311, str = {val = 0x3f588334580  <incomplete sequence \340>, len = 695093960}, ht = 0x3f588334580, obj = {handle = 2285061504, handlers = 0x39c296e4ac8}}, refcount__gc = 0, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 2285061504, opline_num = 2285061504, op_array = 0x3f588334580, jmp_addr = 0x3f588334580, EA = {var = 2285061504, type = 1013}}}, {op_type = -2009905792, u = {constant = {value = {lval = 2285061504, dval = 2.1507107066355816e-311, str = {val = 0x3f588334580  <incomplete sequence \340>, len = 0}, ht = 0x3f588334580, obj = {handle = 2285061504, handlers = 0x0}}, refcount__gc = 1166508792, type = 61 '=', is_ref__gc = 0 '\000'}, var = 2285061504, opline_num = 2285061504, op_array = 0x3f588334580, jmp_addr = 0x3f588334580, EA = {var = 2285061504, type = 1013}}}, {op_type = 890659004, u = {constant = {value = {lval = 1166474792, dval = 1.3001805837034862e-312, str = {val = 0x3d4586fe28 "\002\203\364\357\345\340", <incomplete sequence \335>, len = 890655737}, ht = 0x3d4586fe28, obj = {handle = 1166474792, handlers = 0x39c351653f9}}, refcount__gc = 695094984, type = 156 '\234', is_ref__gc = 3 '\003'}, var = 1166474792, opline_num = 1166474792, op_array = 0x3d4586fe28, jmp_addr = 0x3d4586fe28, EA = {var = 1166474792, type = 61}}}, {op_type = 1166510160, u = {constant = {value = {lval = 2285061376, dval = 2.1507107065723412e-311, str = {val = 0x3f588334500 "\220Fn)\234\003", len = 695094304}, ht = 0x3f588334500, obj = {handle = 2285061376, handlers = 0x39c296e4c20}}, refcount__gc = 695093960, type = 156 '\234', is_ref__gc = 3 '\003'}, var = 2285061376, opline_num = 2285061376, op_array = 0x3f588334500, jmp_addr = 0x3f588334500, EA = {var = 2285061376, type = 1013}}}, {op_type = 1169024424, u = {constant = {value = {lval = 2285061592, dval = 2.1507107066790594e-311, str = {val = 0x3f5883345d8 "W\355O=\234\003", len = -2009905944}, ht = 0x3f5883345d8, obj = {handle = 2285061592, handlers = 0x3f5883344e8}}, refcount__gc = 1166508792, type = 61 '=', is_ref__gc = 0 '\000'}, var = 2285061592, opline_num = 2285061592, op_array = 0x3f5883345d8, jmp_addr = 0x3f5883345d8, EA = {var = 2285061592, type = 1013}}}, {op_type = -2009905792, u = {constant = {value = {lval = 1166508592, dval = 1.3001807506976745e-312, str = {val = 0x3d45878230 "", len = 695093824}, ht = 0x3d45878230, obj = {handle = 1166508592, handlers = 0x39c296e4a40}}, refcount__gc = 1, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 1166508592, opline_num = 1166508592, op_array = 0x3d45878230, jmp_addr = 0x3d45878230, EA = {var = 1166508592, type = 61}}}, {op_type = -2009905792, u = {constant = {value = {lval = 695092880, dval = 1.9610675323645885e-311, str = {val = 0x39c296e4690 "\305\017", len = 1169024632}, ht = 0x39c296e4690, obj = {handle = 695092880, handlers = 0x3d45ade678}}, refcount__gc = 1, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 695092880, opline_num = 695092880, op_array = 0x39c296e4690, jmp_addr = 0x39c296e4690, EA = {var = 695092880, type = 924}}}, {op_type = -2009900368, u = {constant = {value = {lval = 8, dval = 3.9525251667299724e-323, str = {val = 0x8 <Address 0x8 out of bounds>, len = 890659712}, ht = 0x8, obj = {handle = 8, handlers = 0x39c35166380}}, refcount__gc = 8, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 8, opline_num = 8, op_array = 0x8, jmp_addr = 0x8, EA = {var = 8, type = 0}}}, {op_type = 890659712, u = {constant = {value = {lval = 1168827096, dval = 1.300192205629436e-312, str = {val = 0x3d45aae2d8 "\031R\036\203\276\254\334lA", len = 192}, ht = 0x3d45aae2d8, obj = {handle = 1168827096, handlers = 0xc0}}, refcount__gc = 1133530688, type = 156 '\234', is_ref__gc = 3 '\003'}, var = 1168827096, opline_num = 1168827096, op_array = 0x3d45aae2d8, jmp_addr = 0x3d45aae2d8, EA = {var = 1168827096, type = 61}}}, {op_type = 1133530792, u = {constant = {value = {lval = 2285066592, dval = 2.1507107091493876e-311, str = {val = 0x3f588335960 "", len = 172}, ht = 0x3f588335960, obj = {handle = 2285066592, handlers = 0xac}}, refcount__gc = 2285067056, type = 12 '\f', is_ref__gc = 0 '\000'}, var = 2285066592, opline_num = 2285066592, op_array = 0x3f588335960, jmp_addr = 0x3f588335960, EA = {var = 2285066592, type = 1013}}}, {op_type = 890660049, u = {constant = {value = {lval = 224, dval = 1.1067070466843923e-321, str = {val = 0xe0 <Address 0xe0 out of bounds>, len = 0}, ht = 0xe0, obj = {handle = 224, handlers = 0xc00000000}}, refcount__gc = 0, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 224, opline_num = 224, op_array = 0xe0, jmp_addr = 0xe0, EA = {var = 224, type = 0}}}, {op_type = 469319946, u = {constant = {value = {lval = 1133530688, dval = 1.9612841494233592e-311, str = {val = 0x39c43904e40 "", len = 172}, ht = 0x39c43904e40, obj = {handle = 1133530688, handlers = 0xac}}, refcount__gc = 0, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 1133530688, opline_num = 1133530688, op_array = 0x39c43904e40, jmp_addr = 0x39c43904e40, EA = {var = 1133530688, type = 924}}}, {op_type = 266, u = {constant = {value = {lval = 0, dval = 0, str = {val = 0x0, len = 1130486320}, ht = 0x0, obj = {handle = 0, handlers = 0x39c4361da30}}, refcount__gc = 1156833072, type = 61 '=', is_ref__gc = 0 '\000'}, var = 0, opline_num = 0, op_array = 0x0, jmp_addr = 0x0, EA = {var = 0, type = 0}}}, {op_type = 1028648279, u = {constant = {value = {lval = 1166512808, dval = 1.3001807715274822e-312, str = {val = 0x3d458792a8 "\031R\036\203\276\254\334l\301", len = 1166512808}, ht = 0x3d458792a8, obj = {handle = 1166512808, handlers = 0x3d458792a8}}, refcount__gc = 1168648160, type = 61 '=', is_ref__gc = 0 '\000'}, var = 1166512808, opline_num = 1166512808, op_array = 0x3d458792a8, jmp_addr = 0x3d458792a8, EA = {var = 1166512808, type = 61}}}, {op_type = 1035846288, u = {constant = {value = {lval = 4, dval = 1.9762625833649862e-323, str = {val = 0x4 <Address 0x4 out of bounds>, len = 695092808}, ht = 0x4, obj = {handle = 4, handlers = 0x39c296e4648}}, refcount__gc = 1156833072, type = 61 '=', is_ref__gc = 0 '\000'}, var = 4, opline_num = 4, op_array = 0x4, jmp_addr = 0x4, EA = {var = 4, type = 0}}}, {op_type = 1028648279, u = {constant = {value = {lval = 1166513000, dval = 1.3001807724760882e-312, str = {val = 0x3d45879368 "\031R\036\203\276\254\334l\301", len = 1166513000}, ht = 0x3d45879368, obj = {handle = 1166513000, handlers = 0x3d45879368}}, refcount__gc = 4, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 1166513000, opline_num = 1166513000, op_array = 0x3d45879368, jmp_addr = 0x3d45879368, EA = {var = 1166513000, type = 61}}}, {op_type = 1035847736, u = {constant = {value = {lval = 2285066928, dval = 2.1507107093153936e-311, str = {val = 0x3f588335ab0 "", len = 0}, ht = 0x3f588335ab0, obj = {handle = 2285066928, handlers = 0x0}}, refcount__gc = 2285067056, type = 245 '\365', is_ref__gc = 3 '\003'}, var = 2285066928, opline_num = 2285066928, op_array = 0x3f588335ab0, jmp_addr = 0x3f588335ab0, EA = {var = 2285066928, type = 1013}}}, {op_type = 1028646545, u = {constant = {value = {lval = 0, dval = 0, str = {val = 0x0, len = 0}, ht = 0x0, obj = {handle = 0, handlers = 0x0}}, refcount__gc = 0, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 0, opline_num = 0, op_array = 0x0, jmp_addr = 0x0, EA = {var = 0, type = 0}}}, {op_type = -2009900240, u = {constant = {value = {lval = 2285066928, dval = 2.1507107093153936e-311, str = {val = 0x3f588335ab0 "", len = 890669051}, ht = 0x3f588335ab0, obj = {handle = 2285066928, handlers = 0x39c351687fb}}, refcount__gc = 2, type = 167 '\247', is_ref__gc = 189 '\275'}, var = 2285066928, opline_num = 2285066928, op_array = 0x3f588335ab0, jmp_addr = 0x3f588335ab0, EA = {var = 2285066928, type = 1013}}}, {op_type = 890669051, u = {constant = {value = {lval = 2, dval = -2.9502458918256514e+78, str = {val = 0xd0397a9400000002 <Address 0xd0397a9400000002 out of bounds>, len = -2009900368}, ht = 0xd0397a9400000002, obj = {handle = 2, handlers = 0x3f588335ab0}}, refcount__gc = 1166474328, type = 61 '=', is_ref__gc = 0 '\000'}, var = 2, opline_num = 2, op_array = 0xd0397a9400000002, jmp_addr = 0xd0397a9400000002, EA = {var = 2, type = 3493427860}}}, {op_type = -2009900352, u = {constant = {value = {lval = 693239856, dval = 1.9610666168490892e-311, str = {val = 0x39c29520030 "\v", len = 1159504464}, ht = 0x39c29520030, obj = {handle = 693239856, handlers = 0x3d451ca250}}, refcount__gc = 695092688, type = 156 '\234', is_ref__gc = 3 '\003'}, var = 693239856, opline_num = 693239856, op_array = 0x39c29520030, jmp_addr = 0x39c29520030, EA = {var = 693239856, type = 924}}}, {op_type = -2009891824, u = {constant = {value = {lval = 2285075472, dval = 2.1507107135366905e-311, str = {val = 0x3f588337c10 "\300\300\275=\234\003", len = -2009891824}, ht = 0x3f588337c10, obj = {handle = 2285075472, handlers = 0x3f588337c10}}, refcount__gc = 2285075472, type = 245 '\365', is_ref__gc = 3 '\003'}, var = 2285075472, opline_num = 2285075472, op_array = 0x3f588337c10, jmp_addr = 0x3f588337c10, EA = {var = 2285075472, type = 1013}}}, {op_type = 1028196885, u = {constant = {value = {lval = 1144846064, dval = 1.9612897399619106e-311, str = {val = 0x39c443cf6f0 "@\221kC\234\003", len = 890655737}, ht = 0x39c443cf6f0, obj = {handle = 1144846064, handlers = 0x26351653f9}}, refcount__gc = 677259936, type = 156 '\234', is_ref__gc = 3 '\003'}, var = 1144846064, opline_num = 1144846064, op_array = 0x39c443cf6f0, jmp_addr = 0x39c443cf6f0, EA = {var = 1144846064, type = 924}}}, {op_type = 1166872512, u = {constant = {value = {lval = 2285062144, dval = 2.1507107069517836e-311, str = {val = 0x3f588334800 "\300", len = 677235752}, ht = 0x3f588334800, obj = {handle = 2285062144, handlers = 0x39c285dcc28}}, refcount__gc = 677235408, type = 156 '\234', is_ref__gc = 3 '\003'}, var = 2285062144, opline_num = 2285062144, op_array = 0x3f588334800, jmp_addr = 0x3f588334800, EA = {var = 2285062144, type = 1013}}}, {op_type = 0, u = {constant = {value = {lval = 1166855976, dval = 1.3001824670026777e-312, str = {val = 0x3d458ccf28 "\b", len = -2009905064}, ht = 0x3d458ccf28, obj = {handle = 1166855976, handlers = 0x3f588334858}}, refcount__gc = 2285061992, type = 245 '\365', is_ref__gc = 3 '\003'}, var = 1166855976, opline_num = 1166855976, op_array = 0x3d458ccf28, jmp_addr = 0x3d458ccf28, EA = {var = 1166855976, type = 61}}}, {op_type = -2009900912, u = {constant = {value = {lval = 2285066384, dval = 2.1507107090466219e-311, str = {val = 0x3f588335890 "", len = 39}, ht = 0x3f588335890, obj = {handle = 2285066384, handlers = 0x27}}, refcount__gc = 38, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 2285066384, opline_num = 2285066384, op_array = 0x3f588335890, jmp_addr = 0x3f588335890, EA = {var = 2285066384, type = 1013}}}, {op_type = 1165542496, u = {constant = {value = {lval = 1168960400, dval = 1.3001928642387045e-312, str = {val = 0x3d45aceb90 "è±?E=", len = 1028395792}, ht = 0x3d45aceb90, obj = {handle = 1168960400, handlers = 0x39c3d4c1310}}, refcount__gc = 2285066384, type = 245 '\365', is_ref__gc = 3 '\003'}, var = 1168960400, opline_num = 1168960400, op_array = 0x3d45aceb90, jmp_addr = 0x3d45aceb90, EA = {var = 1168960400, type = 61}}}, {op_type = 1166782664, u = {constant = {value = {lval = 1166782664, dval = 1.3001821047932714e-312, str = {val = 0x3d458bb0c8 "\260\261\214E=", len = 1028196885}, ht = 0x3d458bb0c8, obj = {handle = 1166782664, handlers = 0x39c3d490a15}}, refcount__gc = 1144846064, type = 156 '\234', is_ref__gc = 3 '\003'}, var = 1166782664, opline_num = 1166782664, op_array = 0x3d458bb0c8, jmp_addr = 0x3d458bb0c8, EA = {var = 1166782664, type = 61}}}, {op_type = 2503229, u = {constant = {value = {lval = 18, dval = 8.8931816251424378e-323, str = {val = 0x12 <Address 0x12 out of bounds>, len = 160}, ht = 0x12, obj = {handle = 18, handlers = 0xa0}}, refcount__gc = 1133530776, type = 156 '\234', is_ref__gc = 3 '\003'}, var = 18, opline_num = 18, op_array = 0x12, jmp_addr = 0x12, EA = {var = 18, type = 0}}}, {op_type = 1133530792, u = {constant = {value = {lval = 2285067232, dval = 2.1507107094655896e-311, str = {val = 0x3f588335be0 "H&>-\234\003", len = 151}, ht = 0x3f588335be0, obj = {handle = 2285067232, handlers = 0x97}}, refcount__gc = 2285067696, type = 10 '\n', is_ref__gc = 0 '\000'}, var = 2285067232, opline_num = 2285067232, op_array = 0x3f588335be0, jmp_addr = 0x3f588335be0, EA = {var = 2285067232, type = 1013}}}, {op_type = 890660049, u = {constant = {value = {lval = 192, dval = 9.4860604001519336e-322, str = {val = 0xc0 <Address 0xc0 out of bounds>, len = 0}, ht = 0xc0, obj = {handle = 192, handlers = 0xa00000000}}, refcount__gc = 0, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 192, opline_num = 192, op_array = 0xc0, jmp_addr = 0xc0, EA = {var = 192, type = 0}}}, {op_type = 1088753024, u = {constant = {value = {lval = 1133530688, dval = 1.9612841494233592e-311, str = {val = 0x39c43904e40 "", len = 151}, ht = 0x39c43904e40, obj = {handle = 1133530688, handlers = 0x97}}, refcount__gc = 0, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 1133530688, opline_num = 1133530688, op_array = 0x39c43904e40, jmp_addr = 0x39c43904e40, EA = {var = 1133530688, type = 924}}}, {op_type = 384, u = {constant = {value = {lval = 0, dval = 0, str = {val = 0x0, len = 1130486320}, ht = 0x0, obj = {handle = 0, handlers = 0x39c4361da30}}, refcount__gc = 1156833072, type = 61 '=', is_ref__gc = 0 '\000'}, var = 0, opline_num = 0, op_array = 0x0, jmp_addr = 0x0, EA = {var = 0, type = 0}}}, {op_type = 1028648279, u = {constant = {value = {lval = 1168827344, dval = 1.3001922068547188e-312, str = {val = 0x3d45aae3d0 "\031R\036\203\276\254\334l9", len = 1168827344}, ht = 0x3d45aae3d0, obj = {handle = 1168827344, handlers = 0x3d45aae3d0}}, refcount__gc = 1161245296, type = 61 '=', is_ref__gc = 0 '\000'}, var = 1168827344, opline_num = 1168827344, op_array = 0x3d45aae3d0, jmp_addr = 0x3d45aae3d0, EA = {var = 1168827344, type = 61}}}, {op_type = 1035846288, u = {constant = {value = {lval = 4, dval = 1.9762625833649862e-323, str = {val = 0x4 <Address 0x4 out of bounds>, len = 677234296}, ht = 0x4, obj = {handle = 4, handlers = 0x39c285dc678}}, refcount__gc = 1156833072, type = 61 '=', is_ref__gc = 0 '\000'}, var = 4, opline_num = 4, op_array = 0x4, jmp_addr = 0x4, EA = {var = 4, type = 0}}}, {op_type = 1028648279, u = {constant = {value = {lval = 1168827400, dval = 1.3001922071313956e-312, str = {val = 0x3d45aae408 "\031R\036\203\276\254\334l\301", len = 1168827400}, ht = 0x3d45aae408, obj = {handle = 1168827400, handlers = 0x3d45aae408}}, refcount__gc = 4, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 1168827400, opline_num = 1168827400, op_array = 0x3d45aae408, jmp_addr = 0x3d45aae408, EA = {var = 1168827400, type = 61}}}, {op_type = 1035847736, u = {constant = {value = {lval = 2285067568, dval = 2.1507107096315957e-311, str = {val = 0x3f588335d30 "", len = 0}, ht = 0x3f588335d30, obj = {handle = 2285067568, handlers = 0x0}}, refcount__gc = 2285067696, type = 245 '\365', is_ref__gc = 3 '\003'}, var = 2285067568, opline_num = 2285067568, op_array = 0x3f588335d30, jmp_addr = 0x3f588335d30, EA = {var = 2285067568, type = 1013}}}, {op_type = 1028646545, u = {constant = {value = {lval = 0, dval = 0, str = {val = 0x0, len = 0}, ht = 0x0, obj = {handle = 0, handlers = 0x0}}, refcount__gc = 0, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 0, opline_num = 0, op_array = 0x0, jmp_addr = 0x0, EA = {var = 0, type = 0}}}, {op_type = 1156833072, u = {constant = {value = {lval = 1133530688, dval = 1.9612841494233592e-311, str = {val = 0x39c43904e40 "", len = 262144}, ht = 0x39c43904e40, obj = {handle = 1133530688, handlers = 0x40000}}, refcount__gc = 262144, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 1133530688, opline_num = 1133530688, op_array = 0x39c43904e40, jmp_addr = 0x39c43904e40, EA = {var = 1133530688, type = 924}}}, {op_type = 1035847968, u = {constant = {value = {lval = 0, dval = 0, str = {val = 0x0, len = 1130476372}, ht = 0x0, obj = {handle = 0, handlers = 0x39c4361b354}}, refcount__gc = 1166855368, type = 61 '=', is_ref__gc = 0 '\000'}, var = 0, opline_num = 0, op_array = 0x0, jmp_addr = 0x0, EA = {var = 0, type = 0}}}, {op_type = 13, u = {constant = {value = {lval = 1156833072, dval = 1.300132947277298e-312, str = {val = 0x3d44f3df30 "\001", len = 262160}, ht = 0x3d44f3df30, obj = {handle = 1156833072, handlers = 0x40010}}, refcount__gc = 0, type = 61 '=', is_ref__gc = 0 '\000'}, var = 1156833072, opline_num = 1156833072, op_array = 0x3d44f3df30, jmp_addr = 0x3d44f3df30, EA = {var = 1156833072, type = 61}}}, {op_type = 1133530792, u = {constant = {value = {lval = 2285075472, dval = 2.1507107135366905e-311, str = {val = 0x3f588337c10 "\300\300\275=\234\003", len = 262144}, ht = 0x3f588337c10, obj = {handle = 2285075472, handlers = 0x40000}}, refcount__gc = 5, type = 125 '}', is_ref__gc = 0 '\000'}, var = 2285075472, opline_num = 2285075472, op_array = 0x3f588337c10, jmp_addr = 0x3f588337c10, EA = {var = 2285075472, type = 1013}}}, {op_type = 726480632, u = {constant = {value = {lval = 262192, dval = 1.2954005981440811e-318, str = {val = 0x40030 <Address 0x40030 out of bounds>, len = 1168998288}, ht = 0x40030, obj = {handle = 262192, handlers = 0x400145ad7f90}}, refcount__gc = 2285063280, type = 245 '\365', is_ref__gc = 3 '\003'}, var = 262192, opline_num = 262192, op_array = 0x40030, jmp_addr = 0x40030, EA = {var = 262192, type = 0}}}, {op_type = 1156833072, u = {constant = {value = {lval = 1156833072, dval = 1.300132947277298e-312, str = {val = 0x3d44f3df30 "\001", len = 1028648279}, ht = 0x3d44f3df30, obj = {handle = 1156833072, handlers = 0x39c3d4fed57}}, refcount__gc = 1166473168, type = 61 '=', is_ref__gc = 0 '\000'}, var = 1156833072, opline_num = 1156833072, op_array = 0x3d44f3df30, jmp_addr = 0x3d44f3df30, EA = {var = 1156833072, type = 61}}}, {op_type = 1166473168, u = {constant = {value = {lval = 0, dval = 0, str = {val = 0x0, len = 892819224}, ht = 0x0, obj = {handle = 0, handlers = 0x39c35375718}}, refcount__gc = 651, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 0, opline_num = 0, op_array = 0x0, jmp_addr = 0x0, EA = {var = 0, type = 0}}}, {op_type = 0, u = {constant = {value = {lval = 1166473088, dval = 1.3001805752846076e-312, str = {val = 0x3d4586f780 "\213\002", len = 16}, ht = 0x3d4586f780, obj = {handle = 1166473088, handlers = 0x10}}, refcount__gc = 651, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 1166473088, opline_num = 1166473088, op_array = 0x3d4586f780, jmp_addr = 0x3d4586f780, EA = {var = 1166473088, type = 61}}}, {op_type = 1028568988, u = {constant = {value = {lval = 16, dval = 1.2944174325678666e-312, str = {val = 0x3d00000010 <Address 0x3d00000010 out of bounds>, len = -2009904560}, ht = 0x3d00000010, obj = {handle = 16, handlers = 0x3f588334a50}}, refcount__gc = 1156833072, type = 61 '=', is_ref__gc = 0 '\000'}, var = 16, opline_num = 16, op_array = 0x3d00000010, jmp_addr = 0x3d00000010, EA = {var = 16, type = 61}}}, {op_type = 727957624, u = {constant = {value = {lval = 727957336, dval = 1.9610837695632673e-311, str = {val = 0x39c2b63bf58 "\002\360\377\377\377\377\377\377@\300c+\234\003", len = 1166472824}, ht = 0x39c2b63bf58, obj = {handle = 727957336, handlers = 0x3d4586f678}}, refcount__gc = 1166472504, type = 61 '=', is_ref__gc = 0 '\000'}, var = 727957336, opline_num = 727957336, op_array = 0x39c2b63bf58, jmp_addr = 0x39c2b63bf58, EA = {var = 727957336, type = 924}}}, {op_type = -2009904016, u = {constant = {value = {lval = 2, dval = 9.8813129168249309e-324, str = {val = 0x2 <Address 0x2 out of bounds>, len = 890677766}, ht = 0x2, obj = {handle = 2, handlers = 0x39c3516aa06}}, refcount__gc = 727957624, type = 156 '\234', is_ref__gc = 3 '\003'}, var = 2, opline_num = 2, op_array = 0x2, jmp_addr = 0x2, EA = {var = 2, type = 0}}}, {op_type = 727957336, u = {constant = {value = {lval = 1166472824, dval = 1.3001805739802743e-312, str = {val = 0x3d4586f678 "\b\367\206E=", len = 890654746}, ht = 0x3d4586f678, obj = {handle = 1166472824, handlers = 0x39c3516501a}}, refcount__gc = 1166407936, type = 61 '=', is_ref__gc = 0 '\000'}, var = 1166472824, opline_num = 1166472824, op_array = 0x3d4586f678, jmp_addr = 0x3d4586f678, EA = {var = 1166472824, type = 61}}}, {op_type = 1166407936, u = {constant = {value = {lval = 2285063368, dval = 2.1507107075565199e-311, str = {val = 0x3f588334cc8 "W\355O=\234\003", len = 1166407896}, ht = 0x3f588334cc8, obj = {handle = 2285063368, handlers = 0x3d4585f8d8}}, refcount__gc = 1156833072, type = 61 '=', is_ref__gc = 0 '\000'}, var = 2285063368, opline_num = 2285063368, op_array = 0x3f588334cc8, jmp_addr = 0x3f588334cc8, EA = {var = 2285063368, type = 1013}}}, {op_type = 1028648279, u = {constant = {value = {lval = 1166408184, dval = 1.3001802546162409e-312, str = {val = 0x3d4585f9f8 "\031R\036\203\276\254\334l1\004", len = 1166408184}, ht = 0x3d4585f9f8, obj = {handle = 1166408184, handlers = 0x3d4585f9f8}}, refcount__gc = 1156833072, type = 61 '=', is_ref__gc = 0 '\000'}, var = 1166408184, opline_num = 1166408184, op_array = 0x3d4585f9f8, jmp_addr = 0x3d4585f9f8, EA = {var = 1166408184, type = 61}}}, {op_type = 1028648279, u = {constant = {value = {lval = 1166472464, dval = 1.300180572201638e-312, str = {val = 0x3d4586f510 "\031R\036\203\276\254\334l\031\001", len = 1166472464}, ht = 0x3d4586f510, obj = {handle = 1166472464, handlers = 0x3d4586f510}}, refcount__gc = 1166834600, type = 61 '=', is_ref__gc = 0 '\000'}, var = 1166472464, opline_num = 1166472464, op_array = 0x3d4586f510, jmp_addr = 0x3d4586f510, EA = {var = 1166472464, type = 61}}}, {op_type = 1166472376, u = {constant = {value = {lval = 727957256, dval = 1.9610837695237421e-311, str = {val = 0x39c2b63bf08 "\024\001\364 \353\352\062\347\016", len = 1166471480}, ht = 0x39c2b63bf08, obj = {handle = 727957256, handlers = 0x3d4586f138}}, refcount__gc = 1166834600, type = 61 '=', is_ref__gc = 0 '\000'}, var = 727957256, opline_num = 727957256, op_array = 0x39c2b63bf08, jmp_addr = 0x39c2b63bf08, EA = {var = 727957256, type = 924}}}, {op_type = 726470920, u = {constant = {value = {lval = 0, dval = 0, str = {val = 0x0, len = 890656127}, ht = 0x0, obj = {handle = 0, handlers = 0x39c3516557f}}, refcount__gc = 1156833072, type = 61 '=', is_ref__gc = 0 '\000'}, var = 0, opline_num = 0, op_array = 0x0, jmp_addr = 0x0, EA = {var = 0, type = 0}}}, {op_type = 78, u = {constant = {value = {lval = 1166472376, dval = 1.3001805717668602e-312, str = {val = 0x3d4586f4b8 "\024\001\364 \353\352\062\347\016", len = -2009904016}, ht = 0x3d4586f4b8, obj = {handle = 1166472376, handlers = 0x3f588334c70}}, refcount__gc = 2285063280, type = 245 '\365', is_ref__gc = 3 '\003'}, var = 1166472376, opline_num = 1166472376, op_array = 0x3d4586f4b8, jmp_addr = 0x3d4586f4b8, EA = {var = 1166472376, type = 61}}}, {op_type = 726470872, u = {constant = {value = {lval = 0, dval = 0, str = {val = 0x0, len = -2009904016}, ht = 0x0, obj = {handle = 0, handlers = 0x3f588334c70}}, refcount__gc = 2285063280, type = 245 '\365', is_ref__gc = 3 '\003'}, var = 0, opline_num = 0, op_array = 0x0, jmp_addr = 0x0, EA = {var = 0, type = 0}}}, {op_type = 1166407496, u = {constant = {value = {lval = 1166834552, dval = 1.3001823611540537e-312, str = {val = 0x3d458c7b78 "\002n\031\357\345\340\"Ý x\213E=", len = 890659004}, ht = 0x3d458c7b78, obj = {handle = 1166834552, handlers = 0x39c351660bc}}, refcount__gc = 1166784304, type = 61 '=', is_ref__gc = 0 '\000'}, var = 1166834552, opline_num = 1166834552, op_array = 0x3d458c7b78, jmp_addr = 0x3d458c7b78, EA = {var = 1166834552, type = 61}}}, {op_type = 890655737, u = {constant = {value = {lval = 726472704, dval = 1.9610830360575994e-311, str = {val = 0x39c2b4d1800 "\001\004", len = 1166837152}, ht = 0x39c2b4d1800, obj = {handle = 726472704, handlers = 0x3d458c85a0}}, refcount__gc = 2285063168, type = 245 '\365', is_ref__gc = 3 '\003'}, var = 726472704, opline_num = 726472704, op_array = 0x39c2b4d1800, jmp_addr = 0x39c2b4d1800, EA = {var = 726472704, type = 924}}}, {op_type = 726471216, u = {constant = {value = {lval = 726470872, dval = 1.9610830351524712e-311, str = {val = 0x39c2b4d10d8 "\002n\031\357\345\340\"\335H\020M+\234\003", len = 1166407776}, ht = 0x39c2b4d10d8, obj = {handle = 726470872, handlers = 0x3d4585f860}}, refcount__gc = 2285063368, type = 245 '\365', is_ref__gc = 3 '\003'}, var = 726470872, opline_num = 726470872, op_array = 0x39c2b4d10d8, jmp_addr = 0x39c2b4d10d8, EA = {var = 726470872, type = 924}}}, {op_type = -2009904168, u = {constant = {value = {lval = 1166834552, dval = 1.3001823611540537e-312, str = {val = 0x3d458c7b78 "\002n\031\357\345\340\"Ý x\213E=", len = 1166834552}, ht = 0x3d458c7b78, obj = {handle = 1166834552, handlers = 0x3d458c7b78}}, refcount__gc = 1166806624, type = 61 '=', is_ref__gc = 0 '\000'}, var = 1166834552, opline_num = 1166834552, op_array = 0x3d458c7b78, jmp_addr = 0x3d458c7b78, EA = {var = 1166834552, type = 61}}}, {op_type = 726470816, u = {constant = {value = {lval = 1, dval = 4.9406564584124654e-324, str = {val = 0x1 <Address 0x1 out of bounds>, len = -2009904016}, ht = 0x1, obj = {handle = 1, handlers = 0x3f588334c70}}, refcount__gc = 726468824, type = 156 '\234', is_ref__gc = 3 '\003'}, var = 1, opline_num = 1, op_array = 0x1, jmp_addr = 0x1, EA = {var = 1, type = 0}}}, {op_type = 1168966328, u = {constant = {value = {lval = 1, dval = 4.9406564584124654e-324, str = {val = 0x1 <Address 0x1 out of bounds>, len = -2009898592}, ht = 0x1, obj = {handle = 1, handlers = 0x3f5883361a0}}, refcount__gc = 8, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 1, opline_num = 1, op_array = 0x1, jmp_addr = 0x1, EA = {var = 1, type = 0}}}, {op_type = 890659712, u = {constant = {value = {lval = 1, dval = 4.9406564584124654e-324, str = {val = 0x1 <Address 0x1 out of bounds>, len = -2009898560}, ht = 0x1, obj = {handle = 1, handlers = 0x3f5883361c0}}, refcount__gc = 8, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 1, opline_num = 1, op_array = 0x1, jmp_addr = 0x1, EA = {var = 1, type = 0}}}, {op_type = 112, u = {constant = {value = {lval = 1133530776, dval = 1.961284149466837e-311, str = {val = 0x39c43904e98 "p\371YF=", len = 1133530792}, ht = 0x39c43904e98, obj = {handle = 1133530776, handlers = 0x39c43904ea8}}, refcount__gc = 1133530688, type = 156 '\234', is_ref__gc = 3 '\003'}, var = 1133530776, opline_num = 1133530776, op_array = 0x39c43904e98, jmp_addr = 0x39c43904e98, EA = {var = 1133530776, type = 924}}}, {op_type = 89, u = {constant = {value = {lval = 2285068832, dval = 1.5982944545030689e-313, str = {val = 0x788336220 <Address 0x788336220 out of bounds>, len = 1133530736}, ht = 0x788336220, obj = {handle = 2285068832, handlers = 0x39c43904e70}}, refcount__gc = 144, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 2285068832, opline_num = 2285068832, op_array = 0x788336220, jmp_addr = 0x788336220, EA = {var = 2285068832, type = 7}}}, {op_type = 0, u = {constant = {value = {lval = 0, dval = 0, str = {val = 0x0, len = 815108948}, ht = 0x0, obj = {handle = 0, handlers = 0x8b18fb8a30959354}}, refcount__gc = 1133530688, type = 156 '\234', is_ref__gc = 3 '\003'}, var = 0, opline_num = 0, op_array = 0x0, jmp_addr = 0x0, EA = {var = 0, type = 0}}}, {op_type = 89, u = {constant = {value = {lval = 0, dval = 0, str = {val = 0x0, len = 340}, ht = 0x0, obj = {handle = 0, handlers = 0x154}}, refcount__gc = 0, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 0, opline_num = 0, op_array = 0x0, jmp_addr = 0x0, EA = {var = 0, type = 0}}}, {op_type = 1130486320, u = {constant = {value = {lval = 1156833072, dval = 1.300132947277298e-312, str = {val = 0x3d44f3df30 "\001", len = 1028648279}, ht = 0x3d44f3df30, obj = {handle = 1156833072, handlers = 0x39c3d4fed57}}, refcount__gc = 1166473424, type = 61 '=', is_ref__gc = 0 '\000'}, var = 1156833072, opline_num = 1156833072, op_array = 0x3d44f3df30, jmp_addr = 0x3d44f3df30, EA = {var = 1156833072, type = 61}}}, {op_type = 1166473424, u = {constant = {value = {lval = 0, dval = 0, str = {val = 0x0, len = 1035846288}, ht = 0x0, obj = {handle = 0, handlers = 0x39c3dbdc290}}, refcount__gc = 4, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 0, opline_num = 0, op_array = 0x0, jmp_addr = 0x0, EA = {var = 0, type = 0}}}, {op_type = 726468752, u = {constant = {value = {lval = 1156833072, dval = 1.300132947277298e-312, str = {val = 0x3d44f3df30 "\001", len = 1028648279}, ht = 0x3d44f3df30, obj = {handle = 1156833072, handlers = 0x39c3d4fed57}}, refcount__gc = 1166473480, type = 61 '=', is_ref__gc = 0 '\000'}, var = 1156833072, opline_num = 1156833072, op_array = 0x3d44f3df30, jmp_addr = 0x3d44f3df30, EA = {var = 1156833072, type = 61}}}, {op_type = 1166473480, u = {constant = {value = {lval = 4, dval = 1.9762625833649862e-323, str = {val = 0x4 <Address 0x4 out of bounds>, len = 1035847736}, ht = 0x4, obj = {handle = 4, handlers = 0x39c3dbdc838}}, refcount__gc = 2285068704, type = 245 '\365', is_ref__gc = 3 '\003'}, var = 4, opline_num = 4, op_array = 0x4, jmp_addr = 0x4, EA = {var = 4, type = 0}}}, {op_type = 0, u = {constant = {value = {lval = 2285068832, dval = 2.1507107102560946e-311, str = {val = 0x3f588336220 "\300\222\250E=", len = 1028646545}, ht = 0x3f588336220, obj = {handle = 2285068832, handlers = 0x39c3d4fe691}}, refcount__gc = 0, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 2285068832, opline_num = 2285068832, op_array = 0x3f588336220, jmp_addr = 0x3f588336220, EA = {var = 2285068832, type = 1013}}}, {op_type = 0, u = {constant = {value = {lval = 0, dval = 0, str = {val = 0x0, len = -2009898464}, ht = 0x0, obj = {handle = 0, handlers = 0x3f588336220}}, refcount__gc = 2285068704, type = 245 '\365', is_ref__gc = 3 '\003'}, var = 0, opline_num = 0, op_array = 0x0, jmp_addr = 0x0, EA = {var = 0, type = 0}}}, {op_type = 890669051, u = {constant = {value = {lval = 2, dval = -3.3276747868267118e-255, str = {val = 0x8b18fb8a00000002 <Address 0x8b18fb8a00000002 out of bounds>, len = -2009898432}, ht = 0x8b18fb8a00000002, obj = {handle = 2, handlers = 0x3f588336240}}, refcount__gc = 2285068736, type = 245 '\365', is_ref__gc = 3 '\003'}, var = 2, opline_num = 2, op_array = 0x8b18fb8a00000002, jmp_addr = 0x8b18fb8a00000002, EA = {var = 2, type = 2333670282}}}, {op_type = -2009898592, u = {constant = {value = {lval = 1166834088, dval = 1.3001823588615891e-312, str = {val = 0x3d458c79a8 "\002OuE=", len = 565385816}, ht = 0x3d458c79a8, obj = {handle = 1166834088, handlers = 0x821b31a58}}, refcount__gc = 726007856, type = 156 '\234', is_ref__gc = 3 '\003'}, var = 1166834088, opline_num = 1166834088, op_array = 0x3d458c79a8, jmp_addr = 0x3d458c79a8, EA = {var = 1166834088, type = 61}}}, {op_type = 611504184, u = {constant = {value = {lval = 726468632, dval = 1.9610830340457641e-311, str = {val = 0x39c2b4d0818 "", len = -2009891824}, ht = 0x39c2b4d0818, obj = {handle = 726468632, handlers = 0x3f588337c10}}, refcount__gc = 2285075472, type = 245 '\365', is_ref__gc = 3 '\003'}, var = 726468632, opline_num = 726468632, op_array = 0x39c2b4d0818, jmp_addr = 0x39c2b4d0818, EA = {var = 726468632, type = 924}}}, {op_type = 1161619536, u = {constant = {value = {lval = 513225736, dval = 1.9609776780566308e-311, str = {val = 0x39c1e973408 "", len = -2009891824}, ht = 0x39c1e973408, obj = {handle = 513225736, handlers = 0x3f588337c10}}, refcount__gc = 2285075472, type = 245 '\365', is_ref__gc = 3 '\003'}, var = 513225736, opline_num = 513225736, op_array = 0x39c1e973408, jmp_addr = 0x39c1e973408, EA = {var = 513225736, type = 924}}}, {op_type = -2009903088, u = {constant = {value = {lval = 1159735904, dval = 1.3001472891729665e-312, str = {val = 0x3d45202a60 "\370' E=", len = 0}, ht = 0x3d45202a60, obj = {handle = 1159735904, handlers = 0x0}}, refcount__gc = 2285068576, type = 245 '\365', is_ref__gc = 3 '\003'}, var = 1159735904, opline_num = 1159735904, op_array = 0x3d45202a60, jmp_addr = 0x3d45202a60, EA = {var = 1159735904, type = 61}}}, {op_type = 0, u = {constant = {value = {lval = 0, dval = 0, str = {val = 0x0, len = 1140361000}, ht = 0x0, obj = {handle = 0, handlers = 0x39c43f88728}}, refcount__gc = 0, type = 0 '\000', is_ref__gc = 2 '\002'}, var = 0, opline_num = 0, op_array = 0x0, jmp_addr = 0x0, EA = {var = 0, type = 0}}}, {op_type = 1168399227, u = {constant = {value = {lval = 0, dval = 0, str = {val = 0x0, len = 1169746835}, ht = 0x0, obj = {handle = 0, handlers = 0x3d45b8eb93}}, refcount__gc = 2285069968, type = 245 '\365', is_ref__gc = 3 '\003'}, var = 0, opline_num = 0, op_array = 0x0, jmp_addr = 0x0, EA = {var = 0, type = 0}}}, {op_type = 1168403150, u = {constant = {value = {lval = 127, dval = 6.2746337021838311e-322, str = {val = 0x7f <Address 0x7f out of bounds>, len = 8}, ht = 0x7f, obj = {handle = 127, handlers = 0x8}}, refcount__gc = 16, type = 0 '\000', is_ref__gc = 0 '\000'}, var = 127, opline_num = 127, op_array = 0x7f, jmp_addr = 0x7f, EA = {var = 127, type = 0}}}}
        yyvs = 0x39c44293946
        yyvsp = 0x3f588333680
        yystacksize = 200
        yyval = {op_type = 1035847616, u = {constant = {value = {lval = 1, dval = 1.2944174324937568e-312, str = {val = 0x3d00000001 <Address 0x3d00000001 out of bounds>, len = 6615}, ht = 0x3d00000001, obj = {handle = 1, handlers = 0x19d7}}, refcount__gc = 3, type = 156 '\234', is_ref__gc = 3 '\003'}, var = 1, opline_num = 1, op_array = 0x3d00000001, jmp_addr = 0x3d00000001, EA = {var = 1, type = 61}}}
        yylen = 0
#3  0x0000039c3d4b8e22 in compile_file (file_handle=<incomplete type>, type=465) at Zend/zend_language_scanner.l:364
        original_lex_state = {yy_leng = 2, yy_start = <incomplete type>, yy_text = <incomplete type>, yy_cursor = <incomplete type>, yy_marker = <incomplete type>, yy_limit = <incomplete type>, yy_state = 0, state_stack = {top = 0, max = 924, elements = 0x4000000000}, in = <incomplete type>, lineno = 0, filename = 0x0}
        original_active_op_array = 0x0
        retval = 0x0
        compiler_result = -2009896800
        compilation_successful = 54 '6'
        retval_znode = {op_type = 0, u = {constant = {value = {lval = 1, dval = -nan(0xfffff00000001), str = {val = 0xffffffff00000001 <Address 0xffffffff00000001 out of bounds>, len = 1}, ht = 0xffffffff00000001, obj = {handle = 1, handlers = 0x1}}, refcount__gc = 1035847328, type = 156 '\234', is_ref__gc = 3 '\003'}, var = 1, opline_num = 1, op_array = 0xffffffff00000001, jmp_addr = 0xffffffff00000001, EA = {var = 1, type = 4294967295}}}
        original_in_compilation = 0 '\000'
#4  0x0000039c3d36df21 in phar_compile_file (file_handle=<incomplete type>, type=0) at /tmp/buildd/php5-5.3.3/ext/phar/phar.c:3393
        __orig_bailout = <incomplete type>
        __bailout = {{__jmpbuf = {0, 2, 1166584440, 61, 1578644188, 2717400354, 644388352, 924}, __mask_was_saved = -481283364, __saved_mask = {__val = {0, 0, 0, 0, 24, 0, 2285065280, 1013, 2285065200, 1013, 1130542442, 924, 4, 0, 727962752, 924}}}}
        res = 0x3f588336680
        name = 0x2 <Address 0x2 out of bounds>
        failed = 0
        phar = 0x0
#5  0x0000039c35168b1f in ?? () from /usr/lib/php5/20090626/xcache.so
No symbol table info available.
#6  0x0000039c3516e434 in ?? () from /usr/lib/php5/20090626/xcache.so
No symbol table info available.
#7  0x0000039c3d4b86ae in compile_filename (type=2, filename=0x3d457965c0) at Zend/zend_language_scanner.l:407
        file_handle = {type = 1028568902, filename = 0x4 <Address 0x4 out of bounds>, opened_path = 0x3d4588aa78 "/var/www/via/../via/tmp/bdd/gammes.php", handle = {fd = 1160730232, fp = 0x3d452f5678, stream = {handle = 0x3d452f5678, isatty = 1166308760, mmap = {len = 0, pos = 525754, map = 0x0, buf = 0x0, old_handle = 0x39c44221000, old_closer = 0}, reader = 0, fsizer = 0x39c3d4a2a90 <_php_stream_read>, closer = 0x39c3d48a490 <php_zend_stream_fsizer>}}, free_filename = 128 '\200'}
        tmp = {value = {lval = 1028511771, dval = 1.9612322631843061e-311, str = {val = 0x39c3d4dd81b "H\211\003f\220\351[\377\377\377ff.\017\037\204", len = 1165580720}, ht = 0x39c3d4dd81b, obj = {handle = 1028511771, handlers = 0x3d457959b0}}, refcount__gc = 1027874085, type = 156 '\234', is_ref__gc = 3 '\003'}
        retval = 0x2
#8  0x0000039c3d51205a in ZEND_INCLUDE_OR_EVAL_SPEC_TMP_HANDLER (execute_data=0x3d457959b0) at /tmp/buildd/php5-5.3.3/Zend/zend_vm_execute.h:5220
        opline = 0x39c26689600
        new_op_array = 0x1d1
        return_value_used = 1
        inc_filename = 0x3d457965c0
        tmp_inc_filename = {value = {lval = 1028646545, dval = 1.9612323297715094e-311, str = {val = 0x39c3d4fe691 "\204\300\017\205\027\001", len = 1165583768}, ht = 0x39c3d4fe691, obj = {handle = 1028646545, handlers = 0x3d45796598}}, refcount__gc = 1165583768, type = 61 '=', is_ref__gc = 0 '\000'}
        failure_retval = 2 '\002'
#9  0x0000039c3d506430 in execute (op_array=0x3d45ab25b8) at /tmp/buildd/php5-5.3.3/Zend/zend_vm_execute.h:107
        ret = 1143552310
        execute_data = 0x3d457959b0
        nested = 0 '\000'
        original_in_execution = 0 '\000'
#10 0x0000039c3d4ddc1d in zend_execute_scripts (type=1013, retval=0x3f588336b40, file_count=3) at /tmp/buildd/php5-5.3.3/Zend/zend.c:1266
        files = {{gp_offset = 0, fp_offset = 0, overflow_arg_area = 0x3d00000028, reg_save_area = 0x3f588336bd0}}
        i = 1
        file_handle = 0x3f588338ef0
        orig_op_array = 0x0
        orig_retval_ptr_ptr = 0x39c3dbdc490
#11 0x0000039c3d489258 in php_execute_script (primary_file=0x3d453f5880) at /tmp/buildd/php5-5.3.3/main/main.c:2289
        __orig_bailout = 0x3d4578d668
        __bailout = {{__jmpbuf = {1165546960, 61, 0, 0, 1, 4, 1165398296, 4}, __mask_was_saved = 0, __saved_mask = {__val = {1, 0, 1169024840, 61, 2, 0, 0, 0, 1028572028, 924, 2285066944, 1013, 1028646545, 924, 1161708600, 61}}}}
        prepend_file_p = 0x0
        append_file_p = 0x0
        prepend_file = {type = 1166508792, filename = 0x39c3d4c8ae0 "ATH\211\320I\211\314USH\211\363H\203\354 \213n\030H\213J\020H\213\060\213R\bL\215D$\030\350\350\216\333\377\203\370\377\017\204\377\002", opened_path = 0x3f588335bc0 "H\344\255E=", handle = {fd = 1028427445, fp = 0x39c3d4c8eb5, stream = {handle = 0x39c3d4c8eb5, isatty = 1165546497, mmap = {len = 1156835488, pos = 1133530625, map = 0x3d45878f38, buf = 0x3d45ade408 "\270", old_handle = 0x3d45ade448, old_closer = 0x3d45878328}, reader = 0x39c3d4ec661 <zend_hash_merge_ex+113>, fsizer = 0x39c3d8dc49d, closer = 0x3d0000000a}}, free_filename = 20 '\024'}
        append_file = {type = ZEND_HANDLE_FILENAME, filename = 0x72704eb000000002 <Address 0x72704eb000000002 out of bounds>, opened_path = 0x646c69756270616d <Address 0x646c69756270616d out of bounds>, handle = {fd = 29285, fp = 0x7265, stream = {handle = 0x7265, isatty = 0, mmap = {len = 4, pos = 2285067184, map = 0x3f588335bb8, buf = 0x1003e2360 <Address 0x1003e2360 out of bounds>, old_handle = 0x3f588335c28, old_closer = 0x39c296e4a30}, reader = 0xb00000070, fsizer = 0x48, closer = 0x3d4587a5f0}}, free_filename = 2 '\002'}
        retval = 0
#12 0x0000039c3d56b86d in php_handler (r=0x39c3d56b86d) at /tmp/buildd/php5-5.3.3/sapi/apache2handler/sapi_apache2.c:688
        __bailout = {{__jmpbuf = {1154318632, 61, 1153805664, 61, 1578382044, 2717400354, 1159765520, 61}, __mask_was_saved = 1025258204, __saved_mask = {__val = {0, 4294967295, 4294967295, 4294967295, 0, 0, 23, 0, 1166954784, 61, 1166950224, 61, 24, 0, 0, 0}}}}
        ctx = 0x3d4521c850
        conf = 0x3d45209e10
        brigade = 0x0
        bucket = 0x39c44293936
        rv = 1143552310
        parent_req = 0x1
#13 0x0000003d449e2668 in ap_run_handler (r=0x3d45209e10) at config.c:159
        pHook = <optimized out>
        n = <optimized out>
        rv = -1
#14 0x0000003d449e2ade in ap_invoke_handler (r=0x3d45209e10) at config.c:377
        handler = <optimized out>
        p = <optimized out>
        result = <optimized out>
        old_handler = 0x0
        ignore = <optimized out>
#15 0x0000003d449f1d2c in ap_internal_redirect (new_uri=<optimized out>, r=<optimized out>) at http_request.c:554
        new = 0x3d45209e10
        access_status = <optimized out>
#16 0x0000039c3adcba05 in handler_redirect (r=0x3d4521fd40) at mod_rewrite.c:4860
No locals.
#17 0x0000003d449e2668 in ap_run_handler (r=0x3d4521fd40) at config.c:159
        pHook = <optimized out>
        n = <optimized out>
        rv = -1
#18 0x0000003d449e2ade in ap_invoke_handler (r=0x3d4521fd40) at config.c:377
        handler = <optimized out>
        p = <optimized out>
        result = <optimized out>
        old_handler = 0x39c3add1bdd "redirect-handler"
        ignore = <optimized out>
#19 0x0000003d449f26b0 in ap_process_request (r=0x3d4521fd40) at http_request.c:282
        access_status = <optimized out>
#20 0x0000003d449ef4f8 in ap_process_http_connection (c=0x3d45202a60) at http_core.c:190
        r = 0x3d4521fd40
        csd = 0x0
#21 0x0000003d449e90e8 in ap_run_process_connection (c=0x3d45202a60) at connection.c:43
        pHook = <optimized out>
        n = <optimized out>
        rv = -1
#22 0x0000003d449f72af in child_main (child_num_arg=<optimized out>) at prefork.c:667
        current_conn = 0x3d45202a60
        csd = 0x3d45202870
        ptrans = 0x3d452027f8
        allocator = 0x3d451feac0
        status = <optimized out>
        i = <optimized out>
        lr = <optimized out>
        pollset = 0x3d452008f0
        sbh = 0x3d452008e8
        bucket_alloc = 0x3d45206818
        last_poll_idx = 1
#23 0x0000003d449f7a0a in make_child (slot=3, s=0x3d44c2dbe8) at prefork.c:768
        pid = 0
#24 make_child (s=0x3d44c2dbe8, slot=3) at prefork.c:696
No locals.
#25 0x0000003d449f85bf in perform_idle_server_maintenance (p=<optimized out>) at prefork.c:903
        i = <optimized out>
        idle_count = <optimized out>
        ws = <optimized out>
        free_length = <optimized out>
        free_slots = {3, 21, 30, 31, 32, 33, 34, 35, 40, 41, 42, 43, 44, 45, 46, 47, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79}
        last_non_dead = <optimized out>
        total_non_dead = <optimized out>
#26 ap_mpm_run (_pconf=<optimized out>, plog=<optimized out>, s=<optimized out>) at prefork.c:1107
        status = 0
        pid = {pid = -1, in = 0x0, out = 0x0, err = 0x3d44c212c0}
        child_slot = <optimized out>
        exitwhy = APR_PROC_EXIT
        processed_status = <optimized out>
        index = <optimized out>
        remaining_children_to_start = 0
        rv = <optimized out>
#27 0x0000003d449cd698 in main (argc=3, argv=0x3f588339568) at main.c:755
        c = 0 '\000'
        configtestonly = <optimized out>
        confname = 0x3d449f9ffa "apache2.conf"
        def_server_root = 0x3d449f9fed "/etc/apache2"
        temp_error_log = 0x0
        error = <optimized out>
        process = 0x3d44c254c8
        server_conf = 0x3d44c2dbe8
        pglobal = <optimized out>
        pconf = 0x3d44c273e8
        plog = 0x3d44c5b588
        ptemp = 0x3d44c2f428
        pcommands = 0x3d44c293f8
        opt = 0x3d44c294e8
        rv = 0
        mod = <optimized out>
        optarg = 0x3 <Address 0x3 out of bounds>
        signal_server = <optimized out>



[New LWP 19795]
[Thread debugging using libthread_db enabled]
Core was generated by `/usr/sbin/apache2 -k start'.
Program terminated with signal 11, Segmentation fault.
#0  0x0000035a34105fd6 in destroy_op_array (op_array=0x4f9d3b9b90) at /tmp/buildd/php5-5.3.3/Zend/zend_opcode.c:235
	in /tmp/buildd/php5-5.3.3/Zend/zend_opcode.c

Thread 1 (Thread 0x35a3afe1740 (LWP 19795)):
#0  0x0000035a34105fd6 in destroy_op_array (op_array=0x4f9d3b9b90) at /tmp/buildd/php5-5.3.3/Zend/zend_opcode.c:235
        opline = 0x35a1ac10e00
        end = 0x4f9d3a7290
        i = 2637853328
#1  0x0000035a3411ad68 in zend_hash_destroy (ht=0x4f9ce07120) at /tmp/buildd/php5-5.3.3/Zend/zend_hash.c:726
        p = 0x4f9d3b9930
#2  0x0000035a3410e958 in zend_shutdown () at /tmp/buildd/php5-5.3.3/Zend/zend.c:833
No locals.
#3  0x0000035a340b940d in php_module_shutdown () at /tmp/buildd/php5-5.3.3/main/main.c:2167
No locals.
#4  0x0000035a340b94b9 in php_module_shutdown_wrapper (sapi_globals=0x0) at /tmp/buildd/php5-5.3.3/main/main.c:2139
No locals.
#5  0x0000035a3419a5d1 in php_apache_child_shutdown (tmp=0x0) at /tmp/buildd/php5-5.3.3/sapi/apache2handler/sapi_apache2.c:399
No locals.
#6  0x0000035a3a76446b in run_cleanups () from /usr/lib/libapr-1.so.0
No symbol table info available.
#7  0x0000035a3a763339 in apr_pool_destroy () from /usr/lib/libapr-1.so.0
No symbol table info available.
#8  0x0000004f9c91acde in clean_child_exit (code=0) at /build/buildd-apache2_2.2.16-6+squeeze7-amd64-Bh2irA/apache2-2.2.16/server/mpm/prefork/prefork.c:196
No locals.
#9  0x0000004f9c91b3cb in just_die (sig=<optimized out>) at /build/buildd-apache2_2.2.16-6+squeeze7-amd64-Bh2irA/apache2-2.2.16/server/mpm/prefork/prefork.c:328
No locals.
#10 <signal handler called>
No symbol table info available.
#11 0x0000035a3a28b9d3 in poll () from /lib/libc.so.6
No symbol table info available.
#12 0x0000035a2d70f84f in ?? ()
No symbol table info available.
#13 0x000003a90f3eff90 in ?? ()
No symbol table info available.
#14 0x4f8d089b2d71a7d7 in ?? ()
No symbol table info available.
#15 0x0000000c00000030 in ?? ()
No symbol table info available.
#16 0x0000000000000000 in ?? ()
No symbol table info available.



[New LWP 6865]
[Thread debugging using libthread_db enabled]
Core was generated by `/usr/sbin/apache2 -k start'.
Program terminated with signal 11, Segmentation fault.
#0  0x0000035d1341dfd6 in destroy_op_array (op_array=0x23651ea950) at /tmp/buildd/php5-5.3.3/Zend/zend_opcode.c:235
	in /tmp/buildd/php5-5.3.3/Zend/zend_opcode.c

Thread 1 (Thread 0x35d1a317740 (LWP 6865)):
#0  0x0000035d1341dfd6 in destroy_op_array (op_array=0x23651ea950) at /tmp/buildd/php5-5.3.3/Zend/zend_opcode.c:235
        opline = 0x35cfd555460
        end = 0x2364bd0410
        i = 1690108944
#1  0x0000035d13432d68 in zend_hash_destroy (ht=0x2364645c60) at /tmp/buildd/php5-5.3.3/Zend/zend_hash.c:726
        p = 0x236490be60
#2  0x0000035d13426958 in zend_shutdown () at /tmp/buildd/php5-5.3.3/Zend/zend.c:833
No locals.
#3  0x0000035d133d140d in php_module_shutdown () at /tmp/buildd/php5-5.3.3/main/main.c:2167
No locals.
#4  0x0000035d133d14b9 in php_module_shutdown_wrapper (sapi_globals=0x0) at /tmp/buildd/php5-5.3.3/main/main.c:2139
No locals.
#5  0x0000035d134b25d1 in php_apache_child_shutdown (tmp=0x0) at /tmp/buildd/php5-5.3.3/sapi/apache2handler/sapi_apache2.c:399
No locals.
#6  0x0000035d19a8c46b in run_cleanups () from /usr/lib/libapr-1.so.0
No symbol table info available.
#7  0x0000035d19a8b339 in apr_pool_destroy () from /usr/lib/libapr-1.so.0
No symbol table info available.
#8  0x00000023640d1f6e in clean_child_exit (code=0) at prefork.c:196
No locals.
#9  0x00000023640d248b in just_die (sig=<optimized out>) at prefork.c:328
No locals.
#10 <signal handler called>
No symbol table info available.
#11 0x0000035d1985f14d in read () from /lib/libpthread.so.0
No symbol table info available.
#12 0x0000035d15c43762 in ?? () from /usr/lib/x86_64-linux-gnu/libsqlite3.so.0
No symbol table info available.
#13 0x0000035d15c51218 in ?? () from /usr/lib/x86_64-linux-gnu/libsqlite3.so.0
No symbol table info available.
#14 0x0000035d15c63cab in ?? () from /usr/lib/x86_64-linux-gnu/libsqlite3.so.0
No symbol table info available.
#15 0x0000035d15c63de8 in ?? () from /usr/lib/x86_64-linux-gnu/libsqlite3.so.0
No symbol table info available.
#16 0x0000035d15c63e54 in ?? () from /usr/lib/x86_64-linux-gnu/libsqlite3.so.0
No symbol table info available.
#17 0x0000035d15c63eb1 in ?? () from /usr/lib/x86_64-linux-gnu/libsqlite3.so.0
No symbol table info available.
#18 0x0000035d15c7489f in ?? () from /usr/lib/x86_64-linux-gnu/libsqlite3.so.0
No symbol table info available.
#19 0x0000035d15c9ebdc in ?? () from /usr/lib/x86_64-linux-gnu/libsqlite3.so.0
No symbol table info available.
#20 0x0000035d15c85731 in sqlite3_step () from /usr/lib/x86_64-linux-gnu/libsqlite3.so.0
No symbol table info available.
#21 0x0000035d0c1bb8aa in ?? ()
No symbol table info available.
#22 0x0000002364b903b8 in ?? ()
No symbol table info available.
#23 0x0000002364b907b8 in ?? ()
No symbol table info available.
#24 0x0000002364b90a40 in ?? ()
No symbol table info available.
#25 0x0000035d0f64c69a in ?? ()
No symbol table info available.
#26 0x000003bd164871e0 in ?? ()
No symbol table info available.
#27 0x000003bd164871e0 in ?? ()
No symbol table info available.
#28 0x000003bd16487260 in ?? ()
No symbol table info available.
#29 0x0000002364b90ad4 in ?? ()
No symbol table info available.
#30 0x0000000000000000 in ?? ()
No symbol table info available.



[New LWP 21481]
[Thread debugging using libthread_db enabled]
Core was generated by `/usr/sbin/apache2 -k start'.
Program terminated with signal 9, Killed.
#0  0x00000296520bb720 in ?? ()

Thread 1 (Thread 0x2965fffa740 (LWP 21481)):
#0  0x00000296520bb720 in ?? ()
No symbol table info available.
#1  0x00000296570e953f in ?? () from /usr/lib/libcrypto.so.0.9.8
No symbol table info available.
#2  0x0000029654ee0a29 in Curl_ossl_cleanup () from /usr/lib/libcurl.so.4
No symbol table info available.
#3  0x0000029654ef5a72 in Curl_ssl_cleanup () from /usr/lib/libcurl.so.4
No symbol table info available.
#4  0x0000029654ee92a5 in curl_global_cleanup () from /usr/lib/libcurl.so.4
No symbol table info available.
#5  0x000002965511b769 in zm_shutdown_curl (type=9, module_number=1) at /tmp/buildd/php5-5.3.3/ext/curl/interface.c:869
No locals.
#6  0x000002965910ec7f in module_destructor (module=0x6d7c8adc30) at /tmp/buildd/php5-5.3.3/Zend/zend_API.c:2098
No locals.
#7  0x0000029659115aa2 in zend_hash_apply_deleter (ht=0x296598079c0, p=0x6d7c8adbd0) at /tmp/buildd/php5-5.3.3/Zend/zend_hash.c:813
        retval = 0x0
#8  0x0000029659115d28 in zend_hash_graceful_reverse_destroy (ht=0x296598079c0) at /tmp/buildd/php5-5.3.3/Zend/zend_hash.c:848
        p = 0x1
#9  0x00000296591099c5 in zend_shutdown () at /tmp/buildd/php5-5.3.3/Zend/zend.c:831
No locals.
#10 0x00000296590b445d in php_module_shutdown () at /tmp/buildd/php5-5.3.3/main/main.c:2167
No locals.
#11 0x00000296590b4509 in php_module_shutdown_wrapper (sapi_globals=0x9) at /tmp/buildd/php5-5.3.3/main/main.c:2139
No locals.
#12 0x0000029659195651 in php_apache_child_shutdown (tmp=0x9) at /tmp/buildd/php5-5.3.3/sapi/apache2handler/sapi_apache2.c:399
No locals.
#13 0x000002965f76f46b in run_cleanups () from /usr/lib/libapr-1.so.0
No symbol table info available.
#14 0x000002965f76e339 in apr_pool_destroy () from /usr/lib/libapr-1.so.0
No symbol table info available.
#15 0x0000006d7c2bdf6e in clean_child_exit (code=0) at prefork.c:196
No locals.
#16 0x0000006d7c2be48b in just_die (sig=<optimized out>) at prefork.c:328
No locals.
#17 <signal handler called>
No symbol table info available.
#18 zend_hash_destroy (ht=0x6d7cf80900) at /tmp/buildd/php5-5.3.3/Zend/zend_hash.c:725
        p = 0x6d7cf80cc0
#19 0x000002965910899f in _zval_dtor_func (zvalue=0x6d7cf80e28) at /tmp/buildd/php5-5.3.3/Zend/zend_variables.c:46
No locals.
#20 0x00000296590fc96d in _zval_ptr_dtor (zval_ptr=0x6d7cf80e90) at /tmp/buildd/php5-5.3.3/Zend/zend_variables.h:35
No locals.
#21 0x0000029659115de8 in zend_hash_destroy (ht=0x6d7cf80d40) at /tmp/buildd/php5-5.3.3/Zend/zend_hash.c:726
        p = 0x6d7cf80e78
#22 0x000002965910899f in _zval_dtor_func (zvalue=0x6d7cf81900) at /tmp/buildd/php5-5.3.3/Zend/zend_variables.c:46
No locals.
#23 0x00000296590fc96d in _zval_ptr_dtor (zval_ptr=0x6d7cf81968) at /tmp/buildd/php5-5.3.3/Zend/zend_variables.h:35
No locals.
#24 0x0000029659115de8 in zend_hash_destroy (ht=0x6d7cf7e5c0) at /tmp/buildd/php5-5.3.3/Zend/zend_hash.c:726
        p = 0x6d7cf81950
#25 0x000002965910899f in _zval_dtor_func (zvalue=0x6d7cf88b38) at /tmp/buildd/php5-5.3.3/Zend/zend_variables.c:46
No locals.
#26 0x00000296590fc96d in _zval_ptr_dtor (zval_ptr=0x6d7cf88ba0) at /tmp/buildd/php5-5.3.3/Zend/zend_variables.h:35
No locals.
#27 0x0000029659115de8 in zend_hash_destroy (ht=0x6d7cf3b3b0) at /tmp/buildd/php5-5.3.3/Zend/zend_hash.c:726
        p = 0x6d7cf88b88
#28 0x000002965910899f in _zval_dtor_func (zvalue=0x6d7cee4020) at /tmp/buildd/php5-5.3.3/Zend/zend_variables.c:46
No locals.
#29 0x00000296590fc96d in _zval_ptr_dtor (zval_ptr=0x6d7d60b998) at /tmp/buildd/php5-5.3.3/Zend/zend_variables.h:35
No locals.
#30 0x0000029659115de8 in zend_hash_destroy (ht=0x6d7cf16920) at /tmp/buildd/php5-5.3.3/Zend/zend_hash.c:726
        p = 0x6d7d60b980
#31 0x000002965910899f in _zval_dtor_func (zvalue=0x6d7d8e55c8) at /tmp/buildd/php5-5.3.3/Zend/zend_variables.c:46
No locals.
#32 0x00000296590fc96d in _zval_ptr_dtor (zval_ptr=0x6d7cf27bb8) at /tmp/buildd/php5-5.3.3/Zend/zend_variables.h:35
No locals.
#33 0x0000029659115ff8 in zend_hash_clean (ht=0x6d7ce347c0) at /tmp/buildd/php5-5.3.3/Zend/zend_hash.c:753
        p = 0x6d7cf27ba0
#34 0x0000029659130345 in zend_leave_helper_SPEC (execute_data=0x6d7cbb5930) at /tmp/buildd/php5-5.3.3/Zend/zend_vm_execute.h:211
        nested = 104 'h'
        op_array = 0x6d7ce1ec80
#35 0x0000029659142a9f in ZEND_RETURN_SPEC_VAR_HANDLER (execute_data=0x6d7cbb5930) at /tmp/buildd/php5-5.3.3/Zend/zend_vm_execute.h:8223
        opline = 0x2963d5ae7a8
        retval_ptr = 0x6d7d8e57c8
        retval_ptr_ptr = 0x6d7d8e57c8
        free_op1 = {var = 0x29659142a9f}
#36 0x00000296591314b0 in execute (op_array=0x6d7ccd3638) at /tmp/buildd/php5-5.3.3/Zend/zend_vm_execute.h:107
        ret = 1494206768
        execute_data = 0x6d7cbb5930
        nested = 0 '\000'
        original_in_execution = 0 '\000'
#37 0x0000029659108c9d in zend_execute_scripts (type=0, retval=0x38b2930c3b0, file_count=3) at /tmp/buildd/php5-5.3.3/Zend/zend.c:1266
        files = {{gp_offset = 0, fp_offset = 0, overflow_arg_area = 0x28, reg_save_area = 0x38b2930c440}}
        i = 1
        file_handle = 0x38b2930e760
        orig_op_array = 0x0
        orig_retval_ptr_ptr = 0x29659807490
#38 0x00000296590b42a8 in php_execute_script (primary_file=0x0) at /tmp/buildd/php5-5.3.3/main/main.c:2289
        __orig_bailout = 0x2965fdf482c
        __bailout = {{__jmpbuf = {16, 907, 28785047, 0, 1595758200, 662, 691057632, 907}, __mask_was_saved = 0, __saved_mask = {__val = {2089499136, 109, 1610611080, 662, 1391631164, 662, 1595811448, 662, 1391629744, 662, 0, 5, 1794, 1, 0, 0}}}}
        prepend_file_p = 0x0
        append_file_p = 0x0
        prepend_file = {type = 103, filename = 0x38b2930b8d7 "", opened_path = 0x29651416000 <Address 0x29651416000 out of bounds>, handle = {fd = 1608484626, fp = 0x2965fdf8712, stream = {handle = 0x2965fdf8712, isatty = 5, mmap = {len = 0, pos = 691057744, map = 0x2965f1e0458, buf = 0x2965f1e0458 "K\023", old_handle = 0x2965ffff988, old_closer = 0x38b2930b470}, reader = 0xffffffff, fsizer = 0x6d00000000, closer = 0x5}}, free_filename = 208 '\320'}
        append_file = {type = 5, filename = 0x0, opened_path = 0x1 <Address 0x1 out of bounds>, handle = {fd = 2089496016, fp = 0x6d7c8b2dd0, stream = {handle = 0x6d7c8b2dd0, isatty = 1595802712, mmap = {len = 1610611080, pos = 1595802712, map = 0x2965ffff988, buf = 0x0, old_handle = 0x6d7c8b3128, old_closer = 0x38b2930b3e0}, reader = 0x38b2930b3f8, fsizer = 0x10025bbd8, closer = 0x29652f29b3c}}, free_filename = 144 '\220'}
        retval = 0
#39 0x00000296591968ed in php_handler (r=0x296591968ed) at /tmp/buildd/php5-5.3.3/sapi/apache2handler/sapi_apache2.c:688
        __bailout = {{__jmpbuf = {2086259064, 109, 2087037072, 109, 32897469, 3263865555, 2093405560, 109}, __mask_was_saved = -973211203, __saved_mask = {__val = {0, 4294967295, 4294967295, 4294967295, 0, 0, 23, 0, 2092001392, 109, 2091997048, 109, 24, 0, 0, 0}}}}
        ctx = 0x6d7cafe500
        conf = 0x6d7cc6d578
        brigade = 0x0
        bucket = 0x296590fc930
        rv = 1494206768
        parent_req = 0x1
#40 0x0000006d7c2a9668 in ap_run_handler (r=0x6d7cc6d578) at config.c:159
        pHook = <optimized out>
        n = <optimized out>
        rv = -1
#41 0x0000006d7c2a9ade in ap_invoke_handler (r=0x6d7cc6d578) at config.c:377
        handler = <optimized out>
        p = <optimized out>
        result = <optimized out>
        old_handler = 0x0
        ignore = <optimized out>
#42 0x0000006d7c2b8d2c in ap_internal_redirect (new_uri=<optimized out>, r=<optimized out>) at http_request.c:554
        new = 0x6d7cc6d578
        access_status = <optimized out>
#43 0x00000296569f6a05 in handler_redirect (r=0x6d7cc8c0d0) at mod_rewrite.c:4860
No locals.
#44 0x0000006d7c2a9668 in ap_run_handler (r=0x6d7cc8c0d0) at config.c:159
        pHook = <optimized out>
        n = <optimized out>
        rv = -1
#45 0x0000006d7c2a9ade in ap_invoke_handler (r=0x6d7cc8c0d0) at config.c:377
        handler = <optimized out>
        p = <optimized out>
        result = <optimized out>
        old_handler = 0x296569fcbdd "redirect-handler"
        ignore = <optimized out>
#46 0x0000006d7c2b96b0 in ap_process_request (r=0x6d7cc8c0d0) at http_request.c:282
        access_status = <optimized out>
#47 0x0000006d7c2b64f8 in ap_process_http_connection (c=0x6d7caf8160) at http_core.c:190
        r = 0x6d7cc8c0d0
        csd = 0x0
#48 0x0000006d7c2b00e8 in ap_run_process_connection (c=0x6d7caf8160) at connection.c:43
        pHook = <optimized out>
        n = <optimized out>
        rv = -1
#49 0x0000006d7c2be2af in child_main (child_num_arg=<optimized out>) at prefork.c:667
        current_conn = 0x6d7caf8160
        csd = 0x6d7caf7f70
        ptrans = 0x6d7caf7ef8
        allocator = 0x6d7caf5df0
        status = <optimized out>
        i = <optimized out>
        lr = <optimized out>
        pollset = 0x6d7caf5ff0
        sbh = 0x6d7caf5fe8
        bucket_alloc = 0x6d7cafbf18
        last_poll_idx = 1
#50 0x0000006d7c2bea0a in make_child (slot=54, s=0x6d7c4f2438) at prefork.c:768
        pid = 0
#51 make_child (s=0x6d7c4f2438, slot=54) at prefork.c:696
No locals.
#52 0x0000006d7c2bf5bf in perform_idle_server_maintenance (p=<optimized out>) at prefork.c:903
        i = <optimized out>
        idle_count = <optimized out>
        ws = <optimized out>
        free_length = <optimized out>
        free_slots = {43, 46, 47, 48, 50, 51, 52, 54, 69, 72, 82, 83, 84, 85, 86, 87, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114}
        last_non_dead = <optimized out>
        total_non_dead = <optimized out>
#53 ap_mpm_run (_pconf=<optimized out>, plog=<optimized out>, s=<optimized out>) at prefork.c:1107
        status = 0
        pid = {pid = -1, in = 0x0, out = 0x0, err = 0x6d7c4e5b10}
        child_slot = <optimized out>
        exitwhy = APR_PROC_EXIT
        processed_status = <optimized out>
        index = <optimized out>
        remaining_children_to_start = 0
        rv = <optimized out>
#54 0x0000006d7c294698 in main (argc=3, argv=0x38b2930edd8) at main.c:755
        c = 0 '\000'
        configtestonly = <optimized out>
        confname = 0x6d7c2c0ffa "apache2.conf"
        def_server_root = 0x6d7c2c0fed "/etc/apache2"
        temp_error_log = 0x0
        error = <optimized out>
        process = 0x6d7c4e9d18
        server_conf = 0x6d7c4f2438
        pglobal = <optimized out>
        pconf = 0x6d7c4ebc38
        plog = 0x6d7c51fdd8
        ptemp = 0x6d7c4f3c78
        pcommands = 0x6d7c4edc48
        opt = 0x6d7c4edd38
        rv = 0
        mod = <optimized out>
        optarg = 0x3 <Address 0x3 out of bounds>
        signal_server = <optimized out>



Attachment: php.info
Description: application/info

[PHP]

;;;;;;;;;;;
; WARNING ;
;;;;;;;;;;;
; This is the default settings file for new PHP installations.
; By default, PHP installs itself with a configuration suitable for
; development purposes, and *NOT* for production purposes.
; For several security-oriented considerations that should be taken
; before going online with your site, please consult php.ini-recommended
; and http://php.net/manual/en/security.php.


;;;;;;;;;;;;;;;;;;;
; About php.ini   ;
;;;;;;;;;;;;;;;;;;;
; This file controls many aspects of PHP's behavior.  In order for PHP to
; read it, it must be named 'php.ini'.  PHP looks for it in the current
; working directory, in the path designated by the environment variable
; PHPRC, and in the path that was defined in compile time (in that order).
; Under Windows, the compile-time path is the Windows directory.  The
; path in which the php.ini file is looked for can be overridden using
; the -c argument in command line mode.
;
; The syntax of the file is extremely simple.  Whitespace and Lines
; beginning with a semicolon are silently ignored (as you probably guessed).
; Section headers (e.g. [Foo]) are also silently ignored, even though
; they might mean something in the future.
;
; Directives are specified using the following syntax:
; directive = value
; Directive names are *case sensitive* - foo=bar is different from FOO=bar.
;
; The value can be a string, a number, a PHP constant (e.g. E_ALL or M_PI), one
; of the INI constants (On, Off, True, False, Yes, No and None) or an expression
; (e.g. E_ALL & ~E_NOTICE), or a quoted string ("foo").
;
; Expressions in the INI file are limited to bitwise operators and parentheses:
; |        bitwise OR
; &        bitwise AND
; ~        bitwise NOT
; !        boolean NOT
;
; Boolean flags can be turned on using the values 1, On, True or Yes.
; They can be turned off using the values 0, Off, False or No.
;
; An empty string can be denoted by simply not writing anything after the equal
; sign, or by using the None keyword:
;
;  foo =         ; sets foo to an empty string
;  foo = none    ; sets foo to an empty string
;  foo = "none"  ; sets foo to the string 'none'
;
; If you use constants in your value, and these constants belong to a
; dynamically loaded extension (either a PHP extension or a Zend extension),
; you may only use these constants *after* the line that loads the extension.
;
;
;;;;;;;;;;;;;;;;;;;
; About this file ;
;;;;;;;;;;;;;;;;;;;
; All the values in the php.ini-dist file correspond to the builtin
; defaults (that is, if no php.ini is used, or if you delete these lines,
; the builtin defaults will be identical).


;;;;;;;;;;;;;;;;;;;;
; Language Options ;
;;;;;;;;;;;;;;;;;;;;

; Enable the PHP scripting language engine under Apache.
engine = On

; Enable compatibility mode with Zend Engine 1 (PHP 4.x)
zend.ze1_compatibility_mode = Off

; Allow the <? tag.  Otherwise, only <?php and <script> tags are recognized.
; NOTE: Using short tags should be avoided when developing applications or
; libraries that are meant for redistribution, or deployment on PHP
; servers which are not under your control, because short tags may not
; be supported on the target server. For portable, redistributable code,
; be sure not to use short tags.
short_open_tag = Off

; Allow ASP-style <% %> tags.
asp_tags = Off

; The number of significant digits displayed in floating point numbers.
precision    =  12

; Enforce year 2000 compliance (will cause problems with non-compliant browsers)
y2k_compliance = On

; Output buffering allows you to send header lines (including cookies) even
; after you send body content, at the price of slowing PHP's output layer a
; bit.  You can enable output buffering during runtime by calling the output
; buffering functions.  You can also enable output buffering for all files by
; setting this directive to On.  If you wish to limit the size of the buffer
; to a certain size - you can use a maximum number of bytes instead of 'On', as
; a value for this directive (e.g., output_buffering=4096).
output_buffering = Off

; You can redirect all of the output of your scripts to a function.  For
; example, if you set output_handler to "mb_output_handler", character
; encoding will be transparently converted to the specified encoding.
; Setting any output handler automatically turns on output buffering.
; Note: People who wrote portable scripts should not depend on this ini
;       directive. Instead, explicitly set the output handler using ob_start().
;       Using this ini directive may cause problems unless you know what script
;       is doing.
; Note: You cannot use both "mb_output_handler" with "ob_iconv_handler"
;       and you cannot use both "ob_gzhandler" and "zlib.output_compression".
; Note: output_handler must be empty if this is set 'On' !!!!
;       Instead you must use zlib.output_handler.
;output_handler =

; Transparent output compression using the zlib library
; Valid values for this option are 'off', 'on', or a specific buffer size
; to be used for compression (default is 4KB)
; Note: Resulting chunk size may vary due to nature of compression. PHP
;       outputs chunks that are few hundreds bytes each as a result of
;       compression. If you prefer a larger chunk size for better
;       performance, enable output_buffering in addition.
; Note: You need to use zlib.output_handler instead of the standard
;       output_handler, or otherwise the output will be corrupted.
zlib.output_compression = Off
;zlib.output_compression_level = -1

; You cannot specify additional output handlers if zlib.output_compression
; is activated here. This setting does the same as output_handler but in
; a different order.
;zlib.output_handler =

; Implicit flush tells PHP to tell the output layer to flush itself
; automatically after every output block.  This is equivalent to calling the
; PHP function flush() after each and every call to print() or echo() and each
; and every HTML block.  Turning this option on has serious performance
; implications and is generally recommended for debugging purposes only.
implicit_flush = Off

; The unserialize callback function will be called (with the undefined class'
; name as parameter), if the unserializer finds an undefined class
; which should be instantiated.
; A warning appears if the specified function is not defined, or if the
; function doesn't include/implement the missing class.
; So only set this entry, if you really want to implement such a
; callback-function.
unserialize_callback_func=

; When floats & doubles are serialized store serialize_precision significant
; digits after the floating point. The default value ensures that when floats
; are decoded with unserialize, the data will remain the same.
serialize_precision = 100

; Whether to enable the ability to force arguments to be passed by reference
; at function call time.  This method is deprecated and is likely to be
; unsupported in future versions of PHP/Zend.  The encouraged method of
; specifying which arguments should be passed by reference is in the function
; declaration.  You're encouraged to try and turn this option Off and make
; sure your scripts work properly with it in order to ensure they will work
; with future versions of the language (you will receive a warning each time
; you use this feature, and the argument will be passed by value instead of by
; reference).
allow_call_time_pass_reference = Off

;
; Safe Mode
;
; NOTE: this is considered a "broken" security measure.
;       applications relying on this feature will not recieve full
;       support by the security team.  for more information please
;       see /usr/share/doc/php5-common/README.Debian.security
;
safe_mode = Off

; By default, Safe Mode does a UID compare check when
; opening files. If you want to relax this to a GID compare,
; then turn on safe_mode_gid.
safe_mode_gid = Off

; When safe_mode is on, UID/GID checks are bypassed when
; including files from this directory and its subdirectories.
; (directory must also be in include_path or full path must
; be used when including)
safe_mode_include_dir =

; When safe_mode is on, only executables located in the safe_mode_exec_dir
; will be allowed to be executed via the exec family of functions.
safe_mode_exec_dir =

; Setting certain environment variables may be a potential security breach.
; This directive contains a comma-delimited list of prefixes.  In Safe Mode,
; the user may only alter environment variables whose names begin with the
; prefixes supplied here.  By default, users will only be able to set
; environment variables that begin with PHP_ (e.g. PHP_FOO=BAR).
;
; Note:  If this directive is empty, PHP will let the user modify ANY
; environment variable!
safe_mode_allowed_env_vars = PHP_

; This directive contains a comma-delimited list of environment variables that
; the end user won't be able to change using putenv().  These variables will be
; protected even if safe_mode_allowed_env_vars is set to allow to change them.
safe_mode_protected_env_vars = LD_LIBRARY_PATH

; open_basedir, if set, limits all file operations to the defined directory
; and below.  This directive makes most sense if used in a per-directory
; or per-virtualhost web server configuration file. This directive is
; *NOT* affected by whether Safe Mode is turned On or Off.

; NOTE: this is considered a "broken" security measure.
;       applications relying on this feature will not recieve full
;       support by the security team.  for more information please
;       see /usr/share/doc/php5-common/README.Debian.security
;

;open_basedir =

; This directive allows you to disable certain functions for security reasons.
; It receives a comma-delimited list of function names. This directive is
; *NOT* affected by whether Safe Mode is turned On or Off.
disable_functions =

; This directive allows you to disable certain classes for security reasons.
; It receives a comma-delimited list of class names. This directive is
; *NOT* affected by whether Safe Mode is turned On or Off.
disable_classes =

; Colors for Syntax Highlighting mode.  Anything that's acceptable in
; <span style="color: ???????"> would work.
;highlight.string  = #DD0000
;highlight.comment = #FF9900
;highlight.keyword = #007700
;highlight.bg      = #FFFFFF
;highlight.default = #0000BB
;highlight.html    = #000000

; If enabled, the request will be allowed to complete even if the user aborts
; the request. Consider enabling it if executing long request, which may end up
; being interrupted by the user or a browser timing out.
; ignore_user_abort = On

; Determines the size of the realpath cache to be used by PHP. This value should
; be increased on systems where PHP opens many files to reflect the quantity of
; the file operations performed.
; realpath_cache_size=16k

; Duration of time, in seconds for which to cache realpath information for a given
; file or directory. For systems with rarely changing files, consider increasing this
; value.
; realpath_cache_ttl=120

;
; Misc
;
; Decides whether PHP may expose the fact that it is installed on the server
; (e.g. by adding its signature to the Web server header).  It is no security
; threat in any way, but it makes it possible to determine whether you use PHP
; on your server or not.
expose_php = Off


;;;;;;;;;;;;;;;;;;;
; Resource Limits ;
;;;;;;;;;;;;;;;;;;;

max_execution_time = 30     ; Maximum execution time of each script, in seconds
max_input_time = 60 ; Maximum amount of time each script may spend parsing request data
;max_input_nesting_level = 64 ; Maximum input variable nesting level
memory_limit = 128M      ; Maximum amount of memory a script may consume (128MB)

; This directive informs PHP of which errors, warnings and notices you would like
; it to take action for. The recommended way of setting values for this
; directive is through the use of the error level constants and bitwise
; operators. The error level constants are below here for convenience as well as
; some common settings and their meanings.
; By default, PHP is set to take action on all errors, notices and warnings EXCEPT
; those related to E_NOTICE and E_STRICT, which together cover best practices and
; recommended coding standards in PHP. For performance reasons, this is the
; recommend error reporting setting. Your production server shouldn't be wasting
; resources complaining about best practices and coding standards. That's what
; development servers and development settings are for.
; Note: The php.ini-development file has this setting as E_ALL | E_STRICT. This
; means it pretty much reports everything which is exactly what you want during
; development and early testing.
;
; Error Level Constants:
; E_ALL             - All errors and warnings (includes E_STRICT as of PHP 6.0.0)
; E_ERROR           - fatal run-time errors
; E_RECOVERABLE_ERROR  - almost fatal run-time errors
; E_WARNING         - run-time warnings (non-fatal errors)
; E_PARSE           - compile-time parse errors
; E_NOTICE          - run-time notices (these are warnings which often result
;                     from a bug in your code, but it's possible that it was
;                     intentional (e.g., using an uninitialized variable and
;                     relying on the fact it's automatically initialized to an
;                     empty string)
; E_STRICT          - run-time notices, enable to have PHP suggest changes
;                     to your code which will ensure the best interoperability
;                     and forward compatibility of your code
; E_CORE_ERROR      - fatal errors that occur during PHP's initial startup
; E_CORE_WARNING    - warnings (non-fatal errors) that occur during PHP's
;                     initial startup
; E_COMPILE_ERROR   - fatal compile-time errors
; E_COMPILE_WARNING - compile-time warnings (non-fatal errors)
; E_USER_ERROR      - user-generated error message
; E_USER_WARNING    - user-generated warning message
; E_USER_NOTICE     - user-generated notice message
; E_DEPRECATED      - warn about code that will not work in future versions
;                     of PHP
; E_USER_DEPRECATED - user-generated deprecation warnings
;
; Common Values:
;   E_ALL & ~E_NOTICE  (Show all errors, except for notices and coding standards warnings.)
;   E_ALL & ~E_NOTICE | E_STRICT  (Show all errors, except for notices)
;   E_COMPILE_ERROR|E_RECOVERABLE_ERROR|E_ERROR|E_CORE_ERROR  (Show only errors)
;   E_ALL | E_STRICT  (Show all errors, warnings and notices including coding standards.)
; Default Value: E_ALL & ~E_NOTICE
; Development Value: E_ALL | E_STRICT
; Production Value: E_ALL & ~E_DEPRECATED
; http://php.net/error-reporting
error_reporting = E_ALL & ~E_DEPRECATED & ~E_NOTICE


; Print out errors (as a part of the output).  For production web sites,
; you're strongly encouraged to turn this feature off, and use error logging
; instead (see below).  Keeping display_errors enabled on a production web site
; may reveal security information to end users, such as file paths on your Web
; server, your database schema or other information.
;
; possible values for display_errors:
;
; Off        - Do not display any errors
; stderr     - Display errors to STDERR (affects only CGI/CLI binaries!)
;
;display_errors = "stderr"
;
; stdout (On) - Display errors to STDOUT
;
display_errors = On

; Even when display_errors is on, errors that occur during PHP's startup
; sequence are not displayed.  It's strongly recommended to keep
; display_startup_errors off, except for when debugging.
display_startup_errors = Off

; Log errors into a log file (server-specific log, stderr, or error_log (below))
; As stated above, you're strongly advised to use error logging in place of
; error displaying on production web sites.
log_errors = On

; Set maximum length of log_errors. In error_log information about the source is
; added. The default is 1024 and 0 allows to not apply any maximum length at all.
log_errors_max_len = 1024

; Do not log repeated messages. Repeated errors must occur in same file on same
; line unless ignore_repeated_source is set true.
ignore_repeated_errors = Off

; Ignore source of message when ignoring repeated messages. When this setting
; is On you will not log errors with repeated messages from different files or
; source lines.
ignore_repeated_source = Off

; If this parameter is set to Off, then memory leaks will not be shown (on
; stdout or in the log). This has only effect in a debug compile, and if
; error reporting includes E_WARNING in the allowed list
report_memleaks = On

;report_zend_debug = 0

; Store the last error/warning message in $php_errormsg (boolean).
track_errors = Off

; Turn off normal error reporting and emit XML-RPC error XML
;xmlrpc_errors = 0
; An XML-RPC faultCode
;xmlrpc_error_number = 0

; Disable the inclusion of HTML tags in error messages.
; Note: Never use this feature for production boxes.
;html_errors = Off

; If html_errors is set On PHP produces clickable error messages that direct
; to a page describing the error or function causing the error in detail.
; You can download a copy of the PHP manual from http://www.php.net/docs.php
; and change docref_root to the base URL of your local copy including the
; leading '/'. You must also specify the file extension being used including
; the dot.
; Note: Never use this feature for production boxes.
;docref_root = "/phpmanual/"
;docref_ext = .html

; String to output before an error message.
;error_prepend_string = "<font color=#ff0000>"

; String to output after an error message.
;error_append_string = "</font>"

; Log errors to specified file.
error_log = /var/log/apache2/php.errors.log

; Log errors to syslog (Event Log on NT, not valid in Windows 95).
;error_log = syslog


;;;;;;;;;;;;;;;;;
; Data Handling ;
;;;;;;;;;;;;;;;;;
;
; Note - track_vars is ALWAYS enabled as of PHP 4.0.3

; The separator used in PHP generated URLs to separate arguments.
; Default is "&".
;arg_separator.output = "&amp;"

; List of separator(s) used by PHP to parse input URLs into variables.
; Default is "&".
; NOTE: Every character in this directive is considered as separator!
;arg_separator.input = ";&"

; This directive describes the order in which PHP registers GET, POST, Cookie,
; Environment and Built-in variables (G, P, C, E & S respectively, often
; referred to as EGPCS or GPC).  Registration is done from left to right, newer
; values override older values.
variables_order = "EGPCS"

; Whether or not to register the EGPCS variables as global variables.  You may
; want to turn this off if you don't want to clutter your scripts' global scope
; with user data.  This makes most sense when coupled with track_vars - in which
; case you can access all of the GPC variables through the $HTTP_*_VARS[],
; variables.
;
; You should do your best to write your scripts so that they do not require
; register_globals to be on;  Using form variables as globals can easily lead
; to possible security problems, if the code is not very well thought of.

; NOTE: applications relying on this feature will not recieve full
;       support by the security team.  for more information please
;       see /usr/share/doc/php5-common/README.Debian.security
;
register_globals = Off

; Whether or not to register the old-style input arrays, HTTP_GET_VARS
; and friends.  If you're not using them, it's recommended to turn them off,
; for performance reasons.
register_long_arrays = Off

; This directive tells PHP whether to declare the argv&argc variables (that
; would contain the GET information).  If you don't use these variables, you
; should turn it off for increased performance.
register_argc_argv = Off

; When enabled, the SERVER and ENV variables are created when they're first
; used (Just In Time) instead of when the script starts. If these variables
; are not used within a script, having this directive on will result in a
; performance gain. The PHP directives register_globals, register_long_arrays,
; and register_argc_argv must be disabled for this directive to have any affect.
auto_globals_jit = On

; Maximum size of POST data that PHP will accept.
post_max_size = 8M

; Magic quotes
;

; Magic quotes for incoming GET/POST/Cookie data.
magic_quotes_gpc = Off

; Magic quotes for runtime-generated data, e.g. data from SQL, from exec(), etc.
magic_quotes_runtime = Off

; Use Sybase-style magic quotes (escape ' with '' instead of \').
magic_quotes_sybase = Off

; Automatically add files before or after any PHP document.
auto_prepend_file =
auto_append_file =

; As of 4.0b4, PHP always outputs a character encoding by default in
; the Content-type: header.  To disable sending of the charset, simply
; set it to be empty.
;
; PHP's built-in default is text/html
default_mimetype = "text/html"
;default_charset = "iso-8859-1"

; Always populate the $HTTP_RAW_POST_DATA variable.
;always_populate_raw_post_data = On


;;;;;;;;;;;;;;;;;;;;;;;;;
; Paths and Directories ;
;;;;;;;;;;;;;;;;;;;;;;;;;

; UNIX: "/path1:/path2"
include_path = ".:/usr/share/php"
;
; Windows: "\path1;\path2"
;include_path = ".;c:\php\includes"

; The root of the PHP pages, used only if nonempty.
; if PHP was not compiled with FORCE_REDIRECT, you SHOULD set doc_root
; if you are running php as a CGI under any web server (other than IIS)
; see documentation for security issues.  The alternate is to use the
; cgi.force_redirect configuration below
doc_root =

; The directory under which PHP opens the script using /~username used only
; if nonempty.
user_dir =

; Directory in which the loadable extensions (modules) reside.
; extension_dir = "./"

; Whether or not to enable the dl() function.  The dl() function does NOT work
; properly in multithreaded servers, such as IIS or Zeus, and is automatically
; disabled on them.
enable_dl = On

; cgi.force_redirect is necessary to provide security running PHP as a CGI under
; most web servers.  Left undefined, PHP turns this on by default.  You can
; turn it off here AT YOUR OWN RISK
; **You CAN safely turn this off for IIS, in fact, you MUST.**
; cgi.force_redirect = 1

; if cgi.nph is enabled it will force cgi to always sent Status: 200 with
; every request.
; cgi.nph = 1

; if cgi.force_redirect is turned on, and you are not running under Apache or Netscape
; (iPlanet) web servers, you MAY need to set an environment variable name that PHP
; will look for to know it is OK to continue execution.  Setting this variable MAY
; cause security issues, KNOW WHAT YOU ARE DOING FIRST.
; cgi.redirect_status_env = ;

; cgi.fix_pathinfo provides *real* PATH_INFO/PATH_TRANSLATED support for CGI.  PHP's
; previous behaviour was to set PATH_TRANSLATED to SCRIPT_FILENAME, and to not grok
; what PATH_INFO is.  For more information on PATH_INFO, see the cgi specs.  Setting
; this to 1 will cause PHP CGI to fix it's paths to conform to the spec.  A setting
; of zero causes PHP to behave as before.  Default is 1.  You should fix your scripts
; to use SCRIPT_FILENAME rather than PATH_TRANSLATED.
; cgi.fix_pathinfo=0

; FastCGI under IIS (on WINNT based OS) supports the ability to impersonate
; security tokens of the calling client.  This allows IIS to define the
; security context that the request runs under.  mod_fastcgi under Apache
; does not currently support this feature (03/17/2002)
; Set to 1 if running under IIS.  Default is zero.
; fastcgi.impersonate = 1;

; Disable logging through FastCGI connection
; fastcgi.logging = 0

; cgi.rfc2616_headers configuration option tells PHP what type of headers to
; use when sending HTTP response code. If it's set 0 PHP sends Status: header that
; is supported by Apache. When this option is set to 1 PHP will send
; RFC2616 compliant header.
; Default is zero.
;cgi.rfc2616_headers = 0


;;;;;;;;;;;;;;;;
; File Uploads ;
;;;;;;;;;;;;;;;;

; Whether to allow HTTP file uploads.
file_uploads = On

; Temporary directory for HTTP uploaded files (will use system default if not
; specified).
;upload_tmp_dir =

; Maximum allowed size for uploaded files.
upload_max_filesize = 2M


;;;;;;;;;;;;;;;;;;
; Fopen wrappers ;
;;;;;;;;;;;;;;;;;;

; Whether to allow the treatment of URLs (like http:// or ftp://) as files.
allow_url_fopen = On

; Whether to allow include/require to open URLs (like http:// or ftp://) as files.
allow_url_include = Off

; Define the anonymous ftp password (your email address)
;from="john@xxxxxxx"

; Define the User-Agent string
; user_agent="PHP"

; Default timeout for socket based streams (seconds)
default_socket_timeout = 60

; If your scripts have to deal with files from Macintosh systems,
; or you are running on a Mac and need to deal with files from
; unix or win32 systems, setting this flag will cause PHP to
; automatically detect the EOL character in those files so that
; fgets() and file() will work regardless of the source of the file.
; auto_detect_line_endings = Off


;;;;;;;;;;;;;;;;;;;;;;
; Dynamic Extensions ;
;;;;;;;;;;;;;;;;;;;;;;
;
; If you wish to have an extension loaded automatically, use the following
; syntax:
;
;   extension=modulename.extension
;
; For example, on Windows:
;
;   extension=msql.dll
;
; ... or under UNIX:
;
;   extension=msql.so
;
; Note that it should be the name of the module only; no directory information
; needs to go here.  Specify the location of the extension with the
; extension_dir directive above.


;;;;;;;;;;;;;;;;;;;
; Module Settings ;
;;;;;;;;;;;;;;;;;;;

[Date]
; Defines the default timezone used by the date functions
date.timezone = Europe/Paris

;date.default_latitude = 31.7667
;date.default_longitude = 35.2333

;date.sunrise_zenith = 90.583333
;date.sunset_zenith = 90.583333

[filter]
;filter.default = unsafe_raw
;filter.default_flags =

[iconv]
;iconv.input_encoding = ISO-8859-1
;iconv.internal_encoding = ISO-8859-1
;iconv.output_encoding = ISO-8859-1

[sqlite]
;sqlite.assoc_case = 0

[Pcre]
;PCRE library backtracking limit.
;pcre.backtrack_limit=100000

;PCRE library recursion limit. 
;Please note that if you set this value to a high number you may consume all 
;the available process stack and eventually crash PHP (due to reaching the 
;stack size limit imposed by the Operating System).
;pcre.recursion_limit=100000

[Syslog]
; Whether or not to define the various syslog variables (e.g. $LOG_PID,
; $LOG_CRON, etc.).  Turning it off is a good idea performance-wise.  In
; runtime, you can define these variables by calling define_syslog_variables().
define_syslog_variables  = Off

[mail function]
; For Win32 only.
SMTP = localhost
smtp_port = 25

; For Win32 only.
;sendmail_from = me@xxxxxxxxxxx

; For Unix only.  You may supply arguments as well (default: "sendmail -t -i").
;sendmail_path =

; Force the addition of the specified parameters to be passed as extra parameters
; to the sendmail binary. These parameters will always replace the value of
; the 5th parameter to mail(), even in safe mode.
;mail.force_extra_parameters =

[SQL]
sql.safe_mode = Off

[ODBC]
;odbc.default_db    =  Not yet implemented
;odbc.default_user  =  Not yet implemented
;odbc.default_pw    =  Not yet implemented

; Allow or prevent persistent links.
odbc.allow_persistent = On

; Check that a connection is still valid before reuse.
odbc.check_persistent = On

; Maximum number of persistent links.  -1 means no limit.
odbc.max_persistent = -1

; Maximum number of links (persistent + non-persistent).  -1 means no limit.
odbc.max_links = -1

; Handling of LONG fields.  Returns number of bytes to variables.  0 means
; passthru.
odbc.defaultlrl = 4096

; Handling of binary data.  0 means passthru, 1 return as is, 2 convert to char.
; See the documentation on odbc_binmode and odbc_longreadlen for an explanation
; of uodbc.defaultlrl and uodbc.defaultbinmode
odbc.defaultbinmode = 1

[MySQL]
; Allow or prevent persistent links.
mysql.allow_persistent = On

; Maximum number of persistent links.  -1 means no limit.
mysql.max_persistent = -1

; Maximum number of links (persistent + non-persistent).  -1 means no limit.
mysql.max_links = -1

; Default port number for mysql_connect().  If unset, mysql_connect() will use
; the $MYSQL_TCP_PORT or the mysql-tcp entry in /etc/services or the
; compile-time value defined MYSQL_PORT (in that order).  Win32 will only look
; at MYSQL_PORT.
mysql.default_port =

; Default socket name for local MySQL connects.  If empty, uses the built-in
; MySQL defaults.
mysql.default_socket =

; Default host for mysql_connect() (doesn't apply in safe mode).
mysql.default_host =

; Default user for mysql_connect() (doesn't apply in safe mode).
mysql.default_user =

; Default password for mysql_connect() (doesn't apply in safe mode).
; Note that this is generally a *bad* idea to store passwords in this file.
; *Any* user with PHP access can run 'echo get_cfg_var("mysql.default_password")
; and reveal this password!  And of course, any users with read access to this
; file will be able to reveal the password as well.
mysql.default_password =

; Maximum time (in seconds) for connect timeout. -1 means no limit
mysql.connect_timeout = 60

; Trace mode. When trace_mode is active (=On), warnings for table/index scans and
; SQL-Errors will be displayed.
mysql.trace_mode = Off

[MySQLi]

; Maximum number of links.  -1 means no limit.
mysqli.max_links = -1

; Default port number for mysqli_connect().  If unset, mysqli_connect() will use
; the $MYSQL_TCP_PORT or the mysql-tcp entry in /etc/services or the
; compile-time value defined MYSQL_PORT (in that order).  Win32 will only look
; at MYSQL_PORT.
mysqli.default_port = 3306

; Default socket name for local MySQL connects.  If empty, uses the built-in
; MySQL defaults.
mysqli.default_socket =

; Default host for mysql_connect() (doesn't apply in safe mode).
mysqli.default_host =

; Default user for mysql_connect() (doesn't apply in safe mode).
mysqli.default_user =

; Default password for mysqli_connect() (doesn't apply in safe mode).
; Note that this is generally a *bad* idea to store passwords in this file.
; *Any* user with PHP access can run 'echo get_cfg_var("mysqli.default_pw")
; and reveal this password!  And of course, any users with read access to this
; file will be able to reveal the password as well.
mysqli.default_pw =

; Allow or prevent reconnect
mysqli.reconnect = Off

[mSQL]
; Allow or prevent persistent links.
msql.allow_persistent = On

; Maximum number of persistent links.  -1 means no limit.
msql.max_persistent = -1

; Maximum number of links (persistent+non persistent).  -1 means no limit.
msql.max_links = -1

[OCI8]
; enables privileged connections using external credentials (OCI_SYSOPER, OCI_SYSDBA)
;oci8.privileged_connect = Off

; Connection: The maximum number of persistent OCI8 connections per
; process. Using -1 means no limit.
;oci8.max_persistent = -1

; Connection: The maximum number of seconds a process is allowed to
; maintain an idle persistent connection. Using -1 means idle
; persistent connections will be maintained forever.
;oci8.persistent_timeout = -1

; Connection: The number of seconds that must pass before issuing a
; ping during oci_pconnect() to check the connection validity. When
; set to 0, each oci_pconnect() will cause a ping. Using -1 disables
; pings completely.
;oci8.ping_interval = 60

; Tuning: This option enables statement caching, and specifies how
; many statements to cache. Using 0 disables statement caching.
;oci8.statement_cache_size = 20

; Tuning: Enables statement prefetching and sets the default number of
; rows that will be fetched automatically after statement execution.
;oci8.default_prefetch = 10

; Compatibility. Using On means oci_close() will not close
; oci_connect() and oci_new_connect() connections.
;oci8.old_oci_close_semantics = Off

[PostgresSQL]
; Allow or prevent persistent links.
pgsql.allow_persistent = On

; Detect broken persistent links always with pg_pconnect().
; Auto reset feature requires a little overheads.
pgsql.auto_reset_persistent = Off

; Maximum number of persistent links.  -1 means no limit.
pgsql.max_persistent = -1

; Maximum number of links (persistent+non persistent).  -1 means no limit.
pgsql.max_links = -1

; Ignore PostgreSQL backends Notice message or not.
; Notice message logging require a little overheads.
pgsql.ignore_notice = 0

; Log PostgreSQL backends Noitce message or not.
; Unless pgsql.ignore_notice=0, module cannot log notice message.
pgsql.log_notice = 0

[Sybase]
; Allow or prevent persistent links.
sybase.allow_persistent = On

; Maximum number of persistent links.  -1 means no limit.
sybase.max_persistent = -1

; Maximum number of links (persistent + non-persistent).  -1 means no limit.
sybase.max_links = -1

;sybase.interface_file = "/usr/sybase/interfaces"

; Minimum error severity to display.
sybase.min_error_severity = 10

; Minimum message severity to display.
sybase.min_message_severity = 10

; Compatibility mode with old versions of PHP 3.0.
; If on, this will cause PHP to automatically assign types to results according
; to their Sybase type, instead of treating them all as strings.  This
; compatibility mode will probably not stay around forever, so try applying
; whatever necessary changes to your code, and turn it off.
sybase.compatability_mode = Off

[Sybase-CT]
; Allow or prevent persistent links.
sybct.allow_persistent = On

; Maximum number of persistent links.  -1 means no limit.
sybct.max_persistent = -1

; Maximum number of links (persistent + non-persistent).  -1 means no limit.
sybct.max_links = -1

; Minimum server message severity to display.
sybct.min_server_severity = 10

; Minimum client message severity to display.
sybct.min_client_severity = 10

[bcmath]
; Number of decimal digits for all bcmath functions.
bcmath.scale = 0

[browscap]
;browscap = extra/browscap.ini

[Informix]
; Default host for ifx_connect() (doesn't apply in safe mode).
ifx.default_host =

; Default user for ifx_connect() (doesn't apply in safe mode).
ifx.default_user =

; Default password for ifx_connect() (doesn't apply in safe mode).
ifx.default_password =

; Allow or prevent persistent links.
ifx.allow_persistent = On

; Maximum number of persistent links.  -1 means no limit.
ifx.max_persistent = -1

; Maximum number of links (persistent + non-persistent).  -1 means no limit.
ifx.max_links = -1

; If on, select statements return the contents of a text blob instead of its id.
ifx.textasvarchar = 0

; If on, select statements return the contents of a byte blob instead of its id.
ifx.byteasvarchar = 0

; Trailing blanks are stripped from fixed-length char columns.  May help the
; life of Informix SE users.
ifx.charasvarchar = 0

; If on, the contents of text and byte blobs are dumped to a file instead of
; keeping them in memory.
ifx.blobinfile = 0

; NULL's are returned as empty strings, unless this is set to 1.  In that case,
; NULL's are returned as string 'NULL'.
ifx.nullformat = 0

[Session]
; Handler used to store/retrieve data.
session.save_handler = files

; Argument passed to save_handler.  In the case of files, this is the path
; where data files are stored. Note: Windows users have to change this
; variable in order to use PHP's session functions.
;
; As of PHP 4.0.1, you can define the path as:
;
;     session.save_path = "N;/path"
;
; where N is an integer.  Instead of storing all the session files in
; /path, what this will do is use subdirectories N-levels deep, and
; store the session data in those directories.  This is useful if you
; or your OS have problems with lots of files in one directory, and is
; a more efficient layout for servers that handle lots of sessions.
;
; NOTE 1: PHP will not create this directory structure automatically.
;         You can use the script in the ext/session dir for that purpose.
; NOTE 2: See the section on garbage collection below if you choose to
;         use subdirectories for session storage
;
; The file storage module creates files using mode 600 by default.
; You can change that by using
;
;     session.save_path = "N;MODE;/path"
;
; where MODE is the octal representation of the mode. Note that this
; does not overwrite the process's umask.
;session.save_path = /var/lib/php5

; Whether to use cookies.
session.use_cookies = 1

;session.cookie_secure = 

; This option enables administrators to make their users invulnerable to
; attacks which involve passing session ids in URLs; defaults to 0.
; session.use_only_cookies = 1

; Name of the session (used as cookie name).
session.name = PHPSESSID

; Initialize session on request startup.
session.auto_start = 0

; Lifetime in seconds of cookie or, if 0, until browser is restarted.
session.cookie_lifetime = 0

; The path for which the cookie is valid.
session.cookie_path = /

; The domain for which the cookie is valid.
session.cookie_domain =

; Whether or not to add the httpOnly flag to the cookie, which makes it inaccessible to browser scripting languages such as JavaScript.
session.cookie_httponly = 

; Handler used to serialize data.  php is the standard serializer of PHP.
session.serialize_handler = php

; Define the probability that the 'garbage collection' process is started
; on every session initialization.
; The probability is calculated by using gc_probability/gc_divisor,
; e.g. 1/100 means there is a 1% chance that the GC process starts
; on each request.

; This is disabled in the Debian packages, due to the strict permissions
; on /var/lib/php5.  Instead of setting this here, see the cronjob at
; /etc/cron.d/php5, which uses the session.gc_maxlifetime setting below
;session.gc_probability = 0
session.gc_divisor     = 100

; After this number of seconds, stored data will be seen as 'garbage' and
; cleaned up by the garbage collection process.
session.gc_maxlifetime = 7200 

; NOTE: If you are using the subdirectory option for storing session files
;       (see session.save_path above), then garbage collection does *not*
;       happen automatically.  You will need to do your own garbage
;       collection through a shell script, cron entry, or some other method.
;       For example, the following script would is the equivalent of
;       setting session.gc_maxlifetime to 1440 (1440 seconds = 24 minutes):
;          cd /path/to/sessions; find -cmin +24 | xargs rm

; PHP 4.2 and less have an undocumented feature/bug that allows you to
; to initialize a session variable in the global scope, albeit register_globals
; is disabled.  PHP 4.3 and later will warn you, if this feature is used.
; You can disable the feature and the warning separately. At this time,
; the warning is only displayed, if bug_compat_42 is enabled.

session.bug_compat_42 = 1
session.bug_compat_warn = 1

; Check HTTP Referer to invalidate externally stored URLs containing ids.
; HTTP_REFERER has to contain this substring for the session to be
; considered as valid.
session.referer_check =

; How many bytes to read from the file.
session.entropy_length = 0

; Specified here to create the session id.
session.entropy_file =

;session.entropy_length = 16

;session.entropy_file = /dev/urandom

; Set to {nocache,private,public,} to determine HTTP caching aspects
; or leave this empty to avoid sending anti-caching headers.
session.cache_limiter = nocache

; Document expires after n minutes.
session.cache_expire = 180

; trans sid support is disabled by default.
; Use of trans sid may risk your users security.
; Use this option with caution.
; - User may send URL contains active session ID
;   to other person via. email/irc/etc.
; - URL that contains active session ID may be stored
;   in publically accessible computer.
; - User may access your site with the same session ID
;   always using URL stored in browser's history or bookmarks.
session.use_trans_sid = 0

; Select a hash function
; 0: MD5   (128 bits)
; 1: SHA-1 (160 bits)
session.hash_function = 0

; Define how many bits are stored in each character when converting
; the binary hash data to something readable.
;
; 4 bits: 0-9, a-f
; 5 bits: 0-9, a-v
; 6 bits: 0-9, a-z, A-Z, "-", ","
session.hash_bits_per_character = 4

; The URL rewriter will look for URLs in a defined set of HTML tags.
; form/fieldset are special; if you include them here, the rewriter will
; add a hidden <input> field with the info which is otherwise appended
; to URLs.  If you want XHTML conformity, remove the form entry.
; Note that all valid entries require a "=", even if no value follows.
url_rewriter.tags = "a=href,area=href,frame=src,input=src,form=,fieldset="

[MSSQL]
; Allow or prevent persistent links.
mssql.allow_persistent = On

; Maximum number of persistent links.  -1 means no limit.
mssql.max_persistent = -1

; Maximum number of links (persistent+non persistent).  -1 means no limit.
mssql.max_links = -1

; Minimum error severity to display.
mssql.min_error_severity = 10

; Minimum message severity to display.
mssql.min_message_severity = 10

; Compatibility mode with old versions of PHP 3.0.
mssql.compatability_mode = Off

; Connect timeout
;mssql.connect_timeout = 5

; Query timeout
;mssql.timeout = 60

; Valid range 0 - 2147483647.  Default = 4096.
;mssql.textlimit = 4096

; Valid range 0 - 2147483647.  Default = 4096.
;mssql.textsize = 4096

; Limits the number of records in each batch.  0 = all records in one batch.
;mssql.batchsize = 0

; Specify how datetime and datetim4 columns are returned
; On => Returns data converted to SQL server settings
; Off => Returns values as YYYY-MM-DD hh:mm:ss
;mssql.datetimeconvert = On

; Use NT authentication when connecting to the server
mssql.secure_connection = Off

; Specify max number of processes. -1 = library default
; msdlib defaults to 25
; FreeTDS defaults to 4096
;mssql.max_procs = -1

; Specify client character set. 
; If empty or not set the client charset from freetds.comf is used
; This is only used when compiled with FreeTDS
;mssql.charset = "ISO-8859-1"

[Assertion]
; Assert(expr); active by default.
;assert.active = On

; Issue a PHP warning for each failed assertion.
;assert.warning = On

; Don't bail out by default.
;assert.bail = Off

; User-function to be called if an assertion fails.
;assert.callback = 0

; Eval the expression with current error_reporting().  Set to true if you want
; error_reporting(0) around the eval().
;assert.quiet_eval = 0

[COM]
; path to a file containing GUIDs, IIDs or filenames of files with TypeLibs
;com.typelib_file =
; allow Distributed-COM calls
;com.allow_dcom = true
; autoregister constants of a components typlib on com_load()
;com.autoregister_typelib = true
; register constants casesensitive
;com.autoregister_casesensitive = false
; show warnings on duplicate constant registrations
;com.autoregister_verbose = true

[mbstring]
; language for internal character representation.
;mbstring.language = Japanese

; internal/script encoding.
; Some encoding cannot work as internal encoding.
; (e.g. SJIS, BIG5, ISO-2022-*)
;mbstring.internal_encoding = EUC-JP

; http input encoding.
;mbstring.http_input = auto

; http output encoding. mb_output_handler must be
; registered as output buffer to function
;mbstring.http_output = SJIS

; enable automatic encoding translation according to
; mbstring.internal_encoding setting. Input chars are
; converted to internal encoding by setting this to On.
; Note: Do _not_ use automatic encoding translation for
;       portable libs/applications.
;mbstring.encoding_translation = Off

; automatic encoding detection order.
; auto means
;mbstring.detect_order = auto

; substitute_character used when character cannot be converted
; one from another
;mbstring.substitute_character = none;

; overload(replace) single byte functions by mbstring functions.
; mail(), ereg(), etc are overloaded by mb_send_mail(), mb_ereg(),
; etc. Possible values are 0,1,2,4 or combination of them.
; For example, 7 for overload everything.
; 0: No overload
; 1: Overload mail() function
; 2: Overload str*() functions
; 4: Overload ereg*() functions
;mbstring.func_overload = 0

[FrontBase]
;fbsql.allow_persistent = On
;fbsql.autocommit = On
;fbsql.show_timestamp_decimals = Off
;fbsql.default_database =
;fbsql.default_database_password =
;fbsql.default_host =
;fbsql.default_password =
;fbsql.default_user = "_SYSTEM"
;fbsql.generate_warnings = Off
;fbsql.max_connections = 128
;fbsql.max_links = 128
;fbsql.max_persistent = -1
;fbsql.max_results = 128

[gd]
; Tell the jpeg decode to libjpeg warnings and try to create
; a gd image. The warning will then be displayed as notices
; disabled by default
;gd.jpeg_ignore_warning = 0

[exif]
; Exif UNICODE user comments are handled as UCS-2BE/UCS-2LE and JIS as JIS.
; With mbstring support this will automatically be converted into the encoding
; given by corresponding encode setting. When empty mbstring.internal_encoding
; is used. For the decode settings you can distinguish between motorola and
; intel byte order. A decode setting cannot be empty.
;exif.encode_unicode = ISO-8859-15
;exif.decode_unicode_motorola = UCS-2BE
;exif.decode_unicode_intel    = UCS-2LE
;exif.encode_jis =
;exif.decode_jis_motorola = JIS
;exif.decode_jis_intel    = JIS

[Tidy]
; The path to a default tidy configuration file to use when using tidy
;tidy.default_config = /usr/local/lib/php/default.tcfg

; Should tidy clean and repair output automatically?
; WARNING: Do not use this option if you are generating non-html content
; such as dynamic images
tidy.clean_output = Off

[soap]
; Enables or disables WSDL caching feature.
soap.wsdl_cache_enabled=1
; Sets the directory name where SOAP extension will put cache files.
soap.wsdl_cache_dir="/tmp"
; (time to live) Sets the number of second while cached file will be used 
; instead of original one.
soap.wsdl_cache_ttl=86400

; Local Variables:
; tab-width: 4
; End:
extension=memcache.so
[memcache]
memcache.dbpath=/var/lib/memcache
memcache.maxreclevel=0
memcache.maxfiles=0
memcache.archivememlim=0
memcache.maxfilesize=0
memcache.maxratio=0

Attachment: signature.asc
Description: OpenPGP digital signature


[Index of Archives]     [Open SSH Users]     [Linux ACPI]     [Linux Kernel]     [Linux Laptop]     [Kernel Newbies]     [Security]     [Netfilter]     [Bugtraq]     [Squid]     [Yosemite News]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Linux RAID]     [Samba]     [Video 4 Linux]     [Device Mapper]

  Powered by Linux