View Issue Details

IDProjectCategoryView StatusLast Update
0000584XdebugUncategorizedpublic2010-06-13 14:04
Reporterksafonov Assigned Toderick  
PrioritynormalSeverityminorReproducibilityalways
Status resolvedResolutionno change required 
Product Version2.1.0RC1 
Summary0000584: Xdebug breaks twice in a single line in certain cases
Description

Script:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd&quot;>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Statements termination</title>
</head>
<body>

<p><?php echo 'One hit.'
; ?> <br />
<?php
echo 'One hit.';
?> <br />
<?php
echo 'One hit.' ?> <br />
<?php echo 'Two hits.';
?> <br />
<?php echo 'Two hits.' ?> <br /></p>

</body>
</html>

Set breakpoints to every line with a string literal.
Start debugging (we used PhpStorm for that).
Resume execution after every breakpoint hit.
Result: for lines with 'Two hits' literal you have to resume twice to go further.

Additional Information

PHP 5.2.13

Xdebug log:

Log opened at 2010-06-07 09:16:20
-> <init xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug&quot; fileuri="file:///C:/Users/ksafonov/WebideProjects/suse-a3/test.php" language="PHP" protocol_version="1.0" appid="11568" idekey="__PRODUCT_NAME__1"><engine version="2.1.0rc1"><![CDATA[Xdebug]]></engine><author><![CDATA[Derick Rethans]]></author><url><![CDATA[http://xdebug.org]]>&lt;/url>&lt;copyright>&lt;![CDATA[Copyright (c) 2002-2010 by Derick Rethans]]></copyright></init>

<- feature_get -i 206 -n supports_async
-> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug&quot; command="feature_get" transaction_id="206" feature_name="supports_async" supported="1"><![CDATA[0]]></response>

<- feature_get -i 207 -n breakpoint_types
-> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug&quot; command="feature_get" transaction_id="207" feature_name="breakpoint_types" supported="1"><![CDATA[line conditional call return exception]]></response>

<- feature_set -i 208 -n show_hidden -v 1
-> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug&quot; command="feature_set" transaction_id="208" feature="show_hidden" success="1"></response>

<- stdout -i 209 -c 0
-> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug&quot; command="stdout" transaction_id="209" success="0"></response>

<- stderr -i 210 -c 1
-> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug&quot; command="stderr" transaction_id="210" success="0"></response>

<- feature_get -i 211 -n encoding
-> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug&quot; command="feature_get" transaction_id="211" feature_name="encoding" supported="1"><![CDATA[iso-8859-1]]></response>

<- feature_set -i 212 -n max_children -v 100
-> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug&quot; command="feature_set" transaction_id="212" feature="max_children" success="1"></response>

<- feature_set -i 213 -n max_data -v 100
-> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug&quot; command="feature_set" transaction_id="213" feature="max_data" success="1"></response>

<- feature_set -i 214 -n max_depth -v 3
-> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug&quot; command="feature_set" transaction_id="214" feature="max_depth" success="1"></response>

<- eval -i 215 -- cGhwX3VuYW1lKCJzIik=
-> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug&quot; command="eval" transaction_id="215"><property address="12647144" type="string" size="10" encoding="base64"><![CDATA[V2luZG93cyBOVA==]]></property></response>

<- breakpoint_set -i 216 -t line -f file:///C:/Users/ksafonov/WebideProjects/suse-a3/test.php -n 17 -s enabled
-> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug&quot; command="breakpoint_set" transaction_id="216" state="enabled" id="115680001"></response>

<- breakpoint_set -i 217 -t line -f file:///C:/Users/ksafonov/WebideProjects/suse-a3/test.php -n 13 -s enabled
-> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug&quot; command="breakpoint_set" transaction_id="217" state="enabled" id="115680002"></response>

<- breakpoint_set -i 218 -t line -f file:///C:/Users/ksafonov/WebideProjects/suse-a3/test.php -n 16 -s enabled
-> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug&quot; command="breakpoint_set" transaction_id="218" state="enabled" id="115680003"></response>

<- breakpoint_set -i 219 -t line -f file:///C:/Users/ksafonov/WebideProjects/suse-a3/test.php -n 19 -s enabled
-> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug&quot; command="breakpoint_set" transaction_id="219" state="enabled" id="115680004"></response>

<- breakpoint_set -i 220 -t line -f file:///C:/Users/ksafonov/WebideProjects/suse-a3/test.php -n 10 -s enabled
-> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug&quot; command="breakpoint_set" transaction_id="220" state="enabled" id="115680005"></response>

<- run -i 221
-> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug&quot; command="run" transaction_id="221" status="break" reason="ok"><xdebug:message filename="file:///C:/Users/ksafonov/WebideProjects/suse-a3/test.php" lineno="10"></xdebug:message></response>

<- stack_get -i 222
-> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug&quot; command="stack_get" transaction_id="222"><stack where="{main}" level="0" type="file" filename="file:///C:/Users/ksafonov/WebideProjects/suse-a3/test.php" lineno="10"></stack></response>

<- context_names -i 223 -d 0
-> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug&quot; command="context_names" transaction_id="223"><context name="Locals" id="0"></context><context name="Superglobals" id="1"></context></response>

<- context_get -i 224 -d 0 -c 0
-> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug&quot; command="context_get" transaction_id="224" context="0"></response>

<- context_get -i 225 -d 0 -c 1
-> <response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="http://xdebug.org/dbgp/xdebug&quot; command="context_get" transaction_id="225" context="1"><property name="_COOKIE" fullname="$_COOKIE" address="37660696" type="array" children="0" numchildren="0" page="0" pagesize="100"></property><property name="_ENV" fullname="$_ENV" address="37654208" type="array" children="1" numchildren="45" page="0" pagesize="100"><property name="ALLUSERSPROFILE" fullname="$_ENV['ALLUSERSPROFILE']" address="37654328" type="string" size="14" encoding="base64"><![CDATA[QzpcUHJvZ3JhbURhdGE=]]></property><property name="ant_home" fullname="$_ENV['ant_home']" address="37654456" type="string" size="29" encoding="base64"><![CDATA[YzpcUHJvZ3JhbXNcYXBhY2hlLWFudC0xLjYuNVw=]]></property><property name="APPDATA" fullname="$_ENV['APPDATA']" address="37654304" type="string" size="33" encoding="base64"><![CDATA[QzpcVXNlcnNca3NhZm9ub3ZcQXBwRGF0YVxSb2FtaW5n]]></property><property name="CommonProgramFiles" fullname="$_ENV['CommonProgramFiles']" address="37654736" type="string" size="35" encoding="base64"><![CDATA[QzpcUHJvZ3JhbSBGaWxlcyAoeDg2KVxDb21tb24gRmlsZXM=]]></property><property name="CommonProgramFiles(x86)" fullname="$_ENV['CommonProgramFiles(x86)']" address="37654872" type="string" size="35" encoding="base64"><![CDATA[QzpcUHJvZ3JhbSBGaWxlcyAoeDg2KVxDb21tb24gRmlsZXM=]]></property><property name="CommonProgramW6432" fullname="$_ENV['CommonProgramW6432']" address="37655008" type="string" size="29" encoding="base64"><![CDATA[QzpcUHJvZ3JhbSBGaWxlc1xDb21tb24gRmlsZXM=]]></property><property name="COMPUTERNAME" fullname="$_ENV['COMPUTERNAME']" address="37655144" type="string" size="13" encoding="base64"><![CDATA[S1NBRk9OT1YtVkFJTw==]]></property><property name="ComSpec" fullname="$_ENV['ComSpec']" address="37655120" type="string" size="27" encoding="base64"><![CDATA[QzpcV2luZG93c1xzeXN0ZW0zMlxjbWQuZXhl]]></property><property name="configsetroot" fullname="$_ENV['configsetroot']" address="37655384" type="string" size="24" encoding="base64"><![CDATA[QzpcV2luZG93c1xDb25maWdTZXRSb290]]></property><property name="dev_idea_home" fullname="$_ENV['dev_idea_home']" address="37655544" type="string" size="16" encoding="base64"><![CDATA[YzpcUHJvamVjdHNcSURFQQ==]]></property><property name="EMC_AUTOPLAY" fullname="$_ENV['EMC_AUTOPLAY']" address="37655696" type="string" size="49" encoding="base64"><![CDATA[QzpcUHJvZ3JhbSBGaWxlcyAoeDg2KVxDb21tb24gRmlsZXNcUm94aW8gU2hhcmVkXA==]]></property><property name="FP_NO_HOST_CHECK" fullname="$_ENV['FP_NO_HOST_CHECK']" address="37655360" type="string" size="2" encoding="base64"><![CDATA[Tk8=]]></property><property name="HOMEDRIVE" fullname="$_ENV['HOMEDRIVE']" address="37655912" type="string" size="2" encoding="base64"><![CDATA[Qzo=]]></property><property name="HOMEPATH" fullname="$_ENV['HOMEPATH']" address="37656016" type="string" size="15" encoding="base64"><![CDATA[XFVzZXJzXGtzYWZvbm92]]></property><property name="java_home" fullname="$_ENV['java_home']" address="37656096" type="string" size="24" encoding="base64"><![CDATA[YzpcUHJvZ3JhbXNcamRrMS41LjBfMjJc]]></property><property name="LOCALAPPDATA" fullname="$_ENV['LOCALAPPDATA']" address="37656216" type="string" size="31" encoding="base64"><![CDATA[QzpcVXNlcnNca3NhZm9ub3ZcQXBwRGF0YVxMb2NhbA==]]></property><property name="LOGONSERVER" fullname="$_ENV['LOGONSERVER']" address="37656320" type="string" size="11" encoding="base64"><![CDATA[XFxTVC1TRVJWRVI=]]></property><property name="NUMBER_OF_PROCESSORS" fullname="$_ENV['NUMBER_OF_PROCESSORS']" address="37656296" type="string" size="1" encoding="base64"><![CDATA[NA==]]></property><property name="OS" fullname="$_ENV['OS']" address="37656656" type="string" size="10" encoding="base64"><![CDATA[V2luZG93c19OVA==]]></property><property name="Path" fullname="$_ENV['Path']" address="37657384" type="string" size="643" encoding="base64"><![CDATA[QzpcUHJvZ3JhbSBGaWxlcyAoeDg2KVxQQyBDb25uZWN0aXZpdHkgU29sdXRpb25cO0M6XFdpbmRvd3Ncc3lzdGVtMzI7QzpcV2luZG93cztDOlxXaW5kb3dzXFN5c3RlbTMyXA==]]></property><property name="PATHEXT" fullname="$_ENV['PATHEXT']" address="37657520" type="string" size="53" encoding="base64"><![CDATA[LkNPTTsuRVhFOy5CQVQ7LkNNRDsuVkJTOy5WQkU7LkpTOy5KU0U7LldTRjsuV1NIOy5NU0M=]]></property><property name="PROCESSOR_ARCHITECTURE" fullname="$_ENV['PROCESSOR_ARCHITECTURE']" address="37657600" type="string" size="3" encoding="base64"><![CDATA[eDg2]]></property><property name="PROCESSOR_ARCHITEW6432" fullname="$_ENV['PROCESSOR_ARCHITEW6432']" address="37657640" type="string" size="5" encoding="base64"><![CDATA[QU1ENjQ=]]></property><property name="PROCESSOR_IDENTIFIER" fullname="$_ENV['PROCESSOR_IDENTIFIER']" address="37657800" type="string" size="50" encoding="base64"><![CDATA[SW50ZWw2NCBGYW1pbHkgNiBNb2RlbCAzNyBTdGVwcGluZyAyLCBHZW51aW5lSW50ZWw=]]></property><property name="PROCESSOR_LEVEL" fullname="$_ENV['PROCESSOR_LEVEL']" address="37657928" type="string" size="1" encoding="base64"><![CDATA[Ng==]]></property><property name="PROCESSOR_REVISION" fullname="$_ENV['PROCESSOR_REVISION']" address="37657904" type="string" size="4" encoding="base64"><![CDATA[MjUwMg==]]></property><property name="ProgramData" fullname="$_ENV['ProgramData']" address="37658144" type="string" size="14" encoding="base64"><![CDATA[QzpcUHJvZ3JhbURhdGE=]]></property><property name="ProgramFiles" fullname="$_ENV['ProgramFiles']" address="37658224" type="string" size="22" encoding="base64"><![CDATA[QzpcUHJvZ3JhbSBGaWxlcyAoeDg2KQ==]]></property><property name="ProgramFiles(x86)" fullname="$_ENV['ProgramFiles(x86)']" address="37658120" type="string" size="22" encoding="base64"><![CDATA[QzpcUHJvZ3JhbSBGaWxlcyAoeDg2KQ==]]></property><property name="ProgramW6432" fullname="$_ENV['ProgramW6432']" address="37658456" type="string" size="16" encoding="base64"><![CDATA[QzpcUHJvZ3JhbSBGaWxlcw==]]></property><property name="PSModulePath" fullname="$_ENV['PSModulePath']" address="37658600" type="string" size="51" encoding="base64"><![CDATA[QzpcV2luZG93c1xzeXN0ZW0zMlxXaW5kb3dzUG93ZXJTaGVsbFx2MS4wXE1vZHVsZXNc]]></property><property name="PUBLIC" fullname="$_ENV['PUBLIC']" address="37658696" type="string" size="15" encoding="base64"><![CDATA[QzpcVXNlcnNcUHVibGlj]]></property><property name="RoxioCentral" fullname="$_ENV['RoxioCentral']" address="37658880" type="string" size="70" encoding="base64"><![CDATA[QzpcUHJvZ3JhbSBGaWxlcyAoeDg2KVxDb21tb24gRmlsZXNcUm94aW8gU2hhcmVkXDEwLjBcUm94aW8gQ2VudHJhbDM2XA==]]></property><property name="SESSIONNAME" fullname="$_ENV['SESSIONNAME']" address="37659224" type="string" size="7" encoding="base64"><![CDATA[Q29uc29sZQ==]]></property><property name="SystemDrive" fullname="$_ENV['SystemDrive']" address="37659320" type="string" size="2" encoding="base64"><![CDATA[Qzo=]]></property><property name="SystemRoot" fullname="$_ENV['SystemRoot']" address="37659424" type="string" size="10" encoding="base64"><![CDATA[QzpcV2luZG93cw==]]></property><property name="TEMP" fullname="$_ENV['TEMP']" address="37659400" type="string" size="7" encoding="base64"><![CDATA[YzpcVGVtcA==]]></property><property name="TMP" fullname="$_ENV['TMP']" address="37659600" type="string" size="7" encoding="base64"><![CDATA[YzpcdGVtcA==]]></property><property name="USERDNSDOMAIN" fullname="$_ENV['USERDNSDOMAIN']" address="37659728" type="string" size="16" encoding="base64"><![CDATA[U1dJRlRURUFNUy5MT0NBTA==]]></property><property name="USERDOMAIN" fullname="$_ENV['USERDOMAIN']" address="37659840" type="string" size="10" encoding="base64"><![CDATA[U1dJRlRURUFNUw==]]></property><property name="USERNAME" fullname="$_ENV['USERNAME']" address="37659944" type="string" size="8" encoding="base64"><![CDATA[a3NhZm9ub3Y=]]></property><property name="USERPROFILE" fullname="$_ENV['USERPROFILE']" address="37660056" type="string" size="17" encoding="base64"><![CDATA[QzpcVXNlcnNca3NhZm9ub3Y=]]></property><property name="windir" fullname="$_ENV['windir']" address="37660136" type="string" size="10" encoding="base64"><![CDATA[QzpcV2luZG93cw==]]></property><property name="work_idea_home" fullname="$_ENV['work_idea_home']" address="37660280" type="string" size="29" encoding="base64"><![CDATA[YzpccHJvZ3JhbXNcaWRlYS1mcm9tLXNvdXJjZXM=]]></property><property name="XDEBUG_CONFIG" fullname="$_ENV['XDEBUG_CONFIG']" address="37660408" type="string" size="24" encoding="base64"><![CDATA[aWRla2V5PV9fUFJPRFVDVF9OQU1FX18x]]></property></property><property name="_FILES" fullname="$_FILES" address="37668768" type="array" children="0" numchildren="0" page="0" pagesize="100"></property><property name="_GET" fullname="$_GET" address="37660256" type="array" children="0" numchildren="0" page="0" pagesize="100"></property><property name="_POST" fullname="$_POST" address="37668184" type="array" children="0" numchildren="0" page="0" pagesize="100"></property><property name="_REQUEST" fullname="$_REQUEST" address="37669000" type="array" children="0" numchildren="0" page="0" pagesize="100"></property><property name="_SERVER" fullname="$_SERVER" address="37660808" type="array" children="1" numchildren="53" page="0" pagesize="100"><property name="ALLUSERSPROFILE" fullname="$_SERVER['ALLUSERSPROFILE']" address="37660968" type="string" size="14" encoding="base64"><![CDATA[QzpcUHJvZ3JhbURhdGE=]]></property><property name="ant_home" fullname="$_SERVER['ant_home']" address="37661096" type="string" size="29" encoding="base64"><![CDATA[YzpcUHJvZ3JhbXNcYXBhY2hlLWFudC0xLjYuNVw=]]></property><property name="APPDATA" fullname="$_SERVER['APPDATA']" address="37660944" type="string" size="33" encoding="base64"><![CDATA[QzpcVXNlcnNca3NhZm9ub3ZcQXBwRGF0YVxSb2FtaW5n]]></property><property name="CommonProgramFiles" fullname="$_SERVER['CommonProgramFiles']" address="37661360" type="string" size="35" encoding="base64"><![CDATA[QzpcUHJvZ3JhbSBGaWxlcyAoeDg2KVxDb21tb24gRmlsZXM=]]></property><property name="CommonProgramFiles(x86)" fullname="$_SERVER['CommonProgramFiles(x86)']" address="37661496" type="string" size="35" encoding="base64"><![CDATA[QzpcUHJvZ3JhbSBGaWxlcyAoeDg2KVxDb21tb24gRmlsZXM=]]></property><property name="CommonProgramW6432" fullname="$_SERVER['CommonProgramW6432']" address="37661632" type="string" size="29" encoding="base64"><![CDATA[QzpcUHJvZ3JhbSBGaWxlc1xDb21tb24gRmlsZXM=]]></property><property name="COMPUTERNAME" fullname="$_SERVER['COMPUTERNAME']" address="37661768" type="string" size="13" encoding="base64"><![CDATA[S1NBRk9OT1YtVkFJTw==]]></property><property name="ComSpec" fullname="$_SERVER['ComSpec']" address="37661744" type="string" size="27" encoding="base64"><![CDATA[QzpcV2luZG93c1xzeXN0ZW0zMlxjbWQuZXhl]]></property><property name="configsetroot" fullname="$_SERVER['configsetroot']" address="37662008" type="string" size="24" encoding="base64"><![CDATA[QzpcV2luZG93c1xDb25maWdTZXRSb290]]></property><property name="dev_idea_home" fullname="$_SERVER['dev_idea_home']" address="37662168" type="string" size="16" encoding="base64"><![CDATA[YzpcUHJvamVjdHNcSURFQQ==]]></property><property name="EMC_AUTOPLAY" fullname="$_SERVER['EMC_AUTOPLAY']" address="37662320" type="string" size="49" encoding="base64"><![CDATA[QzpcUHJvZ3JhbSBGaWxlcyAoeDg2KVxDb21tb24gRmlsZXNcUm94aW8gU2hhcmVkXA==]]></property><property name="FP_NO_HOST_CHECK" fullname="$_SERVER['FP_NO_HOST_CHECK']" address="37661984" type="string" size="2" encoding="base64"><![CDATA[Tk8=]]></property><property name="HOMEDRIVE" fullname="$_SERVER['HOMEDRIVE']" address="37662536" type="string" size="2" encoding="base64"><![CDATA[Qzo=]]></property><property name="HOMEPATH" fullname="$_SERVER['HOMEPATH']" address="37662640" type="string" size="15" encoding="base64"><![CDATA[XFVzZXJzXGtzYWZvbm92]]></property><property name="java_home" fullname="$_SERVER['java_home']" address="37662720" type="string" size="24" encoding="base64"><![CDATA[YzpcUHJvZ3JhbXNcamRrMS41LjBfMjJc]]></property><property name="LOCALAPPDATA" fullname="$_SERVER['LOCALAPPDATA']" address="37662840" type="string" size="31" encoding="base64"><![CDATA[QzpcVXNlcnNca3NhZm9ub3ZcQXBwRGF0YVxMb2NhbA==]]></property><property name="LOGONSERVER" fullname="$_SERVER['LOGONSERVER']" address="37662944" type="string" size="11" encoding="base64"><![CDATA[XFxTVC1TRVJWRVI=]]></property><property name="NUMBER_OF_PROCESSORS" fullname="$_SERVER['NUMBER_OF_PROCESSORS']" address="37662920" type="string" size="1" encoding="base64"><![CDATA[NA==]]></property><property name="OS" fullname="$_SERVER['OS']" address="37663144" type="string" size="10" encoding="base64"><![CDATA[V2luZG93c19OVA==]]></property><property name="Path" fullname="$_SERVER['Path']" address="37663872" type="string" size="643" encoding="base64"><![CDATA[QzpcUHJvZ3JhbSBGaWxlcyAoeDg2KVxQQyBDb25uZWN0aXZpdHkgU29sdXRpb25cO0M6XFdpbmRvd3Ncc3lzdGVtMzI7QzpcV2luZG93cztDOlxXaW5kb3dzXFN5c3RlbTMyXA==]]></property><property name="PATHEXT" fullname="$_SERVER['PATHEXT']" address="37664008" type="string" size="53" encoding="base64"><![CDATA[LkNPTTsuRVhFOy5CQVQ7LkNNRDsuVkJTOy5WQkU7LkpTOy5KU0U7LldTRjsuV1NIOy5NU0M=]]></property><property name="PROCESSOR_ARCHITECTURE" fullname="$_SERVER['PROCESSOR_ARCHITECTURE']" address="37664088" type="string" size="3" encoding="base64"><![CDATA[eDg2]]></property><property name="PROCESSOR_ARCHITEW6432" fullname="$_SERVER['PROCESSOR_ARCHITEW6432']" address="37664128" type="string" size="5" encoding="base64"><![CDATA[QU1ENjQ=]]></property><property name="PROCESSOR_IDENTIFIER" fullname="$_SERVER['PROCESSOR_IDENTIFIER']" address="37664288" type="string" size="50" encoding="base64"><![CDATA[SW50ZWw2NCBGYW1pbHkgNiBNb2RlbCAzNyBTdGVwcGluZyAyLCBHZW51aW5lSW50ZWw=]]></property><property name="PROCESSOR_LEVEL" fullname="$_SERVER['PROCESSOR_LEVEL']" address="37664416" type="string" size="1" encoding="base64"><![CDATA[Ng==]]></property><property name="PROCESSOR_REVISION" fullname="$_SERVER['PROCESSOR_REVISION']" address="37664392" type="string" size="4" encoding="base64"><![CDATA[MjUwMg==]]></property><property name="ProgramData" fullname="$_SERVER['ProgramData']" address="37664632" type="string" size="14" encoding="base64"><![CDATA[QzpcUHJvZ3JhbURhdGE=]]></property><property name="ProgramFiles" fullname="$_SERVER['ProgramFiles']" address="37664712" type="string" size="22" encoding="base64"><![CDATA[QzpcUHJvZ3JhbSBGaWxlcyAoeDg2KQ==]]></property><property name="ProgramFiles(x86)" fullname="$_SERVER['ProgramFiles(x86)']" address="37664608" type="string" size="22" encoding="base64"><![CDATA[QzpcUHJvZ3JhbSBGaWxlcyAoeDg2KQ==]]></property><property name="ProgramW6432" fullname="$_SERVER['ProgramW6432']" address="37664944" type="string" size="16" encoding="base64"><![CDATA[QzpcUHJvZ3JhbSBGaWxlcw==]]></property><property name="PSModulePath" fullname="$_SERVER['PSModulePath']" address="37665088" type="string" size="51" encoding="base64"><![CDATA[QzpcV2luZG93c1xzeXN0ZW0zMlxXaW5kb3dzUG93ZXJTaGVsbFx2MS4wXE1vZHVsZXNc]]></property><property name="PUBLIC" fullname="$_SERVER['PUBLIC']" address="37665184" type="string" size="15" encoding="base64"><![CDATA[QzpcVXNlcnNcUHVibGlj]]></property><property name="RoxioCentral" fullname="$_SERVER['RoxioCentral']" address="37665368" type="string" size="70" encoding="base64"><![CDATA[QzpcUHJvZ3JhbSBGaWxlcyAoeDg2KVxDb21tb24gRmlsZXNcUm94aW8gU2hhcmVkXDEwLjBcUm94aW8gQ2VudHJhbDM2XA==]]></property><property name="SESSIONNAME" fullname="$_SERVER['SESSIONNAME']" address="37665712" type="string" size="7" encoding="base64"><![CDATA[Q29uc29sZQ==]]></property><property name="SystemDrive" fullname="$_SERVER['SystemDrive']" address="37665808" type="string" size="2" encoding="base64"><![CDATA[Qzo=]]></property><property name="SystemRoot" fullname="$_SERVER['SystemRoot']" address="37665912" type="string" size="10" encoding="base64"><![CDATA[QzpcV2luZG93cw==]]></property><property name="TEMP" fullname="$_SERVER['TEMP']" address="37665888" type="string" size="7" encoding="base64"><![CDATA[YzpcVGVtcA==]]></property><property name="TMP" fullname="$_SERVER['TMP']" address="37666088" type="string" size="7" encoding="base64"><![CDATA[YzpcdGVtcA==]]></property><property name="USERDNSDOMAIN" fullname="$_SERVER['USERDNSDOMAIN']" address="37666216" type="string" size="16" encoding="base64"><![CDATA[U1dJRlRURUFNUy5MT0NBTA==]]></property><property name="USERDOMAIN" fullname="$_SERVER['USERDOMAIN']" address="37666328" type="string" size="10" encoding="base64"><![CDATA[U1dJRlRURUFNUw==]]></property><property name="USERNAME" fullname="$_SERVER['USERNAME']" address="37666432" type="string" size="8" encoding="base64"><![CDATA[a3NhZm9ub3Y=]]></property><property name="USERPROFILE" fullname="$_SERVER['USERPROFILE']" address="37666544" type="string" size="17" encoding="base64"><![CDATA[QzpcVXNlcnNca3NhZm9ub3Y=]]></property><property name="windir" fullname="$_SERVER['windir']" address="37666624" type="string" size="10" encoding="base64"><![CDATA[QzpcV2luZG93cw==]]></property><property name="work_idea_home" fullname="$_SERVER['work_idea_home']" address="37666768" type="string" size="29" encoding="base64"><![CDATA[YzpccHJvZ3JhbXNcaWRlYS1mcm9tLXNvdXJjZXM=]]></property><property name="XDEBUG_CONFIG" fullname="$_SERVER['XDEBUG_CONFIG']" address="37666896" type="string" size="24" encoding="base64"><![CDATA[aWRla2V5PV9fUFJPRFVDVF9OQU1FX18x]]></property><property name="PHP_SELF" fullname="$_SERVER['PHP_SELF']" address="37667048" type="string" size="49" encoding="base64"><![CDATA[QzpcVXNlcnNca3NhZm9ub3ZcV2ViaWRlUHJvamVjdHNcc3VzZS1hM1x0ZXN0LnBocA==]]></property><property name="SCRIPT_NAME" fullname="$_SERVER['SCRIPT_NAME']" address="37667192" type="string" size="49" encoding="base64"><![CDATA[QzpcVXNlcnNca3NhZm9ub3ZcV2ViaWRlUHJvamVjdHNcc3VzZS1hM1x0ZXN0LnBocA==]]></property><property name="SCRIPT_FILENAME" fullname="$_SERVER['SCRIPT_FILENAME']" address="37667336" type="string" size="49" encoding="base64"><![CDATA[QzpcVXNlcnNca3NhZm9ub3ZcV2ViaWRlUHJvamVjdHNcc3VzZS1hM1x0ZXN0LnBocA==]]></property><property name="PATH_TRANSLATED" fullname="$_SERVER['PATH_TRANSLATED']" address="37667488" type="string" size="49" encoding="base64"><![CDATA[QzpcVXNlcnNca3NhZm9ub3ZcV2ViaWRlUHJvamVjdHNcc3VzZS1hM1x0ZXN0LnBocA==]]></property><property name="DOCUMENT_ROOT" fullname="$_SERVER['DOCUMENT_ROOT']" address="37667576" type="string" size="0" encoding="base64"><![CDATA[]]></property><property name="REQUEST_TIME" fullname="$_SERVER['REQUEST_TIME']" address="37667664" type="int"><![CDATA[1275902180]]></property><property name="argv" fullname="$_SERVER['argv']" address="37666744" type="array" children="1" numchildren="1" page="0" pagesize="100"><property name="0" fullname="$_SERVER['argv'][0]" address="37667832" type="string" size="49" encoding="base64"><![CDATA[QzpcVXNlcnNca3NhZm9ub3ZcV2ViaWRlUHJvamVjdHNcc3VzZS1hM1x0ZXN0LnBocA==]]></property></property><property name="argc" fullname="$_SERVER['argc']" address="37667968" type="int"><![CDATA[1]]></property></property><property name="GLOBALS" fullname="$GLOBALS" address="37628672" type="array" children="1" numchildren="16" page="0" pagesize="100"><property name="GLOBALS" fullname="$GLOBALS['GLOBALS']" address="37628672" type="array" children="1" recursive="1"></property><property name="_ENV" fullname="$GLOBALS['_ENV']" address="37654208" type="array" children="1" numchildren="45" page="0" pagesize="100"><property name="ALLUSERSPROFILE" fullname="$GLOBALS['_ENV']['ALLUSERSPROFILE']" address="37654328" type="string" size="14" encoding="base64"><![CDATA[QzpcUHJvZ3JhbURhdGE=]]></property><property name="ant_home" fullname="$GLOBALS['_ENV']['ant_home']" address="37654456" type="string" size="29" encoding="base64"><![CDATA[YzpcUHJvZ3JhbXNcYXBhY2hlLWFudC0xLjYuNVw=]]></property><property name="APPDATA" fullname="$GLOBALS['_ENV']['APPDATA']" address="37654304" type="string" size="33" encoding="base64"><![CDATA[QzpcVXNlcnNca3NhZm9ub3ZcQXBwRGF0YVxSb2FtaW5n]]></property><property name="CommonProgramFiles" fullname="$GLOBALS['_ENV']['CommonProgramFiles']" address="37654736" type="string" size="35" encoding="base64"><![CDATA[QzpcUHJvZ3JhbSBGaWxlcyAoeDg2KVxDb21tb24gRmlsZXM=]]></property><property name="CommonProgramFiles(x86)" fullname="$GLOBALS['_ENV']['CommonProgramFiles(x86)']" address="37654872" type="string" size="35" encoding="base64"><![CDATA[QzpcUHJvZ3JhbSBGaWxlcyAoeDg2KVxDb21tb24gRmlsZXM=]]></property><property name="CommonProgramW6432" fullname="$GLOBALS['_ENV']['CommonProgramW6432']" address="37655008" type="string" size="29" encoding="base64"><![CDATA[QzpcUHJvZ3JhbSBGaWxlc1xDb21tb24gRmlsZXM=]]></property><property name="COMPUTERNAME" fullname="$GLOBALS['_ENV']['COMPUTERNAME']" address="37655144" type="string" size="13" encoding="base64"><![CDATA[S1NBRk9OT1YtVkFJTw==]]></property><property name="ComSpec" fullname="$GLOBALS['_ENV']['ComSpec']" address="37655120" type="string" size="27" encoding="base64"><![CDATA[QzpcV2luZG93c1xzeXN0ZW0zMlxjbWQuZXhl]]></property><property name="configsetroot" fullname="$GLOBALS['_ENV']['configsetroot']" address="37655384" type="string" size="24" encoding="base64"><![CDATA[QzpcV2luZG93c1xDb25maWdTZXRSb290]]></property><property name="dev_idea_home" fullname="$GLOBALS['_ENV']['dev_idea_home']" address="37655544" type="string" size="16" encoding="base64"><![CDATA[YzpcUHJvamVjdHNcSURFQQ==]]></property><property name="EMC_AUTOPLAY" fullname="$GLOBALS['_ENV']['EMC_AUTOPLAY']" address="37655696" type="string" size="49" encoding="base64"><![CDATA[QzpcUHJvZ3JhbSBGaWxlcyAoeDg2KVxDb21tb24gRmlsZXNcUm94aW8gU2hhcmVkXA==]]></property><property name="FP_NO_HOST_CHECK" fullname="$GLOBALS['_ENV']['FP_NO_HOST_CHECK']" address="37655360" type="string" size="2" encoding="base64"><![CDATA[Tk8=]]></property><property name="HOMEDRIVE" fullname="$GLOBALS['_ENV']['HOMEDRIVE']" address="37655912" type="string" size="2" encoding="base64"><![CDATA[Qzo=]]></property><property name="HOMEPATH" fullname="$GLOBALS['_ENV']['HOMEPATH']" address="37656016" type="string" size="15" encoding="base64"><![CDATA[XFVzZXJzXGtzYWZvbm92]]></property><property name="java_home" fullname="$GLOBALS['_ENV']['java_home']" address="37656096" type="string" size="24" encoding="base64"><![CDATA[YzpcUHJvZ3JhbXNcamRrMS41LjBfMjJc]]></property><property name="LOCALAPPDATA" fullname="$GLOBALS['_ENV']['LOCALAPPDATA']" address="37656216" type="string" size="31" encoding="base64"><![CDATA[QzpcVXNlcnNca3NhZm9ub3ZcQXBwRGF0YVxMb2NhbA==]]></property><property name="LOGONSERVER" fullname="$GLOBALS['_ENV']['LOGONSERVER']" address="37656320" type="string" size="11" encoding="base64"><![CDATA[XFxTVC1TRVJWRVI=]]></property><property name="NUMBER_OF_PROCESSORS" fullname="$GLOBALS['_ENV']['NUMBER_OF_PROCESSORS']" address="37656296" type="string" size="1" encoding="base64"><![CDATA[NA==]]></property><property name="OS" fullname="$GLOBALS['_ENV']['OS']" address="37656656" type="string" size="10" encoding="base64"><![CDATA[V2luZG93c19OVA==]]></property><property name="Path" fullname="$GLOBALS['_ENV']['Path']" address="37657384" type="string" size="643" encoding="base64"><![CDATA[QzpcUHJvZ3JhbSBGaWxlcyAoeDg2KVxQQyBDb25uZWN0aXZpdHkgU29sdXRpb25cO0M6XFdpbmRvd3Ncc3lzdGVtMzI7QzpcV2luZG93cztDOlxXaW5kb3dzXFN5c3RlbTMyXA==]]></property><property name="PATHEXT" fullname="$GLOBALS['_ENV']['PATHEXT']" address="37657520" type="string" size="53" encoding="base64"><![CDATA[LkNPTTsuRVhFOy5CQVQ7LkNNRDsuVkJTOy5WQkU7LkpTOy5KU0U7LldTRjsuV1NIOy5NU0M=]]></property><property name="PROCESSOR_ARCHITECTURE" fullname="$GLOBALS['_ENV']['PROCESSOR_ARCHITECTURE']" address="37657600" type="string" size="3" encoding="base64"><![CDATA[eDg2]]></property><property name="PROCESSOR_ARCHITEW6432" fullname="$GLOBALS['_ENV']['PROCESSOR_ARCHITEW6432']" address="37657640" type="string" size="5" encoding="base64"><![CDATA[QU1ENjQ=]]></property><property name="PROCESSOR_IDENTIFIER" fullname="$GLOBALS['_ENV']['PROCESSOR_IDENTIFIER']" address="37657800" type="string" size="50" encoding="base64"><![CDATA[SW50ZWw2NCBGYW1pbHkgNiBNb2RlbCAzNyBTdGVwcGluZyAyLCBHZW51aW5lSW50ZWw=]]></property><property name="PROCESSOR_LEVEL" fullname="$GLOBALS['_ENV']['PROCESSOR_LEVEL']" address="37657928" type="string" size="1" encoding="base64"><![CDATA[Ng==]]></property><property name="PROCESSOR_REVISION" fullname="$GLOBALS['_ENV']['PROCESSOR_REVISION']" address="37657904" type="string" size="4" encoding="base64"><![CDATA[MjUwMg==]]></property><property name="ProgramData" fullname="$GLOBALS['_ENV']['ProgramData']" address="37658144" type="string" size="14" encoding="base64"><![CDATA[QzpcUHJvZ3JhbURhdGE=]]></property><property name="ProgramFiles" fullname="$GLOBALS['_ENV']['ProgramFiles']" address="37658224" type="string" size="22" encoding="base64"><![CDATA[QzpcUHJvZ3JhbSBGaWxlcyAoeDg2KQ==]]></property><property name="ProgramFiles(x86)" fullname="$GLOBALS['_ENV']['ProgramFiles(x86)']" address="37658120" type="string" size="22" encoding="base64"><![CDATA[QzpcUHJvZ3JhbSBGaWxlcyAoeDg2KQ==]]></property><property name="ProgramW6432" fullname="$GLOBALS['_ENV']['ProgramW6432']" address="37658456" type="string" size="16" encoding="base64"><![CDATA[QzpcUHJvZ3JhbSBGaWxlcw==]]></property><property name="PSModulePath" fullname="$GLOBALS['_ENV']['PSModulePath']" address="37658600" type="string" size="51" encoding="base64"><![CDATA[QzpcV2luZG93c1xzeXN0ZW0zMlxXaW5kb3dzUG93ZXJTaGVsbFx2MS4wXE1vZHVsZXNc]]></property><property name="PUBLIC" fullname="$GLOBALS['_ENV']['PUBLIC']" address="37658696" type="string" size="15" encoding="base64"><![CDATA[QzpcVXNlcnNcUHVibGlj]]></property><property name="RoxioCentral" fullname="$GLOBALS['_ENV']['RoxioCentral']" address="37658880" type="string" size="70" encoding="base64"><![CDATA[QzpcUHJvZ3JhbSBGaWxlcyAoeDg2KVxDb21tb24gRmlsZXNcUm94aW8gU2hhcmVkXDEwLjBcUm94aW8gQ2VudHJhbDM2XA==]]></property><property name="SESSIONNAME" fullname="$GLOBALS['_ENV']['SESSIONNAME']" address="37659224" type="string" size="7" encoding="base64"><![CDATA[Q29uc29sZQ==]]></property><property name="SystemDrive" fullname="$GLOBALS['_ENV']['SystemDrive']" address="37659320" type="string" size="2" encoding="base64"><![CDATA[Qzo=]]></property><property name="SystemRoot" fullname="$GLOBALS['_ENV']['SystemRoot']" address="37659424" type="string" size="10" encoding="base64"><![CDATA[QzpcV2luZG93cw==]]></property><property name="TEMP" fullname="$GLOBALS['_ENV']['TEMP']" address="37659400" type="string" size="7" encoding="base64"><![CDATA[YzpcVGVtcA==]]></property><property name="TMP" fullname="$GLOBALS['_ENV']['TMP']" address="37659600" type="string" size="7" encoding="base64"><![CDATA[YzpcdGVtcA==]]></property><property name="USERDNSDOMAIN" fullname="$GLOBALS['_ENV']['USERDNSDOMAIN']" address="37659728" type="string" size="16" encoding="base64"><![CDATA[U1dJRlRURUFNUy5MT0NBTA==]]></property><property name="USERDOMAIN" fullname="$GLOBALS['_ENV']['USERDOMAIN']" address="37659840" type="string" size="10" encoding="base64"><![CDATA[U1dJRlRURUFNUw==]]></property><property name="USERNAME" fullname="$GLOBALS['_ENV']['USERNAME']" address="37659944" type="string" size="8" encoding="base64"><![CDATA[a3NhZm9ub3Y=]]></property><property name="USERPROFILE" fullname="$GLOBALS['_ENV']['USERPROFILE']" address="37660056" type="string" size="17" encoding="base64"><![CDATA[QzpcVXNlcnNca3NhZm9ub3Y=]]></property><property name="windir" fullname="$GLOBALS['_ENV']['windir']" address="37660136" type="string" size="10" encoding="base64"><![CDATA[QzpcV2luZG93cw==]]></property><property name="work_idea_home" fullname="$GLOBALS['_ENV']['work_idea_home']" address="37660280" type="string" size="29" encoding="base64"><![CDATA[YzpccHJvZ3JhbXNcaWRlYS1mcm9tLXNvdXJjZXM=]]></property><property name="XDEBUG_CONFIG" fullname="$GLOBALS['_ENV']['XDEBUG_CONFIG']" address="37660408" type="string" size="24" encoding="base64"><![CDATA[aWRla2V5PV9fUFJPRFVDVF9OQU1FX18x]]></property></property><property name="HTTP_ENV_VARS" fullname="$GLOBALS['HTTP_ENV_VARS']" address="37654208" type="array" children="1" numchildren="45" page="0" pagesize="100"><property name="ALLUSERSPROFILE" fullname="$GLOBALS['HTTP_ENV_VARS']['ALLUSERSPROFILE']" address="37654328" type="string" size="14" encoding="base64"><![CDATA[QzpcUHJvZ3JhbURhdGE=]]></property><property name="ant_home" fullname="$GLOBALS['HTTP_ENV_VARS']['ant_home']" address="37654456" type="string" size="29" encoding="base64"><![CDATA[YzpcUHJvZ3JhbXNcYXBhY2hlLWFudC0xLjYuNVw=]]></property><property name="APPDATA" fullname="$GLOBALS['HTTP_ENV_VARS']['APPDATA']" address="37654304" type="string" size="33" encoding="base64"><![CDATA[QzpcVXNlcnNca3NhZm9ub3ZcQXBwRGF0YVxSb2FtaW5n]]></property><property name="CommonProgramFiles" fullname="$GLOBALS['HTTP_ENV_VARS']['CommonProgramFiles']" address="37654736" type="string" size="35" encoding="base64"><![CDATA[QzpcUHJvZ3JhbSBGaWxlcyAoeDg2KVxDb21tb24gRmlsZXM=]]></property><property name="CommonProgramFiles(x86)" fullname="$GLOBALS['HTTP_ENV_VARS']['CommonProgramFiles(x86)']" address="37654872" type="string" size="35" encoding="base64"><![CDATA[QzpcUHJvZ3JhbSBGaWxlcyAoeDg2KVxDb21tb24gRmlsZXM=]]></property><property name="CommonProgramW6432" fullname="$GLOBALS['HTTP_ENV_VARS']['CommonProgramW6432']" address="37655008" type="string" size="29" encoding="base64"><![CDATA[QzpcUHJvZ3JhbSBGaWxlc1xDb21tb24gRmlsZXM=]]></property><property name="COMPUTERNAME" fullname="$GLOBALS['HTTP_ENV_VARS']['COMPUTERNAME']" address="37655144" type="string" size="13" encoding="base64"><![CDATA[S1NBRk9OT1YtVkFJTw==]]></property><property name="ComSpec" fullname="$GLOBALS['HTTP_ENV_VARS']['ComSpec']" address="37655120" type="string" size="27" encoding="base64"><![CDATA[QzpcV2luZG93c1xzeXN0ZW0zMlxjbWQuZXhl]]></property><property name="configsetroot" fullname="$GLOBALS['HTTP_ENV_VARS']['configsetroot']" address="37655384" type="string" size="24" encoding="base64"><![CDATA[QzpcV2luZG93c1xDb25maWdTZXRSb290]]></property><property name="dev_idea_home" fullname="$GLOBALS['HTTP_ENV_VARS']['dev_idea_home']" address="37655544" type="string" size="16" encoding="base64"><![CDATA[YzpcUHJvamVjdHNcSURFQQ==]]></property><property name="EMC_AUTOPLAY" fullname="$GLOBALS['HTTP_ENV_VARS']['EMC_AUTOPLAY']" address="37655696" type="string" size="49" encoding="base64"><![CDATA[QzpcUHJvZ3JhbSBGaWxlcyAoeDg2KVxDb21tb24gRmlsZXNcUm94aW8gU2hhcmVkXA==]]></property><property name="FP_NO_HOST_CHECK" fullname="$GLOBALS['HTTP_ENV_VARS']['FP_NO_HOST_CHECK']" address="37655360" type="string" size="2" encoding="base64"><![CDATA[Tk8=]]></property><property name="HOMEDRIVE" fullname="$GLOBALS['HTTP_ENV_VARS']['HOMEDRIVE']" address="37655912" type="string" size="2" encoding="base64"><![CDATA[Qzo=]]></property><property name="HOMEPATH" fullname="$GLOBALS['HTTP_ENV_VARS']['HOMEPATH']" address="37656016" type="string" size="15" encoding="base64"><![CDATA[XFVzZXJzXGtzYWZvbm92]]></property><property name="java_home" fullname="$GLOBALS['HTTP_ENV_VARS']['java_home']" address="37656096" type="string" size="24" encoding="base64"><![CDATA[YzpcUHJvZ3JhbXNcamRrMS41LjBfMjJc]]></property><property name="LOCALAPPDATA" fullname="$GLOBALS['HTTP_ENV_VARS']['LOCALAPPDATA']" address="37656216" type="string" size="31" encoding="base64"><![CDATA[QzpcVXNlcnNca3NhZm9ub3ZcQXBwRGF0YVxMb2NhbA==]]></property><property name="LOGONSERVER" fullname="$GLOBALS['HTTP_ENV_VARS']['LOGONSERVER']" address="37656320" type="string" size="11" encoding="base64"><![CDATA[XFxTVC1TRVJWRVI=]]></property><property name="NUMBER_OF_PROCESSORS" fullname="$GLOBALS['HTTP_ENV_VARS']['NUMBER_OF_PROCESSORS']" address="37656296" type="string" size="1" encoding="base64"><![CDATA[NA==]]></property><property name="OS" fullname="$GLOBALS['HTTP_ENV_VARS']['OS']" address="37656656" type="string" size="10" encoding="base64"><![CDATA[V2luZG93c19OVA==]]></property><property name="Path" fullname="$GLOBALS['HTTP_ENV_VARS']['Path']" address="37657384" type="string" size="643" encoding="base64"><![CDATA[QzpcUHJvZ3JhbSBGaWxlcyAoeDg2KVxQQyBDb25uZWN0aXZpdHkgU29sdXRpb25cO0M6XFdpbmRvd3Ncc3lzdGVtMzI7QzpcV2luZG93cztDOlxXaW5kb3dzXFN5c3RlbTMyXA==]]></property><property name="PATHEXT" fullname="$GLOBALS['HTTP_ENV_VARS']['PATHEXT']" address="37657520" type="string" size="53" encoding="base64"><![CDATA[LkNPTTsuRVhFOy5CQVQ7LkNNRDsuVkJTOy5WQkU7LkpTOy5KU0U7LldTRjsuV1NIOy5NU0M=]]></property><property name="PROCESSOR_ARCHITECTURE" fullname="$GLOBALS['HTTP_ENV_VARS']['PROCESSOR_ARCHITECTURE']" address="37657600" type="string" size="3" encoding="base64"><![CDATA[eDg2]]></property><property name="PROCESSOR_ARCHITEW6432" fullname="$GLOBALS['HTTP_ENV_VARS']['PROCESSOR_ARCHITEW6432']" address="37657640" type="string" size="5" encoding="base64"><![CDATA[QU1ENjQ=]]></property><property name="PROCESSOR_IDENTIFIER" fullname="$GLOBALS['HTTP_ENV_VARS']['PROCESSOR_IDENTIFIER']" address="37657800" type="string" size="50" encoding="base64"><![CDATA[SW50ZWw2NCBGYW1pbHkgNiBNb2RlbCAzNyBTdGVwcGluZyAyLCBHZW51aW5lSW50ZWw=]]></property><property name="PROCESSOR_LEVEL" fullname="$GLOBALS['HTTP_ENV_VARS']['PROCESSOR_LEVEL']" address="37657928" type="string" size="1" encoding="base64"><![CDATA[Ng==]]></property><property name="PROCESSOR_REVISION" fullname="$GLOBALS['HTTP_ENV_VARS']['PROCESSOR_REVISION']" address="37657904" type="string" size="4" encoding="base64"><![CDATA[MjUwMg==]]></property><property name="ProgramData" fullname="$GLOBALS['HTTP_ENV_VARS']['ProgramData']" address="37658144" type="string" size="14" encoding="base64"><![CDATA[QzpcUHJvZ3JhbURhdGE=]]></property><property name="ProgramFiles" fullname="$GLOBALS['HTTP_ENV_VARS']['ProgramFiles']" address="37658224" type="string" size="22" encoding="base64"><![CDATA[QzpcUHJvZ3JhbSBGaWxlcyAoeDg2KQ==]]></property><property name="ProgramFiles(x86)" fullname="$GLOBALS['HTTP_ENV_VARS']['ProgramFiles(x86)']" address="37658120" type="string" size="22" encoding="base64"><![CDATA[QzpcUHJvZ3JhbSBGaWxlcyAoeDg2KQ==]]></property><property name="ProgramW6432" fullname="$GLOBALS['HTTP_ENV_VARS']['ProgramW6432']" address="37658456" type="string" size="16" encoding="base64"><![CDATA[QzpcUHJvZ3JhbSBGaWxlcw==]]></property><property name="PSModulePath" fullname="$GLOBALS['HTTP_ENV_VARS']['PSModulePath']" address="37658600" type="string" size="51" encoding="base64"><![CDATA[QzpcV2luZG93c1xzeXN0ZW0zMlxXaW5kb3dzUG93ZXJTaGVsbFx2MS4wXE1vZHVsZXNc]]></property><property name="PUBLIC" fullname="$GLOBALS['HTTP_ENV_VARS']['PUBLIC']" address="37658696" type="string" size="15" encoding="base64"><![CDATA[QzpcVXNlcnNcUHVibGlj]]></property><property name="RoxioCentral" fullname="$GLOBALS['HTTP_ENV_VARS']['RoxioCentral']" address="37658880" type="string" size="70" encoding="base64"><![CDATA[QzpcUHJvZ3JhbSBGaWxlcyAoeDg2KVxDb21tb24gRmlsZXNcUm94aW8gU2hhcmVkXDEwLjBcUm94aW8gQ2VudHJhbDM2XA==]]></property><property name="SESSIONNAME" fullname="$GLOBALS['HTTP_ENV_VARS']['SESSIONNAME']" address="37659224" type="string" size="7" encoding="base64"><![CDATA[Q29uc29sZQ==]]></property><property name="SystemDrive" fullname="$GLOBALS['HTTP_ENV_VARS']['SystemDrive']" address="37659320" type="string" size="2" encoding="base64"><![CDATA[Qzo=]]></property><property name="SystemRoot" fullname="$GLOBALS['HTTP_ENV_VARS']['SystemRoot']" address="37659424" type="string" size="10" encoding="base64"><![CDATA[QzpcV2luZG93cw==]]></property><property name="TEMP" fullname="$GLOBALS['HTTP_ENV_VARS']['TEMP']" address="37659400" type="string" size="7" encoding="base64"><![CDATA[YzpcVGVtcA==]]></property><property name="TMP" fullname="$GLOBALS['HTTP_ENV_VARS']['TMP']" address="37659600" type="string" size="7" encoding="base64"><![CDATA[YzpcdGVtcA==]]></property><property name="USERDNSDOMAIN" fullname="$GLOBALS['HTTP_ENV_VARS']['USERDNSDOMAIN']" address="37659728" type="string" size="16" encoding="base64"><![CDATA[U1dJRlRURUFNUy5MT0NBTA==]]></property><property name="USERDOMAIN" fullname="$GLOBALS['HTTP_ENV_VARS']['USERDOMAIN']" address="37659840" type="string" size="10" encoding="base64"><![CDATA[U1dJRlRURUFNUw==]]></property><property name="USERNAME" fullname="$GLOBALS['HTTP_ENV_VARS']['USERNAME']" address="37659944" type="string" size="8" encoding="base64"><![CDATA[a3NhZm9ub3Y=]]></property><property name="USERPROFILE" fullname="$GLOBALS['HTTP_ENV_VARS']['USERPROFILE']" address="37660056" type="string" size="17" encoding="base64"><![CDATA[QzpcVXNlcnNca3NhZm9ub3Y=]]></property><property name="windir" fullname="$GLOBALS['HTTP_ENV_VARS']['windir']" address="37660136" type="string" size="10" encoding="base64"><![CDATA[QzpcV2luZG93cw==]]></property><property name="work_idea_home" fullname="$GLOBALS['HTTP_ENV_VARS']['work_idea_home']" address="37660280" type="string" size="29" encoding="base64"><![CDATA[YzpccHJvZ3JhbXNcaWRlYS1mcm9tLXNvdXJjZXM=]]></property><property name="XDEBUG_CONFIG" fullname="$GLOBALS['HTTP_ENV_VARS']['XDEBUG_CONFIG']" address="37660408" type="string" size="24" encoding="base64"><![CDATA[aWRla2V5PV9fUFJPRFVDVF9OQU1FX18x]]></property></property><property name="argv" fullname="$GLOBALS['argv']" address="37666744" type="array" children="1" numchildren="1" page="0" pagesize="100"><property name="0" fullname="$GLOBALS['argv'][0]" address="37667832" type="string" size="49" encoding="base64"><![CDATA[QzpcVXNlcnNca3NhZm9ub3ZcV2ViaWRlUHJvamVjdHNcc3VzZS1hM1x0ZXN0LnBocA==]]></property></property><property name="argc" fullname="$GLOBALS['argc']" address="37667968" type="int"><![CDATA[1]]></property><property name="_POST" fullname="$GLOBALS['_POST']" address="37668184" type="array" children="0" numchildren="0" page="0" pagesize="100"></property><property name="HTTP_POST_VARS" fullname="$GLOBALS['HTTP_POST_VARS']" address="37668184" type="array" children="0" numchildren="0" page="0" pagesize="100"></property><property name="_GET" fullname="$GLOBALS['_GET']" address="37660256" type="array" children="0" numchildren="0" page="0" pagesize="100"></property><property name="HTTP_GET_VARS" fullname="$GLOBALS['HTTP_GET_VARS']" address="37660256" type="array" children="0" numchildren="0" page="0" pagesize="100"></property><property name="_COOKIE" fullname="$GLOBALS['_COOKIE']" address="37660696" type="array" children="0" numchildren="0" page="0" pagesize="100"></property><property name="HTTP_COOKIE_VARS" fullname="$GLOBALS['HTTP_COOKIE_VARS']" address="37660696" type="array" children="0" numchildren="0" page="0" pagesize="100"></property><property name="_SERVER" fullname="$GLOBALS['_SERVER']" address="37660808" type="array" children="1" numchildren="53" page="0" pagesize="100"><property name="ALLUSERSPROFILE" fullname="$GLOBALS['_SERVER']['ALLUSERSPROFILE']" address="37660968" type="string" size="14" encoding="base64"><![CDATA[QzpcUHJvZ3JhbURhdGE=]]></property><property name="ant_home" fullname="$GLOBALS['_SERVER']['ant_home']" address="37661096" type="string" size="29" encoding="base64"><![CDATA[YzpcUHJvZ3JhbXNcYXBhY2hlLWFudC0xLjYuNVw=]]></property><property name="APPDATA" fullname="$GLOBALS['_SERVER']['APPDATA']" address="37660944" type="string" size="33" encoding="base64"><![CDATA[QzpcVXNlcnNca3NhZm9ub3ZcQXBwRGF0YVxSb2FtaW5n]]></property><property name="CommonProgramFiles" fullname="$GLOBALS['_SERVER']['CommonProgramFiles']" address="37661360" type="string" size="35" encoding="base64"><![CDATA[QzpcUHJvZ3JhbSBGaWxlcyAoeDg2KVxDb21tb24gRmlsZXM=]]></property><property name="CommonProgramFiles(x86)" fullname="$GLOBALS['_SERVER']['CommonProgramFiles(x86)']" address="37661496" type="string" size="35" encoding="base64"><![CDATA[QzpcUHJvZ3JhbSBGaWxlcyAoeDg2KVxDb21tb24gRmlsZXM=]]></property><property name="CommonProgramW6432" fullname="$GLOBALS['_SERVER']['CommonProgramW6432']" address="37661632" type="string" size="29" encoding="base64"><![CDATA[QzpcUHJvZ3JhbSBGaWxlc1xDb21tb24gRmlsZXM=]]></property><property name="COMPUTERNAME" fullname="$GLOBALS['_SERVER']['COMPUTERNAME']" address="37661768" type="string" size="13" encoding="base64"><![CDATA[S1NBRk9OT1YtVkFJTw==]]></property><property name="ComSpec" fullname="$GLOBALS['_SERVER']['ComSpec']" address="37661744" type="string" size="27" encoding="base64"><![CDATA[QzpcV2luZG93c1xzeXN0ZW0zMlxjbWQuZXhl]]></property><property name="configsetroot" fullname="$GLOBALS['_SERVER']['configsetroot']" address="37662008" type="string" size="24" encoding="base64"><![CDATA[QzpcV2luZG93c1xDb25maWdTZXRSb290]]></property><property name="dev_idea_home" fullname="$GLOBALS['_SERVER']['dev_idea_home']" address="37662168" type="string" size="16" encoding="base64"><![CDATA[YzpcUHJvamVjdHNcSURFQQ==]]></property><property name="EMC_AUTOPLAY" fullname="$GLOBALS['_SERVER']['EMC_AUTOPLAY']" address="37662320" type="string" size="49" encoding="base64"><![CDATA[QzpcUHJvZ3JhbSBGaWxlcyAoeDg2KVxDb21tb24gRmlsZXNcUm94aW8gU2hhcmVkXA==]]></property><property name="FP_NO_HOST_CHECK" fullname="$GLOBALS['_SERVER']['FP_NO_HOST_CHECK']" address="37661984" type="string" size="2" encoding="base64"><![CDATA[Tk8=]]></property><property name="HOMEDRIVE" fullname="$GLOBALS['_SERVER']['HOMEDRIVE']" address="37662536" type="string" size="2" encoding="base64"><![CDATA[Qzo=]]></property><property name="HOMEPATH" fullname="$GLOBALS['_SERVER']['HOMEPATH']" address="37662640" type="string" size="15" encoding="base64"><![CDATA[XFVzZXJzXGtzYWZvbm92]]></property><property name="java_home" fullname="$GLOBALS['_SERVER']['java_home']" address="37662720" type="string" size="24" encoding="base64"><![CDATA[YzpcUHJvZ3JhbXNcamRrMS41LjBfMjJc]]></property><property name="LOCALAPPDATA" fullname="$GLOBALS['_SERVER']['LOCALAPPDATA']" address="37662840" type="string" size="31" encoding="base64"><![CDATA[QzpcVXNlcnNca3NhZm9ub3ZcQXBwRGF0YVxMb2NhbA==]]></property><property name="LOGONSERVER" fullname="$GLOBALS['_SERVER']['LOGONSERVER']" address="37662944" type="string" size="11" encoding="base64"><![CDATA[XFxTVC1TRVJWRVI=]]></property><property name="NUMBER_OF_PROCESSORS" fullname="$GLOBALS['_SERVER']['NUMBER_OF_PROCESSORS']" address="37662920" type="string" size="1" encoding="base64"><![CDATA[NA==]]></property><property name="OS" fullname="$GLOBALS['_SERVER']['OS']" address="37663144" type="string" size="10" encoding="base64"><![CDATA[V2luZG93c19OVA==]]></property><property name="Path" fullname="$GLOBALS['_SERVER']['Path']" address="37663872" type="string" size="643" encoding="base64"><![CDATA[QzpcUHJvZ3JhbSBGaWxlcyAoeDg2KVxQQyBDb25uZWN0aXZpdHkgU29sdXRpb25cO0M6XFdpbmRvd3Ncc3lzdGVtMzI7QzpcV2luZG93cztDOlxXaW5kb3dzXFN5c3RlbTMyXA==]]></property><property name="PATHEXT" fullname="$GLOBALS['_SERVER']['PATHEXT']" address="37664008" type="string" size="53" encoding="base64"><![CDATA[LkNPTTsuRVhFOy5CQVQ7LkNNRDsuVkJTOy5WQkU7LkpTOy5KU0U7LldTRjsuV1NIOy5NU0M=]]></property><property name="PROCESSOR_ARCHITECTURE" fullname="$GLOBALS['_SERVER']['PROCESSOR_ARCHITECTURE']" address="37664088" type="string" size="3" encoding="base64"><![CDATA[eDg2]]></property><property name="PROCESSOR_ARCHITEW6432" fullname="$GLOBALS['_SERVER']['PROCESSOR_ARCHITEW6432']" address="37664128" type="string" size="5" encoding="base64"><![CDATA[QU1ENjQ=]]></property><property name="PROCESSOR_IDENTIFIER" fullname="$GLOBALS['_SERVER']['PROCESSOR_IDENTIFIER']" address="37664288" type="string" size="50" encoding="base64"><![CDATA[SW50ZWw2NCBGYW1pbHkgNiBNb2RlbCAzNyBTdGVwcGluZyAyLCBHZW51aW5lSW50ZWw=]]></property><property name="PROCESSOR_LEVEL" fullname="$GLOBALS['_SERVER']['PROCESSOR_LEVEL']" address="37664416" type="string" size="1" encoding="base64"><![CDATA[Ng==]]></property><property name="PROCESSOR_REVISION" fullname="$GLOBALS['_SERVER']['PROCESSOR_REVISION']" address="37664392" type="string" size="4" encoding="base64"><![CDATA[MjUwMg==]]></property><property name="ProgramData" fullname="$GLOBALS['_SERVER']['ProgramData']" address="37664632" type="string" size="14" encoding="base64"><![CDATA[QzpcUHJvZ3JhbURhdGE=]]></property><property name="ProgramFiles" fullname="$GLOBALS['_SERVER']['ProgramFiles']" address="37664712" type="string" size="22" encoding="base64"><![CDATA[QzpcUHJvZ3JhbSBGaWxlcyAoeDg2KQ==]]></property><property name="ProgramFiles(x86)" fullname="$GLOBALS['_SERVER']['ProgramFiles(x86)']" address="37664608" type="string" size="22" encoding="base64"><![CDATA[QzpcUHJvZ3JhbSBGaWxlcyAoeDg2KQ==]]></property><property name="ProgramW6432" fullname="$GLOBALS['_SERVER']['ProgramW6432']" address="37664944" type="string" size="16" encoding="base64"><![CDATA[QzpcUHJvZ3JhbSBGaWxlcw==]]></property><property name="PSModulePath" fullname="$GLOBALS['_SERVER']['PSModulePath']" address="37665088" type="string" size="51" encoding="base64"><![CDATA[QzpcV2luZG93c1xzeXN0ZW0zMlxXaW5kb3dzUG93ZXJTaGVsbFx2MS4wXE1vZHVsZXNc]]></property><property name="PUBLIC" fullname="$GLOBALS['_SERVER']['PUBLIC']" address="37665184" type="string" size="15" encoding="base64"><![CDATA[QzpcVXNlcnNcUHVibGlj]]></property><property name="RoxioCentral" fullname="$GLOBALS['_SERVER']['RoxioCentral']" address="37665368" type="string" size="70" encoding="base64"><![CDATA[QzpcUHJvZ3JhbSBGaWxlcyAoeDg2KVxDb21tb24gRmlsZXNcUm94aW8gU2hhcmVkXDEwLjBcUm94aW8gQ2VudHJhbDM2XA==]]></property><property name="SESSIONNAME" fullname="$GLOBALS['_SERVER']['SESSIONNAME']" address="37665712" type="string" size="7" encoding="base64"><![CDATA[Q29uc29sZQ==]]></property><property name="SystemDrive" fullname="$GLOBALS['_SERVER']['SystemDrive']" address="37665808" type="string" size="2" encoding="base64"><![CDATA[Qzo=]]></property><property name="SystemRoot" fullname="$GLOBALS['_SERVER']['SystemRoot']" address="37665912" type="string" size="10" encoding="base64"><![CDATA[QzpcV2luZG93cw==]]></property><property name="TEMP" fullname="$GLOBALS['_SERVER']['TEMP']" address="37665888" type="string" size="7" encoding="base64"><![CDATA[YzpcVGVtcA==]]></property><property name="TMP" fullname="$GLOBALS['_SERVER']['TMP']" address="37666088" type="string" size="7" encoding="base64"><![CDATA[YzpcdGVtcA==]]></property><property name="USERDNSDOMAIN" fullname="$GLOBALS['_SERVER']['USERDNSDOMAIN']" address="37666216" type="string" size="16" encoding="base64"><![CDATA[U1dJRlRURUFNUy5MT0NBTA==]]></property><property name="USERDOMAIN" fullname="$GLOBALS['_SERVER']['USERDOMAIN']" address="37666328" type="string" size="10" encoding="base64"><![CDATA[U1dJRlRURUFNUw==]]></property><property name="USERNAME" fullname="$GLOBALS['_SERVER']['USERNAME']" address="37666432" type="string" size="8" encoding="base64"><![CDATA[a3NhZm9ub3Y=]]></property><property name="USERPROFILE" fullname="$GLOBALS['_SERVER']['USERPROFILE']" address="37666544" type="string" size="17" encoding="base64"><![CDATA[QzpcVXNlcnNca3NhZm9ub3Y=]]></property><property name="windir" fullname="$GLOBALS['_SERVER']['windir']" address="37666624" type="string" size="10" encoding="base64"><![CDATA[QzpcV2luZG93cw==]]></property><property name="work_idea_home" fullname="$GLOBALS['_SERVER']['work_idea_home']" address="37666768" type="string" size="29" encoding="base64"><![CDATA[YzpccHJvZ3JhbXNcaWRlYS1mcm9tLXNvdXJjZXM=]]></property><property name="XDEBUG_CONFIG" fullname="$GLOBALS['_SERVER']['XDEBUG_CONFIG']" address="37666896" type="string" size="24" encoding="base64"><![CDATA[aWRla2V5PV9fUFJPRFVDVF9OQU1FX18x]]></property><property name="PHP_SELF" fullname="$GLOBALS['_SERVER']['PHP_SELF']" address="37667048" type="string" size="49" encoding="base64"><![CDATA[QzpcVXNlcnNca3NhZm9ub3ZcV2ViaWRlUHJvamVjdHNcc3VzZS1hM1x0ZXN0LnBocA==]]></property><property name="SCRIPT_NAME" fullname="$GLOBALS['_SERVER']['SCRIPT_NAME']" address="37667192" type="string" size="49" encoding="base64"><![CDATA[QzpcVXNlcnNca3NhZm9ub3ZcV2ViaWRlUHJvamVjdHNcc3VzZS1hM1x0ZXN0LnBocA==]]></property><property name="SCRIPT_FILENAME" fullname="$GLOBALS['_SERVER']['SCRIPT_FILENAME']" address="37667336" type="string" size="49" encoding="base64"><![CDATA[QzpcVXNlcnNca3NhZm9ub3ZcV2ViaWRlUHJvamVjdHNcc3VzZS1hM1x0ZXN0LnBocA==]]></property><property name="PATH_TRANSLATED" fullname="$GLOBALS['_SERVER']['PATH_TRANSLATED']" address="37667488" type="string" size="49" encoding="base64"><![CDATA[QzpcVXNlcnNca3NhZm9ub3ZcV2ViaWRlUHJvamVjdHNcc3VzZS1hM1x0ZXN0LnBocA==]]></property><property name="DOCUMENT_ROOT" fullname="$GLOBALS['_SERVER']['DOCUMENT_ROOT']" address="37667576" type="string" size="0" encoding="base64"><![CDATA[]]></property><property name="REQUEST_TIME" fullname="$GLOBALS['_SERVER']['REQUEST_TIME']" address="37667664" type="int"><![CDATA[1275902180]]></property><property name="argv" fullname="$GLOBALS['_SERVER']['argv']" address="37666744" type="array" children="1" numchildren="1" page="0" pagesize="100"><property name="0" fullname="$GLOBALS['_SERVER']['argv'][0]" address="37667832" type="string" size="49" encoding="base64"><![CDATA[QzpcVXNlcnNca3NhZm9ub3ZcV2ViaWRlUHJvamVjdHNcc3VzZS1hM1x0ZXN0LnBocA==]]></property></property><property name="argc" fullname="$GLOBALS['_SERVER']['argc']" address="37667968" type="int"><![CDATA[1]]></property></property><property name="HTTP_SERVER_VARS" fullname="$GLOBALS['HTTP_SERVER_VARS']" address="37660808" type="array" children="1" numchildren="53" page="0" pagesize="100"><property name="ALLUSERSPROFILE" fullname="$GLOBALS['HTTP_SERVER_VARS']['ALLUSERSPROFILE']" address="37660968" type="string" size="14" encoding="base64"><![CDATA[QzpcUHJvZ3JhbURhdGE=]]></property><property name="ant_home" fullname="$GLOBALS['HTTP_SERVER_VARS']['ant_home']" address="37661096" type="string" size="29" encoding="base64"><![CDATA[YzpcUHJvZ3JhbXNcYXBhY2hlLWFudC0xLjYuNVw=]]></property><property name="APPDATA" fullname="$GLOBALS['HTTP_SERVER_VARS']['APPDATA']" address="37660944" type="string" size="33" encoding="base64"><![CDATA[QzpcVXNlcnNca3NhZm9ub3ZcQXBwRGF0YVxSb2FtaW5n]]></property><property name="CommonProgramFiles" fullname="$GLOBALS['HTTP_SERVER_VARS']['CommonProgramFiles']" address="37661360" type="string" size="35" encoding="base64"><![CDATA[QzpcUHJvZ3JhbSBGaWxlcyAoeDg2KVxDb21tb24gRmlsZXM=]]></property><property name="CommonProgramFiles(x86)" fullname="$GLOBALS['HTTP_SERVER_VARS']['CommonProgramFiles(x86)']" address="37661496" type="string" size="35" encoding="base64"><![CDATA[QzpcUHJvZ3JhbSBGaWxlcyAoeDg2KVxDb21tb24gRmlsZXM=]]></property><property name="CommonProgramW6432" fullname="$GLOBALS['HTTP_SERVER_VARS']['CommonProgramW6432']" address="37661632" type="string" size="29" encoding="base64"><![CDATA[QzpcUHJvZ3JhbSBGaWxlc1xDb21tb24gRmlsZXM=]]></property><property name="COMPUTERNAME" fullname="$GLOBALS['HTTP_SERVER_VARS']['COMPUTERNAME']" address="37661768" type="string" size="13" encoding="base64"><![CDATA[S1NBRk9OT1YtVkFJTw==]]></property><property name="ComSpec" fullname="$GLOBALS['HTTP_SERVER_VARS']['ComSpec']" address="37661744" type="string" size="27" encoding="base64"><![CDATA[QzpcV2luZG93c1xzeXN0ZW0zMlxjbWQuZXhl]]></property><property name="configsetroot" fullname="$GLOBALS['HTTP_SERVER_VARS']['configsetroot']" address="37662008" type="string" size="24" encoding="base64"><![CDATA[QzpcV2luZG93c1xDb25maWdTZXRSb290]]></property><property name="dev_idea_home" fullname="$GLOBALS['HTTP_SERVER_VARS']['dev_idea_home']" address="37662168" type="string" size="16" encoding="base64"><![CDATA[YzpcUHJvamVjdHNcSURFQQ==]]></property><property name="EMC_AUTOPLAY" fullname="$GLOBALS['HTTP_SERVER_VARS']['EMC_AUTOPLAY']" address="37662320" type="string" size="49" encoding="base64"><![CDATA[QzpcUHJvZ3JhbSBGaWxlcyAoeDg2KVxDb21tb24gRmlsZXNcUm94aW8gU2hhcmVkXA==]]></property><property name="FP_NO_HOST_CHECK" fullname="$GLOBALS['HTTP_SERVER_VARS']['FP_NO_HOST_CHECK']" address="37661984" type="string" size="2" encoding="base64"><![CDATA[Tk8=]]></property><property name="HOMEDRIVE" fullname="$GLOBALS['HTTP_SERVER_VARS']['HOMEDRIVE']" address="37662536" type="string" size="2" encoding="base64"><![CDATA[Qzo=]]></property><property name="HOMEPATH" fullname="$GLOBALS['HTTP_SERVER_VARS']['HOMEPATH']" address="37662640" type="string" size="15" encoding="base64"><![CDATA[XFVzZXJzXGtzYWZvbm92]]></property><property name="java_home" fullname="$GLOBALS['HTTP_SERVER_VARS']['java_home']" address="37662720" type="string" size="24" encoding="base64"><![CDATA[YzpcUHJvZ3JhbXNcamRrMS41LjBfMjJc]]></property><property name="LOCALAPPDATA" fullname="$GLOBALS['HTTP_SERVER_VARS']['LOCALAPPDATA']" address="37662840" type="string" size="31" encoding="base64"><![CDATA[QzpcVXNlcnNca3NhZm9ub3ZcQXBwRGF0YVxMb2NhbA==]]></property><property name="LOGONSERVER" fullname="$GLOBALS['HTTP_SERVER_VARS']['LOGONSERVER']" address="37662944" type="string" size="11" encoding="base64"><![CDATA[XFxTVC1TRVJWRVI=]]></property><property name="NUMBER_OF_PROCESSORS" fullname="$GLOBALS['HTTP_SERVER_VARS']['NUMBER_OF_PROCESSORS']" address="37662920" type="string" size="1" encoding="base64"><![CDATA[NA==]]></property><property name="OS" fullname="$GLOBALS['HTTP_SERVER_VARS']['OS']" address="37663144" type="string" size="10" encoding="base64"><![CDATA[V2luZG93c19OVA==]]></property><property name="Path" fullname="$GLOBALS['HTTP_SERVER_VARS']['Path']" address="37663872" type="string" size="643" encoding="base64"><![CDATA[QzpcUHJvZ3JhbSBGaWxlcyAoeDg2KVxQQyBDb25uZWN0aXZpdHkgU29sdXRpb25cO0M6XFdpbmRvd3Ncc3lzdGVtMzI7QzpcV2luZG93cztDOlxXaW5kb3dzXFN5c3RlbTMyXA==]]></property><property name="PATHEXT" fullname="$GLOBALS['HTTP_SERVER_VARS']['PATHEXT']" address="37664008" type="string" size="53" encoding="base64"><![CDATA[LkNPTTsuRVhFOy5CQVQ7LkNNRDsuVkJTOy5WQkU7LkpTOy5KU0U7LldTRjsuV1NIOy5NU0M=]]></property><property name="PROCESSOR_ARCHITECTURE" fullname="$GLOBALS['HTTP_SERVER_VARS']['PROCESSOR_ARCHITECTURE']" address="37664088" type="string" size="3" encoding="base64"><![CDATA[eDg2]]></property><property name="PROCESSOR_ARCHITEW6432" fullname="$GLOBALS['HTTP_SERVER_VARS']['PROCESSOR_ARCHITEW6432']" address="37664128" type="string" size="5" encoding="base64"><![CDATA[QU1ENjQ=]]></property><property name="PROCESSOR_IDENTIFIER" fullname="$GLOBALS['HTTP_SERVER_VARS']['PROCESSOR_IDENTIFIER']" address="37664288" type="string" size="50" encoding="base64"><![CDATA[SW50ZWw2NCBGYW1pbHkgNiBNb2RlbCAzNyBTdGVwcGluZyAyLCBHZW51aW5lSW50ZWw=]]></property><property name="PROCESSOR_LEVEL" fullname="$GLOBALS['HTTP_SERVER_VARS']['PROCESSOR_LEVEL']" address="37664416" type="string" size="1" encoding="base64"><![CDATA[Ng==]]></property><property name="PROCESSOR_REVISION" fullname="$GLOBALS['HTTP_SERVER_VARS']['PROCESSOR_REVISION']" address="37664392" type="string" size="4" encoding="base64"><![CDATA[MjUwMg==]]></property><property name="ProgramData" fullname="$GLOBALS['HTTP_SERVER_VARS']['ProgramData']" address="37664632" type="string" size="14" encoding="base64"><![CDATA[QzpcUHJvZ3JhbURhdGE=]]></property><property name="ProgramFiles" fullname="$GLOBALS['HTTP_SERVER_VARS']['ProgramFiles']" address="37664712" type="string" size="22" encoding="base64"><![CDATA[QzpcUHJvZ3JhbSBGaWxlcyAoeDg2KQ==]]></property><property name="ProgramFiles(x86)" fullname="$GLOBALS['HTTP_SERVER_VARS']['ProgramFiles(x86)']" address="37664608" type="string" size="22" encoding="base64"><![CDATA[QzpcUHJvZ3JhbSBGaWxlcyAoeDg2KQ==]]></property><property name="ProgramW6432" fullname="$GLOBALS['HTTP_SERVER_VARS']['ProgramW6432']" address="37664944" type="string" size="16" encoding="base64"><![CDATA[QzpcUHJvZ3JhbSBGaWxlcw==]]></property><property name="PSModulePath" fullname="$GLOBALS['HTTP_SERVER_VARS']['PSModulePath']" address="37665088" type="string" size="51" encoding="base64"><![CDATA[QzpcV2luZG93c1xzeXN0ZW0zMlxXaW5kb3dzUG93ZXJTaGVsbFx2MS4wXE1vZHVsZXNc]]></property><property name="PUBLIC" fullname="$GLOBALS['HTTP_SERVER_VARS']['PUBLIC']" address="37665184" type="string" size="15" encoding="base64"><![CDATA[QzpcVXNlcnNcUHVibGlj]]></property><property name="RoxioCentral" fullname="$GLOBALS['HTTP_SERVER_VARS']['RoxioCentral']" address="37665368" type="string" size="70" encoding="base64"><![CDATA[QzpcUHJvZ3JhbSBGaWxlcyAoeDg

TagsNo tags attached.
Operating SystemWindows 7 x64
PHP Version5.2.10

Activities

ksafonov

2010-06-07 09:24

reporter   ~0001489

Last edited: 2010-06-07 09:27

Original bug report in our issue tracker: http://youtrack.jetbrains.net/issue/WI-2193

ksafonov

2010-06-07 09:26

reporter   ~0001490

Last edited: 2010-06-07 09:27

Log seems not to upload completely, please find it at http://youtrack.jetbrains.net/_persistent/xdebug.log?file=74-29209&amp;v=0&amp;c=true

derick

2010-06-13 14:04

administrator   ~0001493

This is not a bug. Xdebug breaks after every statement that PHP "sees". If we analyse what PHPdoes (with VLD) we see this:

line # * op fetch ext return operands

10 0 > EXT_STMT
1 ECHO '%3C%21DOCTYPE+HTML+PUBLIC+%22-%2F%2FW3C%2F%2FDTD+HTML+4.01+Transitional%2F%2FEN%22%0A++++++++%22http%3A%2F%2Fwww.w3.org%2FTR%2Fhtml4%2Floose.dtd%22%3E+%5B%5E%5D%0A%3Chtml%3E%0A%3Chead%3E%0A++++%3Cmeta+http-equiv%3D%22Content-Type%22+content%3D%22text%2Fhtml%3B+charset%3DUTF-8%22%3E%0A++++%3Ctitle%3EStatements+termination%3C%2Ftitle%3E%0A%3C%2Fhead%3E%0A%3Cbody%3E%0A%0A'
11 2 EXT_STMT
3 ECHO 'One+hit.'
4 NOP
13 5 EXT_STMT
6 ECHO '%0A'
14 7 EXT_STMT
8 ECHO 'One+hit.'
15 9 NOP
17 10 EXT_STMT
11 ECHO '%0A'
18 12 EXT_STMT
13 ECHO 'One+hit.'
20 14 EXT_STMT
15 ECHO '%0A'
16 EXT_STMT
17 ECHO 'Two+hits.'
21 18 NOP
23 19 EXT_STMT
20 ECHO '%0A'
21 EXT_STMT
22 ECHO 'Two+hits.'
28 23 EXT_STMT
24 ECHO '%0A%0A%3C%2Fbody%3E%0A%3C%2Fhtml%3E%0A'
25 > RETURN 1

Every EXT_STMT is a breakpoint stopping point.

Issue History

Date Modified Username Field Change
2010-06-07 09:23 ksafonov New Issue
2010-06-07 09:23 ksafonov Operating System => Windows 7 x64
2010-06-07 09:23 ksafonov PHP Version => 5.2.10
2010-06-07 09:23 ksafonov Xdebug Version => 2.1.0rc1
2010-06-07 09:24 ksafonov Note Added: 0001489
2010-06-07 09:26 ksafonov Note Added: 0001490
2010-06-07 09:26 ksafonov Note Edited: 0001490
2010-06-07 09:27 ksafonov Note Edited: 0001490
2010-06-07 09:27 ksafonov Note Edited: 0001489
2010-06-13 14:04 derick Note Added: 0001493
2010-06-13 14:04 derick Status new => resolved
2010-06-13 14:04 derick Resolution open => no change required
2010-06-13 14:04 derick Assigned To => derick
2016-07-31 12:36 derick Category Usage problems => Usage problems (Crashes)
2016-07-31 12:38 derick Category Usage problems (Crashes) => Usage problems (Wrong Results)
2020-03-12 16:35 derick Category Usage problems (Wrong Results) => Variable Display
2020-03-12 16:38 derick Category Variable Display => Uncategorized