New Batch Converter. Fix flags problem regarding may/shouldnot uncertainty
authorEduardo Ramos Testillano <eduardo.ramos.testillano@ericsson.com>
Sun, 12 Apr 2015 17:28:09 +0000 (19:28 +0200)
committerEduardo Ramos Testillano <eduardo.ramos.testillano@ericsson.com>
Sun, 12 Apr 2015 17:28:09 +0000 (19:28 +0200)
example/diameter/batchConverter/SConscript [new file with mode: 0644]
example/diameter/batchConverter/SConstruct [new file with mode: 0644]
example/diameter/batchConverter/dictionary.xml [new file with mode: 0644]
example/diameter/batchConverter/example.pcap [new file with mode: 0644]
example/diameter/batchConverter/example_diameter_batchConverter.trace [new file with mode: 0644]
example/diameter/batchConverter/main.cpp [new file with mode: 0644]
include/anna/diameter/codec/EngineImpl.hpp
include/anna/diameter/codec/message.dtd
source/diameter/codec/Avp.cpp
source/diameter/codec/Message.cpp

diff --git a/example/diameter/batchConverter/SConscript b/example/diameter/batchConverter/SConscript
new file mode 100644 (file)
index 0000000..6b09162
--- /dev/null
@@ -0,0 +1,38 @@
+Import ('env')
+
+# Process #################################################################
+#pName = "example_<module>_<process>"
+bnames = Dir('..').abspath.rsplit('/', 2)
+pName = "example_" + bnames[-2] + "_" + bnames[-1]
+pPath = pName.replace("_", "/") + "/"
+
+# Anna modules ############################################################
+pwd = str(Dir ('.').abspath);
+anna_libpaths = []
+anna_libs = []
+modules = [ 'core', 'io', 'xml', 'time', 'diameter' ];
+for module in modules:
+  anna_libs.append ("anna_" + module)
+  #module = module.replace("_", ".")
+  anna_libpaths.append (pwd.replace (pPath, ("source/" + module + "/")))
+
+anna_rlibs = list(anna_libs)
+anna_rlibs.reverse()
+
+# Libraries ###############################################################
+# To avoid other libraries accumulation:
+localEnv = env.Clone()
+
+anna_library = { 'LIBS' : anna_rlibs }
+localEnv.MergeFlags (anna_library)
+
+system_library = { 'LIBS' : [ 'xml2', 'rt' ] }
+localEnv.MergeFlags (system_library)
+
+localEnv.Append(LIBPATH = anna_libpaths)
+
+# Linking #################################################################
+result = localEnv.Program (pName, Glob ('*.cpp'))
+
+
+Return ('result')
diff --git a/example/diameter/batchConverter/SConstruct b/example/diameter/batchConverter/SConstruct
new file mode 100644 (file)
index 0000000..3275f35
--- /dev/null
@@ -0,0 +1,8 @@
+Import ('env')
+
+variant = env ['VARIANT']
+
+result = SConscript ('SConscript', exports='env', variant_dir='%s' % variant, duplicate=0)
+
+Return ('result')
+
diff --git a/example/diameter/batchConverter/dictionary.xml b/example/diameter/batchConverter/dictionary.xml
new file mode 100644 (file)
index 0000000..3d2988b
--- /dev/null
@@ -0,0 +1,2141 @@
+<dictionary name="Gx and Rx diameter interfaces">
+   <vendor name="IETF" code="0"/>
+   <vendor name="3GPP" code="10415"/>
+   <vendor name="ETSI" code="13019"/>
+   <avp name="User-Name" code="1" may-encrypt="yes" v-bit="mustnot" m-bit="must" p-bit="may">
+      <single format-name="UTF8String"/>
+   </avp>
+   <avp name="NAS-IP-Address" code="4" may-encrypt="yes" v-bit="mustnot" m-bit="must" p-bit="may">
+      <single format-name="OctetString"/>
+   </avp>
+   <avp name="Framed-IP-Address" code="8" may-encrypt="no" v-bit="mustnot" m-bit="may" p-bit="may">
+      <single format-name="OctetString"/>
+   </avp>
+   <avp name="Filter-Id" code="11" may-encrypt="no" v-bit="mustnot" m-bit="may" p-bit="may">
+      <single format-name="UTF8String"/>
+   </avp>
+   <avp name="Class" code="25" may-encrypt="yes" v-bit="mustnot" m-bit="must" p-bit="may">
+      <single format-name="OctetString"/>
+   </avp>
+   <avp name="Session-Timeout" code="27" may-encrypt="no" v-bit="mustnot" m-bit="must" p-bit="may">
+      <single format-name="Unsigned32"/>
+   </avp>
+   <avp name="Called-Station-Id" code="30" may-encrypt="no" v-bit="mustnot" m-bit="may" p-bit="may">
+      <single format-name="UTF8String"/>
+   </avp>
+   <avp name="Proxy-State" code="33" may-encrypt="no" v-bit="mustnot" m-bit="must" p-bit="mustnot">
+      <single format-name="OctetString"/>
+   </avp>
+   <avp name="Accounting-Session-Id" code="44" may-encrypt="yes" v-bit="mustnot" m-bit="must" p-bit="may">
+      <single format-name="OctetString"/>
+   </avp>
+   <avp name="Acct-Multi-Session-Id" code="50" may-encrypt="yes" v-bit="mustnot" m-bit="must" p-bit="may">
+      <single format-name="UTF8String"/>
+   </avp>
+   <avp name="Event-Timestamp" code="55" may-encrypt="no" v-bit="mustnot" m-bit="must" p-bit="may">
+      <single format-name="Time"/>
+   </avp>
+   <avp name="Acct-Interim-Interval" code="85" may-encrypt="yes" v-bit="mustnot" m-bit="must" p-bit="may">
+      <single format-name="Unsigned32"/>
+   </avp>
+   <avp name="Framed-IPv6-Prefix" code="97" may-encrypt="no" v-bit="mustnot" m-bit="may" p-bit="may">
+      <single format-name="OctetString"/>
+   </avp>
+   <avp name="Host-IP-Address" code="257" may-encrypt="no" v-bit="mustnot" m-bit="must" p-bit="may">
+      <single format-name="Address"/>
+   </avp>
+   <avp name="Auth-Application-Id" code="258" may-encrypt="no" v-bit="mustnot" m-bit="must" p-bit="may">
+      <single format-name="Unsigned32"/>
+   </avp>
+   <avp name="Acct-Application-Id" code="259" may-encrypt="no" v-bit="mustnot" m-bit="must" p-bit="may">
+      <single format-name="Unsigned32">
+         <label data="19302" alias="ERICSSON_SCAP"/>
+      </single>
+   </avp>
+   <avp name="Vendor-Specific-Application-Id" code="260" may-encrypt="no" v-bit="mustnot" m-bit="must" p-bit="may">
+      <grouped>
+         <avprule id="Vendor-Id" type="Optional" qual="1*"/>
+         <avprule id="Auth-Application-Id" type="Optional" qual="*1"/>
+         <avprule id="Acct-Application-Id" type="Optional" qual="*1"/>
+      </grouped>
+   </avp>
+   <avp name="Redirect-Host-Usage" code="261" may-encrypt="no" v-bit="mustnot" m-bit="must" p-bit="may">
+      <single format-name="Enumerated" enum="0-6">
+         <label data="0" alias="DONT_CACHE"/>
+         <label data="1" alias="ALL_SESSION"/>
+         <label data="2" alias="ALL_REALM"/>
+         <label data="3" alias="REALM_AND_APPLICATION"/>
+         <label data="4" alias="ALL_APPLICATION"/>
+         <label data="5" alias="ALL_HOST"/>
+         <label data="6" alias="ALL_USER"/>
+      </single>
+   </avp>
+   <avp name="Redirect-Max-Cache-Time" code="262" may-encrypt="no" v-bit="mustnot" m-bit="must" p-bit="may">
+      <single format-name="Unsigned32"/>
+   </avp>
+   <avp name="Session-Id" code="263" may-encrypt="yes" v-bit="mustnot" m-bit="must" p-bit="may">
+      <single format-name="UTF8String"/>
+   </avp>
+   <avp name="Origin-Host" code="264" may-encrypt="no" v-bit="mustnot" m-bit="must" p-bit="may">
+      <single format-name="DiameterIdentity"/>
+   </avp>
+   <avp name="Supported-Vendor-Id" code="265" may-encrypt="no" v-bit="mustnot" m-bit="must" p-bit="may">
+      <single format-name="Unsigned32"/>
+   </avp>
+   <avp name="Vendor-Id" code="266" may-encrypt="no" v-bit="mustnot" m-bit="must" p-bit="may">
+      <single format-name="Unsigned32"/>
+   </avp>
+   <avp name="Firmware-Revision" code="267" may-encrypt="no" v-bit="mustnot" m-bit="mustnot" p-bit="mustnot">
+      <single format-name="Unsigned32"/>
+   </avp>
+   <avp name="Result-Code" code="268" may-encrypt="no" v-bit="mustnot" m-bit="must" p-bit="may">
+      <single format-name="Unsigned32">
+         <label data="1001" alias="DIAMETER_MULTI_ROUND_AUTH"/>
+         <label data="2001" alias="DIAMETER_SUCCESS"/>
+         <label data="2002" alias="DIAMETER_LIMITED_SUCCESS"/>
+         <label data="3001" alias="DIAMETER_COMMAND_UNSUPPORTED"/>
+         <label data="3002" alias="DIAMETER_UNABLE_TO_DELIVER"/>
+         <label data="3003" alias="DIAMETER_REALM_NOT_SERVED"/>
+         <label data="3004" alias="DIAMETER_TOO_BUSY"/>
+         <label data="3005" alias="DIAMETER_LOOP_DETECTED"/>
+         <label data="3006" alias="DIAMETER_REDIRECT_INDICATION"/>
+         <label data="3007" alias="DIAMETER_APPLICATION_UNSUPPORTED"/>
+         <label data="3008" alias="DIAMETER_INVALID_HDR_BITS"/>
+         <label data="3009" alias="DIAMETER_INVALID_AVP_BITS"/>
+         <label data="3010" alias="DIAMETER_UNKNOWN_PEER"/>
+         <label data="4001" alias="DIAMETER_AUTHENTICATION_REJECTED"/>
+         <label data="4002" alias="DIAMETER_OUT_OF_SPACE"/>
+         <label data="4003" alias="ELECTION_LOST"/>
+         <label data="4005" alias="DIAMETER_ERROR_MIP_REPLY_FAILURE"/>
+         <label data="4006" alias="DIAMETER_ERROR_HA_NOT_AVAILABLE"/>
+         <label data="4007" alias="DIAMETER_ERROR_BAD_KEY"/>
+         <label data="4008" alias="DIAMETER_ERROR_MIP_FILTER_NOT_SUPPORTED"/>
+         <label data="4010" alias="DIAMETER_END_USER_SERVICE_DENIED"/>
+         <label data="4011" alias="DIAMETER_CREDIT_CONTROL_NOT_APPLICABLE"/>
+         <label data="4012" alias="DIAMETER_CREDIT_LIMIT_REACHED"/>
+         <label data="4241" alias="DIAMETER_END_USER_SERVICE_DENIED"/>
+         <label data="5001" alias="DIAMETER_AVP_UNSUPPORTED"/>
+         <label data="5002" alias="DIAMETER_UNKNOWN_SESSION_ID"/>
+         <label data="5003" alias="DIAMETER_AUTHORIZATION_REJECTED"/>
+         <label data="5004" alias="DIAMETER_INVALID_AVP_VALUE"/>
+         <label data="5005" alias="DIAMETER_MISSING_AVP"/>
+         <label data="5006" alias="DIAMETER_RESOURCES_EXCEEDED"/>
+         <label data="5007" alias="DIAMETER_CONTRADICTING_AVPS"/>
+         <label data="5008" alias="DIAMETER_AVP_NOT_ALLOWED"/>
+         <label data="5009" alias="DIAMETER_AVP_OCCURS_TOO_MANY_TIMES"/>
+         <label data="5010" alias="DIAMETER_NO_COMMON_APPLICATION"/>
+         <label data="5011" alias="DIAMETER_UNSUPPORTED_VERSION"/>
+         <label data="5012" alias="DIAMETER_UNABLE_TO_COMPLY"/>
+         <label data="5013" alias="DIAMETER_INVALID_BIT_IN_HEADER"/>
+         <label data="5014" alias="DIAMETER_INVALID_AVP_LENGTH"/>
+         <label data="5015" alias="DIAMETER_INVALID_MESSAGE_LENGTH"/>
+         <label data="5016" alias="DIAMETER_INVALID_AVP_BIT_COMBO"/>
+         <label data="5017" alias="DIAMETER_NO_COMMON_SECURITY"/>
+         <label data="5024" alias="DIAMETER_ERROR_NO_FOREIGN_HA_SERVICE"/>
+         <label data="5025" alias="DIAMETER_ERROR_END_TO_END_MIP_KEY_ENCRYPTION"/>
+         <label data="5030" alias="DIAMETER_USER_UNKNOWN"/>
+         <label data="5031" alias="DIAMETER_RATING_FAILED"/>
+         <label data="5241" alias="DIAMETER_END_USER_NOT_FOUND"/>
+      </single>
+   </avp>
+   <avp name="Product-Name" code="269" may-encrypt="no" v-bit="mustnot" m-bit="mustnot" p-bit="mustnot">
+      <single format-name="UTF8String"/>
+   </avp>
+   <avp name="Session-Binding" code="270" may-encrypt="yes" v-bit="mustnot" m-bit="must" p-bit="may">
+      <single format-name="Unsigned32">
+         <label data="1" alias="RE_AUTH"/>
+         <label data="2" alias="STR"/>
+         <label data="4" alias="ACCOUNTING"/>
+      </single>
+   </avp>
+   <avp name="Session-Server-Failover" code="271" may-encrypt="yes" v-bit="mustnot" m-bit="must" p-bit="may">
+      <single format-name="Enumerated" enum="0-3">
+         <label data="0" alias="REFUSE_SERVICE"/>
+         <label data="1" alias="TRY_AGAIN"/>
+         <label data="2" alias="ALLOW_SERVICE"/>
+         <label data="3" alias="TRY_AGAIN_ALLOW_SERVICE"/>
+      </single>
+   </avp>
+   <avp name="Multi-Round-Time-Out" code="272" may-encrypt="yes" v-bit="mustnot" m-bit="must" p-bit="may">
+      <single format-name="Unsigned32"/>
+   </avp>
+   <avp name="Disconnect-Cause" code="273" may-encrypt="no" v-bit="mustnot" m-bit="must" p-bit="may">
+      <single format-name="Enumerated" enum="0-2">
+         <label data="0" alias="REBOOTING"/>
+         <label data="1" alias="BUSY"/>
+         <label data="2" alias="DO_NOT_WANT_TO_TALK_TO_YOU"/>
+      </single>
+   </avp>
+   <avp name="Auth-Request-Type" code="274" may-encrypt="no" v-bit="mustnot" m-bit="must" p-bit="may">
+      <single format-name="Enumerated" enum="0-3">
+         <label data="0" alias="RESERVED"/>
+         <label data="1" alias="AUTHENTICATE_ONLY"/>
+         <label data="2" alias="AUTHORIZE_ONLY"/>
+         <label data="3" alias="AUTHORIZE_AUTHENTICATE"/>
+      </single>
+   </avp>
+   <avp name="Auth-Grace-Period" code="276" may-encrypt="no" v-bit="mustnot" m-bit="must" p-bit="may">
+      <single format-name="Unsigned32"/>
+   </avp>
+   <avp name="Auth-Session-State" code="277" may-encrypt="no" v-bit="mustnot" m-bit="must" p-bit="may">
+      <single format-name="Enumerated" enum="0-1">
+         <label data="0" alias="STATE_MAINTAINED"/>
+         <label data="1" alias="NO_STATE_MAINTAINED"/>
+      </single>
+   </avp>
+   <avp name="Origin-State-Id" code="278" may-encrypt="no" v-bit="mustnot" m-bit="must" p-bit="may">
+      <single format-name="Unsigned32"/>
+   </avp>
+   <avp name="Failed-AVP" code="279" may-encrypt="no" v-bit="mustnot" m-bit="must" p-bit="may">
+      <grouped>
+         <avprule id="AVP" type="Mandatory" qual="1*"/>
+      </grouped>
+   </avp>
+   <avp name="Proxy-Host" code="280" may-encrypt="no" v-bit="mustnot" m-bit="must" p-bit="mustnot">
+      <single format-name="DiameterIdentity"/>
+   </avp>
+   <avp name="Error-Message" code="281" may-encrypt="no" v-bit="mustnot" m-bit="mustnot" p-bit="may">
+      <single format-name="UTF8String"/>
+   </avp>
+   <avp name="Route-Record" code="282" may-encrypt="no" v-bit="mustnot" m-bit="must" p-bit="mustnot">
+      <single format-name="DiameterIdentity"/>
+   </avp>
+   <avp name="Destination-Realm" code="283" may-encrypt="no" v-bit="mustnot" m-bit="must" p-bit="may">
+      <single format-name="DiameterIdentity"/>
+   </avp>
+   <avp name="Proxy-Info" code="284" may-encrypt="no" v-bit="mustnot" m-bit="must" p-bit="mustnot">
+      <grouped>
+         <avprule id="Proxy-Host" type="Mandatory"/>
+         <avprule id="Proxy-State" type="Mandatory"/>
+         <avprule id="AVP" type="Optional" qual="*"/>
+      </grouped>
+   </avp>
+   <avp name="Re-Auth-Request-Type" code="285" may-encrypt="no" v-bit="mustnot" m-bit="must" p-bit="may">
+      <single format-name="Enumerated" enum="0-1">
+         <label data="0" alias="AUTHORIZE_ONLY"/>
+         <label data="1" alias="AUTHORIZE_AUTHENTICATE"/>
+      </single>
+   </avp>
+   <avp name="Accounting-Sub-Session-Id" code="287" may-encrypt="yes" v-bit="mustnot" m-bit="must" p-bit="may">
+      <single format-name="Unsigned64"/>
+   </avp>
+   <avp name="Authorization-Lifetime" code="291" may-encrypt="no" v-bit="mustnot" m-bit="must" p-bit="may">
+      <single format-name="Unsigned32"/>
+   </avp>
+   <avp name="Redirect-Host" code="292" may-encrypt="no" v-bit="mustnot" m-bit="must" p-bit="may">
+      <single format-name="DiameterURI"/>
+   </avp>
+   <avp name="Destination-Host" code="293" may-encrypt="no" v-bit="mustnot" m-bit="must" p-bit="may">
+      <single format-name="DiameterIdentity"/>
+   </avp>
+   <avp name="Error-Reporting-Host" code="294" may-encrypt="no" v-bit="mustnot" m-bit="mustnot" p-bit="may">
+      <single format-name="DiameterIdentity"/>
+   </avp>
+   <avp name="Termination-Cause" code="295" may-encrypt="no" v-bit="mustnot" m-bit="must" p-bit="may">
+      <single format-name="Enumerated" enum="1-8">
+         <label data="1" alias="DIAMETER_LOGOUT"/>
+         <label data="2" alias="DIAMETER_SERVICE_NOT_PROVIDED"/>
+         <label data="3" alias="DIAMETER_BAD_ANSWER"/>
+         <label data="4" alias="DIAMETER_ADMINISTRATIVE"/>
+         <label data="5" alias="DIAMETER_LINK_BROKEN"/>
+         <label data="6" alias="DIAMETER_AUTH_EXPIRED"/>
+         <label data="7" alias="DIAMETER_USER_MOVED"/>
+         <label data="8" alias="DIAMETER_SESSION_TIMEOUT"/>
+      </single>
+   </avp>
+   <avp name="Origin-Realm" code="296" may-encrypt="no" v-bit="mustnot" m-bit="must" p-bit="may">
+      <single format-name="DiameterIdentity"/>
+   </avp>
+   <avp name="Experimental-Result" code="297" may-encrypt="no" v-bit="mustnot" m-bit="must" p-bit="may">
+      <grouped>
+         <avprule id="Vendor-Id" type="Mandatory"/>
+         <avprule id="Experimental-Result-Code" type="Mandatory"/>
+      </grouped>
+   </avp>
+   <avp name="Experimental-Result-Code" code="298" may-encrypt="no" v-bit="mustnot" m-bit="must" p-bit="may">
+      <single format-name="Unsigned32">
+         <label data="5061" alias="INVALID_SERVICE_INFORMATION"/>
+         <label data="5062" alias="FILTER_RESTRICTIONS"/>
+         <label data="5063" alias="REQUESTED_SERVICE_NOT_AUTHORIZED"/>
+         <label data="5064" alias="DUPLICATED_AF_SESSION"/>
+         <label data="5065" alias="IP-CAN_SESSION_NOT_AVAILABLE"/>
+      </single>
+   </avp>
+   <avp name="Inband-Security-Id" code="299" may-encrypt="no" v-bit="mustnot" m-bit="must" p-bit="may">
+      <single format-name="Unsigned32">
+         <label data="0" alias="NO_INBAND_SECURITY"/>
+         <label data="1" alias="TLS"/>
+      </single>
+   </avp>
+   <avp name="E2E-Sequence-AVP" code="300" may-encrypt="yes" v-bit="mustnot" m-bit="must" p-bit="may">
+      <grouped>
+         <avprule id="AVP" type="Optional" qual="*"/>
+      </grouped>
+   </avp>
+   <avp name="CC-Correlation-Id" code="411" may-encrypt="yes" v-bit="mustnot" m-bit="may" p-bit="may">
+      <single format-name="OctetString"/>
+   </avp>
+   <avp name="CC-Input-Octets" code="412" may-encrypt="yes" v-bit="mustnot" m-bit="must" p-bit="may">
+      <single format-name="Unsigned64"/>
+   </avp>
+   <avp name="CC-Money" code="413" may-encrypt="yes" v-bit="mustnot" m-bit="must" p-bit="may">
+      <grouped>
+         <avprule id="Unit-Value" type="Fixed"/>
+         <avprule id="Currency-Code" type="Optional"/>
+      </grouped>
+   </avp>
+   <avp name="CC-Output-Octets" code="414" may-encrypt="yes" v-bit="mustnot" m-bit="must" p-bit="may">
+      <single format-name="Unsigned64"/>
+   </avp>
+   <avp name="CC-Request-Number" code="415" may-encrypt="yes" v-bit="mustnot" m-bit="must" p-bit="may">
+      <single format-name="Unsigned32"/>
+   </avp>
+   <avp name="CC-Request-Type" code="416" may-encrypt="yes" v-bit="mustnot" m-bit="must" p-bit="may">
+      <single format-name="Enumerated" enum="1-4">
+         <label data="1" alias="INITIAL_REQUEST"/>
+         <label data="2" alias="UPDATE_REQUEST"/>
+         <label data="3" alias="TERMINATION_REQUEST"/>
+         <label data="4" alias="EVENT_REQUEST"/>
+      </single>
+   </avp>
+   <avp name="CC-Service-Specific-Units" code="417" may-encrypt="yes" v-bit="mustnot" m-bit="must" p-bit="may">
+      <single format-name="Unsigned64"/>
+   </avp>
+   <avp name="CC-Session-Failover" code="418" may-encrypt="yes" v-bit="mustnot" m-bit="must" p-bit="may">
+      <single format-name="Enumerated" enum="0-1">
+         <label data="0" alias="FAILOVER_NOT_SUPPORTED"/>
+         <label data="1" alias="FAILOVER_SUPPORTED"/>
+      </single>
+   </avp>
+   <avp name="CC-Sub-Session-Id" code="419" may-encrypt="yes" v-bit="mustnot" m-bit="must" p-bit="may">
+      <single format-name="Unsigned64"/>
+   </avp>
+   <avp name="CC-Time" code="420" may-encrypt="yes" v-bit="mustnot" m-bit="must" p-bit="may">
+      <single format-name="Unsigned32"/>
+   </avp>
+   <avp name="CC-Total-Octets" code="421" may-encrypt="yes" v-bit="mustnot" m-bit="must" p-bit="may">
+      <single format-name="Unsigned64"/>
+   </avp>
+   <avp name="Check-Balance-Result" code="422" may-encrypt="yes" v-bit="mustnot" m-bit="must" p-bit="may">
+      <single format-name="Enumerated" enum="0-1">
+         <label data="0" alias="ENOUGH_CREDIT"/>
+         <label data="1" alias="NO_CREDIT"/>
+      </single>
+   </avp>
+   <avp name="Cost-Information" code="423" may-encrypt="yes" v-bit="mustnot" m-bit="must" p-bit="may">
+      <grouped>
+         <avprule id="Unit-Value" type="Mandatory"/>
+         <avprule id="Currency-Code" type="Mandatory"/>
+         <avprule id="Cost-Unit" type="Optional"/>
+      </grouped>
+   </avp>
+   <avp name="Cost-Unit" code="424" may-encrypt="yes" v-bit="mustnot" m-bit="must" p-bit="may">
+      <single format-name="UTF8String"/>
+   </avp>
+   <avp name="Currency-Code" code="425" may-encrypt="yes" v-bit="mustnot" m-bit="must" p-bit="may">
+      <single format-name="Unsigned32"/>
+   </avp>
+   <avp name="Credit-Control" code="426" may-encrypt="yes" v-bit="mustnot" m-bit="must" p-bit="may">
+      <single format-name="Enumerated" enum="0-1">
+         <label data="0" alias="CREDIT_AUTHORIZATION"/>
+         <label data="1" alias="RE_AUTHORIZATION"/>
+      </single>
+   </avp>
+   <avp name="Credit-Control-Failure-Handling" code="427" may-encrypt="yes" v-bit="mustnot" m-bit="must" p-bit="may">
+      <single format-name="Enumerated" enum="0-2">
+         <label data="0" alias="TERMINATE"/>
+         <label data="1" alias="CONTINUE"/>
+         <label data="2" alias="RETRY_AND_TERMINATE"/>
+      </single>
+   </avp>
+   <avp name="Direct-Debiting-Failure-Handling" code="428" may-encrypt="yes" v-bit="mustnot" m-bit="must" p-bit="may">
+      <single format-name="Enumerated" enum="0-1">
+         <label data="0" alias="TERMINATE_OR_BUFFER"/>
+         <label data="1" alias="CONTINUE"/>
+      </single>
+   </avp>
+   <avp name="Exponent" code="429" may-encrypt="yes" v-bit="mustnot" m-bit="must" p-bit="may">
+      <single format-name="Integer32"/>
+   </avp>
+   <avp name="Final-Unit-Indication" code="430" may-encrypt="yes" v-bit="mustnot" m-bit="must" p-bit="may">
+      <grouped>
+         <avprule id="Final-Unit-Action" type="Fixed"/>
+         <avprule id="Restriction-Filter-Rule" type="Optional" qual="*"/>
+         <avprule id="Filter-Id" type="Optional" qual="*"/>
+         <avprule id="Redirect-Server" type="Optional"/>
+      </grouped>
+   </avp>
+   <avp name="Granted-Service-Unit" code="431" may-encrypt="yes" v-bit="mustnot" m-bit="must" p-bit="may">
+      <grouped>
+         <avprule id="Tariff-Time-Change" type="Optional"/>
+         <avprule id="CC-Time" type="Optional"/>
+         <avprule id="CC-Money" type="Optional"/>
+         <avprule id="CC-Total-Octets" type="Optional"/>
+         <avprule id="CC-Input-Octets" type="Optional"/>
+         <avprule id="CC-Output-Octets" type="Optional"/>
+         <avprule id="CC-Service-Specific-Units" type="Optional"/>
+         <avprule id="AVP" type="Optional" qual="*"/>
+      </grouped>
+   </avp>
+   <avp name="Rating-Group" code="432" may-encrypt="yes" v-bit="mustnot" m-bit="must" p-bit="may">
+      <single format-name="Unsigned32"/>
+   </avp>
+   <avp name="Redirect-Address-Type" code="433" may-encrypt="yes" v-bit="mustnot" m-bit="must" p-bit="may">
+      <single format-name="Enumerated" enum="0-3">
+         <label data="0" alias="IPv4_Address"/>
+         <label data="1" alias="IPv6_Address"/>
+         <label data="2" alias="URL"/>
+         <label data="3" alias="SIP_URL"/>
+      </single>
+   </avp>
+   <avp name="Redirect-Server" code="434" may-encrypt="yes" v-bit="mustnot" m-bit="must" p-bit="may">
+      <grouped>
+         <avprule id="Redirect-Address-Type" type="Fixed"/>
+         <avprule id="Redirect-Server-Address" type="Fixed"/>
+      </grouped>
+   </avp>
+   <avp name="Redirect-Server-Address" code="435" may-encrypt="yes" v-bit="mustnot" m-bit="must" p-bit="may">
+      <single format-name="UTF8String"/>
+   </avp>
+   <avp name="Requested-Action" code="436" may-encrypt="yes" v-bit="mustnot" m-bit="must" p-bit="may">
+      <single format-name="Enumerated" enum="0-3">
+         <label data="0" alias="DIRECT_DEBITING"/>
+         <label data="1" alias="REFUND_ACCOUNT"/>
+         <label data="2" alias="CHECK_BALANCE"/>
+         <label data="3" alias="PRICE_ENQUIRY"/>
+      </single>
+   </avp>
+   <avp name="Requested-Service-Unit" code="437" may-encrypt="yes" v-bit="mustnot" m-bit="must" p-bit="may">
+      <grouped>
+         <avprule id="CC-Time" type="Optional"/>
+         <avprule id="CC-Money" type="Optional"/>
+         <avprule id="CC-Total-Octets" type="Optional"/>
+         <avprule id="CC-Input-Octets" type="Optional"/>
+         <avprule id="CC-Output-Octets" type="Optional"/>
+         <avprule id="CC-Service-Specific-Units" type="Optional"/>
+         <avprule id="AVP" type="Optional" qual="*"/>
+      </grouped>
+   </avp>
+   <avp name="Restriction-Filter-Rule" code="438" may-encrypt="yes" v-bit="mustnot" m-bit="must" p-bit="may">
+      <single format-name="IPFilterRule"/>
+   </avp>
+   <avp name="Service-Identifier" code="439" may-encrypt="yes" v-bit="mustnot" m-bit="must" p-bit="may">
+      <single format-name="Unsigned32"/>
+   </avp>
+   <avp name="Service-Parameter-Info" code="440" may-encrypt="yes" v-bit="mustnot" m-bit="may" p-bit="may">
+      <grouped>
+         <avprule id="Service-Parameter-Type" type="Mandatory"/>
+         <avprule id="Service-Parameter-Value" type="Mandatory"/>
+      </grouped>
+   </avp>
+   <avp name="Service-Parameter-Type" code="441" may-encrypt="yes" v-bit="mustnot" m-bit="may" p-bit="may">
+      <single format-name="Unsigned32"/>
+   </avp>
+   <avp name="Service-Parameter-Value" code="442" may-encrypt="yes" v-bit="mustnot" m-bit="may" p-bit="may">
+      <single format-name="OctetString"/>
+   </avp>
+   <avp name="Subscription-Id" code="443" may-encrypt="yes" v-bit="mustnot" m-bit="must" p-bit="may">
+      <grouped>
+         <avprule id="Subscription-Id-Type" type="Fixed"/>
+         <avprule id="Subscription-Id-Data" type="Fixed"/>
+      </grouped>
+   </avp>
+   <avp name="Subscription-Id-Data" code="444" may-encrypt="yes" v-bit="mustnot" m-bit="must" p-bit="may">
+      <single format-name="UTF8String"/>
+   </avp>
+   <avp name="Unit-Value" code="445" may-encrypt="yes" v-bit="mustnot" m-bit="must" p-bit="may">
+      <grouped>
+         <avprule id="Value-Digits" type="Fixed"/>
+         <avprule id="Exponent" type="Optional"/>
+      </grouped>
+   </avp>
+   <avp name="Used-Service-Unit" code="446" may-encrypt="yes" v-bit="mustnot" m-bit="must" p-bit="may">
+      <grouped>
+         <avprule id="Tariff-Change-Usage" type="Optional"/>
+         <avprule id="CC-Time" type="Optional"/>
+         <avprule id="CC-Money" type="Optional"/>
+         <avprule id="CC-Total-Octets" type="Optional"/>
+         <avprule id="CC-Input-Octets" type="Optional"/>
+         <avprule id="CC-Output-Octets" type="Optional"/>
+         <avprule id="CC-Service-Specific-Units" type="Optional"/>
+         <avprule id="AVP" type="Optional" qual="*"/>
+      </grouped>
+   </avp>
+   <avp name="Value-Digits" code="447" may-encrypt="yes" v-bit="mustnot" m-bit="must" p-bit="may">
+      <single format-name="Integer64"/>
+   </avp>
+   <avp name="Validity-Time" code="448" may-encrypt="yes" v-bit="mustnot" m-bit="must" p-bit="may">
+      <single format-name="Unsigned32"/>
+   </avp>
+   <avp name="Final-Unit-Action" code="449" may-encrypt="yes" v-bit="mustnot" m-bit="must" p-bit="may">
+      <single format-name="Enumerated" enum="0-2">
+         <label data="0" alias="TERMINATE"/>
+         <label data="1" alias="REDIRECT"/>
+         <label data="2" alias="RESTRICT_ACCESS"/>
+      </single>
+   </avp>
+   <avp name="Subscription-Id-Type" code="450" may-encrypt="yes" v-bit="mustnot" m-bit="must" p-bit="may">
+      <single format-name="Enumerated" enum="0-4">
+         <label data="0" alias="END_USER_E164"/>
+         <label data="1" alias="END_USER_IMSI"/>
+         <label data="2" alias="END_USER_SIP_URL"/>
+         <label data="3" alias="END_USER_NAI"/>
+         <label data="4" alias="END_USER_PRIVATE"/>
+      </single>
+   </avp>
+   <avp name="Tariff-Time-Change" code="451" may-encrypt="yes" v-bit="mustnot" m-bit="must" p-bit="may">
+      <single format-name="Time"/>
+   </avp>
+   <avp name="Tariff-Change-Usage" code="452" may-encrypt="yes" v-bit="mustnot" m-bit="must" p-bit="may">
+      <single format-name="Enumerated" enum="0-2">
+         <label data="0" alias="UNIT_BEFORE_TARIFF_CHANGE"/>
+         <label data="1" alias="UNIT_AFTER_TARIFF_CHANGE"/>
+         <label data="2" alias="UNIT_INDETERMINATE"/>
+      </single>
+   </avp>
+   <avp name="G-S-U-Pool-Identifier" code="453" may-encrypt="yes" v-bit="mustnot" m-bit="must" p-bit="may">
+      <single format-name="Unsigned32"/>
+   </avp>
+   <avp name="CC-Unit-Type" code="454" may-encrypt="yes" v-bit="mustnot" m-bit="must" p-bit="may">
+      <single format-name="Enumerated" enum="0-5">
+         <label data="0" alias="TIME"/>
+         <label data="1" alias="MONEY"/>
+         <label data="2" alias="TOTAL_OCTETS"/>
+         <label data="3" alias="INPUT_OCTETS"/>
+         <label data="4" alias="OUTPUT_OCTETS"/>
+         <label data="5" alias="SERVICE_SPECIFIC_UNITS"/>
+      </single>
+   </avp>
+   <avp name="Multiple-Services-Indicator" code="455" may-encrypt="yes" v-bit="mustnot" m-bit="must" p-bit="may">
+      <single format-name="Enumerated" enum="0-1">
+         <label data="0" alias="MULTIPLE_SERVICES_NOT_SUPPORTED"/>
+         <label data="1" alias="MULTIPLE_SERVICES_SUPPORTED"/>
+      </single>
+   </avp>
+   <avp name="Multiple-Services-Credit-Control" code="456" may-encrypt="yes" v-bit="mustnot" m-bit="must" p-bit="may">
+      <grouped>
+         <avprule id="Granted-Service-Unit" type="Optional"/>
+         <avprule id="Requested-Service-Unit" type="Optional"/>
+         <avprule id="Used-Service-Unit" type="Optional" qual="*"/>
+         <avprule id="Tariff-Change-Usage" type="Optional"/>
+         <avprule id="Service-Identifier" type="Optional" qual="*"/>
+         <avprule id="Rating-Group" type="Optional"/>
+         <avprule id="G-S-U-Pool-Reference" type="Optional" qual="*"/>
+         <avprule id="Validity-Time" type="Optional"/>
+         <avprule id="Result-Code" type="Optional"/>
+         <avprule id="Final-Unit-Indication" type="Optional"/>
+         <avprule id="AVP" type="Optional" qual="*"/>
+      </grouped>
+   </avp>
+   <avp name="G-S-U-Pool-Reference" code="457" may-encrypt="yes" v-bit="mustnot" m-bit="must" p-bit="may">
+      <grouped>
+         <avprule id="G-S-U-Pool-Identifier" type="Mandatory"/>
+         <avprule id="CC-Unit-Type" type="Mandatory"/>
+         <avprule id="Unit-Value" type="Mandatory"/>
+      </grouped>
+   </avp>
+   <avp name="User-Equipment-Info" code="458" may-encrypt="yes" v-bit="mustnot" m-bit="may" p-bit="may">
+      <grouped>
+         <avprule id="User-Equipment-Info-Type" type="Mandatory"/>
+         <avprule id="User-Equipment-Info-Value" type="Mandatory"/>
+      </grouped>
+   </avp>
+   <avp name="User-Equipment-Info-Type" code="459" may-encrypt="yes" v-bit="mustnot" m-bit="may" p-bit="may">
+      <single format-name="Enumerated" enum="0-3">
+         <label data="0" alias="IMEISV"/>
+         <label data="1" alias="MAC"/>
+         <label data="2" alias="EUI64"/>
+         <label data="3" alias="MODIFIED_EUI64"/>
+      </single>
+   </avp>
+   <avp name="User-Equipment-Info-Value" code="460" may-encrypt="yes" v-bit="mustnot" m-bit="may" p-bit="may">
+      <single format-name="OctetString"/>
+   </avp>
+   <avp name="Service-Context-Id" code="461" may-encrypt="yes" v-bit="mustnot" m-bit="must" p-bit="may">
+      <single format-name="UTF8String"/>
+   </avp>
+   <avp name="Accounting-Record-Type" code="480" may-encrypt="yes" v-bit="mustnot" m-bit="must" p-bit="may">
+      <single format-name="Enumerated" enum="1-4">
+         <label data="1" alias="EVENT_RECORD"/>
+         <label data="2" alias="START_RECORD"/>
+         <label data="3" alias="INTERIM_RECORD"/>
+         <label data="4" alias="STOP_RECORD"/>
+      </single>
+   </avp>
+   <avp name="Accounting-Interim-Interval" code="482" may-encrypt="yes" v-bit="mustnot" m-bit="must" p-bit="may">
+      <single format-name="Integer32"/>
+   </avp>
+   <avp name="Accounting-Realtime-Required" code="483" may-encrypt="yes" v-bit="mustnot" m-bit="must" p-bit="may">
+      <single format-name="Enumerated" enum="1-3">
+         <label data="1" alias="DELIVER_AND_GRANT"/>
+         <label data="2" alias="GRANT_AND_STORE"/>
+         <label data="3" alias="GRANT_AND_LOSE"/>
+      </single>
+   </avp>
+   <avp name="Accounting-Record-Number" code="485" may-encrypt="yes" v-bit="mustnot" m-bit="must" p-bit="may">
+      <single format-name="Unsigned32"/>
+   </avp>
+   <avp name="3GPP-Charging-Id" code="2" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="Unsigned32"/>
+   </avp>
+   <avp name="3GPP-PDP-Type" code="3" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="Unsigned32">
+         <label data="0" alias="IPV4"/>
+         <label data="1" alias="PPP"/>
+         <label data="2" alias="IPV6"/>
+      </single>
+   </avp>
+   <avp name="3GPP-CG-Address" code="4" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="OctetString"/>
+   </avp>
+   <avp name="3GPP-GPRS-Neg-QoS-Profile" code="5" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="UTF8String"/>
+   </avp>
+   <avp name="3GPP-SGSN-Address" code="6" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="OctetString"/>
+   </avp>
+   <avp name="3GPP-GGSN-Address" code="7" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="OctetString"/>
+   </avp>
+   <avp name="3GPP-IMSI-MCC-MNC" code="8" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="UTF8String"/>
+   </avp>
+   <avp name="3GPP-GGSN-MCC-MNC" code="9" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="UTF8String"/>
+   </avp>
+   <avp name="3GPP-NSAPI" code="10" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="UTF8String"/>
+   </avp>
+   <avp name="3GPP-Session-Stop-Indicator" code="11" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="OctetString"/>
+   </avp>
+   <avp name="3GPP-Selection-Mode" code="12" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="UTF8String"/>
+   </avp>
+   <avp name="3GPP-Charging-Characteristics" code="13" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="UTF8String"/>
+   </avp>
+   <avp name="3GPP-SGSN-IPv6-Address" code="15" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="OctetString"/>
+   </avp>
+   <avp name="3GPP-GGSN-IPv6-Address" code="16" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="OctetString"/>
+   </avp>
+   <avp name="3GPP-SGSN-MCC-MNC" code="18" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="UTF8String"/>
+   </avp>
+   <avp name="3GGP-IMEISV" code="20" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="OctetString"/>
+   </avp>
+   <avp name="3GPP-Rat-Type" code="21" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="OctetString"/>
+   </avp>
+   <avp name="3GPP-User-Location-Info" code="22" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="OctetString"/>
+   </avp>
+   <avp name="3GPP-MS-TimeZone" code="23" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="OctetString"/>
+   </avp>
+   <avp name="3GPP-CAMEL-Charging-Info" code="24" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="OctetString"/>
+   </avp>
+   <avp name="Abort-Cause" code="500" vendor-name="3GPP" may-encrypt="yes" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="Enumerated" enum="0-4">
+         <label data="0" alias="BEARER_RELEASED"/>
+         <label data="1" alias="INSUFFICIENT_SERVER_RESOURCES"/>
+         <label data="2" alias="INSUFFICIENT_BEARER_RESOURCES"/>
+         <label data="3" alias="PS_TO_CS_HANDOVER"/>
+         <label data="4" alias="SPONSORED_DATA_CONNECTIVITY_DISALLOWED"/>
+      </single>
+   </avp>
+   <avp name="Access-Network-Charging-Address" code="501" vendor-name="3GPP" may-encrypt="yes" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="Address"/>
+   </avp>
+   <avp name="Access-Network-Charging-Identifier" code="502" vendor-name="3GPP" may-encrypt="yes" v-bit="must" m-bit="must" p-bit="may">
+      <grouped>
+         <avprule id="Access-Network-Charging-Identifier-Value" type="Mandatory"/>
+         <avprule id="Flows" type="Optional" qual="*"/>
+      </grouped>
+   </avp>
+   <avp name="Access-Network-Charging-Identifier-Value" code="503" vendor-name="3GPP" may-encrypt="yes" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="OctetString"/>
+   </avp>
+   <avp name="AF-Application-Identifier" code="504" vendor-name="3GPP" may-encrypt="yes" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="OctetString"/>
+   </avp>
+   <avp name="AF-Charging-Identifier" code="505" vendor-name="3GPP" may-encrypt="yes" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="OctetString"/>
+   </avp>
+   <avp name="Flow-Description" code="507" vendor-name="3GPP" may-encrypt="yes" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="IPFilterRule"/>
+   </avp>
+   <avp name="Flow-Number" code="509" vendor-name="3GPP" may-encrypt="yes" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="Unsigned32"/>
+   </avp>
+   <avp name="Flows" code="510" vendor-name="3GPP" may-encrypt="yes" v-bit="must" m-bit="must" p-bit="may">
+      <grouped>
+         <avprule id="Media-Component-Number" type="Mandatory"/>
+         <avprule id="Flow-Number" type="Optional" qual="*"/>
+         <avprule id="Final-Unit-Action" type="Optional"/>
+      </grouped>
+   </avp>
+   <avp name="Flow-Status" code="511" vendor-name="3GPP" may-encrypt="yes" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="Enumerated" enum="0-15">
+         <label data="0" alias="ENABLED-UPLINK"/>
+         <label data="1" alias="ENABLED-DOWNLINK"/>
+         <label data="2" alias="ENABLED"/>
+         <label data="3" alias="DISABLED"/>
+         <label data="4" alias="REMOVED"/>
+      </single>
+   </avp>
+   <avp name="Flow-Usage" code="512" vendor-name="3GPP" may-encrypt="yes" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="Enumerated" enum="0-15">
+         <label data="0" alias="NO_INFORMATION"/>
+         <label data="1" alias="RTCP"/>
+         <label data="2" alias="AF_SIGNALLING"/>
+      </single>
+   </avp>
+   <avp name="Specific-Action" code="513" vendor-name="3GPP" may-encrypt="yes" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="Enumerated" enum="1-4,6-11">
+         <label data="1" alias="CHARGING_CORRELATION_EXCHANGE"/>
+         <label data="2" alias="INDICATION_OF_LOSS_OF_BEARER"/>
+         <label data="3" alias="INDICATION_OF_RECOVERY_OF_BEARER"/>
+         <label data="4" alias="INDICATION_OF_RELEASE_OF_BEARER"/>
+         <label data="6" alias="IP-CAN_CHANGE"/>
+         <label data="7" alias="INDICATION_OF_OUT_OF_CREDIT"/>
+         <label data="8" alias="INDICATION_OF_SUCCESSFUL_RESOURCES_ALLOCATION"/>
+         <label data="9" alias="INDICATION_OF_FAILED_RESOURCES_ALLOCATION"/>
+         <label data="10" alias="INDICATION_OF_LIMITED_PCC_DEPLOYMENT"/>
+         <label data="11" alias="USAGE_REPORT"/>
+      </single>
+   </avp>
+   <avp name="Max-Requested-Bandwidth-DL" code="515" vendor-name="3GPP" may-encrypt="yes" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="Unsigned32"/>
+   </avp>
+   <avp name="Max-Requested-Bandwidth-UL" code="516" vendor-name="3GPP" may-encrypt="yes" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="Unsigned32"/>
+   </avp>
+   <avp name="Media-Component-Description" code="517" vendor-name="3GPP" may-encrypt="yes" v-bit="must" m-bit="must" p-bit="may">
+      <grouped>
+         <avprule id="Media-Component-Number" type="Mandatory"/>
+         <avprule id="Media-Sub-Component" type="Optional" qual="*"/>
+         <avprule id="AF-Application-Identifier" type="Optional"/>
+         <avprule id="Media-Type" type="Optional"/>
+         <avprule id="Max-Requested-Bandwidth-UL" type="Optional"/>
+         <avprule id="Max-Requested-Bandwidth-DL" type="Optional"/>
+         <avprule id="Flow-Status" type="Optional"/>
+         <avprule id="Reservation-Priority" type="Optional"/>
+         <avprule id="RS-Bandwidth" type="Optional"/>
+         <avprule id="RR-Bandwidth" type="Optional"/>
+         <avprule id="Codec-Data" type="Optional" qual="*"/>
+      </grouped>
+   </avp>
+   <avp name="Media-Component-Number" code="518" vendor-name="3GPP" may-encrypt="yes" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="Unsigned32"/>
+   </avp>
+   <avp name="Media-Sub-Component" code="519" vendor-name="3GPP" may-encrypt="yes" v-bit="must" m-bit="must" p-bit="may">
+      <grouped>
+         <avprule id="Flow-Number" type="Mandatory"/>
+         <avprule id="Flow-Description" type="Optional" qual="0*2"/>
+         <avprule id="Flow-Status" type="Optional"/>
+         <avprule id="Flow-Usage" type="Optional"/>
+         <avprule id="Max-Requested-Bandwidth-UL" type="Optional"/>
+         <avprule id="Max-Requested-Bandwidth-DL" type="Optional"/>
+         <avprule id="AF-Signalling-Protocol" type="Optional"/>
+         <avprule id="AVP" type="Optional" qual="*"/>
+      </grouped>
+   </avp>
+   <avp name="Media-Type" code="520" vendor-name="3GPP" may-encrypt="yes" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="Enumerated" enum="0-6,4294967295">
+         <label data="4294967295" alias="OTHER"/>
+         <label data="0" alias="AUDIO"/>
+         <label data="1" alias="VIDEO"/>
+         <label data="2" alias="DATA"/>
+         <label data="3" alias="APPLICATION"/>
+         <label data="4" alias="CONTROL"/>
+         <label data="5" alias="TEXT"/>
+         <label data="6" alias="MESSAGE"/>
+      </single>
+   </avp>
+   <avp name="RR-Bandwidth" code="521" vendor-name="3GPP" may-encrypt="yes" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="Unsigned32"/>
+   </avp>
+   <avp name="RS-Bandwidth" code="522" vendor-name="3GPP" may-encrypt="yes" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="Unsigned32"/>
+   </avp>
+   <avp name="SIP-Forking-Indication" code="523" vendor-name="3GPP" may-encrypt="yes" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="Enumerated" enum="0-1">
+         <label data="0" alias="SINGLE_DIALOGUE"/>
+         <label data="1" alias="SEVERAL_DIALOGUES"/>
+      </single>
+   </avp>
+   <avp name="Codec-Data" code="524" vendor-name="3GPP" may-encrypt="yes" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="OctetString"/>
+   </avp>
+   <avp name="Service-URN" code="525" vendor-name="3GPP" may-encrypt="yes" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="OctetString"/>
+   </avp>
+   <avp name="Acceptable-Service-Info" code="526" vendor-name="3GPP" may-encrypt="yes" v-bit="must" m-bit="must" p-bit="may">
+      <grouped>
+         <avprule id="Media-Component-Description" type="Optional" qual="*"/>
+         <avprule id="Max-Requested-Bandwidth-DL" type="Optional"/>
+         <avprule id="Max-Requested-Bandwidth-UL" type="Optional"/>
+         <avprule id="AVP" type="Optional" qual="*"/>
+      </grouped>
+   </avp>
+   <avp name="Service-Info-Status" code="527" vendor-name="3GPP" may-encrypt="yes" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="Enumerated" enum="0-1">
+         <label data="0" alias="FINAL_SERVICE_INFORMATION"/>
+         <label data="1" alias="PRELIMINARY_SERVICE_INFORMATION"/>
+      </single>
+   </avp>
+   <avp name="MPS-Identifier" code="528" vendor-name="3GPP" may-encrypt="yes" v-bit="must" m-bit="mustnot" p-bit="may">
+      <single format-name="OctetString"/>
+   </avp>
+   <avp name="AF-Signalling-Protocol" code="529" vendor-name="3GPP" may-encrypt="yes" v-bit="must" m-bit="mustnot" p-bit="may">
+      <single format-name="Enumerated" enum="0-1">
+         <label data="0" alias="NO_INFORMATION"/>
+         <label data="1" alias="SIP"/>
+      </single>
+   </avp>
+   <avp name="Sponsored-Connectivity-Data" code="530" vendor-name="3GPP" may-encrypt="yes" v-bit="must" m-bit="mustnot" p-bit="may">
+      <grouped>
+         <avprule id="Sponsor-Identity" type="Optional"/>
+         <avprule id="Application-Service-Provider-Identity" type="Optional"/>
+         <avprule id="Granted-Service-Unit" type="Optional"/>
+         <avprule id="Used-Service-Unit" type="Optional"/>
+         <avprule id="AVP" type="Optional" qual="*"/>
+      </grouped>
+   </avp>
+   <avp name="Sponsor-Identity" code="531" vendor-name="3GPP" may-encrypt="yes" v-bit="must" m-bit="mustnot" p-bit="may">
+      <single format-name="UTF8String"/>
+   </avp>
+   <avp name="Application-Service-Provider-Identity" code="532" vendor-name="3GPP" may-encrypt="yes" v-bit="must" m-bit="mustnot" p-bit="may">
+      <single format-name="UTF8String"/>
+   </avp>
+   <avp name="Rx-Request-Type" code="533" vendor-name="3GPP" may-encrypt="yes" v-bit="must" m-bit="mustnot" p-bit="may">
+      <single format-name="Enumerated" enum="0-1">
+         <label data="0" alias="INITIAL_REQUEST"/>
+         <label data="1" alias="UPDATE_REQUEST"/>
+      </single>
+   </avp>
+   <avp name="Server-Name" code="602" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="UTF8String"/>
+   </avp>
+   <avp name="Server-Capabilities" code="603" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <grouped>
+         <avprule id="Mandatory-Capability" type="Optional" qual="*"/>
+         <avprule id="Optional-Capability" type="Optional" qual="*"/>
+         <avprule id="Server-Name" type="Optional" qual="*"/>
+         <avprule id="AVP" type="Optional" qual="*"/>
+      </grouped>
+   </avp>
+   <avp name="Mandatory-Capability" code="604" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="Unsigned32"/>
+   </avp>
+   <avp name="Optional-Capability" code="605" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="Unsigned32"/>
+   </avp>
+   <avp name="Supported-Features" code="628" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="may" p-bit="may">
+      <grouped>
+         <avprule id="Vendor-Id" type="Mandatory"/>
+         <avprule id="Feature-List-ID" type="Mandatory"/>
+         <avprule id="Feature-List" type="Mandatory"/>
+         <avprule id="AVP" type="Optional" qual="*"/>
+      </grouped>
+   </avp>
+   <avp name="Feature-List-ID" code="629" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="mustnot" p-bit="may">
+      <single format-name="Unsigned32"/>
+   </avp>
+   <avp name="Feature-List" code="630" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="mustnot" p-bit="may">
+      <single format-name="Unsigned32"/>
+   </avp>
+   <avp name="Session-Priority" code="650" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="Enumerated" enum="0-4">
+         <label data="0" alias="PRIORITY-0"/>
+         <label data="1" alias="PRIORITY-1"/>
+         <label data="2" alias="PRIORITY-2"/>
+         <label data="3" alias="PRIORITY-3"/>
+         <label data="4" alias="PRIORITY-4"/>
+      </single>
+   </avp>
+   <avp name="Quota-Consumption-Time" code="811" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="Unsigned32"/>
+   </avp>
+   <avp name="Event-Type" code="823" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <grouped>
+         <avprule id="SIP-Method" type="Optional"/>
+         <avprule id="Event" type="Optional"/>
+         <avprule id="Expires" type="Optional"/>
+      </grouped>
+   </avp>
+   <avp name="SIP-Method" code="824" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="UTF8String"/>
+   </avp>
+   <avp name="Event" code="825" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="UTF8String"/>
+   </avp>
+   <avp name="Content-Type" code="826" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="UTF8String"/>
+   </avp>
+   <avp name="Content-Length" code="827" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="Unsigned32"/>
+   </avp>
+   <avp name="Content-Disposition" code="828" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="UTF8String"/>
+   </avp>
+   <avp name="Role-Of-Node" code="829" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="Enumerated" enum="0-3">
+         <label data="0" alias="ORIGINATING_ROLE"/>
+         <label data="1" alias="TERMINATING_ROLE"/>
+         <label data="2" alias="PROXY_ROLE"/>
+         <label data="3" alias="B2BUA_ROLE"/>
+      </single>
+   </avp>
+   <avp name="User-Session-Id" code="830" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="UTF8String"/>
+   </avp>
+   <avp name="Calling-Party-Address" code="831" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="UTF8String"/>
+   </avp>
+   <avp name="Called-Party-Address" code="832" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="UTF8String"/>
+   </avp>
+   <avp name="Time-Stamps" code="833" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <grouped>
+         <avprule id="SIP-Request-Timestamp" type="Optional"/>
+         <avprule id="SIP-Response-Timestamp" type="Optional"/>
+         <avprule id="SIP-Request-Timestamp-Fraction" type="Optional"/>
+         <avprule id="SIP-Response-Timestamp-Fraction" type="Optional"/>
+      </grouped>
+   </avp>
+   <avp name="SIP-Request-Timestamp" code="834" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="Time"/>
+   </avp>
+   <avp name="SIP-Response-Timestamp" code="835" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="Time"/>
+   </avp>
+   <avp name="Application-Server" code="836" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="UTF8String"/>
+   </avp>
+   <avp name="Application-Provided-Called-Party-Address" code="837" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="UTF8String"/>
+   </avp>
+   <avp name="Inter-Operator-Identifier" code="838" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <grouped>
+         <avprule id="Originating-IOI" type="Optional"/>
+         <avprule id="Terminating-IOI" type="Optional"/>
+      </grouped>
+   </avp>
+   <avp name="Originating-IOI" code="839" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="UTF8String"/>
+   </avp>
+   <avp name="Terminating-IOI" code="840" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="UTF8String"/>
+   </avp>
+   <avp name="IMS-Charging-Identifier" code="841" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="UTF8String"/>
+   </avp>
+   <avp name="SDP-Session-Description" code="842" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="UTF8String"/>
+   </avp>
+   <avp name="SDP-Media-Component" code="843" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <grouped>
+         <avprule id="SDP-Media-Name" type="Optional"/>
+         <avprule id="SDP-Media-Description" type="Optional" qual="*"/>
+         <avprule id="Media-Initiator-Flag" type="Optional"/>
+         <avprule id="Media-Initiator-Party" type="Optional"/>
+         <avprule id="Authorized-QoS" type="Optional"/>
+         <avprule id="3GPP-Charging-Id" type="Optional"/>
+         <avprule id="Access-Network-Charging-Identifier-Value" type="Optional"/>
+         <avprule id="SDP-Type" type="Optional"/>
+      </grouped>
+   </avp>
+   <avp name="SDP-Media-Name" code="844" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="UTF8String"/>
+   </avp>
+   <avp name="SDP-Media-Description" code="845" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="UTF8String"/>
+   </avp>
+   <avp name="CG-Address" code="846" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="Address"/>
+   </avp>
+   <avp name="GGSN-Address" code="847" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="Address"/>
+   </avp>
+   <avp name="Served-Party-IP-Address" code="848" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="Address"/>
+   </avp>
+   <avp name="Authorized-QoS" code="849" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="UTF8String"/>
+   </avp>
+   <avp name="Application-Server-Information" code="850" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <grouped>
+         <avprule id="Application-Server" type="Optional"/>
+         <avprule id="Application-Provided-Called-Party-Address" type="Optional" qual="*"/>
+      </grouped>
+   </avp>
+   <avp name="Trunk-Group-ID" code="851" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <grouped>
+         <avprule id="Incoming-Trunk-Group-ID" type="Optional"/>
+         <avprule id="Outgoing-Trunk-Group-ID" type="Optional"/>
+      </grouped>
+   </avp>
+   <avp name="Incoming-Trunk-Group-ID" code="852" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="UTF8String"/>
+   </avp>
+   <avp name="Outgoing-Trunk-Group-ID" code="853" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="UTF8String"/>
+   </avp>
+   <avp name="Bearer-Service" code="854" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="OctetString"/>
+   </avp>
+   <avp name="Service-Id" code="855" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="UTF8String"/>
+   </avp>
+   <avp name="Associated-URI" code="856" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="UTF8String"/>
+   </avp>
+   <avp name="Cause-Code" code="861" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="Integer32"/>
+   </avp>
+   <avp name="Node-Functionality" code="862" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="Enumerated" enum="0-11">
+         <label data="0" alias="S-CSCF"/>
+         <label data="1" alias="P-CSCF"/>
+         <label data="2" alias="I-CSCF"/>
+         <label data="3" alias="MRFC"/>
+         <label data="4" alias="MGCF"/>
+         <label data="5" alias="BGCF"/>
+         <label data="6" alias="AS"/>
+         <label data="7" alias="IBCF"/>
+         <label data="8" alias="S-GW"/>
+         <label data="9" alias="P-GW"/>
+         <label data="10" alias="HSGW"/>
+         <label data="11" alias="E-CSCF"/>
+      </single>
+   </avp>
+   <avp name="Service-Specific-Data" code="863" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="UTF8String"/>
+   </avp>
+   <avp name="Originator" code="864" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="Enumerated" enum="0-1">
+         <label data="0" alias="Calling Party"/>
+         <label data="1" alias="Called Party"/>
+      </single>
+   </avp>
+   <avp name="PS-Furnish-Charging-Information" code="865" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <grouped>
+         <avprule id="3GPP-Charging-Id" type="Mandatory"/>
+         <avprule id="PS-Free-Format-Data" type="Mandatory"/>
+         <avprule id="PS-Append-Free-Format-Data" type="Optional"/>
+      </grouped>
+   </avp>
+   <avp name="PS-Free-Format-Data" code="866" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="OctetString"/>
+   </avp>
+   <avp name="PS-Append-Free-Format-Data" code="867" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="Enumerated" enum="0-1">
+         <label data="0" alias="APPEND"/>
+         <label data="1" alias="OVERWRITE"/>
+      </single>
+   </avp>
+   <avp name="Time-Quota-Threshold" code="868" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="Unsigned32"/>
+   </avp>
+   <avp name="Volume-Quota-Threshold" code="869" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="Unsigned32"/>
+   </avp>
+   <avp name="Trigger-Type" code="870" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="Enumerated" enum="1-4,10-23,30-34,40,50">
+         <label data="1" alias="CHANGE_IN_SGSN_IP_ADDRESS"/>
+         <label data="2" alias="CHANGE_IN_QOS"/>
+         <label data="3" alias="CHANGE_IN_LOCATION"/>
+         <label data="4" alias="CHANGE_IN_RAT"/>
+         <label data="10" alias="CHANGEINQOS_TRAFFIC_CLASS"/>
+         <label data="11" alias="CHANGEINQOS_RELIABILITY_CLASS"/>
+         <label data="12" alias="CHANGEINQOS_DELAY_CLASS"/>
+         <label data="13" alias="CHANGEINQOS_PEAK_THROUGHPUT"/>
+         <label data="14" alias="CHANGEINQOS_PRECEDENCE_CLASS"/>
+         <label data="15" alias="CHANGEINQOS_MEAN_THROUGHPUT"/>
+         <label data="16" alias="CHANGEINQOS_MAXIMUM_BIT_RATE_FOR_UPLINK"/>
+         <label data="17" alias="CHANGEINQOS_MAXIMUM_BIT_RATE_FOR_DOWNLINK"/>
+         <label data="18" alias="CHANGEINQOS_RESIDUAL_BER"/>
+         <label data="19" alias="CHANGEINQOS_SDU_ERROR_RATIO"/>
+         <label data="20" alias="CHANGEINQOS_TRANSFER_DELAY"/>
+         <label data="21" alias="CHANGEINQOS_TRAFFIC_HANDLING_PRIORITY"/>
+         <label data="22" alias="CHANGEINQOS_GUARANTEED_BIT_RATE_FOR_UPLINK"/>
+         <label data="23" alias="CHANGEINQOS_GUARANTEED_BIT_RATE_FOR_DOWNLINK"/>
+         <label data="30" alias="CHANGEINLOCATION_MCC"/>
+         <label data="31" alias="CHANGEINLOCATION_MNC"/>
+         <label data="32" alias="CHANGEINLOCATION_RAC"/>
+         <label data="33" alias="CHANGEINLOCATION_LAC"/>
+         <label data="34" alias="CHANGEINLOCATION_CellId"/>
+         <label data="40" alias="CHANGE_IN_MEDIA_COMPOSITION"/>
+         <label data="50" alias="CHANGEINPARTICIPANTS_NMB"/>
+      </single>
+   </avp>
+   <avp name="Quota-Holding-Time" code="871" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="Unsigned32"/>
+   </avp>
+   <avp name="Reporting-Reason" code="872" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="Enumerated" enum="0-8">
+         <label data="0" alias="THRESHOLD"/>
+         <label data="1" alias="QHT"/>
+         <label data="2" alias="FINAL"/>
+         <label data="3" alias="QUOTA_EXHAUSTED"/>
+         <label data="4" alias="VALIDITY_TIME"/>
+         <label data="5" alias="OTHER_QUOTA_TYPE"/>
+         <label data="6" alias="RATING_CONDITION_CHANGE"/>
+         <label data="7" alias="FORCED_REAUTHORISATION"/>
+         <label data="8" alias="POOL_EXHAUSTED"/>
+      </single>
+   </avp>
+   <avp name="Service-Information" code="873" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <grouped>
+         <avprule id="PS-Information" type="Optional"/>
+         <avprule id="IMS-Information" type="Optional"/>
+         <avprule id="MMS-Information" type="Optional"/>
+         <avprule id="SMS-Information" type="Optional"/>
+         <avprule id="Service-Generic-Information" type="Optional"/>
+      </grouped>
+   </avp>
+   <avp name="PS-Information" code="874" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <grouped>
+         <avprule id="3GPP-Charging-Id" type="Optional"/>
+         <avprule id="3GPP-PDP-Type" type="Optional"/>
+         <avprule id="3GPP-GPRS-Neg-QoS-Profile" type="Optional"/>
+         <avprule id="3GPP-IMSI-MCC-MNC" type="Optional"/>
+         <avprule id="3GPP-GGSN-MCC-MNC" type="Optional"/>
+         <avprule id="3GPP-NSAPI" type="Optional"/>
+         <avprule id="3GPP-Session-Stop-Indicator" type="Optional"/>
+         <avprule id="3GPP-Selection-Mode" type="Optional"/>
+         <avprule id="3GPP-Charging-Characteristics" type="Optional"/>
+         <avprule id="3GPP-SGSN-MCC-MNC" type="Optional"/>
+         <avprule id="3GPP-Rat-Type" type="Optional"/>
+         <avprule id="3GPP-User-Location-Info" type="Optional"/>
+         <avprule id="3GPP-MS-TimeZone" type="Optional"/>
+         <avprule id="3GPP-CAMEL-Charging-Info" type="Optional"/>
+         <avprule id="CG-Address" type="Optional"/>
+         <avprule id="GGSN-Address" type="Optional"/>
+         <avprule id="PS-Furnish-Charging-Information" type="Optional"/>
+         <avprule id="Charging-Rule-Base-Name" type="Optional"/>
+         <avprule id="PDP-Address" type="Optional"/>
+         <avprule id="SGSN-Address" type="Optional"/>
+         <avprule id="Called-Station-Id" type="Optional"/>
+         <avprule id="AVP" type="Optional" qual="*"/>
+      </grouped>
+   </avp>
+   <avp name="IMS-Information" code="876" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <grouped>
+         <avprule id="Event-Type" type="Optional"/>
+         <avprule id="Role-Of-Node" type="Optional"/>
+         <avprule id="Node-Functionality" type="Mandatory"/>
+         <avprule id="User-Session-Id" type="Optional"/>
+         <avprule id="Outgoing-Session-Id" type="Optional"/>
+         <avprule id="Session-Priority" type="Optional"/>
+         <avprule id="Calling-Party-Address" type="Optional" qual="*"/>
+         <avprule id="Called-Party-Address" type="Optional"/>
+         <avprule id="Called-Asserted-Identity" type="Optional" qual="*"/>
+         <avprule id="Number-Portability-Routing-Information" type="Optional"/>
+         <avprule id="Carrier-Select-Routing-Information" type="Optional"/>
+         <avprule id="Alternate-Charged-Party-Address" type="Optional"/>
+         <avprule id="Requested-Party-Address" type="Optional"/>
+         <avprule id="Associated-URI" type="Optional" qual="*"/>
+         <avprule id="Time-Stamps" type="Optional"/>
+         <avprule id="Application-Server-Information" type="Optional" qual="*"/>
+         <avprule id="Inter-Operator-Identifier" type="Optional" qual="*"/>
+         <avprule id="IMS-Charging-Identifier" type="Optional"/>
+         <avprule id="SDP-Session-Description" type="Optional" qual="*"/>
+         <avprule id="SDP-Media-Component" type="Optional" qual="*"/>
+         <avprule id="Served-Party-IP-Address" type="Optional"/>
+         <avprule id="Server-Capabilities" type="Optional"/>
+         <avprule id="Trunk-Group-ID" type="Optional"/>
+         <avprule id="Bearer-Service" type="Optional"/>
+         <avprule id="Service-Id" type="Optional"/>
+         <avprule id="Service-Specific-Info" type="Optional" qual="*"/>
+         <avprule id="Message-Body" type="Optional" qual="*"/>
+         <avprule id="Cause-Code" type="Optional"/>
+         <avprule id="Access-Network-Information" type="Optional"/>
+         <avprule id="Early-Media-Description" type="Optional" qual="*"/>
+         <avprule id="IMS-Communication-Service-Identifier" type="Optional"/>
+         <avprule id="Online-Charging-Flag" type="Optional"/>
+         <avprule id="Real-Time-Tariff-Information" type="Optional"/>
+         <avprule id="Account-Expiration" type="Optional"/>
+      </grouped>
+   </avp>
+   <avp name="MMS-Information" code="877" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <grouped>
+         <avprule id="Originator-Address" type="Optional"/>
+         <avprule id="Recipient-Address" type="Optional" qual="*"/>
+         <avprule id="Submission-Time" type="Optional"/>
+         <avprule id="MM-Content-Type" type="Optional"/>
+         <avprule id="Priority" type="Optional"/>
+         <avprule id="Message-ID" type="Optional"/>
+         <avprule id="Message-Type" type="Optional"/>
+         <avprule id="Message-Size" type="Optional"/>
+         <avprule id="Message-Class" type="Optional"/>
+         <avprule id="Delivery-Report-Requested" type="Optional"/>
+         <avprule id="Read-Reply-Report-Requested" type="Optional"/>
+         <avprule id="MMBox-Storage-Requested" type="Optional"/>
+         <avprule id="Applic-ID" type="Optional"/>
+         <avprule id="Reply-Applic-ID" type="Optional"/>
+         <avprule id="Aux-Applic-Info" type="Optional"/>
+         <avprule id="Content-Class" type="Optional"/>
+         <avprule id="DRM-Content" type="Optional"/>
+         <avprule id="Adaptations" type="Optional"/>
+         <avprule id="VASP-Id" type="Optional"/>
+         <avprule id="VAS-Id" type="Optional"/>
+      </grouped>
+   </avp>
+   <avp name="Media-Initiator-Flag" code="882" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="Enumerated" enum="0-2">
+         <label data="0" alias="CALLING_PARTY"/>
+         <label data="1" alias="CALLED_PARTY"/>
+         <label data="2" alias="UNKNOWN"/>
+      </single>
+   </avp>
+   <avp name="Number-Of-Participants" code="885" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="Unsigned32"/>
+   </avp>
+   <avp name="Originator-Address" code="886" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <grouped>
+         <avprule id="Address-Type" type="Optional"/>
+         <avprule id="Address-Data" type="Optional"/>
+         <avprule id="Address-Domain" type="Optional"/>
+      </grouped>
+   </avp>
+   <avp name="Expires" code="888" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="Unsigned32"/>
+   </avp>
+   <avp name="Message-Body" code="889" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <grouped>
+         <avprule id="Content-Type" type="Mandatory"/>
+         <avprule id="Content-Length" type="Mandatory"/>
+         <avprule id="Content-Disposition" type="Optional"/>
+         <avprule id="Originator" type="Optional"/>
+      </grouped>
+   </avp>
+   <avp name="Address-Data" code="897" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="UTF8String"/>
+   </avp>
+   <avp name="Address-Domain" code="898" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <grouped>
+         <avprule id="Domain-Name" type="Optional"/>
+         <avprule id="3GPP-IMSI-MCC-MNC" type="Optional"/>
+      </grouped>
+   </avp>
+   <avp name="Address-Type" code="899" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="Enumerated" enum="0-7">
+         <label data="0" alias="e-mail address"/>
+         <label data="1" alias="MSISDN"/>
+         <label data="2" alias="IPv4 Address"/>
+         <label data="3" alias="IPv6 Address"/>
+         <label data="4" alias="Numeric Shortcode"/>
+         <label data="5" alias="Alphanumeric Shortcode"/>
+         <label data="6" alias="Other"/>
+         <label data="7" alias="IMSI"/>
+      </single>
+   </avp>
+   <avp name="Charging-Rule-Base-Name" code="1004" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="UTF8String"/>
+   </avp>
+   <avp name="IP-CAN-Type" code="1027" vendor-name="3GPP" may-encrypt="yes" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="Enumerated" enum="0-6">
+         <label data="0" alias="3GPP-GPRS"/>
+         <label data="1" alias="DOCSIS"/>
+         <label data="2" alias="xDSL"/>
+         <label data="3" alias="WiMAX"/>
+         <label data="4" alias="3GPP2"/>
+         <label data="5" alias="3GP-EPS"/>
+         <label data="6" alias="Non-3GPP-EPS"/>
+      </single>
+   </avp>
+   <avp name="RAT-Type" code="1032" vendor-name="3GPP" may-encrypt="yes" v-bit="must" m-bit="mustnot" p-bit="may">
+      <single format-name="Enumerated" enum="0-2,1000-1004,2000-2003">
+         <label data="0" alias="WLAN"/>
+         <label data="1" alias="VIRTUAL"/>
+         <label data="2" alias="BBF"/>
+         <label data="1000" alias="UTRAN"/>
+         <label data="1001" alias="GERAN"/>
+         <label data="1002" alias="GAN"/>
+         <label data="1003" alias="HSPA_EVOLUTION"/>
+         <label data="1004" alias="EUTRAN"/>
+         <label data="2000" alias="CDMA2000_1X"/>
+         <label data="2001" alias="HRPD"/>
+         <label data="2002" alias="UMB"/>
+         <label data="2003" alias="EHRPD"/>
+      </single>
+   </avp>
+   <avp name="VASP-Id" code="1101" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="UTF8String"/>
+   </avp>
+   <avp name="VAS-Id" code="1102" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="UTF8String"/>
+   </avp>
+   <avp name="Domain-Name" code="1200" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="UTF8String"/>
+   </avp>
+   <avp name="Recipient-Address" code="1201" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <grouped>
+         <avprule id="Address-Type" type="Optional"/>
+         <avprule id="Address-Data" type="Optional"/>
+         <avprule id="Address-Domain" type="Optional"/>
+         <avprule id="Addressee-Type" type="Optional"/>
+      </grouped>
+   </avp>
+   <avp name="Submission-Time" code="1202" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="Time"/>
+   </avp>
+   <avp name="MM-Content-Type" code="1203" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <grouped>
+         <avprule id="Type-Number" type="Optional"/>
+         <avprule id="Additional-Type-Information" type="Optional"/>
+         <avprule id="Content-Size" type="Optional"/>
+         <avprule id="Additional-Content-Information" type="Optional" qual="*"/>
+      </grouped>
+   </avp>
+   <avp name="Type-Number" code="1204" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="Enumerated" enum="0-88"/>
+   </avp>
+   <avp name="Additional-Type-Information" code="1205" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="UTF8String"/>
+   </avp>
+   <avp name="Content-Size" code="1206" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="Unsigned32"/>
+   </avp>
+   <avp name="Additional-Content-Information" code="1207" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <grouped>
+         <avprule id="Type-Number" type="Optional"/>
+         <avprule id="Additional-Type-Information" type="Optional"/>
+         <avprule id="Content-Size" type="Optional"/>
+      </grouped>
+   </avp>
+   <avp name="Addressee-Type" code="1208" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="Enumerated" enum="0-2">
+         <label data="0" alias="TO"/>
+         <label data="1" alias="CC"/>
+         <label data="2" alias="BCC"/>
+      </single>
+   </avp>
+   <avp name="Priority" code="1209" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="Enumerated" enum="0-2">
+         <label data="0" alias="Low"/>
+         <label data="1" alias="Normal"/>
+         <label data="2" alias="High"/>
+      </single>
+   </avp>
+   <avp name="Message-ID" code="1210" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="UTF8String"/>
+   </avp>
+   <avp name="Message-Type" code="1211" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="Enumerated" enum="1-15">
+         <label data="1" alias="m-send-req"/>
+         <label data="2" alias="m-send-conf"/>
+         <label data="3" alias="m-notification-ind"/>
+         <label data="4" alias="m-notifyresp-ind"/>
+         <label data="5" alias="m-retrieve-conf"/>
+         <label data="6" alias="m-acknowledge-ind"/>
+         <label data="7" alias="m-delivery-ind"/>
+         <label data="8" alias="m-read-rec-ind"/>
+         <label data="9" alias="m-read-orig-ind"/>
+         <label data="10" alias="m-forward-req"/>
+         <label data="11" alias="m-forward-conf"/>
+         <label data="12" alias="m-mbox-store-conf"/>
+         <label data="13" alias="m-mbox-view-conf"/>
+         <label data="14" alias="m-mbox-upload-conf"/>
+         <label data="15" alias="m-mbox-delete-conf"/>
+      </single>
+   </avp>
+   <avp name="Message-Size" code="1212" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="Unsigned32"/>
+   </avp>
+   <avp name="Message-Class" code="1213" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <grouped>
+         <avprule id="Class-Identifier" type="Optional"/>
+         <avprule id="Token-Text" type="Optional"/>
+      </grouped>
+   </avp>
+   <avp name="Class-Identifier" code="1214" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="Enumerated" enum="0-3">
+         <label data="0" alias="Personal"/>
+         <label data="1" alias="Advertisement"/>
+         <label data="2" alias="Informational"/>
+         <label data="3" alias="Auto"/>
+      </single>
+   </avp>
+   <avp name="Token-Text" code="1215" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="UTF8String"/>
+   </avp>
+   <avp name="Delivery-Report-Requested" code="1216" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="Enumerated" enum="0-1">
+         <label data="0" alias="No"/>
+         <label data="1" alias="Yes"/>
+      </single>
+   </avp>
+   <avp name="Adaptations" code="1217" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="Enumerated" enum="0-1">
+         <label data="0" alias="Yes"/>
+         <label data="1" alias="No"/>
+      </single>
+   </avp>
+   <avp name="Applic-ID" code="1218" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="UTF8String"/>
+   </avp>
+   <avp name="Aux-Applic-Info" code="1219" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="UTF8String"/>
+   </avp>
+   <avp name="Content-Class" code="1220" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="Enumerated" enum="0-7">
+         <label data="0" alias="text"/>
+         <label data="1" alias="image-basic"/>
+         <label data="2" alias="image-rich"/>
+         <label data="3" alias="video-basic"/>
+         <label data="4" alias="video-rich"/>
+         <label data="5" alias="megapixel"/>
+         <label data="6" alias="content-basic"/>
+         <label data="7" alias="content-rich"/>
+      </single>
+   </avp>
+   <avp name="DRM-Content" code="1221" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="Enumerated" enum="0-1">
+         <label data="0" alias="No"/>
+         <label data="1" alias="Yes"/>
+      </single>
+   </avp>
+   <avp name="Read-Reply-Report-Requested" code="1222" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="Enumerated" enum="0-1">
+         <label data="0" alias="No"/>
+         <label data="1" alias="Yes"/>
+      </single>
+   </avp>
+   <avp name="Reply-Applic-ID" code="1223" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="UTF8String"/>
+   </avp>
+   <avp name="Unit-Quota-Threshold" code="1226" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="Unsigned32"/>
+   </avp>
+   <avp name="PDP-Address" code="1227" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="Address"/>
+   </avp>
+   <avp name="SGSN-Address" code="1228" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="Address"/>
+   </avp>
+   <avp name="PDP-Context-Type" code="1247" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="Unsigned32"/>
+   </avp>
+   <avp name="MMBox-Storage-Requested" code="1248" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="Enumerated" enum="0-1">
+         <label data="0" alias="No"/>
+         <label data="1" alias="Yes"/>
+      </single>
+   </avp>
+   <avp name="Service-Specific-Info" code="1249" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <grouped>
+         <avprule id="Service-Specific-Type" type="Optional"/>
+         <avprule id="Service-Specific-Data" type="Optional"/>
+      </grouped>
+   </avp>
+   <avp name="Called-Asserted-Identity" code="1250" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="UTF8String"/>
+   </avp>
+   <avp name="Requested-Party-Address" code="1251" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="UTF8String"/>
+   </avp>
+   <avp name="Service-Generic-Information" code="1256" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <grouped>
+         <avprule id="Application-Server-ID" type="Optional"/>
+         <avprule id="Application-Service-Type" type="Optional"/>
+         <avprule id="Application-Session-ID" type="Optional"/>
+         <avprule id="Delivery-Status" type="Optional"/>
+      </grouped>
+   </avp>
+   <avp name="Service-Specific-Type" code="1257" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="Unsigned32"/>
+   </avp>
+   <avp name="Access-Network-Information" code="1263" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="OctetString"/>
+   </avp>
+   <avp name="Trigger" code="1264" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <grouped>
+         <avprule id="Trigger-Type" type="Optional" qual="*"/>
+      </grouped>
+   </avp>
+   <avp name="Base-Time-Interval" code="1265" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="Unsigned32"/>
+   </avp>
+   <avp name="Envelope" code="1266" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <grouped>
+         <avprule id="Envelope-Start-Time" type="Mandatory"/>
+         <avprule id="Envelope-End-Time" type="Optional"/>
+         <avprule id="CC-Total-Octets" type="Optional"/>
+         <avprule id="CC-Input-Octets" type="Optional"/>
+         <avprule id="CC-Output-Octets" type="Optional"/>
+         <avprule id="CC-Service-Specific-Units" type="Optional"/>
+         <avprule id="AVP" type="Optional" qual="*"/>
+      </grouped>
+   </avp>
+   <avp name="Envelope-End-Time" code="1267" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="Time"/>
+   </avp>
+   <avp name="Envelope-Reporting" code="1268" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="Enumerated" enum="0-4">
+         <label data="0" alias="DO_NOT_REPORT_ENVELOPES"/>
+         <label data="1" alias="REPORT_ENVELOPES"/>
+         <label data="2" alias="REPORT_ENVELOPES_WITH_VOLUME"/>
+         <label data="3" alias="REPORT_ENVELOPES_WITH_EVENTS"/>
+         <label data="4" alias="REPORT_ENVELOPES_WITH_VOLUME_AND_EVENTS"/>
+      </single>
+   </avp>
+   <avp name="Envelope-Start-Time" code="1269" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="Time"/>
+   </avp>
+   <avp name="Time-Quota-Mechanism" code="1270" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <grouped>
+         <avprule id="Time-Quota-Type" type="Mandatory"/>
+         <avprule id="Base-Time-Interval" type="Mandatory"/>
+      </grouped>
+   </avp>
+   <avp name="Time-Quota-Type" code="1271" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="Enumerated" enum="0-1">
+         <label data="0" alias="DISCRETE_TIME_PERIOD"/>
+         <label data="1" alias="CONTINUOUS_TIME_PERIOD"/>
+      </single>
+   </avp>
+   <avp name="Early-Media-Description" code="1272" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <grouped>
+         <avprule id="SDP-TimeStamps" type="Optional"/>
+         <avprule id="SDP-Media-Component" type="Optional" qual="*"/>
+         <avprule id="SDP-Session-Description" type="Optional" qual="*"/>
+      </grouped>
+   </avp>
+   <avp name="SDP-TimeStamps" code="1273" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <grouped>
+         <avprule id="SDP-Offer-Timestamp" type="Optional"/>
+         <avprule id="SDP-Answer-Timestamp" type="Optional"/>
+      </grouped>
+   </avp>
+   <avp name="SDP-Offer-Timestamp" code="1274" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="Time"/>
+   </avp>
+   <avp name="SDP-Answer-Timestamp" code="1275" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="Time"/>
+   </avp>
+   <avp name="AF-Correlation-Information" code="1276" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <grouped>
+         <avprule id="AF-Charging-Identifier" type="Mandatory"/>
+         <avprule id="Flows" type="Optional" qual="*"/>
+      </grouped>
+   </avp>
+   <avp name="Alternate-Charged-Party-Address" code="1280" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="UTF8String"/>
+   </avp>
+   <avp name="IMS-Communication-Service-Identifier" code="1281" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="UTF8String"/>
+   </avp>
+   <avp name="Media-Initiator-Party" code="1288" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="UTF8String"/>
+   </avp>
+   <avp name="SMS-Information" code="2000" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <grouped>
+         <avprule id="SMS-Node" type="Optional"/>
+         <avprule id="Client-Address" type="Optional"/>
+         <avprule id="Originator-SCCP-Address" type="Optional"/>
+         <avprule id="SMSC-Address" type="Optional"/>
+         <avprule id="Data-Coding-Scheme" type="Optional"/>
+         <avprule id="SM-Discharge-Time" type="Optional"/>
+         <avprule id="SM-Message-Type" type="Optional"/>
+         <avprule id="Originator-Interface" type="Optional"/>
+         <avprule id="SM-Protocol-ID" type="Optional"/>
+         <avprule id="Reply-Path-Requested" type="Optional"/>
+         <avprule id="SM-Status" type="Optional"/>
+         <avprule id="SM-User-Data-Header" type="Optional"/>
+         <avprule id="Number-Of-Messages-Sent" type="Optional"/>
+         <avprule id="Recipient-Info" type="Optional" qual="*"/>
+         <avprule id="Originator-Received-Address" type="Optional"/>
+         <avprule id="SM-Service-Type" type="Optional"/>
+      </grouped>
+   </avp>
+   <avp name="Data-Coding-Scheme" code="2001" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="Integer32"/>
+   </avp>
+   <avp name="Destination-Interface" code="2002" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <grouped>
+         <avprule id="Interface-Id" type="Optional"/>
+         <avprule id="Interface-Text" type="Optional"/>
+         <avprule id="Interface-Port" type="Optional"/>
+         <avprule id="Interface-Type" type="Optional"/>
+      </grouped>
+   </avp>
+   <avp name="Interface-Id" code="2003" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="UTF8String"/>
+   </avp>
+   <avp name="Interface-Port" code="2004" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="UTF8String"/>
+   </avp>
+   <avp name="Interface-Text" code="2005" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="UTF8String"/>
+   </avp>
+   <avp name="Interface-Type" code="2006" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="Enumerated" enum="0-4">
+         <label data="0" alias="Unknown"/>
+         <label data="1" alias="MOBILE_ORIGINATING"/>
+         <label data="2" alias="MOBILE_TERMINATING"/>
+         <label data="3" alias="APPLICATION_ORIGINATING"/>
+         <label data="4" alias="APPLICATION_TERMINATION"/>
+      </single>
+   </avp>
+   <avp name="SM-Message-Type" code="2007" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="Enumerated" enum="0-2">
+         <label data="0" alias="SUBMISSION"/>
+         <label data="1" alias="DELIVERY_REPORT"/>
+         <label data="2" alias="SM Service Request"/>
+      </single>
+   </avp>
+   <avp name="Originator-SCCP-Address" code="2008" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="Address"/>
+   </avp>
+   <avp name="Originator-Interface" code="2009" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <grouped>
+         <avprule id="Interface-Id" type="Optional"/>
+         <avprule id="Interface-Text" type="Optional"/>
+         <avprule id="Interface-Port" type="Optional"/>
+         <avprule id="Interface-Type" type="Optional"/>
+      </grouped>
+   </avp>
+   <avp name="Recipient-SCCP-Address" code="2010" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="Address"/>
+   </avp>
+   <avp name="Reply-Path-Requested" code="2011" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="Enumerated" enum="0-1">
+         <label data="0" alias="No Reply Path Set"/>
+         <label data="1" alias="Reply path Set"/>
+      </single>
+   </avp>
+   <avp name="SM-Discharge-Time" code="2012" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="Time"/>
+   </avp>
+   <avp name="SM-Protocol-ID" code="2013" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="OctetString"/>
+   </avp>
+   <avp name="SM-Status" code="2014" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="OctetString"/>
+   </avp>
+   <avp name="SM-User-Data-Header" code="2015" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="OctetString"/>
+   </avp>
+   <avp name="SMS-Node" code="2016" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="Enumerated" enum="0-3">
+         <label data="0" alias="SMS Router"/>
+         <label data="1" alias="IP-SM-GW"/>
+         <label data="2" alias="SMS Router and IP-SM-GW"/>
+         <label data="3" alias="SMS-SC"/>
+      </single>
+   </avp>
+   <avp name="SMSC-Address" code="2017" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="Address"/>
+   </avp>
+   <avp name="Client-Address" code="2018" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="Address"/>
+   </avp>
+   <avp name="Number-Of-Messages-Sent" code="2019" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="Unsigned32"/>
+   </avp>
+   <avp name="Low-Balance-Indication" code="2020" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="Enumerated" enum="0-1">
+         <label data="0" alias="NOT_APPLICABLE"/>
+         <label data="1" alias="YES"/>
+      </single>
+   </avp>
+   <avp name="Remaining-Balance" code="2021" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <grouped>
+         <avprule id="Unit-Value" type="Mandatory"/>
+         <avprule id="Currency-Code" type="Mandatory"/>
+      </grouped>
+   </avp>
+   <avp name="Refund-Information" code="2022" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="OctetString"/>
+   </avp>
+   <avp name="Carrier-Select-Routing-Information" code="2023" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="UTF8String"/>
+   </avp>
+   <avp name="Number-Portability-Routing-Information" code="2024" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="UTF8String"/>
+   </avp>
+   <avp name="Recipient-Info" code="2026" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <grouped>
+         <avprule id="Destination-Interface" type="Optional"/>
+         <avprule id="Recipient-Address" type="Optional" qual="*"/>
+         <avprule id="Recipient-Received-Address" type="Optional" qual="*"/>
+         <avprule id="Recipient-SCCP-Address" type="Optional"/>
+         <avprule id="SM-Protocol-ID" type="Optional"/>
+      </grouped>
+   </avp>
+   <avp name="Originator-Received-Address" code="2027" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <grouped>
+         <avprule id="Address-Type" type="Optional"/>
+         <avprule id="Address-Data" type="Optional"/>
+         <avprule id="Address-Domain" type="Optional"/>
+      </grouped>
+   </avp>
+   <avp name="Recipient-Received-Address" code="2028" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <grouped>
+         <avprule id="Address-Type" type="Optional"/>
+         <avprule id="Address-Data" type="Optional"/>
+         <avprule id="Address-Domain" type="Optional"/>
+      </grouped>
+   </avp>
+   <avp name="SM-Service-Type" code="2029" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="Enumerated" enum="0-10">
+         <label data="0" alias="VAS4SMS Short Message content processing"/>
+         <label data="1" alias="VAS4SMS Short Message forwarding"/>
+         <label data="2" alias="VAS4SMS Short Message Forwarding multiple subscriptions"/>
+         <label data="3" alias="VAS4SMS Short Message filtering"/>
+         <label data="4" alias="VAS4SMS Short Message receipt"/>
+         <label data="5" alias="VAS4SMS Short Message Network Storage"/>
+         <label data="6" alias="VAS4SMS Short Message to multiple destinations"/>
+         <label data="7" alias="VAS4SMS Short Message Virtual Private Network (VPN)"/>
+         <label data="8" alias="VAS4SMS Short Message Auto Reply"/>
+         <label data="9" alias="VAS4SMS Short Message Personal Signature"/>
+         <label data="10" alias="VAS4SMS Short Message Deferred Delivery"/>
+      </single>
+   </avp>
+   <avp name="SDP-Type" code="2036" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="Enumerated" enum="0-1">
+         <label data="0" alias="SDP Offer"/>
+         <label data="1" alias="SDP Answer"/>
+      </single>
+   </avp>
+   <avp name="Current-Tariff" code="2056" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <grouped>
+         <avprule id="Currency-Code" type="Optional"/>
+         <avprule id="Scale-Factor" type="Optional"/>
+         <avprule id="Rate-Element" type="Optional" qual="*"/>
+      </grouped>
+   </avp>
+   <avp name="Next-Tariff" code="2057" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <grouped>
+         <avprule id="Currency-Code" type="Optional"/>
+         <avprule id="Scale-Factor" type="Optional"/>
+         <avprule id="Rate-Element" type="Optional" qual="*"/>
+      </grouped>
+   </avp>
+   <avp name="Rate-Element" code="2058" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <grouped>
+         <avprule id="CC-Unit-Type" type="Mandatory"/>
+         <avprule id="Reason-Code" type="Optional"/>
+         <avprule id="Unit-Value" type="Optional"/>
+         <avprule id="Unit-Cost" type="Optional"/>
+         <avprule id="Unit-Quota-Threshold" type="Optional"/>
+      </grouped>
+   </avp>
+   <avp name="Scale-Factor" code="2059" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <grouped>
+         <avprule id="Value-Digits" type="Mandatory"/>
+         <avprule id="Exponent" type="Optional"/>
+      </grouped>
+   </avp>
+   <avp name="Tariff-Information" code="2060" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <grouped>
+         <avprule id="Current-Tariff" type="Mandatory"/>
+         <avprule id="Tariff-Time-Change" type="Optional"/>
+         <avprule id="Next-Tariff" type="Optional"/>
+      </grouped>
+   </avp>
+   <avp name="Unit-Cost" code="2061" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <grouped>
+         <avprule id="Value-Digits" type="Mandatory"/>
+         <avprule id="Exponent" type="Optional"/>
+      </grouped>
+   </avp>
+   <avp name="Application-Server-ID" code="2101" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="UTF8String"/>
+   </avp>
+   <avp name="Application-Service-Type" code="2102" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="Enumerated" enum="100-105">
+         <label data="100" alias="SENDING"/>
+         <label data="101" alias="RECEIVING"/>
+         <label data="102" alias="RETRIEVAL"/>
+         <label data="103" alias="INVITING"/>
+         <label data="104" alias="LEAVING"/>
+         <label data="105" alias="JOINING"/>
+      </single>
+   </avp>
+   <avp name="Application-Session-ID" code="2103" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="Unsigned32"/>
+   </avp>
+   <avp name="Delivery-Status" code="2104" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="UTF8String"/>
+   </avp>
+   <avp name="SIP-Request-Timestamp-Fraction" code="2301" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="Unsigned32"/>
+   </avp>
+   <avp name="SIP-Response-Timestamp-Fraction" code="2302" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="Unsigned32"/>
+   </avp>
+   <avp name="Online-Charging-Flag" code="2303" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="Enumerated" enum="0-1">
+         <label data="0" alias="ECF address not provided"/>
+         <label data="1" alias="ECF address provided"/>
+      </single>
+   </avp>
+   <avp name="Real-Time-Tariff-Information" code="2305" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <grouped>
+         <avprule id="Tariff-Information" type="Optional"/>
+         <avprule id="Tariff-XML" type="Optional"/>
+      </grouped>
+   </avp>
+   <avp name="Tariff-XML" code="2306" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="UTF8String"/>
+   </avp>
+   <avp name="Account-Expiration" code="2309" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="Time"/>
+   </avp>
+   <avp name="Reason-Code" code="2316" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="Enumerated" enum="0-4">
+         <label data="0" alias="UNKNOWN"/>
+         <label data="1" alias="USAGE"/>
+         <label data="2" alias="COMMUNICATION-ATTEMPT-CHARGE"/>
+         <label data="3" alias="SETUP-CHARGE"/>
+         <label data="4" alias="ADD-ON-CHARGE"/>
+      </single>
+   </avp>
+   <avp name="Outgoing-Session-Id" code="2320" vendor-name="3GPP" may-encrypt="no" v-bit="must" m-bit="must" p-bit="may">
+      <single format-name="UTF8String"/>
+   </avp>
+   <avp name="Reservation-Priority" code="458" vendor-name="ETSI" may-encrypt="yes" v-bit="must" m-bit="mustnot" p-bit="may">
+      <single format-name="Enumerated" enum="0-15">
+         <label data="0" alias="DEFAULT"/>
+         <label data="1" alias="PRIORITY-ONE"/>
+         <label data="2" alias="PRIORITY-TWO"/>
+         <label data="3" alias="PRIORITY-THREE"/>
+         <label data="4" alias="PRIORITY-FOUR"/>
+         <label data="5" alias="PRIORITY-FIVE"/>
+         <label data="6" alias="PRIORITY-SIX"/>
+         <label data="7" alias="PRIORITY-SEVEN"/>
+         <label data="8" alias="PRIORITY-EIGHT"/>
+         <label data="9" alias="PRIORITY-NINE"/>
+         <label data="10" alias="PRIORITY-TEN"/>
+         <label data="11" alias="PRIORITY-ELEVEN"/>
+         <label data="12" alias="PRIORITY-TWELVE"/>
+         <label data="13" alias="PRIORITY-THIRTEEN"/>
+         <label data="14" alias="PRIORITY-FOURTEEN"/>
+         <label data="15" alias="PRIORITY-FIFTEEN"/>
+      </single>
+   </avp>
+   <command name="Capabilities-Exchange-Request" code="257" type="Request">
+      <avprule id="Origin-Host" type="Mandatory"/>
+      <avprule id="Origin-Realm" type="Mandatory"/>
+      <avprule id="Host-IP-Address" type="Mandatory" qual="1*"/>
+      <avprule id="Vendor-Id" type="Mandatory"/>
+      <avprule id="Product-Name" type="Mandatory"/>
+      <avprule id="Origin-State-Id" type="Optional"/>
+      <avprule id="Supported-Vendor-Id" type="Optional" qual="*"/>
+      <avprule id="Auth-Application-Id" type="Optional" qual="*"/>
+      <avprule id="Inband-Security-Id" type="Optional" qual="*"/>
+      <avprule id="Acct-Application-Id" type="Optional" qual="*"/>
+      <avprule id="Vendor-Specific-Application-Id" type="Optional"/>
+      <avprule id="Firmware-Revision" type="Optional"/>
+      <avprule id="AVP" type="Optional" qual="*"/>
+   </command>
+   <command name="Capabilities-Exchange-Answer" code="257" type="Answer">
+      <avprule id="Result-Code" type="Mandatory"/>
+      <avprule id="Origin-Host" type="Mandatory"/>
+      <avprule id="Origin-Realm" type="Mandatory"/>
+      <avprule id="Host-IP-Address" type="Mandatory" qual="1*"/>
+      <avprule id="Vendor-Id" type="Mandatory"/>
+      <avprule id="Product-Name" type="Mandatory"/>
+      <avprule id="Origin-State-Id" type="Optional"/>
+      <avprule id="Error-Message" type="Optional"/>
+      <avprule id="Failed-AVP" type="Optional" qual="*"/>
+      <avprule id="Supported-Vendor-Id" type="Optional" qual="*"/>
+      <avprule id="Auth-Application-Id" type="Optional" qual="*"/>
+      <avprule id="Inband-Security-Id" type="Optional" qual="*"/>
+      <avprule id="Acct-Application-Id" type="Optional" qual="*"/>
+      <avprule id="Vendor-Specific-Application-Id" type="Optional"/>
+      <avprule id="Firmware-Revision" type="Optional"/>
+      <avprule id="AVP" type="Optional" qual="*"/>
+   </command>
+   <command name="Re-Auth-Request" code="258" type="Request">
+      <avprule id="Session-Id" type="Fixed"/>
+      <avprule id="Origin-Host" type="Mandatory"/>
+      <avprule id="Origin-Realm" type="Mandatory"/>
+      <avprule id="Destination-Realm" type="Mandatory"/>
+      <avprule id="Destination-Host" type="Mandatory"/>
+      <avprule id="Auth-Application-Id" type="Mandatory"/>
+      <avprule id="Specific-Action" type="Mandatory"/>
+      <avprule id="Access-Network-Charging-Identifier" type="Optional" qual="*"/>
+      <avprule id="Access-Network-Charging-Address" type="Optional"/>
+      <avprule id="Flows" type="Optional" qual="*"/>
+      <avprule id="Subscription-Id" type="Optional" qual="*"/>
+      <avprule id="Abort-Cause" type="Optional"/>
+      <avprule id="IP-CAN-Type" type="Optional"/>
+      <avprule id="RAT-Type" type="Optional"/>
+      <avprule id="Sponsored-Connectivity-Data" type="Optional"/>
+      <avprule id="Origin-State-Id" type="Optional"/>
+      <avprule id="Class" type="Optional" qual="*"/>
+      <avprule id="Proxy-Info" type="Optional" qual="*"/>
+      <avprule id="Route-Record" type="Optional" qual="*"/>
+      <avprule id="AVP" type="Optional" qual="*"/>
+   </command>
+   <command name="Re-Auth-Answer" code="258" type="Answer">
+      <avprule id="Session-Id" type="Fixed"/>
+      <avprule id="Result-Code" type="Mandatory"/>
+      <avprule id="Origin-Host" type="Mandatory"/>
+      <avprule id="Origin-Realm" type="Mandatory"/>
+      <avprule id="Experimental-Result" type="Optional"/>
+      <avprule id="Media-Component-Description" type="Optional" qual="*"/>
+      <avprule id="Service-URN" type="Optional"/>
+      <avprule id="Class" type="Optional" qual="*"/>
+      <avprule id="Origin-State-Id" type="Optional"/>
+      <avprule id="Error-Message" type="Optional"/>
+      <avprule id="Error-Reporting-Host" type="Optional"/>
+      <avprule id="Failed-AVP" type="Optional" qual="*"/>
+      <avprule id="Redirect-Host" type="Optional" qual="*"/>
+      <avprule id="Redirect-Host-Usage" type="Optional"/>
+      <avprule id="Redirect-Max-Cache-Time" type="Optional"/>
+      <avprule id="Proxy-Info" type="Optional" qual="*"/>
+      <avprule id="AVP" type="Optional" qual="*"/>
+   </command>
+   <command name="AA-Request" code="265" type="Request">
+      <avprule id="Session-Id" type="Fixed"/>
+      <avprule id="Auth-Application-Id" type="Mandatory"/>
+      <avprule id="Origin-Host" type="Mandatory"/>
+      <avprule id="Origin-Realm" type="Mandatory"/>
+      <avprule id="Destination-Realm" type="Mandatory"/>
+      <avprule id="Destination-Host" type="Optional"/>
+      <avprule id="AF-Application-Identifier" type="Optional"/>
+      <avprule id="Media-Component-Description" type="Optional" qual="*"/>
+      <avprule id="Service-Info-Status" type="Optional"/>
+      <avprule id="AF-Charging-Identifier" type="Optional"/>
+      <avprule id="SIP-Forking-Indication" type="Optional"/>
+      <avprule id="Specific-Action" type="Optional" qual="*"/>
+      <avprule id="Subscription-Id" type="Optional" qual="*"/>
+      <avprule id="Supported-Features" type="Optional" qual="*"/>
+      <avprule id="Reservation-Priority" type="Optional"/>
+      <avprule id="Framed-IP-Address" type="Optional"/>
+      <avprule id="Framed-IPv6-Prefix" type="Optional"/>
+      <avprule id="Called-Station-Id" type="Optional"/>
+      <avprule id="Service-URN" type="Optional"/>
+      <avprule id="Sponsored-Connectivity-Data" type="Optional"/>
+      <avprule id="MPS-Identifier" type="Optional"/>
+      <avprule id="Rx-Request-Type" type="Optional"/>
+      <avprule id="Origin-State-Id" type="Optional"/>
+      <avprule id="Proxy-Info" type="Optional" qual="*"/>
+      <avprule id="Route-Record" type="Optional" qual="*"/>
+      <avprule id="AVP" type="Optional" qual="*"/>
+   </command>
+   <command name="AA-Answer" code="265" type="Answer">
+      <!--<avprule id="Session-Id" type="Fixed"/> some providers must not respect this -->
+      <avprule id="Session-Id" type="Mandatory"/>
+      <avprule id="Auth-Application-Id" type="Mandatory"/>
+      <avprule id="Origin-Host" type="Mandatory"/>
+      <avprule id="Origin-Realm" type="Mandatory"/>
+      <avprule id="Result-Code" type="Optional"/>
+      <avprule id="Experimental-Result" type="Optional"/>
+      <avprule id="Access-Network-Charging-Identifier" type="Optional" qual="*"/>
+      <avprule id="Access-Network-Charging-Address" type="Optional"/>
+      <avprule id="Acceptable-Service-Info" type="Optional"/>
+      <avprule id="IP-CAN-Type" type="Optional"/>
+      <avprule id="RAT-Type" type="Optional"/>
+      <avprule id="Flows" type="Optional" qual="*"/>
+      <avprule id="Supported-Features" type="Optional" qual="*"/>
+      <avprule id="Class" type="Optional" qual="*"/>
+      <avprule id="Error-Message" type="Optional"/>
+      <avprule id="Error-Reporting-Host" type="Optional"/>
+      <avprule id="Failed-AVP" type="Optional" qual="*"/>
+      <avprule id="Origin-State-Id" type="Optional"/>
+      <avprule id="Redirect-Host" type="Optional" qual="*"/>
+      <avprule id="Redirect-Host-Usage" type="Optional"/>
+      <avprule id="Redirect-Max-Cache-Time" type="Optional"/>
+      <avprule id="Proxy-Info" type="Optional" qual="*"/>
+      <avprule id="AVP" type="Optional" qual="*"/>
+   </command>
+   <command name="Accounting-Request" code="271" type="Request">
+      <avprule id="Session-Id" type="Fixed"/>
+      <avprule id="Origin-Host" type="Mandatory"/>
+      <avprule id="Origin-Realm" type="Mandatory"/>
+      <avprule id="Destination-Realm" type="Mandatory"/>
+      <avprule id="Accounting-Record-Type" type="Mandatory"/>
+      <avprule id="Accounting-Record-Number" type="Mandatory"/>
+      <avprule id="Acct-Application-Id" type="Optional"/>
+      <avprule id="Vendor-Specific-Application-Id" type="Optional"/>
+      <avprule id="User-Name" type="Optional"/>
+      <avprule id="Accounting-Sub-Session-Id" type="Optional"/>
+      <avprule id="Accounting-Session-Id" type="Optional"/>
+      <avprule id="Acct-Multi-Session-Id" type="Optional"/>
+      <avprule id="Acct-Interim-Interval" type="Optional"/>
+      <avprule id="Accounting-Realtime-Required" type="Optional"/>
+      <avprule id="Origin-State-Id" type="Optional"/>
+      <avprule id="Event-Timestamp" type="Optional"/>
+      <avprule id="Proxy-Info" type="Optional" qual="*"/>
+      <avprule id="Route-Record" type="Optional" qual="*"/>
+      <avprule id="AVP" type="Optional" qual="*"/>
+   </command>
+   <command name="Accounting-Answer" code="271" type="Answer">
+      <avprule id="Session-Id" type="Fixed"/>
+      <avprule id="Result-Code" type="Mandatory"/>
+      <avprule id="Origin-Host" type="Mandatory"/>
+      <avprule id="Origin-Realm" type="Mandatory"/>
+      <avprule id="Accounting-Record-Type" type="Mandatory"/>
+      <avprule id="Accounting-Record-Number" type="Mandatory"/>
+      <avprule id="Acct-Application-Id" type="Optional"/>
+      <avprule id="Vendor-Specific-Application-Id" type="Optional"/>
+      <avprule id="User-Name" type="Optional"/>
+      <avprule id="Accounting-Sub-Session-Id" type="Optional"/>
+      <avprule id="Accounting-Session-Id" type="Optional"/>
+      <avprule id="Acct-Multi-Session-Id" type="Optional"/>
+      <avprule id="Error-Reporting-Host" type="Optional"/>
+      <avprule id="Acct-Interim-Interval" type="Optional"/>
+      <avprule id="Accounting-Realtime-Required" type="Optional"/>
+      <avprule id="Origin-State-Id" type="Optional"/>
+      <avprule id="Event-Timestamp" type="Optional"/>
+      <avprule id="Proxy-Info" type="Optional" qual="*"/>
+      <avprule id="AVP" type="Optional" qual="*"/>
+   </command>
+   <command name="Credit-Control-Request" code="272" type="Request">
+      <avprule id="Session-Id" type="Fixed"/>
+      <avprule id="Origin-Host" type="Mandatory"/>
+      <avprule id="Origin-Realm" type="Mandatory"/>
+      <avprule id="Destination-Realm" type="Mandatory"/>
+      <avprule id="Auth-Application-Id" type="Mandatory"/>
+      <avprule id="Service-Context-Id" type="Optional"/>
+      <avprule id="CC-Request-Type" type="Mandatory"/>
+      <avprule id="CC-Request-Number" type="Mandatory"/>
+      <avprule id="Destination-Host" type="Optional"/>
+      <avprule id="User-Name" type="Optional"/>
+      <avprule id="CC-Sub-Session-Id" type="Optional"/>
+      <avprule id="Acct-Multi-Session-Id" type="Optional"/>
+      <avprule id="Origin-State-Id" type="Optional"/>
+      <avprule id="Event-Timestamp" type="Optional"/>
+      <avprule id="Subscription-Id" type="Optional" qual="*"/>
+      <avprule id="Service-Identifier" type="Optional"/>
+      <avprule id="Termination-Cause" type="Optional"/>
+      <avprule id="Requested-Service-Unit" type="Optional"/>
+      <avprule id="Requested-Action" type="Optional"/>
+      <avprule id="Used-Service-Unit" type="Optional" qual="*"/>
+      <avprule id="Multiple-Services-Indicator" type="Optional"/>
+      <avprule id="Multiple-Services-Credit-Control" type="Optional" qual="*"/>
+      <avprule id="Service-Parameter-Info" type="Optional" qual="*"/>
+      <avprule id="CC-Correlation-Id" type="Optional"/>
+      <avprule id="User-Equipment-Info" type="Optional"/>
+      <avprule id="Proxy-Info" type="Optional" qual="*"/>
+      <avprule id="Route-Record" type="Optional" qual="*"/>
+      <avprule id="AVP" type="Optional" qual="*"/>
+   </command>
+   <command name="Credit-Control-Answer" code="272" type="Answer">
+      <!--<avprule id="Session-Id" type="Fixed"/> some providers must not respect this -->
+      <avprule id="Session-Id" type="Mandatory"/>
+      <avprule id="Result-Code" type="Mandatory"/>
+      <avprule id="Origin-Host" type="Mandatory"/>
+      <avprule id="Origin-Realm" type="Mandatory"/>
+      <avprule id="Auth-Application-Id" type="Mandatory"/>
+      <avprule id="CC-Request-Type" type="Mandatory"/>
+      <avprule id="CC-Request-Number" type="Mandatory"/>
+      <avprule id="User-Name" type="Optional"/>
+      <avprule id="CC-Session-Failover" type="Optional"/>
+      <avprule id="CC-Sub-Session-Id" type="Optional"/>
+      <avprule id="Acct-Multi-Session-Id" type="Optional"/>
+      <avprule id="Origin-State-Id" type="Optional"/>
+      <avprule id="Event-Timestamp" type="Optional"/>
+      <avprule id="Granted-Service-Unit" type="Optional"/>
+      <avprule id="Multiple-Services-Credit-Control" type="Optional" qual="*"/>
+      <avprule id="Cost-Information" type="Optional"/>
+      <avprule id="Final-Unit-Indication" type="Optional"/>
+      <avprule id="Check-Balance-Result" type="Optional"/>
+      <avprule id="Credit-Control-Failure-Handling" type="Optional"/>
+      <avprule id="Direct-Debiting-Failure-Handling" type="Optional"/>
+      <avprule id="Validity-Time" type="Optional"/>
+      <avprule id="Redirect-Host" type="Optional" qual="*"/>
+      <avprule id="Redirect-Host-Usage" type="Optional"/>
+      <avprule id="Redirect-Max-Cache-Time" type="Optional"/>
+      <avprule id="Proxy-Info" type="Optional" qual="*"/>
+      <avprule id="Route-Record" type="Optional" qual="*"/>
+      <avprule id="Failed-AVP" type="Optional" qual="*"/>
+      <avprule id="AVP" type="Optional" qual="*"/>
+   </command>
+   <command name="Abort-Session-Request" code="274" type="Request">
+      <avprule id="Session-Id" type="Fixed"/>
+      <avprule id="Origin-Host" type="Mandatory"/>
+      <avprule id="Origin-Realm" type="Mandatory"/>
+      <avprule id="Destination-Realm" type="Mandatory"/>
+      <avprule id="Destination-Host" type="Mandatory"/>
+      <avprule id="Auth-Application-Id" type="Mandatory"/>
+      <avprule id="Abort-Cause" type="Mandatory"/>
+      <avprule id="Origin-State-Id" type="Optional"/>
+      <avprule id="Proxy-Info" type="Optional" qual="*"/>
+      <avprule id="Route-Record" type="Optional" qual="*"/>
+      <avprule id="AVP" type="Optional" qual="*"/>
+   </command>
+   <command name="Abort-Session-Answer" code="274" type="Answer">
+      <avprule id="Session-Id" type="Fixed"/>
+      <avprule id="Result-Code" type="Mandatory"/>
+      <avprule id="Origin-Host" type="Mandatory"/>
+      <avprule id="Origin-Realm" type="Mandatory"/>
+      <avprule id="Origin-State-Id" type="Optional"/>
+      <avprule id="Error-Message" type="Optional"/>
+      <avprule id="Error-Reporting-Host" type="Optional"/>
+      <avprule id="Failed-AVP" type="Optional" qual="*"/>
+      <avprule id="Redirect-Host" type="Optional" qual="*"/>
+      <avprule id="Redirect-Host-Usage" type="Optional"/>
+      <avprule id="Redirect-Max-Cache-Time" type="Optional"/>
+      <avprule id="Proxy-Info" type="Optional" qual="*"/>
+      <avprule id="AVP" type="Optional" qual="*"/>
+   </command>
+   <command name="Session-Termination-Request" code="275" type="Request">
+      <avprule id="Session-Id" type="Fixed"/>
+      <avprule id="Origin-Host" type="Mandatory"/>
+      <avprule id="Origin-Realm" type="Mandatory"/>
+      <avprule id="Destination-Realm" type="Mandatory"/>
+      <avprule id="Auth-Application-Id" type="Mandatory"/>
+      <avprule id="Termination-Cause" type="Mandatory"/>
+      <avprule id="Destination-Host" type="Optional"/>
+      <avprule id="Class" type="Optional" qual="*"/>
+      <avprule id="Origin-State-Id" type="Optional"/>
+      <avprule id="Proxy-Info" type="Optional" qual="*"/>
+      <avprule id="Route-Record" type="Optional" qual="*"/>
+      <avprule id="AVP" type="Optional" qual="*"/>
+   </command>
+   <command name="Session-Termination-Answer" code="275" type="Answer">
+      <avprule id="Session-Id" type="Fixed"/>
+      <avprule id="Result-Code" type="Optional"/>
+      <avprule id="Origin-Host" type="Mandatory"/>
+      <avprule id="Origin-Realm" type="Mandatory"/>
+      <avprule id="Class" type="Optional" qual="*"/>
+      <avprule id="Error-Message" type="Optional"/>
+      <avprule id="Error-Reporting-Host" type="Optional"/>
+      <avprule id="Failed-AVP" type="Optional" qual="*"/>
+      <avprule id="Sponsored-Connectivity-Data" type="Optional"/>
+      <avprule id="Origin-State-Id" type="Optional"/>
+      <avprule id="Redirect-Host" type="Optional" qual="*"/>
+      <avprule id="Redirect-Host-Usage" type="Optional"/>
+      <avprule id="Redirect-Max-Cache-Time" type="Optional"/>
+      <avprule id="Proxy-Info" type="Optional" qual="*"/>
+      <avprule id="AVP" type="Optional" qual="*"/>
+   </command>
+   <command name="Device-Watchdog-Request" code="280" type="Request">
+      <avprule id="Origin-Host" type="Mandatory"/>
+      <avprule id="Origin-Realm" type="Mandatory"/>
+      <avprule id="Origin-State-Id" type="Optional"/>
+   </command>
+   <command name="Device-Watchdog-Answer" code="280" type="Answer">
+      <avprule id="Result-Code" type="Mandatory"/>
+      <avprule id="Origin-Host" type="Mandatory"/>
+      <avprule id="Origin-Realm" type="Mandatory"/>
+      <avprule id="Error-Message" type="Optional"/>
+      <avprule id="Failed-AVP" type="Optional" qual="*"/>
+      <avprule id="Origin-State-Id" type="Optional"/>
+   </command>
+   <command name="Disconnect-Peer-Request" code="282" type="Request">
+      <avprule id="Origin-Host" type="Mandatory"/>
+      <avprule id="Origin-Realm" type="Mandatory"/>
+      <avprule id="Disconnect-Cause" type="Mandatory"/>
+   </command>
+   <command name="Disconnect-Peer-Answer" code="282" type="Answer">
+      <avprule id="Result-Code" type="Mandatory"/>
+      <avprule id="Origin-Host" type="Mandatory"/>
+      <avprule id="Origin-Realm" type="Mandatory"/>
+      <avprule id="Error-Message" type="Optional"/>
+      <avprule id="Failed-AVP" type="Optional" qual="*"/>
+   </command>
+</dictionary>
diff --git a/example/diameter/batchConverter/example.pcap b/example/diameter/batchConverter/example.pcap
new file mode 100644 (file)
index 0000000..82180ae
Binary files /dev/null and b/example/diameter/batchConverter/example.pcap differ
diff --git a/example/diameter/batchConverter/example_diameter_batchConverter.trace b/example/diameter/batchConverter/example_diameter_batchConverter.trace
new file mode 100644 (file)
index 0000000..49451e3
--- /dev/null
@@ -0,0 +1,14003 @@
+
+--------------------------------------------------------------
+- [12/04/2015 15:02:01]
+- Current trace level: Warning
+- Max file size : 2000 Kb
+--------------------------------------------------------------
+
+--------------------------------------------------------------
+- [12/04/2015 15:32:25]
+- Current trace level: Debug
+- Max file size : 2000 Kb
+--------------------------------------------------------------
+[12/04/2015 15:32:25] Debug | source/core/util/ComponentManager.cpp (60) | anna::ComponentManager::attach(component) | begin
+
+[12/04/2015 15:32:25] Debug | source/core/util/ComponentManager.cpp (80) | anna::ComponentManager::attach | anna::Component { Name: anna::diameter::codec::Engine | Reference: 0x23108a0 }
+
+[12/04/2015 15:32:25] Debug | source/core/util/ComponentManager.cpp (0) | anna::ComponentManager::attach(component) | end
+
+[12/04/2015 15:32:25] Debug | source/xml/DTD.cpp (58) | anna::xml::DTD::initialize | begin
+
+[12/04/2015 15:32:25] Debug | source/xml/DTDMemory.cpp (69) | anna::xml::DTDMemory::parse | begin
+
+[12/04/2015 15:32:25] Debug | source/xml/DTDMemory.cpp (73) | DTD | <?xml version="1.0" encoding="UTF-8"?>
+<!-- Diameter message DTD -->
+
+<!ELEMENT message (avp*)>
+<!ELEMENT avp (avp*)>
+
+<!ATTLIST message version CDATA #IMPLIED name CDATA #IMPLIED code CDATA #IMPLIED flags CDATA #IMPLIED p-bit (yes | no) #IMPLIED e-bit (yes | no) #IMPLIED t-bit (yes | no) #IMPLIED application-id CDATA #REQUIRED hop-by-hop-id CDATA #IMPLIED end-by-end-id CDATA #IMPLIED>
+<!--
+   version: Diameter version. Sets '1' by default
+   name:    Command name within working stack (dictionary identifier)
+   p-bit:   (P)roxiable bit flag (yes, no). By default is 'no'
+   e-bit:   (E)rror bit flag (yes, no). By default is 'no'
+   t-bit:   Potentially re-(T)ransmitted bit flag (yes, no). By default is 'no'
+
+   In order to get more coding capabilities, command code and flags could be established instead of former fields,
+    but neither of them are allowed if the other are present (and vice versa):
+
+   code:    Command code
+   flags:   Command flags byte value (0-255) where standard bit set for flags is 'RPET rrrr': (R)equest, (P)roxiable, (E)rror, Potentially re-(T)ransmitted message and (r)eserved
+
+
+   application-id:   Message application id
+   hop-by-hop-id:    Message hop by hop id. Sets '0' by default
+   end-by-end-id:    Message end by end id. Sets '0' by default
+-->
+
+<!ATTLIST avp name CDATA #IMPLIED code CDATA #IMPLIED vendor-code CDATA #IMPLIED flags CDATA #IMPLIED data CDATA #IMPLIED hex-data CDATA #IMPLIED alias CDATA #IMPLIED>
+<!--
+   name:   Avp name within working stack (dictionary identifier)
+
+   In order to get more coding capabilities, avp code, vendor-id and flags could be established instead of former avp name,
+    but neither of them are allowed if 'name' is provided (and vice versa):
+
+   code:          Avp code
+   vendor-code:   Avp vendor code
+   flags:         Avp flags byte value (0-255) where standard bit set for flags is 'VMPr rrrr': (V)endor-specific, (M)andatory, end to end encry(P)tion and r(eserved)
+   alias:         Descriptive/helper field for certain numeric data values. Aliases are defined at diameter dictionary, but are ignored (not checked) at xml message parsing
+                  The reason to include it in dtd definition, is because xml messages traced by the diameter codec could add alias field for some Avps
+
+
+   data:          Natural string representation for avp data. Specially applicable with numbers and printable strings, but also
+                   useful for certain formats which could be easily understandable in such friendly/smart representation. We will
+                   achieve different human-readable strings depending on data format:
+
+                     [ OctetString ] (if printable, but not recommended)
+                     [ Integer32, Integer64, Unsigned32, Unsigned64, Float32, Float64 ] (normal number representation)
+                     [ Time ] (NTP timestamp, normal number representation)
+                     [ Address ] ('<type (IANA Address Family Number)>|<value>' representation; i.e. '1|192.168.0.1'(IPv4), '8|34616279266'(E164), etc.
+                                 Type (and pipe) field could be avoided for IPv4 and IPv6 address types (a light parse checking is done: one colon for
+                                 IPv6, one dot for IPv4). Internal engine always includes type on data field, which is also recommended for inputs.
+                                 Currently, only IPv4, IPv6 and E164 address types have a known printable presentation, anyway using printable format
+                                 for another types will encode the address value directly as E164 does)
+                     [ UTF8String, DiameterIdentity, DiameterURI ] (printable)
+                     [ IPFilterRule, QoSFilterRule ] (uses ASCII charset, printable)
+
+                     New application formats must define specific natural representation for internal raw data
+
+   hex-data:      Hexadecimal octet sequence representation (i.e. 'af012fb3', with even number of digits). Suitable for whatever kind
+                   of diameter format, but mandatory for non printable information. OctetString usually transport non human-readable
+                   data and should better be encoded within this field although being printable. Unknown avps (which fails identifying
+                   provided name or code/vendor-code) must always use this representation.
+
+   Xml representation for decoded messages shows natural content except for 'OctetString' format and unknown avps. Anyway, when printable,
+    OctetString could show such information at data field apart from hex-data, because many implementations use this format to transport
+    readable-string data. In general, one of the data fields is mandatory except for 'Grouped' type (its data is another level of avps).
+   Application-specific formats must decide the way to represent its contents, being recommended to use a natural representation if possible,
+    because xml is read by humans with testing and monitoring purposes.
+-->
+
+
+
+[12/04/2015 15:32:25] Debug | source/xml/DTDMemory.cpp (74) | Temporary file | /tmp/anna.xml.18750.dtd
+
+[12/04/2015 15:32:25] Debug | source/xml/DTDMemory.cpp (0) | anna::xml::DTDMemory::parse | end
+
+[12/04/2015 15:32:25] Debug | source/xml/DTD.cpp (0) | anna::xml::DTD::initialize | end
+
+[12/04/2015 15:32:25] Debug | source/xml/DTD.cpp (58) | anna::xml::DTD::initialize | begin
+
+[12/04/2015 15:32:25] Debug | source/xml/DTDMemory.cpp (69) | anna::xml::DTDMemory::parse | begin
+
+[12/04/2015 15:32:25] Debug | source/xml/DTDMemory.cpp (73) | DTD | <?xml version="1.0" encoding="UTF-8"?>
+<!-- Diameter dictionary DTD -->
+
+<!-- <!ELEMENT dictionary (format*, vendor+, avp+, command+)> allowed empty dictionary load: diameter base protocol would be harcoded -->
+<!ELEMENT dictionary (format*, vendor*, avp*, command*)>
+<!ATTLIST dictionary name CDATA #REQUIRED>
+<!--
+   Dictionary definitions
+
+   name: Dictionary name
+-->
+
+<!ELEMENT format EMPTY>
+<!ATTLIST format name CDATA #REQUIRED parent-type ( OctetString | Integer32 | Integer64 | Unsigned32 | Unsigned64 | Float32 | Float64 ) #REQUIRED>
+<!--
+   Format record
+
+   name:        Format type unique name
+   parent-type: Format parent type within diameter basics: OctetString, Integer32, Integer64, Unsigned32, Unsigned64, Float32, Float64
+-->
+
+<!ELEMENT vendor EMPTY>
+<!ATTLIST vendor name CDATA #REQUIRED code CDATA #REQUIRED>
+<!--
+   Vendor record
+
+   name: Vendor unique name
+   code: Vendor numeric code
+-->
+
+<!ELEMENT avp (single | grouped)>
+<!ATTLIST avp name CDATA #REQUIRED code CDATA #REQUIRED vendor-name CDATA #IMPLIED may-encrypt (yes | no) #IMPLIED v-bit (must | may | shouldnot | mustnot) #IMPLIED m-bit (must | may | shouldnot | mustnot) #IMPLIED p-bit (must | may | shouldnot | mustnot) #IMPLIED>
+<!--
+   Avp record
+
+   name:          Avp unique name
+   code:          Avp numeric code
+   vendor-name:   Avp vendor name with vendor-id value. Gets IETF (zero value) when missing
+   may-encrypt:   Avp data may be encrypted (yes, no). By default is 'no'
+   v-bit:         Avp vendor-specific bit rule (must, may, shouldnot, mustnot). By default is 'mustnot'
+   m-bit:         Avp mandatory bit rule (must, may, shouldnot, mustnot). By default is 'may'
+   p-bit:         Avp protected (encryption) bit rule (must, may, shouldnot, mustnot). By default is 'may'
+-->
+
+<!ELEMENT single (label*)>
+<!ATTLIST single format-name CDATA #REQUIRED enum CDATA #IMPLIED>
+<!--
+   Non-grouped avp struct
+
+   format-name: Avp format type name (RFC3588: 'OctetString, Integer32, Integer64, Unsigned32, Unsigned64, Float32, Float64, Address, Time, UTF8String, DiameterIdentity, DiameterURI, Enumerated, IPFilterRule, QoSFilterRule' or application format data type names)
+   enum:        Enum values restriction for enumerated-format avp: '[i][,[j]][,[m-n]...]'
+-->
+
+<!ELEMENT label EMPTY>
+<!ATTLIST label data CDATA #REQUIRED alias CDATA #REQUIRED>
+<!--
+   Mostly used with enumerated-type avps
+
+   data:    Specific avp data
+   alias:   Data-linked name
+-->
+
+<!ELEMENT grouped (avprule+)>
+<!--
+   Grouped avp struct
+-->
+
+<!ELEMENT avprule EMPTY>
+<!ATTLIST avprule id CDATA #REQUIRED type (Fixed | Mandatory | Optional) #REQUIRED qual CDATA #IMPLIED>
+<!--
+   Avp rule definition
+
+   id:   Avp name reference. Generic AVP is harcoded with 'AVP' name
+   type: Avp type (Fixed, Mandatory, Optional)
+   qual: Avp qualifier: *:0-inf; x*:x-inf; *x:0-x; x*y:x-y; missing:1(Fixed, Mandatory), 0-1(Optional)
+-->
+
+<!ELEMENT command (avprule*)>
+<!ATTLIST command name CDATA #REQUIRED code CDATA #REQUIRED type (Request | Answer) #REQUIRED>
+<!--
+   Command record
+
+   name:       Command unique name
+   code:       Command numeric code
+   type:       Command type (Request, Answer)
+-->
+
+
+
+[12/04/2015 15:32:25] Debug | source/xml/DTDMemory.cpp (74) | Temporary file | /tmp/anna.xml.18750.dtd
+
+[12/04/2015 15:32:25] Debug | source/xml/DTDMemory.cpp (0) | anna::xml::DTDMemory::parse | end
+
+[12/04/2015 15:32:25] Debug | source/xml/DTD.cpp (0) | anna::xml::DTD::initialize | end
+
+[12/04/2015 15:32:25] Debug | source/diameter/stack/Dictionary.cpp (850) | Loading diameter dictionary from 'dictionary.xml' ...
+
+[12/04/2015 15:32:25] Debug | source/xml/Document.cpp (73) | anna::xml::Document::initialize (char*) | begin
+
+[12/04/2015 15:32:25] Debug | source/xml/DocumentFile.cpp (59) | anna::xml::DocumentFile::do_initialize | begin
+
+[12/04/2015 15:32:25] Debug | source/xml/DocumentFile.cpp (65) | xml::DocumentFile::do_initialize | Filename: dictionary.xml
+
+[12/04/2015 15:32:25] Debug | source/xml/DocumentFile.cpp (0) | anna::xml::DocumentFile::do_initialize | end
+
+[12/04/2015 15:32:25] Debug | source/xml/Document.cpp (0) | anna::xml::Document::initialize (char*) | end
+
+[12/04/2015 15:32:25] Error | source/xml/DocumentFile.cpp (78) | RuntimeException | Error analyzing XML document: dictionary.xml
+
+
+--------------------------------------------------------------
+- [12/04/2015 15:32:48]
+- Current trace level: Debug
+- Max file size : 2000 Kb
+--------------------------------------------------------------
+[12/04/2015 15:32:48] Debug | source/core/util/ComponentManager.cpp (60) | anna::ComponentManager::attach(component) | begin
+
+[12/04/2015 15:32:48] Debug | source/core/util/ComponentManager.cpp (80) | anna::ComponentManager::attach | anna::Component { Name: anna::diameter::codec::Engine | Reference: 0x23708a0 }
+
+[12/04/2015 15:32:48] Debug | source/core/util/ComponentManager.cpp (0) | anna::ComponentManager::attach(component) | end
+
+[12/04/2015 15:32:48] Debug | source/xml/DTD.cpp (58) | anna::xml::DTD::initialize | begin
+
+[12/04/2015 15:32:48] Debug | source/xml/DTDMemory.cpp (69) | anna::xml::DTDMemory::parse | begin
+
+[12/04/2015 15:32:48] Debug | source/xml/DTDMemory.cpp (73) | DTD | <?xml version="1.0" encoding="UTF-8"?>
+<!-- Diameter message DTD -->
+
+<!ELEMENT message (avp*)>
+<!ELEMENT avp (avp*)>
+
+<!ATTLIST message version CDATA #IMPLIED name CDATA #IMPLIED code CDATA #IMPLIED flags CDATA #IMPLIED p-bit (yes | no) #IMPLIED e-bit (yes | no) #IMPLIED t-bit (yes | no) #IMPLIED application-id CDATA #REQUIRED hop-by-hop-id CDATA #IMPLIED end-by-end-id CDATA #IMPLIED>
+<!--
+   version: Diameter version. Sets '1' by default
+   name:    Command name within working stack (dictionary identifier)
+   p-bit:   (P)roxiable bit flag (yes, no). By default is 'no'
+   e-bit:   (E)rror bit flag (yes, no). By default is 'no'
+   t-bit:   Potentially re-(T)ransmitted bit flag (yes, no). By default is 'no'
+
+   In order to get more coding capabilities, command code and flags could be established instead of former fields,
+    but neither of them are allowed if the other are present (and vice versa):
+
+   code:    Command code
+   flags:   Command flags byte value (0-255) where standard bit set for flags is 'RPET rrrr': (R)equest, (P)roxiable, (E)rror, Potentially re-(T)ransmitted message and (r)eserved
+
+
+   application-id:   Message application id
+   hop-by-hop-id:    Message hop by hop id. Sets '0' by default
+   end-by-end-id:    Message end by end id. Sets '0' by default
+-->
+
+<!ATTLIST avp name CDATA #IMPLIED code CDATA #IMPLIED vendor-code CDATA #IMPLIED flags CDATA #IMPLIED data CDATA #IMPLIED hex-data CDATA #IMPLIED alias CDATA #IMPLIED>
+<!--
+   name:   Avp name within working stack (dictionary identifier)
+
+   In order to get more coding capabilities, avp code, vendor-id and flags could be established instead of former avp name,
+    but neither of them are allowed if 'name' is provided (and vice versa):
+
+   code:          Avp code
+   vendor-code:   Avp vendor code
+   flags:         Avp flags byte value (0-255) where standard bit set for flags is 'VMPr rrrr': (V)endor-specific, (M)andatory, end to end encry(P)tion and r(eserved)
+   alias:         Descriptive/helper field for certain numeric data values. Aliases are defined at diameter dictionary, but are ignored (not checked) at xml message parsing
+                  The reason to include it in dtd definition, is because xml messages traced by the diameter codec could add alias field for some Avps
+
+
+   data:          Natural string representation for avp data. Specially applicable with numbers and printable strings, but also
+                   useful for certain formats which could be easily understandable in such friendly/smart representation. We will
+                   achieve different human-readable strings depending on data format:
+
+                     [ OctetString ] (if printable, but not recommended)
+                     [ Integer32, Integer64, Unsigned32, Unsigned64, Float32, Float64 ] (normal number representation)
+                     [ Time ] (NTP timestamp, normal number representation)
+                     [ Address ] ('<type (IANA Address Family Number)>|<value>' representation; i.e. '1|192.168.0.1'(IPv4), '8|34616279266'(E164), etc.
+                                 Type (and pipe) field could be avoided for IPv4 and IPv6 address types (a light parse checking is done: one colon for
+                                 IPv6, one dot for IPv4). Internal engine always includes type on data field, which is also recommended for inputs.
+                                 Currently, only IPv4, IPv6 and E164 address types have a known printable presentation, anyway using printable format
+                                 for another types will encode the address value directly as E164 does)
+                     [ UTF8String, DiameterIdentity, DiameterURI ] (printable)
+                     [ IPFilterRule, QoSFilterRule ] (uses ASCII charset, printable)
+
+                     New application formats must define specific natural representation for internal raw data
+
+   hex-data:      Hexadecimal octet sequence representation (i.e. 'af012fb3', with even number of digits). Suitable for whatever kind
+                   of diameter format, but mandatory for non printable information. OctetString usually transport non human-readable
+                   data and should better be encoded within this field although being printable. Unknown avps (which fails identifying
+                   provided name or code/vendor-code) must always use this representation.
+
+   Xml representation for decoded messages shows natural content except for 'OctetString' format and unknown avps. Anyway, when printable,
+    OctetString could show such information at data field apart from hex-data, because many implementations use this format to transport
+    readable-string data. In general, one of the data fields is mandatory except for 'Grouped' type (its data is another level of avps).
+   Application-specific formats must decide the way to represent its contents, being recommended to use a natural representation if possible,
+    because xml is read by humans with testing and monitoring purposes.
+-->
+
+
+
+[12/04/2015 15:32:48] Debug | source/xml/DTDMemory.cpp (74) | Temporary file | /tmp/anna.xml.18781.dtd
+
+[12/04/2015 15:32:48] Debug | source/xml/DTDMemory.cpp (0) | anna::xml::DTDMemory::parse | end
+
+[12/04/2015 15:32:48] Debug | source/xml/DTD.cpp (0) | anna::xml::DTD::initialize | end
+
+[12/04/2015 15:32:48] Debug | source/xml/DTD.cpp (58) | anna::xml::DTD::initialize | begin
+
+[12/04/2015 15:32:48] Debug | source/xml/DTDMemory.cpp (69) | anna::xml::DTDMemory::parse | begin
+
+[12/04/2015 15:32:48] Debug | source/xml/DTDMemory.cpp (73) | DTD | <?xml version="1.0" encoding="UTF-8"?>
+<!-- Diameter dictionary DTD -->
+
+<!-- <!ELEMENT dictionary (format*, vendor+, avp+, command+)> allowed empty dictionary load: diameter base protocol would be harcoded -->
+<!ELEMENT dictionary (format*, vendor*, avp*, command*)>
+<!ATTLIST dictionary name CDATA #REQUIRED>
+<!--
+   Dictionary definitions
+
+   name: Dictionary name
+-->
+
+<!ELEMENT format EMPTY>
+<!ATTLIST format name CDATA #REQUIRED parent-type ( OctetString | Integer32 | Integer64 | Unsigned32 | Unsigned64 | Float32 | Float64 ) #REQUIRED>
+<!--
+   Format record
+
+   name:        Format type unique name
+   parent-type: Format parent type within diameter basics: OctetString, Integer32, Integer64, Unsigned32, Unsigned64, Float32, Float64
+-->
+
+<!ELEMENT vendor EMPTY>
+<!ATTLIST vendor name CDATA #REQUIRED code CDATA #REQUIRED>
+<!--
+   Vendor record
+
+   name: Vendor unique name
+   code: Vendor numeric code
+-->
+
+<!ELEMENT avp (single | grouped)>
+<!ATTLIST avp name CDATA #REQUIRED code CDATA #REQUIRED vendor-name CDATA #IMPLIED may-encrypt (yes | no) #IMPLIED v-bit (must | may | shouldnot | mustnot) #IMPLIED m-bit (must | may | shouldnot | mustnot) #IMPLIED p-bit (must | may | shouldnot | mustnot) #IMPLIED>
+<!--
+   Avp record
+
+   name:          Avp unique name
+   code:          Avp numeric code
+   vendor-name:   Avp vendor name with vendor-id value. Gets IETF (zero value) when missing
+   may-encrypt:   Avp data may be encrypted (yes, no). By default is 'no'
+   v-bit:         Avp vendor-specific bit rule (must, may, shouldnot, mustnot). By default is 'mustnot'
+   m-bit:         Avp mandatory bit rule (must, may, shouldnot, mustnot). By default is 'may'
+   p-bit:         Avp protected (encryption) bit rule (must, may, shouldnot, mustnot). By default is 'may'
+-->
+
+<!ELEMENT single (label*)>
+<!ATTLIST single format-name CDATA #REQUIRED enum CDATA #IMPLIED>
+<!--
+   Non-grouped avp struct
+
+   format-name: Avp format type name (RFC3588: 'OctetString, Integer32, Integer64, Unsigned32, Unsigned64, Float32, Float64, Address, Time, UTF8String, DiameterIdentity, DiameterURI, Enumerated, IPFilterRule, QoSFilterRule' or application format data type names)
+   enum:        Enum values restriction for enumerated-format avp: '[i][,[j]][,[m-n]...]'
+-->
+
+<!ELEMENT label EMPTY>
+<!ATTLIST label data CDATA #REQUIRED alias CDATA #REQUIRED>
+<!--
+   Mostly used with enumerated-type avps
+
+   data:    Specific avp data
+   alias:   Data-linked name
+-->
+
+<!ELEMENT grouped (avprule+)>
+<!--
+   Grouped avp struct
+-->
+
+<!ELEMENT avprule EMPTY>
+<!ATTLIST avprule id CDATA #REQUIRED type (Fixed | Mandatory | Optional) #REQUIRED qual CDATA #IMPLIED>
+<!--
+   Avp rule definition
+
+   id:   Avp name reference. Generic AVP is harcoded with 'AVP' name
+   type: Avp type (Fixed, Mandatory, Optional)
+   qual: Avp qualifier: *:0-inf; x*:x-inf; *x:0-x; x*y:x-y; missing:1(Fixed, Mandatory), 0-1(Optional)
+-->
+
+<!ELEMENT command (avprule*)>
+<!ATTLIST command name CDATA #REQUIRED code CDATA #REQUIRED type (Request | Answer) #REQUIRED>
+<!--
+   Command record
+
+   name:       Command unique name
+   code:       Command numeric code
+   type:       Command type (Request, Answer)
+-->
+
+
+
+[12/04/2015 15:32:48] Debug | source/xml/DTDMemory.cpp (74) | Temporary file | /tmp/anna.xml.18781.dtd
+
+[12/04/2015 15:32:48] Debug | source/xml/DTDMemory.cpp (0) | anna::xml::DTDMemory::parse | end
+
+[12/04/2015 15:32:48] Debug | source/xml/DTD.cpp (0) | anna::xml::DTD::initialize | end
+
+[12/04/2015 15:32:48] Debug | source/diameter/stack/Dictionary.cpp (850) | Loading diameter dictionary from 'dictionary.xml' ...
+
+[12/04/2015 15:32:48] Debug | source/xml/Document.cpp (73) | anna::xml::Document::initialize (char*) | begin
+
+[12/04/2015 15:32:48] Debug | source/xml/DocumentFile.cpp (59) | anna::xml::DocumentFile::do_initialize | begin
+
+[12/04/2015 15:32:48] Debug | source/xml/DocumentFile.cpp (65) | xml::DocumentFile::do_initialize | Filename: dictionary.xml
+
+[12/04/2015 15:32:48] Debug | source/xml/DocumentFile.cpp (0) | anna::xml::DocumentFile::do_initialize | end
+
+[12/04/2015 15:32:48] Debug | source/xml/Document.cpp (0) | anna::xml::Document::initialize (char*) | end
+
+[12/04/2015 15:32:48] Debug | source/xml/Parser.cpp (88) | anna::xml::Parser::apply(Document,DTD) | begin
+
+[12/04/2015 15:32:48] Debug | source/xml/Parser.cpp (98) | anna::xml::Parser::apply (_xmlDoc) | begin
+
+[12/04/2015 15:32:48] Debug | source/xml/Parser.cpp (231) | anna::xml::Parser::setupEncoding | Encoding: none
+
+[12/04/2015 15:32:48] Debug | source/xml/Parser.cpp (0) | anna::xml::Parser::apply (_xmlDoc) | end
+
+[12/04/2015 15:32:48] Debug | source/xml/Parser.cpp (0) | anna::xml::Parser::apply(Document,DTD) | end
+
+[12/04/2015 15:32:48] Debug | source/diameter/stack/Dictionary.cpp (870) | 
+------------------------------------- Name -------------------------------------
+Gx and Rx diameter interfaces
+
+------------------------------------ Formats -----------------------------------
+(Diameter RFC-3588 type)    'Address', derived from 'OctetString'
+(Diameter RFC-3588 type)    'DiameterIdentity', derived from 'OctetString'
+(Diameter RFC-3588 type)    'DiameterURI', derived from 'OctetString'
+(Diameter RFC-3588 type)    'Enumerated', derived from 'Integer32'
+(Diameter RFC-3588 type)    'Float32'
+(Diameter RFC-3588 type)    'Float64'
+(Diameter RFC-3588 type)    'Grouped'
+(Diameter RFC-3588 type)    'IPFilterRule', derived from 'OctetString'
+(Diameter RFC-3588 type)    'Integer32'
+(Diameter RFC-3588 type)    'Integer64'
+(Diameter RFC-3588 type)    'OctetString'
+(Diameter RFC-3588 type)    'QoSFilterRule', derived from 'OctetString'
+(Diameter RFC-3588 type)    'Time', derived from 'OctetString'
+(Diameter RFC-3588 type)    'UTF8String', derived from 'OctetString'
+(Diameter RFC-3588 type)    'Unsigned32'
+(Diameter RFC-3588 type)    'Unsigned64'
+
+------------------------------ Vendors (3 entries) -----------------------------
+'IETF'(0)
+'3GPP'(10415)
+'ETSI'(13019)
+
+------------------------------ Avps (331 entries) ------------------------------
+'AVP'(0,0)|Format: 'Any'|FlagRules: may(M,P), mustnot(V), mayEncypt(N)
+'User-Name'(1,0)|Format: 'UTF8String', derived from 'OctetString'|FlagRules: must(M), may(P), mustnot(V), mayEncypt(Y)
+'NAS-IP-Address'(4,0)|Format: 'OctetString'|FlagRules: must(M), may(P), mustnot(V), mayEncypt(Y)
+'Framed-IP-Address'(8,0)|Format: 'OctetString'|FlagRules: may(M,P), mustnot(V), mayEncypt(N)
+'Filter-Id'(11,0)|Format: 'UTF8String', derived from 'OctetString'|FlagRules: may(M,P), mustnot(V), mayEncypt(N)
+'Class'(25,0)|Format: 'OctetString'|FlagRules: must(M), may(P), mustnot(V), mayEncypt(Y)
+'Session-Timeout'(27,0)|Format: 'Unsigned32'|FlagRules: must(M), may(P), mustnot(V), mayEncypt(N)
+'Called-Station-Id'(30,0)|Format: 'UTF8String', derived from 'OctetString'|FlagRules: may(M,P), mustnot(V), mayEncypt(N)
+'Proxy-State'(33,0)|Format: 'OctetString'|FlagRules: must(M), mustnot(V,P), mayEncypt(N)
+'Accounting-Session-Id'(44,0)|Format: 'OctetString'|FlagRules: must(M), may(P), mustnot(V), mayEncypt(Y)
+'Acct-Multi-Session-Id'(50,0)|Format: 'UTF8String', derived from 'OctetString'|FlagRules: must(M), may(P), mustnot(V), mayEncypt(Y)
+'Event-Timestamp'(55,0)|Format: 'Time', derived from 'OctetString'|FlagRules: must(M), may(P), mustnot(V), mayEncypt(N)
+'Acct-Interim-Interval'(85,0)|Format: 'Unsigned32'|FlagRules: must(M), may(P), mustnot(V), mayEncypt(Y)
+'Framed-IPv6-Prefix'(97,0)|Format: 'OctetString'|FlagRules: may(M,P), mustnot(V), mayEncypt(N)
+'Host-IP-Address'(257,0)|Format: 'Address', derived from 'OctetString'|FlagRules: must(M), may(P), mustnot(V), mayEncypt(N)
+'Auth-Application-Id'(258,0)|Format: 'Unsigned32'|FlagRules: must(M), may(P), mustnot(V), mayEncypt(N)
+'Acct-Application-Id'(259,0)|Format: 'Unsigned32'|FlagRules: must(M), may(P), mustnot(V), mayEncypt(N)
+     ERICSSON_SCAP (19302)
+
+'Vendor-Specific-Application-Id'(260,0)|Format: 'Grouped'|FlagRules: must(M), may(P), mustnot(V), mayEncypt(N)
+   1*[Vendor-Id].....................................(266,0)
+   *1[Auth-Application-Id]...........................(258,0)
+   *1[Acct-Application-Id]...........................(259,0)
+
+'Redirect-Host-Usage'(261,0)|Format: 'Enumerated', derived from 'Integer32'|FlagRules: must(M), may(P), mustnot(V), mayEncypt(N)|Allowed enum values: 0-6
+     DONT_CACHE (0)
+     ALL_SESSION (1)
+     ALL_REALM (2)
+     REALM_AND_APPLICATION (3)
+     ALL_APPLICATION (4)
+     ALL_HOST (5)
+     ALL_USER (6)
+
+'Redirect-Max-Cache-Time'(262,0)|Format: 'Unsigned32'|FlagRules: must(M), may(P), mustnot(V), mayEncypt(N)
+'Session-Id'(263,0)|Format: 'UTF8String', derived from 'OctetString'|FlagRules: must(M), may(P), mustnot(V), mayEncypt(Y)
+'Origin-Host'(264,0)|Format: 'DiameterIdentity', derived from 'OctetString'|FlagRules: must(M), may(P), mustnot(V), mayEncypt(N)
+'Supported-Vendor-Id'(265,0)|Format: 'Unsigned32'|FlagRules: must(M), may(P), mustnot(V), mayEncypt(N)
+'Vendor-Id'(266,0)|Format: 'Unsigned32'|FlagRules: must(M), may(P), mustnot(V), mayEncypt(N)
+'Firmware-Revision'(267,0)|Format: 'Unsigned32'|FlagRules: mustnot(V,M,P), mayEncypt(N)
+'Result-Code'(268,0)|Format: 'Unsigned32'|FlagRules: must(M), may(P), mustnot(V), mayEncypt(N)
+     DIAMETER_MULTI_ROUND_AUTH (1001)
+     DIAMETER_SUCCESS (2001)
+     DIAMETER_LIMITED_SUCCESS (2002)
+     DIAMETER_COMMAND_UNSUPPORTED (3001)
+     DIAMETER_UNABLE_TO_DELIVER (3002)
+     DIAMETER_REALM_NOT_SERVED (3003)
+     DIAMETER_TOO_BUSY (3004)
+     DIAMETER_LOOP_DETECTED (3005)
+     DIAMETER_REDIRECT_INDICATION (3006)
+     DIAMETER_APPLICATION_UNSUPPORTED (3007)
+     DIAMETER_INVALID_HDR_BITS (3008)
+     DIAMETER_INVALID_AVP_BITS (3009)
+     DIAMETER_UNKNOWN_PEER (3010)
+     DIAMETER_AUTHENTICATION_REJECTED (4001)
+     DIAMETER_OUT_OF_SPACE (4002)
+     ELECTION_LOST (4003)
+     DIAMETER_ERROR_MIP_REPLY_FAILURE (4005)
+     DIAMETER_ERROR_HA_NOT_AVAILABLE (4006)
+     DIAMETER_ERROR_BAD_KEY (4007)
+     DIAMETER_ERROR_MIP_FILTER_NOT_SUPPORTED (4008)
+     DIAMETER_END_USER_SERVICE_DENIED (4010)
+     DIAMETER_CREDIT_CONTROL_NOT_APPLICABLE (4011)
+     DIAMETER_CREDIT_LIMIT_REACHED (4012)
+     DIAMETER_END_USER_SERVICE_DENIED (4241)
+     DIAMETER_AVP_UNSUPPORTED (5001)
+     DIAMETER_UNKNOWN_SESSION_ID (5002)
+     DIAMETER_AUTHORIZATION_REJECTED (5003)
+     DIAMETER_INVALID_AVP_VALUE (5004)
+     DIAMETER_MISSING_AVP (5005)
+     DIAMETER_RESOURCES_EXCEEDED (5006)
+     DIAMETER_CONTRADICTING_AVPS (5007)
+     DIAMETER_AVP_NOT_ALLOWED (5008)
+     DIAMETER_AVP_OCCURS_TOO_MANY_TIMES (5009)
+     DIAMETER_NO_COMMON_APPLICATION (5010)
+     DIAMETER_UNSUPPORTED_VERSION (5011)
+     DIAMETER_UNABLE_TO_COMPLY (5012)
+     DIAMETER_INVALID_BIT_IN_HEADER (5013)
+     DIAMETER_INVALID_AVP_LENGTH (5014)
+     DIAMETER_INVALID_MESSAGE_LENGTH (5015)
+     DIAMETER_INVALID_AVP_BIT_COMBO (5016)
+     DIAMETER_NO_COMMON_SECURITY (5017)
+     DIAMETER_ERROR_NO_FOREIGN_HA_SERVICE (5024)
+     DIAMETER_ERROR_END_TO_END_MIP_KEY_ENCRYPTION (5025)
+     DIAMETER_USER_UNKNOWN (5030)
+     DIAMETER_RATING_FAILED (5031)
+     DIAMETER_END_USER_NOT_FOUND (5241)
+
+'Product-Name'(269,0)|Format: 'UTF8String', derived from 'OctetString'|FlagRules: mustnot(V,M,P), mayEncypt(N)
+'Session-Binding'(270,0)|Format: 'Unsigned32'|FlagRules: must(M), may(P), mustnot(V), mayEncypt(Y)
+     RE_AUTH (1)
+     STR (2)
+     ACCOUNTING (4)
+
+'Session-Server-Failover'(271,0)|Format: 'Enumerated', derived from 'Integer32'|FlagRules: must(M), may(P), mustnot(V), mayEncypt(Y)|Allowed enum values: 0-3
+     REFUSE_SERVICE (0)
+     TRY_AGAIN (1)
+     ALLOW_SERVICE (2)
+     TRY_AGAIN_ALLOW_SERVICE (3)
+
+'Multi-Round-Time-Out'(272,0)|Format: 'Unsigned32'|FlagRules: must(M), may(P), mustnot(V), mayEncypt(Y)
+'Disconnect-Cause'(273,0)|Format: 'Enumerated', derived from 'Integer32'|FlagRules: must(M), may(P), mustnot(V), mayEncypt(N)|Allowed enum values: 0-2
+     REBOOTING (0)
+     BUSY (1)
+     DO_NOT_WANT_TO_TALK_TO_YOU (2)
+
+'Auth-Request-Type'(274,0)|Format: 'Enumerated', derived from 'Integer32'|FlagRules: must(M), may(P), mustnot(V), mayEncypt(N)|Allowed enum values: 0-3
+     RESERVED (0)
+     AUTHENTICATE_ONLY (1)
+     AUTHORIZE_ONLY (2)
+     AUTHORIZE_AUTHENTICATE (3)
+
+'Auth-Grace-Period'(276,0)|Format: 'Unsigned32'|FlagRules: must(M), may(P), mustnot(V), mayEncypt(N)
+'Auth-Session-State'(277,0)|Format: 'Enumerated', derived from 'Integer32'|FlagRules: must(M), may(P), mustnot(V), mayEncypt(N)|Allowed enum values: 0-1
+     STATE_MAINTAINED (0)
+     NO_STATE_MAINTAINED (1)
+
+'Origin-State-Id'(278,0)|Format: 'Unsigned32'|FlagRules: must(M), may(P), mustnot(V), mayEncypt(N)
+'Failed-AVP'(279,0)|Format: 'Grouped'|FlagRules: must(M), may(P), mustnot(V), mayEncypt(N)
+   1*{AVP}...........................................(0,0)
+
+'Proxy-Host'(280,0)|Format: 'DiameterIdentity', derived from 'OctetString'|FlagRules: must(M), mustnot(V,P), mayEncypt(N)
+'Error-Message'(281,0)|Format: 'UTF8String', derived from 'OctetString'|FlagRules: may(P), mustnot(V,M), mayEncypt(N)
+'Route-Record'(282,0)|Format: 'DiameterIdentity', derived from 'OctetString'|FlagRules: must(M), mustnot(V,P), mayEncypt(N)
+'Destination-Realm'(283,0)|Format: 'DiameterIdentity', derived from 'OctetString'|FlagRules: must(M), may(P), mustnot(V), mayEncypt(N)
+'Proxy-Info'(284,0)|Format: 'Grouped'|FlagRules: must(M), mustnot(V,P), mayEncypt(N)
+     {Proxy-Host}....................................(280,0)
+     {Proxy-State}...................................(33,0)
+    *[AVP]...........................................(0,0)
+
+'Re-Auth-Request-Type'(285,0)|Format: 'Enumerated', derived from 'Integer32'|FlagRules: must(M), may(P), mustnot(V), mayEncypt(N)|Allowed enum values: 0-1
+     AUTHORIZE_ONLY (0)
+     AUTHORIZE_AUTHENTICATE (1)
+
+'Accounting-Sub-Session-Id'(287,0)|Format: 'Unsigned64'|FlagRules: must(M), may(P), mustnot(V), mayEncypt(Y)
+'Authorization-Lifetime'(291,0)|Format: 'Unsigned32'|FlagRules: must(M), may(P), mustnot(V), mayEncypt(N)
+'Redirect-Host'(292,0)|Format: 'DiameterURI', derived from 'OctetString'|FlagRules: must(M), may(P), mustnot(V), mayEncypt(N)
+'Destination-Host'(293,0)|Format: 'DiameterIdentity', derived from 'OctetString'|FlagRules: must(M), may(P), mustnot(V), mayEncypt(N)
+'Error-Reporting-Host'(294,0)|Format: 'DiameterIdentity', derived from 'OctetString'|FlagRules: may(P), mustnot(V,M), mayEncypt(N)
+'Termination-Cause'(295,0)|Format: 'Enumerated', derived from 'Integer32'|FlagRules: must(M), may(P), mustnot(V), mayEncypt(N)|Allowed enum values: 1-8
+     DIAMETER_LOGOUT (1)
+     DIAMETER_SERVICE_NOT_PROVIDED (2)
+     DIAMETER_BAD_ANSWER (3)
+     DIAMETER_ADMINISTRATIVE (4)
+     DIAMETER_LINK_BROKEN (5)
+     DIAMETER_AUTH_EXPIRED (6)
+     DIAMETER_USER_MOVED (7)
+     DIAMETER_SESSION_TIMEOUT (8)
+
+'Origin-Realm'(296,0)|Format: 'DiameterIdentity', derived from 'OctetString'|FlagRules: must(M), may(P), mustnot(V), mayEncypt(N)
+'Experimental-Result'(297,0)|Format: 'Grouped'|FlagRules: must(M), may(P), mustnot(V), mayEncypt(N)
+     {Vendor-Id}.....................................(266,0)
+     {Experimental-Result-Code}......................(298,0)
+
+'Experimental-Result-Code'(298,0)|Format: 'Unsigned32'|FlagRules: must(M), may(P), mustnot(V), mayEncypt(N)
+     INVALID_SERVICE_INFORMATION (5061)
+     FILTER_RESTRICTIONS (5062)
+     REQUESTED_SERVICE_NOT_AUTHORIZED (5063)
+     DUPLICATED_AF_SESSION (5064)
+     IP-CAN_SESSION_NOT_AVAILABLE (5065)
+
+'Inband-Security-Id'(299,0)|Format: 'Unsigned32'|FlagRules: must(M), may(P), mustnot(V), mayEncypt(N)
+     NO_INBAND_SECURITY (0)
+     TLS (1)
+
+'E2E-Sequence-AVP'(300,0)|Format: 'Grouped'|FlagRules: must(M), may(P), mustnot(V), mayEncypt(Y)
+    *[AVP]...........................................(0,0)
+
+'CC-Correlation-Id'(411,0)|Format: 'OctetString'|FlagRules: may(M,P), mustnot(V), mayEncypt(Y)
+'CC-Input-Octets'(412,0)|Format: 'Unsigned64'|FlagRules: must(M), may(P), mustnot(V), mayEncypt(Y)
+'CC-Money'(413,0)|Format: 'Grouped'|FlagRules: must(M), may(P), mustnot(V), mayEncypt(Y)
+     <Unit-Value>....................................(445,0)
+     [Currency-Code].................................(425,0)
+
+'CC-Output-Octets'(414,0)|Format: 'Unsigned64'|FlagRules: must(M), may(P), mustnot(V), mayEncypt(Y)
+'CC-Request-Number'(415,0)|Format: 'Unsigned32'|FlagRules: must(M), may(P), mustnot(V), mayEncypt(Y)
+'CC-Request-Type'(416,0)|Format: 'Enumerated', derived from 'Integer32'|FlagRules: must(M), may(P), mustnot(V), mayEncypt(Y)|Allowed enum values: 1-4
+     INITIAL_REQUEST (1)
+     UPDATE_REQUEST (2)
+     TERMINATION_REQUEST (3)
+     EVENT_REQUEST (4)
+
+'CC-Service-Specific-Units'(417,0)|Format: 'Unsigned64'|FlagRules: must(M), may(P), mustnot(V), mayEncypt(Y)
+'CC-Session-Failover'(418,0)|Format: 'Enumerated', derived from 'Integer32'|FlagRules: must(M), may(P), mustnot(V), mayEncypt(Y)|Allowed enum values: 0-1
+     FAILOVER_NOT_SUPPORTED (0)
+     FAILOVER_SUPPORTED (1)
+
+'CC-Sub-Session-Id'(419,0)|Format: 'Unsigned64'|FlagRules: must(M), may(P), mustnot(V), mayEncypt(Y)
+'CC-Time'(420,0)|Format: 'Unsigned32'|FlagRules: must(M), may(P), mustnot(V), mayEncypt(Y)
+'CC-Total-Octets'(421,0)|Format: 'Unsigned64'|FlagRules: must(M), may(P), mustnot(V), mayEncypt(Y)
+'Check-Balance-Result'(422,0)|Format: 'Enumerated', derived from 'Integer32'|FlagRules: must(M), may(P), mustnot(V), mayEncypt(Y)|Allowed enum values: 0-1
+     ENOUGH_CREDIT (0)
+     NO_CREDIT (1)
+
+'Cost-Information'(423,0)|Format: 'Grouped'|FlagRules: must(M), may(P), mustnot(V), mayEncypt(Y)
+     {Unit-Value}....................................(445,0)
+     {Currency-Code}.................................(425,0)
+     [Cost-Unit].....................................(424,0)
+
+'Cost-Unit'(424,0)|Format: 'UTF8String', derived from 'OctetString'|FlagRules: must(M), may(P), mustnot(V), mayEncypt(Y)
+'Currency-Code'(425,0)|Format: 'Unsigned32'|FlagRules: must(M), may(P), mustnot(V), mayEncypt(Y)
+'Credit-Control'(426,0)|Format: 'Enumerated', derived from 'Integer32'|FlagRules: must(M), may(P), mustnot(V), mayEncypt(Y)|Allowed enum values: 0-1
+     CREDIT_AUTHORIZATION (0)
+     RE_AUTHORIZATION (1)
+
+'Credit-Control-Failure-Handling'(427,0)|Format: 'Enumerated', derived from 'Integer32'|FlagRules: must(M), may(P), mustnot(V), mayEncypt(Y)|Allowed enum values: 0-2
+     TERMINATE (0)
+     CONTINUE (1)
+     RETRY_AND_TERMINATE (2)
+
+'Direct-Debiting-Failure-Handling'(428,0)|Format: 'Enumerated', derived from 'Integer32'|FlagRules: must(M), may(P), mustnot(V), mayEncypt(Y)|Allowed enum values: 0-1
+     TERMINATE_OR_BUFFER (0)
+     CONTINUE (1)
+
+'Exponent'(429,0)|Format: 'Integer32'|FlagRules: must(M), may(P), mustnot(V), mayEncypt(Y)
+'Final-Unit-Indication'(430,0)|Format: 'Grouped'|FlagRules: must(M), may(P), mustnot(V), mayEncypt(Y)
+     <Final-Unit-Action>.............................(449,0)
+    *[Restriction-Filter-Rule].......................(438,0)
+    *[Filter-Id].....................................(11,0)
+     [Redirect-Server]...............................(434,0)
+
+'Granted-Service-Unit'(431,0)|Format: 'Grouped'|FlagRules: must(M), may(P), mustnot(V), mayEncypt(Y)
+     [Tariff-Time-Change]............................(451,0)
+     [CC-Time].......................................(420,0)
+     [CC-Money]......................................(413,0)
+     [CC-Total-Octets]...............................(421,0)
+     [CC-Input-Octets]...............................(412,0)
+     [CC-Output-Octets]..............................(414,0)
+     [CC-Service-Specific-Units].....................(417,0)
+    *[AVP]...........................................(0,0)
+
+'Rating-Group'(432,0)|Format: 'Unsigned32'|FlagRules: must(M), may(P), mustnot(V), mayEncypt(Y)
+'Redirect-Address-Type'(433,0)|Format: 'Enumerated', derived from 'Integer32'|FlagRules: must(M), may(P), mustnot(V), mayEncypt(Y)|Allowed enum values: 0-3
+     IPv4_Address (0)
+     IPv6_Address (1)
+     URL (2)
+     SIP_URL (3)
+
+'Redirect-Server'(434,0)|Format: 'Grouped'|FlagRules: must(M), may(P), mustnot(V), mayEncypt(Y)
+     <Redirect-Address-Type>.........................(433,0)
+     <Redirect-Server-Address>.......................(435,0)
+
+'Redirect-Server-Address'(435,0)|Format: 'UTF8String', derived from 'OctetString'|FlagRules: must(M), may(P), mustnot(V), mayEncypt(Y)
+'Requested-Action'(436,0)|Format: 'Enumerated', derived from 'Integer32'|FlagRules: must(M), may(P), mustnot(V), mayEncypt(Y)|Allowed enum values: 0-3
+     DIRECT_DEBITING (0)
+     REFUND_ACCOUNT (1)
+     CHECK_BALANCE (2)
+     PRICE_ENQUIRY (3)
+
+'Requested-Service-Unit'(437,0)|Format: 'Grouped'|FlagRules: must(M), may(P), mustnot(V), mayEncypt(Y)
+     [CC-Time].......................................(420,0)
+     [CC-Money]......................................(413,0)
+     [CC-Total-Octets]...............................(421,0)
+     [CC-Input-Octets]...............................(412,0)
+     [CC-Output-Octets]..............................(414,0)
+     [CC-Service-Specific-Units].....................(417,0)
+    *[AVP]...........................................(0,0)
+
+'Restriction-Filter-Rule'(438,0)|Format: 'IPFilterRule', derived from 'OctetString'|FlagRules: must(M), may(P), mustnot(V), mayEncypt(Y)
+'Service-Identifier'(439,0)|Format: 'Unsigned32'|FlagRules: must(M), may(P), mustnot(V), mayEncypt(Y)
+'Service-Parameter-Info'(440,0)|Format: 'Grouped'|FlagRules: may(M,P), mustnot(V), mayEncypt(Y)
+     {Service-Parameter-Type}........................(441,0)
+     {Service-Parameter-Value}.......................(442,0)
+
+'Service-Parameter-Type'(441,0)|Format: 'Unsigned32'|FlagRules: may(M,P), mustnot(V), mayEncypt(Y)
+'Service-Parameter-Value'(442,0)|Format: 'OctetString'|FlagRules: may(M,P), mustnot(V), mayEncypt(Y)
+'Subscription-Id'(443,0)|Format: 'Grouped'|FlagRules: must(M), may(P), mustnot(V), mayEncypt(Y)
+     <Subscription-Id-Type>..........................(450,0)
+     <Subscription-Id-Data>..........................(444,0)
+
+'Subscription-Id-Data'(444,0)|Format: 'UTF8String', derived from 'OctetString'|FlagRules: must(M), may(P), mustnot(V), mayEncypt(Y)
+'Unit-Value'(445,0)|Format: 'Grouped'|FlagRules: must(M), may(P), mustnot(V), mayEncypt(Y)
+     <Value-Digits>..................................(447,0)
+     [Exponent]......................................(429,0)
+
+'Used-Service-Unit'(446,0)|Format: 'Grouped'|FlagRules: must(M), may(P), mustnot(V), mayEncypt(Y)
+     [Tariff-Change-Usage]...........................(452,0)
+     [CC-Time].......................................(420,0)
+     [CC-Money]......................................(413,0)
+     [CC-Total-Octets]...............................(421,0)
+     [CC-Input-Octets]...............................(412,0)
+     [CC-Output-Octets]..............................(414,0)
+     [CC-Service-Specific-Units].....................(417,0)
+    *[AVP]...........................................(0,0)
+
+'Value-Digits'(447,0)|Format: 'Integer64'|FlagRules: must(M), may(P), mustnot(V), mayEncypt(Y)
+'Validity-Time'(448,0)|Format: 'Unsigned32'|FlagRules: must(M), may(P), mustnot(V), mayEncypt(Y)
+'Final-Unit-Action'(449,0)|Format: 'Enumerated', derived from 'Integer32'|FlagRules: must(M), may(P), mustnot(V), mayEncypt(Y)|Allowed enum values: 0-2
+     TERMINATE (0)
+     REDIRECT (1)
+     RESTRICT_ACCESS (2)
+
+'Subscription-Id-Type'(450,0)|Format: 'Enumerated', derived from 'Integer32'|FlagRules: must(M), may(P), mustnot(V), mayEncypt(Y)|Allowed enum values: 0-4
+     END_USER_E164 (0)
+     END_USER_IMSI (1)
+     END_USER_SIP_URL (2)
+     END_USER_NAI (3)
+     END_USER_PRIVATE (4)
+
+'Tariff-Time-Change'(451,0)|Format: 'Time', derived from 'OctetString'|FlagRules: must(M), may(P), mustnot(V), mayEncypt(Y)
+'Tariff-Change-Usage'(452,0)|Format: 'Enumerated', derived from 'Integer32'|FlagRules: must(M), may(P), mustnot(V), mayEncypt(Y)|Allowed enum values: 0-2
+     UNIT_BEFORE_TARIFF_CHANGE (0)
+     UNIT_AFTER_TARIFF_CHANGE (1)
+     UNIT_INDETERMINATE (2)
+
+'G-S-U-Pool-Identifier'(453,0)|Format: 'Unsigned32'|FlagRules: must(M), may(P), mustnot(V), mayEncypt(Y)
+'CC-Unit-Type'(454,0)|Format: 'Enumerated', derived from 'Integer32'|FlagRules: must(M), may(P), mustnot(V), mayEncypt(Y)|Allowed enum values: 0-5
+     TIME (0)
+     MONEY (1)
+     TOTAL_OCTETS (2)
+     INPUT_OCTETS (3)
+     OUTPUT_OCTETS (4)
+     SERVICE_SPECIFIC_UNITS (5)
+
+'Multiple-Services-Indicator'(455,0)|Format: 'Enumerated', derived from 'Integer32'|FlagRules: must(M), may(P), mustnot(V), mayEncypt(Y)|Allowed enum values: 0-1
+     MULTIPLE_SERVICES_NOT_SUPPORTED (0)
+     MULTIPLE_SERVICES_SUPPORTED (1)
+
+'Multiple-Services-Credit-Control'(456,0)|Format: 'Grouped'|FlagRules: must(M), may(P), mustnot(V), mayEncypt(Y)
+     [Granted-Service-Unit]..........................(431,0)
+     [Requested-Service-Unit]........................(437,0)
+    *[Used-Service-Unit].............................(446,0)
+     [Tariff-Change-Usage]...........................(452,0)
+    *[Service-Identifier]............................(439,0)
+     [Rating-Group]..................................(432,0)
+    *[G-S-U-Pool-Reference]..........................(457,0)
+     [Validity-Time].................................(448,0)
+     [Result-Code]...................................(268,0)
+     [Final-Unit-Indication].........................(430,0)
+    *[AVP]...........................................(0,0)
+
+'G-S-U-Pool-Reference'(457,0)|Format: 'Grouped'|FlagRules: must(M), may(P), mustnot(V), mayEncypt(Y)
+     {G-S-U-Pool-Identifier}.........................(453,0)
+     {CC-Unit-Type}..................................(454,0)
+     {Unit-Value}....................................(445,0)
+
+'User-Equipment-Info'(458,0)|Format: 'Grouped'|FlagRules: may(M,P), mustnot(V), mayEncypt(Y)
+     {User-Equipment-Info-Type}......................(459,0)
+     {User-Equipment-Info-Value}.....................(460,0)
+
+'User-Equipment-Info-Type'(459,0)|Format: 'Enumerated', derived from 'Integer32'|FlagRules: may(M,P), mustnot(V), mayEncypt(Y)|Allowed enum values: 0-3
+     IMEISV (0)
+     MAC (1)
+     EUI64 (2)
+     MODIFIED_EUI64 (3)
+
+'User-Equipment-Info-Value'(460,0)|Format: 'OctetString'|FlagRules: may(M,P), mustnot(V), mayEncypt(Y)
+'Service-Context-Id'(461,0)|Format: 'UTF8String', derived from 'OctetString'|FlagRules: must(M), may(P), mustnot(V), mayEncypt(Y)
+'Accounting-Record-Type'(480,0)|Format: 'Enumerated', derived from 'Integer32'|FlagRules: must(M), may(P), mustnot(V), mayEncypt(Y)|Allowed enum values: 1-4
+     EVENT_RECORD (1)
+     START_RECORD (2)
+     INTERIM_RECORD (3)
+     STOP_RECORD (4)
+
+'Accounting-Interim-Interval'(482,0)|Format: 'Integer32'|FlagRules: must(M), may(P), mustnot(V), mayEncypt(Y)
+'Accounting-Realtime-Required'(483,0)|Format: 'Enumerated', derived from 'Integer32'|FlagRules: must(M), may(P), mustnot(V), mayEncypt(Y)|Allowed enum values: 1-3
+     DELIVER_AND_GRANT (1)
+     GRANT_AND_STORE (2)
+     GRANT_AND_LOSE (3)
+
+'Accounting-Record-Number'(485,0)|Format: 'Unsigned32'|FlagRules: must(M), may(P), mustnot(V), mayEncypt(Y)
+'3GPP-Charging-Id'(2,10415)|Format: 'Unsigned32'|FlagRules: must(V,M), may(P), mayEncypt(N)
+'3GPP-PDP-Type'(3,10415)|Format: 'Unsigned32'|FlagRules: must(V,M), may(P), mayEncypt(N)
+     IPV4 (0)
+     PPP (1)
+     IPV6 (2)
+
+'3GPP-CG-Address'(4,10415)|Format: 'OctetString'|FlagRules: must(V,M), may(P), mayEncypt(N)
+'3GPP-GPRS-Neg-QoS-Profile'(5,10415)|Format: 'UTF8String', derived from 'OctetString'|FlagRules: must(V,M), may(P), mayEncypt(N)
+'3GPP-SGSN-Address'(6,10415)|Format: 'OctetString'|FlagRules: must(V,M), may(P), mayEncypt(N)
+'3GPP-GGSN-Address'(7,10415)|Format: 'OctetString'|FlagRules: must(V,M), may(P), mayEncypt(N)
+'3GPP-IMSI-MCC-MNC'(8,10415)|Format: 'UTF8String', derived from 'OctetString'|FlagRules: must(V,M), may(P), mayEncypt(N)
+'3GPP-GGSN-MCC-MNC'(9,10415)|Format: 'UTF8String', derived from 'OctetString'|FlagRules: must(V,M), may(P), mayEncypt(N)
+'3GPP-NSAPI'(10,10415)|Format: 'UTF8String', derived from 'OctetString'|FlagRules: must(V,M), may(P), mayEncypt(N)
+'3GPP-Session-Stop-Indicator'(11,10415)|Format: 'OctetString'|FlagRules: must(V,M), may(P), mayEncypt(N)
+'3GPP-Selection-Mode'(12,10415)|Format: 'UTF8String', derived from 'OctetString'|FlagRules: must(V,M), may(P), mayEncypt(N)
+'3GPP-Charging-Characteristics'(13,10415)|Format: 'UTF8String', derived from 'OctetString'|FlagRules: must(V,M), may(P), mayEncypt(N)
+'3GPP-SGSN-IPv6-Address'(15,10415)|Format: 'OctetString'|FlagRules: must(V,M), may(P), mayEncypt(N)
+'3GPP-GGSN-IPv6-Address'(16,10415)|Format: 'OctetString'|FlagRules: must(V,M), may(P), mayEncypt(N)
+'3GPP-SGSN-MCC-MNC'(18,10415)|Format: 'UTF8String', derived from 'OctetString'|FlagRules: must(V,M), may(P), mayEncypt(N)
+'3GGP-IMEISV'(20,10415)|Format: 'OctetString'|FlagRules: must(V,M), may(P), mayEncypt(N)
+'3GPP-Rat-Type'(21,10415)|Format: 'OctetString'|FlagRules: must(V,M), may(P), mayEncypt(N)
+'3GPP-User-Location-Info'(22,10415)|Format: 'OctetString'|FlagRules: must(V,M), may(P), mayEncypt(N)
+'3GPP-MS-TimeZone'(23,10415)|Format: 'OctetString'|FlagRules: must(V,M), may(P), mayEncypt(N)
+'3GPP-CAMEL-Charging-Info'(24,10415)|Format: 'OctetString'|FlagRules: must(V,M), may(P), mayEncypt(N)
+'Abort-Cause'(500,10415)|Format: 'Enumerated', derived from 'Integer32'|FlagRules: must(V,M), may(P), mayEncypt(Y)|Allowed enum values: 0-4
+     BEARER_RELEASED (0)
+     INSUFFICIENT_SERVER_RESOURCES (1)
+     INSUFFICIENT_BEARER_RESOURCES (2)
+     PS_TO_CS_HANDOVER (3)
+     SPONSORED_DATA_CONNECTIVITY_DISALLOWED (4)
+
+'Access-Network-Charging-Address'(501,10415)|Format: 'Address', derived from 'OctetString'|FlagRules: must(V,M), may(P), mayEncypt(Y)
+'Access-Network-Charging-Identifier'(502,10415)|Format: 'Grouped'|FlagRules: must(V,M), may(P), mayEncypt(Y)
+     {Access-Network-Charging-Identifier-Value}......(503,10415)
+    *[Flows].........................................(510,10415)
+
+'Access-Network-Charging-Identifier-Value'(503,10415)|Format: 'OctetString'|FlagRules: must(V,M), may(P), mayEncypt(Y)
+'AF-Application-Identifier'(504,10415)|Format: 'OctetString'|FlagRules: must(V,M), may(P), mayEncypt(Y)
+'AF-Charging-Identifier'(505,10415)|Format: 'OctetString'|FlagRules: must(V,M), may(P), mayEncypt(Y)
+'Flow-Description'(507,10415)|Format: 'IPFilterRule', derived from 'OctetString'|FlagRules: must(V,M), may(P), mayEncypt(Y)
+'Flow-Number'(509,10415)|Format: 'Unsigned32'|FlagRules: must(V,M), may(P), mayEncypt(Y)
+'Flows'(510,10415)|Format: 'Grouped'|FlagRules: must(V,M), may(P), mayEncypt(Y)
+     {Media-Component-Number}........................(518,10415)
+    *[Flow-Number]...................................(509,10415)
+     [Final-Unit-Action].............................(449,0)
+
+'Flow-Status'(511,10415)|Format: 'Enumerated', derived from 'Integer32'|FlagRules: must(V,M), may(P), mayEncypt(Y)|Allowed enum values: 0-15
+     ENABLED-UPLINK (0)
+     ENABLED-DOWNLINK (1)
+     ENABLED (2)
+     DISABLED (3)
+     REMOVED (4)
+
+'Flow-Usage'(512,10415)|Format: 'Enumerated', derived from 'Integer32'|FlagRules: must(V,M), may(P), mayEncypt(Y)|Allowed enum values: 0-15
+     NO_INFORMATION (0)
+     RTCP (1)
+     AF_SIGNALLING (2)
+
+'Specific-Action'(513,10415)|Format: 'Enumerated', derived from 'Integer32'|FlagRules: must(V,M), may(P), mayEncypt(Y)|Allowed enum values: 1-4,6-11
+     CHARGING_CORRELATION_EXCHANGE (1)
+     INDICATION_OF_LOSS_OF_BEARER (2)
+     INDICATION_OF_RECOVERY_OF_BEARER (3)
+     INDICATION_OF_RELEASE_OF_BEARER (4)
+     IP-CAN_CHANGE (6)
+     INDICATION_OF_OUT_OF_CREDIT (7)
+     INDICATION_OF_SUCCESSFUL_RESOURCES_ALLOCATION (8)
+     INDICATION_OF_FAILED_RESOURCES_ALLOCATION (9)
+     INDICATION_OF_LIMITED_PCC_DEPLOYMENT (10)
+     USAGE_REPORT (11)
+
+'Max-Requested-Bandwidth-DL'(515,10415)|Format: 'Unsigned32'|FlagRules: must(V,M), may(P), mayEncypt(Y)
+'Max-Requested-Bandwidth-UL'(516,10415)|Format: 'Unsigned32'|FlagRules: must(V,M), may(P), mayEncypt(Y)
+'Media-Component-Description'(517,10415)|Format: 'Grouped'|FlagRules: must(V,M), may(P), mayEncypt(Y)
+     {Media-Component-Number}........................(518,10415)
+    *[Media-Sub-Component]...........................(519,10415)
+     [AF-Application-Identifier].....................(504,10415)
+     [Media-Type]....................................(520,10415)
+     [Max-Requested-Bandwidth-UL]....................(516,10415)
+     [Max-Requested-Bandwidth-DL]....................(515,10415)
+     [Flow-Status]...................................(511,10415)
+     [Reservation-Priority]..........................(458,13019)
+     [RS-Bandwidth]..................................(522,10415)
+     [RR-Bandwidth]..................................(521,10415)
+    *[Codec-Data]....................................(524,10415)
+
+'Media-Component-Number'(518,10415)|Format: 'Unsigned32'|FlagRules: must(V,M), may(P), mayEncypt(Y)
+'Media-Sub-Component'(519,10415)|Format: 'Grouped'|FlagRules: must(V,M), may(P), mayEncypt(Y)
+     {Flow-Number}...................................(509,10415)
+  0*2[Flow-Description]..............................(507,10415)
+     [Flow-Status]...................................(511,10415)
+     [Flow-Usage]....................................(512,10415)
+     [Max-Requested-Bandwidth-UL]....................(516,10415)
+     [Max-Requested-Bandwidth-DL]....................(515,10415)
+     [AF-Signalling-Protocol]........................(529,10415)
+    *[AVP]...........................................(0,0)
+
+'Media-Type'(520,10415)|Format: 'Enumerated', derived from 'Integer32'|FlagRules: must(V,M), may(P), mayEncypt(Y)|Allowed enum values: 0-6,4294967295
+     OTHER (4294967295)
+     AUDIO (0)
+     VIDEO (1)
+     DATA (2)
+     APPLICATION (3)
+     CONTROL (4)
+     TEXT (5)
+     MESSAGE (6)
+
+'RR-Bandwidth'(521,10415)|Format: 'Unsigned32'|FlagRules: must(V,M), may(P), mayEncypt(Y)
+'RS-Bandwidth'(522,10415)|Format: 'Unsigned32'|FlagRules: must(V,M), may(P), mayEncypt(Y)
+'SIP-Forking-Indication'(523,10415)|Format: 'Enumerated', derived from 'Integer32'|FlagRules: must(V,M), may(P), mayEncypt(Y)|Allowed enum values: 0-1
+     SINGLE_DIALOGUE (0)
+     SEVERAL_DIALOGUES (1)
+
+'Codec-Data'(524,10415)|Format: 'OctetString'|FlagRules: must(V,M), may(P), mayEncypt(Y)
+'Service-URN'(525,10415)|Format: 'OctetString'|FlagRules: must(V,M), may(P), mayEncypt(Y)
+'Acceptable-Service-Info'(526,10415)|Format: 'Grouped'|FlagRules: must(V,M), may(P), mayEncypt(Y)
+    *[Media-Component-Description]...................(517,10415)
+     [Max-Requested-Bandwidth-DL]....................(515,10415)
+     [Max-Requested-Bandwidth-UL]....................(516,10415)
+    *[AVP]...........................................(0,0)
+
+'Service-Info-Status'(527,10415)|Format: 'Enumerated', derived from 'Integer32'|FlagRules: must(V,M), may(P), mayEncypt(Y)|Allowed enum values: 0-1
+     FINAL_SERVICE_INFORMATION (0)
+     PRELIMINARY_SERVICE_INFORMATION (1)
+
+'MPS-Identifier'(528,10415)|Format: 'OctetString'|FlagRules: must(V), may(P), mustnot(M), mayEncypt(Y)
+'AF-Signalling-Protocol'(529,10415)|Format: 'Enumerated', derived from 'Integer32'|FlagRules: must(V), may(P), mustnot(M), mayEncypt(Y)|Allowed enum values: 0-1
+     NO_INFORMATION (0)
+     SIP (1)
+
+'Sponsored-Connectivity-Data'(530,10415)|Format: 'Grouped'|FlagRules: must(V), may(P), mustnot(M), mayEncypt(Y)
+     [Sponsor-Identity]..............................(531,10415)
+     [Application-Service-Provider-Identity].........(532,10415)
+     [Granted-Service-Unit]..........................(431,0)
+     [Used-Service-Unit].............................(446,0)
+    *[AVP]...........................................(0,0)
+
+'Sponsor-Identity'(531,10415)|Format: 'UTF8String', derived from 'OctetString'|FlagRules: must(V), may(P), mustnot(M), mayEncypt(Y)
+'Application-Service-Provider-Identity'(532,10415)|Format: 'UTF8String', derived from 'OctetString'|FlagRules: must(V), may(P), mustnot(M), mayEncypt(Y)
+'Rx-Request-Type'(533,10415)|Format: 'Enumerated', derived from 'Integer32'|FlagRules: must(V), may(P), mustnot(M), mayEncypt(Y)|Allowed enum values: 0-1
+     INITIAL_REQUEST (0)
+     UPDATE_REQUEST (1)
+
+'Server-Name'(602,10415)|Format: 'UTF8String', derived from 'OctetString'|FlagRules: must(V,M), may(P), mayEncypt(N)
+'Server-Capabilities'(603,10415)|Format: 'Grouped'|FlagRules: must(V,M), may(P), mayEncypt(N)
+    *[Mandatory-Capability]..........................(604,10415)
+    *[Optional-Capability]...........................(605,10415)
+    *[Server-Name]...................................(602,10415)
+    *[AVP]...........................................(0,0)
+
+'Mandatory-Capability'(604,10415)|Format: 'Unsigned32'|FlagRules: must(V,M), may(P), mayEncypt(N)
+'Optional-Capability'(605,10415)|Format: 'Unsigned32'|FlagRules: must(V,M), may(P), mayEncypt(N)
+'Supported-Features'(628,10415)|Format: 'Grouped'|FlagRules: must(V), may(M,P), mayEncypt(N)
+     {Vendor-Id}.....................................(266,0)
+     {Feature-List-ID}...............................(629,10415)
+     {Feature-List}..................................(630,10415)
+    *[AVP]...........................................(0,0)
+
+'Feature-List-ID'(629,10415)|Format: 'Unsigned32'|FlagRules: must(V), may(P), mustnot(M), mayEncypt(N)
+'Feature-List'(630,10415)|Format: 'Unsigned32'|FlagRules: must(V), may(P), mustnot(M), mayEncypt(N)
+'Session-Priority'(650,10415)|Format: 'Enumerated', derived from 'Integer32'|FlagRules: must(V,M), may(P), mayEncypt(N)|Allowed enum values: 0-4
+     PRIORITY-0 (0)
+     PRIORITY-1 (1)
+     PRIORITY-2 (2)
+     PRIORITY-3 (3)
+     PRIORITY-4 (4)
+
+'Quota-Consumption-Time'(811,10415)|Format: 'Unsigned32'|FlagRules: must(V,M), may(P), mayEncypt(N)
+'Event-Type'(823,10415)|Format: 'Grouped'|FlagRules: must(V,M), may(P), mayEncypt(N)
+     [SIP-Method]....................................(824,10415)
+     [Event].........................................(825,10415)
+     [Expires].......................................(888,10415)
+
+'SIP-Method'(824,10415)|Format: 'UTF8String', derived from 'OctetString'|FlagRules: must(V,M), may(P), mayEncypt(N)
+'Event'(825,10415)|Format: 'UTF8String', derived from 'OctetString'|FlagRules: must(V,M), may(P), mayEncypt(N)
+'Content-Type'(826,10415)|Format: 'UTF8String', derived from 'OctetString'|FlagRules: must(V,M), may(P), mayEncypt(N)
+'Content-Length'(827,10415)|Format: 'Unsigned32'|FlagRules: must(V,M), may(P), mayEncypt(N)
+'Content-Disposition'(828,10415)|Format: 'UTF8String', derived from 'OctetString'|FlagRules: must(V,M), may(P), mayEncypt(N)
+'Role-Of-Node'(829,10415)|Format: 'Enumerated', derived from 'Integer32'|FlagRules: must(V,M), may(P), mayEncypt(N)|Allowed enum values: 0-3
+     ORIGINATING_ROLE (0)
+     TERMINATING_ROLE (1)
+     PROXY_ROLE (2)
+     B2BUA_ROLE (3)
+
+'User-Session-Id'(830,10415)|Format: 'UTF8String', derived from 'OctetString'|FlagRules: must(V,M), may(P), mayEncypt(N)
+'Calling-Party-Address'(831,10415)|Format: 'UTF8String', derived from 'OctetString'|FlagRules: must(V,M), may(P), mayEncypt(N)
+'Called-Party-Address'(832,10415)|Format: 'UTF8String', derived from 'OctetString'|FlagRules: must(V,M), may(P), mayEncypt(N)
+'Time-Stamps'(833,10415)|Format: 'Grouped'|FlagRules: must(V,M), may(P), mayEncypt(N)
+     [SIP-Request-Timestamp].........................(834,10415)
+     [SIP-Response-Timestamp]........................(835,10415)
+     [SIP-Request-Timestamp-Fraction]................(2301,10415)
+     [SIP-Response-Timestamp-Fraction]...............(2302,10415)
+
+'SIP-Request-Timestamp'(834,10415)|Format: 'Time', derived from 'OctetString'|FlagRules: must(V,M), may(P), mayEncypt(N)
+'SIP-Response-Timestamp'(835,10415)|Format: 'Time', derived from 'OctetString'|FlagRules: must(V,M), may(P), mayEncypt(N)
+'Application-Server'(836,10415)|Format: 'UTF8String', derived from 'OctetString'|FlagRules: must(V,M), may(P), mayEncypt(N)
+'Application-Provided-Called-Party-Address'(837,10415)|Format: 'UTF8String', derived from 'OctetString'|FlagRules: must(V,M), may(P), mayEncypt(N)
+'Inter-Operator-Identifier'(838,10415)|Format: 'Grouped'|FlagRules: must(V,M), may(P), mayEncypt(N)
+     [Originating-IOI]...............................(839,10415)
+     [Terminating-IOI]...............................(840,10415)
+
+'Originating-IOI'(839,10415)|Format: 'UTF8String', derived from 'OctetString'|FlagRules: must(V,M), may(P), mayEncypt(N)
+'Terminating-IOI'(840,10415)|Format: 'UTF8String', derived from 'OctetString'|FlagRules: must(V,M), may(P), mayEncypt(N)
+'IMS-Charging-Identifier'(841,10415)|Format: 'UTF8String', derived from 'OctetString'|FlagRules: must(V,M), may(P), mayEncypt(N)
+'SDP-Session-Description'(842,10415)|Format: 'UTF8String', derived from 'OctetString'|FlagRules: must(V,M), may(P), mayEncypt(N)
+'SDP-Media-Component'(843,10415)|Format: 'Grouped'|FlagRules: must(V,M), may(P), mayEncypt(N)
+     [SDP-Media-Name]................................(844,10415)
+    *[SDP-Media-Description].........................(845,10415)
+     [Media-Initiator-Flag]..........................(882,10415)
+     [Media-Initiator-Party].........................(1288,10415)
+     [Authorized-QoS]................................(849,10415)
+     [3GPP-Charging-Id]..............................(2,10415)
+     [Access-Network-Charging-Identifier-Value]......(503,10415)
+     [SDP-Type]......................................(2036,10415)
+
+'SDP-Media-Name'(844,10415)|Format: 'UTF8String', derived from 'OctetString'|FlagRules: must(V,M), may(P), mayEncypt(N)
+'SDP-Media-Description'(845,10415)|Format: 'UTF8String', derived from 'OctetString'|FlagRules: must(V,M), may(P), mayEncypt(N)
+'CG-Address'(846,10415)|Format: 'Address', derived from 'OctetString'|FlagRules: must(V,M), may(P), mayEncypt(N)
+'GGSN-Address'(847,10415)|Format: 'Address', derived from 'OctetString'|FlagRules: must(V,M), may(P), mayEncypt(N)
+'Served-Party-IP-Address'(848,10415)|Format: 'Address', derived from 'OctetString'|FlagRules: must(V,M), may(P), mayEncypt(N)
+'Authorized-QoS'(849,10415)|Format: 'UTF8String', derived from 'OctetString'|FlagRules: must(V,M), may(P), mayEncypt(N)
+'Application-Server-Information'(850,10415)|Format: 'Grouped'|FlagRules: must(V,M), may(P), mayEncypt(N)
+     [Application-Server]............................(836,10415)
+    *[Application-Provided-Called-Party-Address].....(837,10415)
+
+'Trunk-Group-ID'(851,10415)|Format: 'Grouped'|FlagRules: must(V,M), may(P), mayEncypt(N)
+     [Incoming-Trunk-Group-ID].......................(852,10415)
+     [Outgoing-Trunk-Group-ID].......................(853,10415)
+
+'Incoming-Trunk-Group-ID'(852,10415)|Format: 'UTF8String', derived from 'OctetString'|FlagRules: must(V,M), may(P), mayEncypt(N)
+'Outgoing-Trunk-Group-ID'(853,10415)|Format: 'UTF8String', derived from 'OctetString'|FlagRules: must(V,M), may(P), mayEncypt(N)
+'Bearer-Service'(854,10415)|Format: 'OctetString'|FlagRules: must(V,M), may(P), mayEncypt(N)
+'Service-Id'(855,10415)|Format: 'UTF8String', derived from 'OctetString'|FlagRules: must(V,M), may(P), mayEncypt(N)
+'Associated-URI'(856,10415)|Format: 'UTF8String', derived from 'OctetString'|FlagRules: must(V,M), may(P), mayEncypt(N)
+'Cause-Code'(861,10415)|Format: 'Integer32'|FlagRules: must(V,M), may(P), mayEncypt(N)
+'Node-Functionality'(862,10415)|Format: 'Enumerated', derived from 'Integer32'|FlagRules: must(V,M), may(P), mayEncypt(N)|Allowed enum values: 0-11
+     S-CSCF (0)
+     P-CSCF (1)
+     I-CSCF (2)
+     MRFC (3)
+     MGCF (4)
+     BGCF (5)
+     AS (6)
+     IBCF (7)
+     S-GW (8)
+     P-GW (9)
+     HSGW (10)
+     E-CSCF (11)
+
+'Service-Specific-Data'(863,10415)|Format: 'UTF8String', derived from 'OctetString'|FlagRules: must(V,M), may(P), mayEncypt(N)
+'Originator'(864,10415)|Format: 'Enumerated', derived from 'Integer32'|FlagRules: must(V,M), may(P), mayEncypt(N)|Allowed enum values: 0-1
+     Calling Party (0)
+     Called Party (1)
+
+'PS-Furnish-Charging-Information'(865,10415)|Format: 'Grouped'|FlagRules: must(V,M), may(P), mayEncypt(N)
+     {3GPP-Charging-Id}..............................(2,10415)
+     {PS-Free-Format-Data}...........................(866,10415)
+     [PS-Append-Free-Format-Data]....................(867,10415)
+
+'PS-Free-Format-Data'(866,10415)|Format: 'OctetString'|FlagRules: must(V,M), may(P), mayEncypt(N)
+'PS-Append-Free-Format-Data'(867,10415)|Format: 'Enumerated', derived from 'Integer32'|FlagRules: must(V,M), may(P), mayEncypt(N)|Allowed enum values: 0-1
+     APPEND (0)
+     OVERWRITE (1)
+
+'Time-Quota-Threshold'(868,10415)|Format: 'Unsigned32'|FlagRules: must(V,M), may(P), mayEncypt(N)
+'Volume-Quota-Threshold'(869,10415)|Format: 'Unsigned32'|FlagRules: must(V,M), may(P), mayEncypt(N)
+'Trigger-Type'(870,10415)|Format: 'Enumerated', derived from 'Integer32'|FlagRules: must(V,M), may(P), mayEncypt(N)|Allowed enum values: 1-4,10-23,30-34,40,50
+     CHANGE_IN_SGSN_IP_ADDRESS (1)
+     CHANGE_IN_QOS (2)
+     CHANGE_IN_LOCATION (3)
+     CHANGE_IN_RAT (4)
+     CHANGEINQOS_TRAFFIC_CLASS (10)
+     CHANGEINQOS_RELIABILITY_CLASS (11)
+     CHANGEINQOS_DELAY_CLASS (12)
+     CHANGEINQOS_PEAK_THROUGHPUT (13)
+     CHANGEINQOS_PRECEDENCE_CLASS (14)
+     CHANGEINQOS_MEAN_THROUGHPUT (15)
+     CHANGEINQOS_MAXIMUM_BIT_RATE_FOR_UPLINK (16)
+     CHANGEINQOS_MAXIMUM_BIT_RATE_FOR_DOWNLINK (17)
+     CHANGEINQOS_RESIDUAL_BER (18)
+     CHANGEINQOS_SDU_ERROR_RATIO (19)
+     CHANGEINQOS_TRANSFER_DELAY (20)
+     CHANGEINQOS_TRAFFIC_HANDLING_PRIORITY (21)
+     CHANGEINQOS_GUARANTEED_BIT_RATE_FOR_UPLINK (22)
+     CHANGEINQOS_GUARANTEED_BIT_RATE_FOR_DOWNLINK (23)
+     CHANGEINLOCATION_MCC (30)
+     CHANGEINLOCATION_MNC (31)
+     CHANGEINLOCATION_RAC (32)
+     CHANGEINLOCATION_LAC (33)
+     CHANGEINLOCATION_CellId (34)
+     CHANGE_IN_MEDIA_COMPOSITION (40)
+     CHANGEINPARTICIPANTS_NMB (50)
+
+'Quota-Holding-Time'(871,10415)|Format: 'Unsigned32'|FlagRules: must(V,M), may(P), mayEncypt(N)
+'Reporting-Reason'(872,10415)|Format: 'Enumerated', derived from 'Integer32'|FlagRules: must(V,M), may(P), mayEncypt(N)|Allowed enum values: 0-8
+     THRESHOLD (0)
+     QHT (1)
+     FINAL (2)
+     QUOTA_EXHAUSTED (3)
+     VALIDITY_TIME (4)
+     OTHER_QUOTA_TYPE (5)
+     RATING_CONDITION_CHANGE (6)
+     FORCED_REAUTHORISATION (7)
+     POOL_EXHAUSTED (8)
+
+'Service-Information'(873,10415)|Format: 'Grouped'|FlagRules: must(V,M), may(P), mayEncypt(N)
+     [PS-Information]................................(874,10415)
+     [IMS-Information]...............................(876,10415)
+     [MMS-Information]...............................(877,10415)
+     [SMS-Information]...............................(2000,10415)
+     [Service-Generic-Information]...................(1256,10415)
+
+'PS-Information'(874,10415)|Format: 'Grouped'|FlagRules: must(V,M), may(P), mayEncypt(N)
+     [3GPP-Charging-Id]..............................(2,10415)
+     [3GPP-PDP-Type].................................(3,10415)
+     [3GPP-GPRS-Neg-QoS-Profile].....................(5,10415)
+     [3GPP-IMSI-MCC-MNC].............................(8,10415)
+     [3GPP-GGSN-MCC-MNC].............................(9,10415)
+     [3GPP-NSAPI]....................................(10,10415)
+     [3GPP-Session-Stop-Indicator]...................(11,10415)
+     [3GPP-Selection-Mode]...........................(12,10415)
+     [3GPP-Charging-Characteristics].................(13,10415)
+     [3GPP-SGSN-MCC-MNC].............................(18,10415)
+     [3GPP-Rat-Type].................................(21,10415)
+     [3GPP-User-Location-Info].......................(22,10415)
+     [3GPP-MS-TimeZone]..............................(23,10415)
+     [3GPP-CAMEL-Charging-Info]......................(24,10415)
+     [CG-Address]....................................(846,10415)
+     [GGSN-Address]..................................(847,10415)
+     [PS-Furnish-Charging-Information]...............(865,10415)
+     [Charging-Rule-Base-Name].......................(1004,10415)
+     [PDP-Address]...................................(1227,10415)
+     [SGSN-Address]..................................(1228,10415)
+     [Called-Station-Id].............................(30,0)
+    *[AVP]...........................................(0,0)
+
+'IMS-Information'(876,10415)|Format: 'Grouped'|FlagRules: must(V,M), may(P), mayEncypt(N)
+     [Event-Type]....................................(823,10415)
+     [Role-Of-Node]..................................(829,10415)
+     {Node-Functionality}............................(862,10415)
+     [User-Session-Id]...............................(830,10415)
+     [Outgoing-Session-Id]...........................(2320,10415)
+     [Session-Priority]..............................(650,10415)
+    *[Calling-Party-Address].........................(831,10415)
+     [Called-Party-Address]..........................(832,10415)
+    *[Called-Asserted-Identity]......................(1250,10415)
+     [Number-Portability-Routing-Information]........(2024,10415)
+     [Carrier-Select-Routing-Information]............(2023,10415)
+     [Alternate-Charged-Party-Address]...............(1280,10415)
+     [Requested-Party-Address].......................(1251,10415)
+    *[Associated-URI]................................(856,10415)
+     [Time-Stamps]...................................(833,10415)
+    *[Application-Server-Information]................(850,10415)
+    *[Inter-Operator-Identifier].....................(838,10415)
+     [IMS-Charging-Identifier].......................(841,10415)
+    *[SDP-Session-Description].......................(842,10415)
+    *[SDP-Media-Component]...........................(843,10415)
+     [Served-Party-IP-Address].......................(848,10415)
+     [Server-Capabilities]...........................(603,10415)
+     [Trunk-Group-ID]................................(851,10415)
+     [Bearer-Service]................................(854,10415)
+     [Service-Id]....................................(855,10415)
+    *[Service-Specific-Info].........................(1249,10415)
+    *[Message-Body]..................................(889,10415)
+     [Cause-Code]....................................(861,10415)
+     [Access-Network-Information]....................(1263,10415)
+    *[Early-Media-Description].......................(1272,10415)
+     [IMS-Communication-Service-Identifier]..........(1281,10415)
+     [Online-Charging-Flag]..........................(2303,10415)
+     [Real-Time-Tariff-Information]..................(2305,10415)
+     [Account-Expiration]............................(2309,10415)
+
+'MMS-Information'(877,10415)|Format: 'Grouped'|FlagRules: must(V,M), may(P), mayEncypt(N)
+     [Originator-Address]............................(886,10415)
+    *[Recipient-Address].............................(1201,10415)
+     [Submission-Time]...............................(1202,10415)
+     [MM-Content-Type]...............................(1203,10415)
+     [Priority]......................................(1209,10415)
+     [Message-ID]....................................(1210,10415)
+     [Message-Type]..................................(1211,10415)
+     [Message-Size]..................................(1212,10415)
+     [Message-Class].................................(1213,10415)
+     [Delivery-Report-Requested].....................(1216,10415)
+     [Read-Reply-Report-Requested]...................(1222,10415)
+     [MMBox-Storage-Requested].......................(1248,10415)
+     [Applic-ID].....................................(1218,10415)
+     [Reply-Applic-ID]...............................(1223,10415)
+     [Aux-Applic-Info]...............................(1219,10415)
+     [Content-Class].................................(1220,10415)
+     [DRM-Content]...................................(1221,10415)
+     [Adaptations]...................................(1217,10415)
+     [VASP-Id].......................................(1101,10415)
+     [VAS-Id]........................................(1102,10415)
+
+'Media-Initiator-Flag'(882,10415)|Format: 'Enumerated', derived from 'Integer32'|FlagRules: must(V,M), may(P), mayEncypt(N)|Allowed enum values: 0-2
+     CALLING_PARTY (0)
+     CALLED_PARTY (1)
+     UNKNOWN (2)
+
+'Number-Of-Participants'(885,10415)|Format: 'Unsigned32'|FlagRules: must(V,M), may(P), mayEncypt(N)
+'Originator-Address'(886,10415)|Format: 'Grouped'|FlagRules: must(V,M), may(P), mayEncypt(N)
+     [Address-Type]..................................(899,10415)
+     [Address-Data]..................................(897,10415)
+     [Address-Domain]................................(898,10415)
+
+'Expires'(888,10415)|Format: 'Unsigned32'|FlagRules: must(V,M), may(P), mayEncypt(N)
+'Message-Body'(889,10415)|Format: 'Grouped'|FlagRules: must(V,M), may(P), mayEncypt(N)
+     {Content-Type}..................................(826,10415)
+     {Content-Length}................................(827,10415)
+     [Content-Disposition]...........................(828,10415)
+     [Originator]....................................(864,10415)
+
+'Address-Data'(897,10415)|Format: 'UTF8String', derived from 'OctetString'|FlagRules: must(V,M), may(P), mayEncypt(N)
+'Address-Domain'(898,10415)|Format: 'Grouped'|FlagRules: must(V,M), may(P), mayEncypt(N)
+     [Domain-Name]...................................(1200,10415)
+     [3GPP-IMSI-MCC-MNC].............................(8,10415)
+
+'Address-Type'(899,10415)|Format: 'Enumerated', derived from 'Integer32'|FlagRules: must(V,M), may(P), mayEncypt(N)|Allowed enum values: 0-7
+     e-mail address (0)
+     MSISDN (1)
+     IPv4 Address (2)
+     IPv6 Address (3)
+     Numeric Shortcode (4)
+     Alphanumeric Shortcode (5)
+     Other (6)
+     IMSI (7)
+
+'Charging-Rule-Base-Name'(1004,10415)|Format: 'UTF8String', derived from 'OctetString'|FlagRules: must(V,M), may(P), mayEncypt(N)
+'IP-CAN-Type'(1027,10415)|Format: 'Enumerated', derived from 'Integer32'|FlagRules: must(V,M), may(P), mayEncypt(Y)|Allowed enum values: 0-6
+     3GPP-GPRS (0)
+     DOCSIS (1)
+     xDSL (2)
+     WiMAX (3)
+     3GPP2 (4)
+     3GP-EPS (5)
+     Non-3GPP-EPS (6)
+
+'RAT-Type'(1032,10415)|Format: 'Enumerated', derived from 'Integer32'|FlagRules: must(V), may(P), mustnot(M), mayEncypt(Y)|Allowed enum values: 0-2,1000-1004,2000-2003
+     WLAN (0)
+     VIRTUAL (1)
+     BBF (2)
+     UTRAN (1000)
+     GERAN (1001)
+     GAN (1002)
+     HSPA_EVOLUTION (1003)
+     EUTRAN (1004)
+     CDMA2000_1X (2000)
+     HRPD (2001)
+     UMB (2002)
+     EHRPD (2003)
+
+'VASP-Id'(1101,10415)|Format: 'UTF8String', derived from 'OctetString'|FlagRules: must(V,M), may(P), mayEncypt(N)
+'VAS-Id'(1102,10415)|Format: 'UTF8String', derived from 'OctetString'|FlagRules: must(V,M), may(P), mayEncypt(N)
+'Domain-Name'(1200,10415)|Format: 'UTF8String', derived from 'OctetString'|FlagRules: must(V,M), may(P), mayEncypt(N)
+'Recipient-Address'(1201,10415)|Format: 'Grouped'|FlagRules: must(V,M), may(P), mayEncypt(N)
+     [Address-Type]..................................(899,10415)
+     [Address-Data]..................................(897,10415)
+     [Address-Domain]................................(898,10415)
+     [Addressee-Type]................................(1208,10415)
+
+'Submission-Time'(1202,10415)|Format: 'Time', derived from 'OctetString'|FlagRules: must(V,M), may(P), mayEncypt(N)
+'MM-Content-Type'(1203,10415)|Format: 'Grouped'|FlagRules: must(V,M), may(P), mayEncypt(N)
+     [Type-Number]...................................(1204,10415)
+     [Additional-Type-Information]...................(1205,10415)
+     [Content-Size]..................................(1206,10415)
+    *[Additional-Content-Information]................(1207,10415)
+
+'Type-Number'(1204,10415)|Format: 'Enumerated', derived from 'Integer32'|FlagRules: must(V,M), may(P), mayEncypt(N)|Allowed enum values: 0-88
+'Additional-Type-Information'(1205,10415)|Format: 'UTF8String', derived from 'OctetString'|FlagRules: must(V,M), may(P), mayEncypt(N)
+'Content-Size'(1206,10415)|Format: 'Unsigned32'|FlagRules: must(V,M), may(P), mayEncypt(N)
+'Additional-Content-Information'(1207,10415)|Format: 'Grouped'|FlagRules: must(V,M), may(P), mayEncypt(N)
+     [Type-Number]...................................(1204,10415)
+     [Additional-Type-Information]...................(1205,10415)
+     [Content-Size]..................................(1206,10415)
+
+'Addressee-Type'(1208,10415)|Format: 'Enumerated', derived from 'Integer32'|FlagRules: must(V,M), may(P), mayEncypt(N)|Allowed enum values: 0-2
+     TO (0)
+     CC (1)
+     BCC (2)
+
+'Priority'(1209,10415)|Format: 'Enumerated', derived from 'Integer32'|FlagRules: must(V,M), may(P), mayEncypt(N)|Allowed enum values: 0-2
+     Low (0)
+     Normal (1)
+     High (2)
+
+'Message-ID'(1210,10415)|Format: 'UTF8String', derived from 'OctetString'|FlagRules: must(V,M), may(P), mayEncypt(N)
+'Message-Type'(1211,10415)|Format: 'Enumerated', derived from 'Integer32'|FlagRules: must(V,M), may(P), mayEncypt(N)|Allowed enum values: 1-15
+     m-send-req (1)
+     m-send-conf (2)
+     m-notification-ind (3)
+     m-notifyresp-ind (4)
+     m-retrieve-conf (5)
+     m-acknowledge-ind (6)
+     m-delivery-ind (7)
+     m-read-rec-ind (8)
+     m-read-orig-ind (9)
+     m-forward-req (10)
+     m-forward-conf (11)
+     m-mbox-store-conf (12)
+     m-mbox-view-conf (13)
+     m-mbox-upload-conf (14)
+     m-mbox-delete-conf (15)
+
+'Message-Size'(1212,10415)|Format: 'Unsigned32'|FlagRules: must(V,M), may(P), mayEncypt(N)
+'Message-Class'(1213,10415)|Format: 'Grouped'|FlagRules: must(V,M), may(P), mayEncypt(N)
+     [Class-Identifier]..............................(1214,10415)
+     [Token-Text]....................................(1215,10415)
+
+'Class-Identifier'(1214,10415)|Format: 'Enumerated', derived from 'Integer32'|FlagRules: must(V,M), may(P), mayEncypt(N)|Allowed enum values: 0-3
+     Personal (0)
+     Advertisement (1)
+     Informational (2)
+     Auto (3)
+
+'Token-Text'(1215,10415)|Format: 'UTF8String', derived from 'OctetString'|FlagRules: must(V,M), may(P), mayEncypt(N)
+'Delivery-Report-Requested'(1216,10415)|Format: 'Enumerated', derived from 'Integer32'|FlagRules: must(V,M), may(P), mayEncypt(N)|Allowed enum values: 0-1
+     No (0)
+     Yes (1)
+
+'Adaptations'(1217,10415)|Format: 'Enumerated', derived from 'Integer32'|FlagRules: must(V,M), may(P), mayEncypt(N)|Allowed enum values: 0-1
+     Yes (0)
+     No (1)
+
+'Applic-ID'(1218,10415)|Format: 'UTF8String', derived from 'OctetString'|FlagRules: must(V,M), may(P), mayEncypt(N)
+'Aux-Applic-Info'(1219,10415)|Format: 'UTF8String', derived from 'OctetString'|FlagRules: must(V,M), may(P), mayEncypt(N)
+'Content-Class'(1220,10415)|Format: 'Enumerated', derived from 'Integer32'|FlagRules: must(V,M), may(P), mayEncypt(N)|Allowed enum values: 0-7
+     text (0)
+     image-basic (1)
+     image-rich (2)
+     video-basic (3)
+     video-rich (4)
+     megapixel (5)
+     content-basic (6)
+     content-rich (7)
+
+'DRM-Content'(1221,10415)|Format: 'Enumerated', derived from 'Integer32'|FlagRules: must(V,M), may(P), mayEncypt(N)|Allowed enum values: 0-1
+     No (0)
+     Yes (1)
+
+'Read-Reply-Report-Requested'(1222,10415)|Format: 'Enumerated', derived from 'Integer32'|FlagRules: must(V,M), may(P), mayEncypt(N)|Allowed enum values: 0-1
+     No (0)
+     Yes (1)
+
+'Reply-Applic-ID'(1223,10415)|Format: 'UTF8String', derived from 'OctetString'|FlagRules: must(V,M), may(P), mayEncypt(N)
+'Unit-Quota-Threshold'(1226,10415)|Format: 'Unsigned32'|FlagRules: must(V,M), may(P), mayEncypt(N)
+'PDP-Address'(1227,10415)|Format: 'Address', derived from 'OctetString'|FlagRules: must(V,M), may(P), mayEncypt(N)
+'SGSN-Address'(1228,10415)|Format: 'Address', derived from 'OctetString'|FlagRules: must(V,M), may(P), mayEncypt(N)
+'PDP-Context-Type'(1247,10415)|Format: 'Unsigned32'|FlagRules: must(V,M), may(P), mayEncypt(N)
+'MMBox-Storage-Requested'(1248,10415)|Format: 'Enumerated', derived from 'Integer32'|FlagRules: must(V,M), may(P), mayEncypt(N)|Allowed enum values: 0-1
+     No (0)
+     Yes (1)
+
+'Service-Specific-Info'(1249,10415)|Format: 'Grouped'|FlagRules: must(V,M), may(P), mayEncypt(N)
+     [Service-Specific-Type].........................(1257,10415)
+     [Service-Specific-Data].........................(863,10415)
+
+'Called-Asserted-Identity'(1250,10415)|Format: 'UTF8String', derived from 'OctetString'|FlagRules: must(V,M), may(P), mayEncypt(N)
+'Requested-Party-Address'(1251,10415)|Format: 'UTF8String', derived from 'OctetString'|FlagRules: must(V,M), may(P), mayEncypt(N)
+'Service-Generic-Information'(1256,10415)|Format: 'Grouped'|FlagRules: must(V,M), may(P), mayEncypt(N)
+     [Application-Server-ID].........................(2101,10415)
+     [Application-Service-Type]......................(2102,10415)
+     [Application-Session-ID]........................(2103,10415)
+     [Delivery-Status]...............................(2104,10415)
+
+'Service-Specific-Type'(1257,10415)|Format: 'Unsigned32'|FlagRules: must(V,M), may(P), mayEncypt(N)
+'Access-Network-Information'(1263,10415)|Format: 'OctetString'|FlagRules: must(V,M), may(P), mayEncypt(N)
+'Trigger'(1264,10415)|Format: 'Grouped'|FlagRules: must(V,M), may(P), mayEncypt(N)
+    *[Trigger-Type]..................................(870,10415)
+
+'Base-Time-Interval'(1265,10415)|Format: 'Unsigned32'|FlagRules: must(V,M), may(P), mayEncypt(N)
+'Envelope'(1266,10415)|Format: 'Grouped'|FlagRules: must(V,M), may(P), mayEncypt(N)
+     {Envelope-Start-Time}...........................(1269,10415)
+     [Envelope-End-Time].............................(1267,10415)
+     [CC-Total-Octets]...............................(421,0)
+     [CC-Input-Octets]...............................(412,0)
+     [CC-Output-Octets]..............................(414,0)
+     [CC-Service-Specific-Units].....................(417,0)
+    *[AVP]...........................................(0,0)
+
+'Envelope-End-Time'(1267,10415)|Format: 'Time', derived from 'OctetString'|FlagRules: must(V,M), may(P), mayEncypt(N)
+'Envelope-Reporting'(1268,10415)|Format: 'Enumerated', derived from 'Integer32'|FlagRules: must(V,M), may(P), mayEncypt(N)|Allowed enum values: 0-4
+     DO_NOT_REPORT_ENVELOPES (0)
+     REPORT_ENVELOPES (1)
+     REPORT_ENVELOPES_WITH_VOLUME (2)
+     REPORT_ENVELOPES_WITH_EVENTS (3)
+     REPORT_ENVELOPES_WITH_VOLUME_AND_EVENTS (4)
+
+'Envelope-Start-Time'(1269,10415)|Format: 'Time', derived from 'OctetString'|FlagRules: must(V,M), may(P), mayEncypt(N)
+'Time-Quota-Mechanism'(1270,10415)|Format: 'Grouped'|FlagRules: must(V,M), may(P), mayEncypt(N)
+     {Time-Quota-Type}...............................(1271,10415)
+     {Base-Time-Interval}............................(1265,10415)
+
+'Time-Quota-Type'(1271,10415)|Format: 'Enumerated', derived from 'Integer32'|FlagRules: must(V,M), may(P), mayEncypt(N)|Allowed enum values: 0-1
+     DISCRETE_TIME_PERIOD (0)
+     CONTINUOUS_TIME_PERIOD (1)
+
+'Early-Media-Description'(1272,10415)|Format: 'Grouped'|FlagRules: must(V,M), may(P), mayEncypt(N)
+     [SDP-TimeStamps]................................(1273,10415)
+    *[SDP-Media-Component]...........................(843,10415)
+    *[SDP-Session-Description].......................(842,10415)
+
+'SDP-TimeStamps'(1273,10415)|Format: 'Grouped'|FlagRules: must(V,M), may(P), mayEncypt(N)
+     [SDP-Offer-Timestamp]...........................(1274,10415)
+     [SDP-Answer-Timestamp]..........................(1275,10415)
+
+'SDP-Offer-Timestamp'(1274,10415)|Format: 'Time', derived from 'OctetString'|FlagRules: must(V,M), may(P), mayEncypt(N)
+'SDP-Answer-Timestamp'(1275,10415)|Format: 'Time', derived from 'OctetString'|FlagRules: must(V,M), may(P), mayEncypt(N)
+'AF-Correlation-Information'(1276,10415)|Format: 'Grouped'|FlagRules: must(V,M), may(P), mayEncypt(N)
+     {AF-Charging-Identifier}........................(505,10415)
+    *[Flows].........................................(510,10415)
+
+'Alternate-Charged-Party-Address'(1280,10415)|Format: 'UTF8String', derived from 'OctetString'|FlagRules: must(V,M), may(P), mayEncypt(N)
+'IMS-Communication-Service-Identifier'(1281,10415)|Format: 'UTF8String', derived from 'OctetString'|FlagRules: must(V,M), may(P), mayEncypt(N)
+'Media-Initiator-Party'(1288,10415)|Format: 'UTF8String', derived from 'OctetString'|FlagRules: must(V,M), may(P), mayEncypt(N)
+'SMS-Information'(2000,10415)|Format: 'Grouped'|FlagRules: must(V,M), may(P), mayEncypt(N)
+     [SMS-Node]......................................(2016,10415)
+     [Client-Address]................................(2018,10415)
+     [Originator-SCCP-Address].......................(2008,10415)
+     [SMSC-Address]..................................(2017,10415)
+     [Data-Coding-Scheme]............................(2001,10415)
+     [SM-Discharge-Time].............................(2012,10415)
+     [SM-Message-Type]...............................(2007,10415)
+     [Originator-Interface]..........................(2009,10415)
+     [SM-Protocol-ID]................................(2013,10415)
+     [Reply-Path-Requested]..........................(2011,10415)
+     [SM-Status].....................................(2014,10415)
+     [SM-User-Data-Header]...........................(2015,10415)
+     [Number-Of-Messages-Sent].......................(2019,10415)
+    *[Recipient-Info]................................(2026,10415)
+     [Originator-Received-Address]...................(2027,10415)
+     [SM-Service-Type]...............................(2029,10415)
+
+'Data-Coding-Scheme'(2001,10415)|Format: 'Integer32'|FlagRules: must(V,M), may(P), mayEncypt(N)
+'Destination-Interface'(2002,10415)|Format: 'Grouped'|FlagRules: must(V,M), may(P), mayEncypt(N)
+     [Interface-Id]..................................(2003,10415)
+     [Interface-Text]................................(2005,10415)
+     [Interface-Port]................................(2004,10415)
+     [Interface-Type]................................(2006,10415)
+
+'Interface-Id'(2003,10415)|Format: 'UTF8String', derived from 'OctetString'|FlagRules: must(V,M), may(P), mayEncypt(N)
+'Interface-Port'(2004,10415)|Format: 'UTF8String', derived from 'OctetString'|FlagRules: must(V,M), may(P), mayEncypt(N)
+'Interface-Text'(2005,10415)|Format: 'UTF8String', derived from 'OctetString'|FlagRules: must(V,M), may(P), mayEncypt(N)
+'Interface-Type'(2006,10415)|Format: 'Enumerated', derived from 'Integer32'|FlagRules: must(V,M), may(P), mayEncypt(N)|Allowed enum values: 0-4
+     Unknown (0)
+     MOBILE_ORIGINATING (1)
+     MOBILE_TERMINATING (2)
+     APPLICATION_ORIGINATING (3)
+     APPLICATION_TERMINATION (4)
+
+'SM-Message-Type'(2007,10415)|Format: 'Enumerated', derived from 'Integer32'|FlagRules: must(V,M), may(P), mayEncypt(N)|Allowed enum values: 0-2
+     SUBMISSION (0)
+     DELIVERY_REPORT (1)
+     SM Service Request (2)
+
+'Originator-SCCP-Address'(2008,10415)|Format: 'Address', derived from 'OctetString'|FlagRules: must(V,M), may(P), mayEncypt(N)
+'Originator-Interface'(2009,10415)|Format: 'Grouped'|FlagRules: must(V,M), may(P), mayEncypt(N)
+     [Interface-Id]..................................(2003,10415)
+     [Interface-Text]................................(2005,10415)
+     [Interface-Port]................................(2004,10415)
+     [Interface-Type]................................(2006,10415)
+
+'Recipient-SCCP-Address'(2010,10415)|Format: 'Address', derived from 'OctetString'|FlagRules: must(V,M), may(P), mayEncypt(N)
+'Reply-Path-Requested'(2011,10415)|Format: 'Enumerated', derived from 'Integer32'|FlagRules: must(V,M), may(P), mayEncypt(N)|Allowed enum values: 0-1
+     No Reply Path Set (0)
+     Reply path Set (1)
+
+'SM-Discharge-Time'(2012,10415)|Format: 'Time', derived from 'OctetString'|FlagRules: must(V,M), may(P), mayEncypt(N)
+'SM-Protocol-ID'(2013,10415)|Format: 'OctetString'|FlagRules: must(V,M), may(P), mayEncypt(N)
+'SM-Status'(2014,10415)|Format: 'OctetString'|FlagRules: must(V,M), may(P), mayEncypt(N)
+'SM-User-Data-Header'(2015,10415)|Format: 'OctetString'|FlagRules: must(V,M), may(P), mayEncypt(N)
+'SMS-Node'(2016,10415)|Format: 'Enumerated', derived from 'Integer32'|FlagRules: must(V,M), may(P), mayEncypt(N)|Allowed enum values: 0-3
+     SMS Router (0)
+     IP-SM-GW (1)
+     SMS Router and IP-SM-GW (2)
+     SMS-SC (3)
+
+'SMSC-Address'(2017,10415)|Format: 'Address', derived from 'OctetString'|FlagRules: must(V,M), may(P), mayEncypt(N)
+'Client-Address'(2018,10415)|Format: 'Address', derived from 'OctetString'|FlagRules: must(V,M), may(P), mayEncypt(N)
+'Number-Of-Messages-Sent'(2019,10415)|Format: 'Unsigned32'|FlagRules: must(V,M), may(P), mayEncypt(N)
+'Low-Balance-Indication'(2020,10415)|Format: 'Enumerated', derived from 'Integer32'|FlagRules: must(V,M), may(P), mayEncypt(N)|Allowed enum values: 0-1
+     NOT_APPLICABLE (0)
+     YES (1)
+
+'Remaining-Balance'(2021,10415)|Format: 'Grouped'|FlagRules: must(V,M), may(P), mayEncypt(N)
+     {Unit-Value}....................................(445,0)
+     {Currency-Code}.................................(425,0)
+
+'Refund-Information'(2022,10415)|Format: 'OctetString'|FlagRules: must(V,M), may(P), mayEncypt(N)
+'Carrier-Select-Routing-Information'(2023,10415)|Format: 'UTF8String', derived from 'OctetString'|FlagRules: must(V,M), may(P), mayEncypt(N)
+'Number-Portability-Routing-Information'(2024,10415)|Format: 'UTF8String', derived from 'OctetString'|FlagRules: must(V,M), may(P), mayEncypt(N)
+'Recipient-Info'(2026,10415)|Format: 'Grouped'|FlagRules: must(V,M), may(P), mayEncypt(N)
+     [Destination-Interface].........................(2002,10415)
+    *[Recipient-Address].............................(1201,10415)
+    *[Recipient-Received-Address]....................(2028,10415)
+     [Recipient-SCCP-Address]........................(2010,10415)
+     [SM-Protocol-ID]................................(2013,10415)
+
+'Originator-Received-Address'(2027,10415)|Format: 'Grouped'|FlagRules: must(V,M), may(P), mayEncypt(N)
+     [Address-Type]..................................(899,10415)
+     [Address-Data]..................................(897,10415)
+     [Address-Domain]................................(898,10415)
+
+'Recipient-Received-Address'(2028,10415)|Format: 'Grouped'|FlagRules: must(V,M), may(P), mayEncypt(N)
+     [Address-Type]..................................(899,10415)
+     [Address-Data]..................................(897,10415)
+     [Address-Domain]................................(898,10415)
+
+'SM-Service-Type'(2029,10415)|Format: 'Enumerated', derived from 'Integer32'|FlagRules: must(V,M), may(P), mayEncypt(N)|Allowed enum values: 0-10
+     VAS4SMS Short Message content processing (0)
+     VAS4SMS Short Message forwarding (1)
+     VAS4SMS Short Message Forwarding multiple subscriptions (2)
+     VAS4SMS Short Message filtering (3)
+     VAS4SMS Short Message receipt (4)
+     VAS4SMS Short Message Network Storage (5)
+     VAS4SMS Short Message to multiple destinations (6)
+     VAS4SMS Short Message Virtual Private Network (VPN) (7)
+     VAS4SMS Short Message Auto Reply (8)
+     VAS4SMS Short Message Personal Signature (9)
+     VAS4SMS Short Message Deferred Delivery (10)
+
+'SDP-Type'(2036,10415)|Format: 'Enumerated', derived from 'Integer32'|FlagRules: must(V,M), may(P), mayEncypt(N)|Allowed enum values: 0-1
+     SDP Offer (0)
+     SDP Answer (1)
+
+'Current-Tariff'(2056,10415)|Format: 'Grouped'|FlagRules: must(V,M), may(P), mayEncypt(N)
+     [Currency-Code].................................(425,0)
+     [Scale-Factor]..................................(2059,10415)
+    *[Rate-Element]..................................(2058,10415)
+
+'Next-Tariff'(2057,10415)|Format: 'Grouped'|FlagRules: must(V,M), may(P), mayEncypt(N)
+     [Currency-Code].................................(425,0)
+     [Scale-Factor]..................................(2059,10415)
+    *[Rate-Element]..................................(2058,10415)
+
+'Rate-Element'(2058,10415)|Format: 'Grouped'|FlagRules: must(V,M), may(P), mayEncypt(N)
+     {CC-Unit-Type}..................................(454,0)
+     [Reason-Code]...................................(2316,10415)
+     [Unit-Value]....................................(445,0)
+     [Unit-Cost].....................................(2061,10415)
+     [Unit-Quota-Threshold]..........................(1226,10415)
+
+'Scale-Factor'(2059,10415)|Format: 'Grouped'|FlagRules: must(V,M), may(P), mayEncypt(N)
+     {Value-Digits}..................................(447,0)
+     [Exponent]......................................(429,0)
+
+'Tariff-Information'(2060,10415)|Format: 'Grouped'|FlagRules: must(V,M), may(P), mayEncypt(N)
+     {Current-Tariff}................................(2056,10415)
+     [Tariff-Time-Change]............................(451,0)
+     [Next-Tariff]...................................(2057,10415)
+
+'Unit-Cost'(2061,10415)|Format: 'Grouped'|FlagRules: must(V,M), may(P), mayEncypt(N)
+     {Value-Digits}..................................(447,0)
+     [Exponent]......................................(429,0)
+
+'Application-Server-ID'(2101,10415)|Format: 'UTF8String', derived from 'OctetString'|FlagRules: must(V,M), may(P), mayEncypt(N)
+'Application-Service-Type'(2102,10415)|Format: 'Enumerated', derived from 'Integer32'|FlagRules: must(V,M), may(P), mayEncypt(N)|Allowed enum values: 100-105
+     SENDING (100)
+     RECEIVING (101)
+     RETRIEVAL (102)
+     INVITING (103)
+     LEAVING (104)
+     JOINING (105)
+
+'Application-Session-ID'(2103,10415)|Format: 'Unsigned32'|FlagRules: must(V,M), may(P), mayEncypt(N)
+'Delivery-Status'(2104,10415)|Format: 'UTF8String', derived from 'OctetString'|FlagRules: must(V,M), may(P), mayEncypt(N)
+'SIP-Request-Timestamp-Fraction'(2301,10415)|Format: 'Unsigned32'|FlagRules: must(V,M), may(P), mayEncypt(N)
+'SIP-Response-Timestamp-Fraction'(2302,10415)|Format: 'Unsigned32'|FlagRules: must(V,M), may(P), mayEncypt(N)
+'Online-Charging-Flag'(2303,10415)|Format: 'Enumerated', derived from 'Integer32'|FlagRules: must(V,M), may(P), mayEncypt(N)|Allowed enum values: 0-1
+     ECF address not provided (0)
+     ECF address provided (1)
+
+'Real-Time-Tariff-Information'(2305,10415)|Format: 'Grouped'|FlagRules: must(V,M), may(P), mayEncypt(N)
+     [Tariff-Information]............................(2060,10415)
+     [Tariff-XML]....................................(2306,10415)
+
+'Tariff-XML'(2306,10415)|Format: 'UTF8String', derived from 'OctetString'|FlagRules: must(V,M), may(P), mayEncypt(N)
+'Account-Expiration'(2309,10415)|Format: 'Time', derived from 'OctetString'|FlagRules: must(V,M), may(P), mayEncypt(N)
+'Reason-Code'(2316,10415)|Format: 'Enumerated', derived from 'Integer32'|FlagRules: must(V,M), may(P), mayEncypt(N)|Allowed enum values: 0-4
+     UNKNOWN (0)
+     USAGE (1)
+     COMMUNICATION-ATTEMPT-CHARGE (2)
+     SETUP-CHARGE (3)
+     ADD-ON-CHARGE (4)
+
+'Outgoing-Session-Id'(2320,10415)|Format: 'UTF8String', derived from 'OctetString'|FlagRules: must(V,M), may(P), mayEncypt(N)
+'Reservation-Priority'(458,13019)|Format: 'Enumerated', derived from 'Integer32'|FlagRules: must(V), may(P), mustnot(M), mayEncypt(Y)|Allowed enum values: 0-15
+     DEFAULT (0)
+     PRIORITY-ONE (1)
+     PRIORITY-TWO (2)
+     PRIORITY-THREE (3)
+     PRIORITY-FOUR (4)
+     PRIORITY-FIVE (5)
+     PRIORITY-SIX (6)
+     PRIORITY-SEVEN (7)
+     PRIORITY-EIGHT (8)
+     PRIORITY-NINE (9)
+     PRIORITY-TEN (10)
+     PRIORITY-ELEVEN (11)
+     PRIORITY-TWELVE (12)
+     PRIORITY-THIRTEEN (13)
+     PRIORITY-FOURTEEN (14)
+     PRIORITY-FIFTEEN (15)
+
+
+----------------------------- Commands (18 entries) ----------------------------
+'Capabilities-Exchange-Request' (257,request)
+     {Origin-Host}...................................(264,0)
+     {Origin-Realm}..................................(296,0)
+   1*{Host-IP-Address}...............................(257,0)
+     {Vendor-Id}.....................................(266,0)
+     {Product-Name}..................................(269,0)
+     [Origin-State-Id]...............................(278,0)
+    *[Supported-Vendor-Id]...........................(265,0)
+    *[Auth-Application-Id]...........................(258,0)
+    *[Inband-Security-Id]............................(299,0)
+    *[Acct-Application-Id]...........................(259,0)
+     [Vendor-Specific-Application-Id]................(260,0)
+     [Firmware-Revision].............................(267,0)
+    *[AVP]...........................................(0,0)
+
+'Capabilities-Exchange-Answer' (257,answer)
+     {Result-Code}...................................(268,0)
+     {Origin-Host}...................................(264,0)
+     {Origin-Realm}..................................(296,0)
+   1*{Host-IP-Address}...............................(257,0)
+     {Vendor-Id}.....................................(266,0)
+     {Product-Name}..................................(269,0)
+     [Origin-State-Id]...............................(278,0)
+     [Error-Message].................................(281,0)
+    *[Failed-AVP]....................................(279,0)
+    *[Supported-Vendor-Id]...........................(265,0)
+    *[Auth-Application-Id]...........................(258,0)
+    *[Inband-Security-Id]............................(299,0)
+    *[Acct-Application-Id]...........................(259,0)
+     [Vendor-Specific-Application-Id]................(260,0)
+     [Firmware-Revision].............................(267,0)
+    *[AVP]...........................................(0,0)
+
+'Re-Auth-Request' (258,request)
+     <Session-Id>....................................(263,0)
+     {Origin-Host}...................................(264,0)
+     {Origin-Realm}..................................(296,0)
+     {Destination-Realm}.............................(283,0)
+     {Destination-Host}..............................(293,0)
+     {Auth-Application-Id}...........................(258,0)
+     {Specific-Action}...............................(513,10415)
+    *[Access-Network-Charging-Identifier]............(502,10415)
+     [Access-Network-Charging-Address]...............(501,10415)
+    *[Flows].........................................(510,10415)
+    *[Subscription-Id]...............................(443,0)
+     [Abort-Cause]...................................(500,10415)
+     [IP-CAN-Type]...................................(1027,10415)
+     [RAT-Type]......................................(1032,10415)
+     [Sponsored-Connectivity-Data]...................(530,10415)
+     [Origin-State-Id]...............................(278,0)
+    *[Class].........................................(25,0)
+    *[Proxy-Info]....................................(284,0)
+    *[Route-Record]..................................(282,0)
+    *[AVP]...........................................(0,0)
+
+'Re-Auth-Answer' (258,answer)
+     <Session-Id>....................................(263,0)
+     {Result-Code}...................................(268,0)
+     {Origin-Host}...................................(264,0)
+     {Origin-Realm}..................................(296,0)
+     [Experimental-Result]...........................(297,0)
+    *[Media-Component-Description]...................(517,10415)
+     [Service-URN]...................................(525,10415)
+    *[Class].........................................(25,0)
+     [Origin-State-Id]...............................(278,0)
+     [Error-Message].................................(281,0)
+     [Error-Reporting-Host]..........................(294,0)
+    *[Failed-AVP]....................................(279,0)
+    *[Redirect-Host].................................(292,0)
+     [Redirect-Host-Usage]...........................(261,0)
+     [Redirect-Max-Cache-Time].......................(262,0)
+    *[Proxy-Info]....................................(284,0)
+    *[AVP]...........................................(0,0)
+
+'AA-Request' (265,request)
+     <Session-Id>....................................(263,0)
+     {Auth-Application-Id}...........................(258,0)
+     {Origin-Host}...................................(264,0)
+     {Origin-Realm}..................................(296,0)
+     {Destination-Realm}.............................(283,0)
+     [Destination-Host]..............................(293,0)
+     [AF-Application-Identifier].....................(504,10415)
+    *[Media-Component-Description]...................(517,10415)
+     [Service-Info-Status]...........................(527,10415)
+     [AF-Charging-Identifier]........................(505,10415)
+     [SIP-Forking-Indication]........................(523,10415)
+    *[Specific-Action]...............................(513,10415)
+    *[Subscription-Id]...............................(443,0)
+    *[Supported-Features]............................(628,10415)
+     [Reservation-Priority]..........................(458,13019)
+     [Framed-IP-Address].............................(8,0)
+     [Framed-IPv6-Prefix]............................(97,0)
+     [Called-Station-Id].............................(30,0)
+     [Service-URN]...................................(525,10415)
+     [Sponsored-Connectivity-Data]...................(530,10415)
+     [MPS-Identifier]................................(528,10415)
+     [Rx-Request-Type]...............................(533,10415)
+     [Origin-State-Id]...............................(278,0)
+    *[Proxy-Info]....................................(284,0)
+    *[Route-Record]..................................(282,0)
+    *[AVP]...........................................(0,0)
+
+'AA-Answer' (265,answer)
+     {Session-Id}....................................(263,0)
+     {Auth-Application-Id}...........................(258,0)
+     {Origin-Host}...................................(264,0)
+     {Origin-Realm}..................................(296,0)
+     [Result-Code]...................................(268,0)
+     [Experimental-Result]...........................(297,0)
+    *[Access-Network-Charging-Identifier]............(502,10415)
+     [Access-Network-Charging-Address]...............(501,10415)
+     [Acceptable-Service-Info].......................(526,10415)
+     [IP-CAN-Type]...................................(1027,10415)
+     [RAT-Type]......................................(1032,10415)
+    *[Flows].........................................(510,10415)
+    *[Supported-Features]............................(628,10415)
+    *[Class].........................................(25,0)
+     [Error-Message].................................(281,0)
+     [Error-Reporting-Host]..........................(294,0)
+    *[Failed-AVP]....................................(279,0)
+     [Origin-State-Id]...............................(278,0)
+    *[Redirect-Host].................................(292,0)
+     [Redirect-Host-Usage]...........................(261,0)
+     [Redirect-Max-Cache-Time].......................(262,0)
+    *[Proxy-Info]....................................(284,0)
+    *[AVP]...........................................(0,0)
+
+'Accounting-Request' (271,request)
+     <Session-Id>....................................(263,0)
+     {Origin-Host}...................................(264,0)
+     {Origin-Realm}..................................(296,0)
+     {Destination-Realm}.............................(283,0)
+     {Accounting-Record-Type}........................(480,0)
+     {Accounting-Record-Number}......................(485,0)
+     [Acct-Application-Id]...........................(259,0)
+     [Vendor-Specific-Application-Id]................(260,0)
+     [User-Name].....................................(1,0)
+     [Accounting-Sub-Session-Id].....................(287,0)
+     [Accounting-Session-Id].........................(44,0)
+     [Acct-Multi-Session-Id].........................(50,0)
+     [Acct-Interim-Interval].........................(85,0)
+     [Accounting-Realtime-Required]..................(483,0)
+     [Origin-State-Id]...............................(278,0)
+     [Event-Timestamp]...............................(55,0)
+    *[Proxy-Info]....................................(284,0)
+    *[Route-Record]..................................(282,0)
+    *[AVP]...........................................(0,0)
+
+'Accounting-Answer' (271,answer)
+     <Session-Id>....................................(263,0)
+     {Result-Code}...................................(268,0)
+     {Origin-Host}...................................(264,0)
+     {Origin-Realm}..................................(296,0)
+     {Accounting-Record-Type}........................(480,0)
+     {Accounting-Record-Number}......................(485,0)
+     [Acct-Application-Id]...........................(259,0)
+     [Vendor-Specific-Application-Id]................(260,0)
+     [User-Name].....................................(1,0)
+     [Accounting-Sub-Session-Id].....................(287,0)
+     [Accounting-Session-Id].........................(44,0)
+     [Acct-Multi-Session-Id].........................(50,0)
+     [Error-Reporting-Host]..........................(294,0)
+     [Acct-Interim-Interval].........................(85,0)
+     [Accounting-Realtime-Required]..................(483,0)
+     [Origin-State-Id]...............................(278,0)
+     [Event-Timestamp]...............................(55,0)
+    *[Proxy-Info]....................................(284,0)
+    *[AVP]...........................................(0,0)
+
+'Credit-Control-Request' (272,request)
+     <Session-Id>....................................(263,0)
+     {Origin-Host}...................................(264,0)
+     {Origin-Realm}..................................(296,0)
+     {Destination-Realm}.............................(283,0)
+     {Auth-Application-Id}...........................(258,0)
+     [Service-Context-Id]............................(461,0)
+     {CC-Request-Type}...............................(416,0)
+     {CC-Request-Number}.............................(415,0)
+     [Destination-Host]..............................(293,0)
+     [User-Name].....................................(1,0)
+     [CC-Sub-Session-Id].............................(419,0)
+     [Acct-Multi-Session-Id].........................(50,0)
+     [Origin-State-Id]...............................(278,0)
+     [Event-Timestamp]...............................(55,0)
+    *[Subscription-Id]...............................(443,0)
+     [Service-Identifier]............................(439,0)
+     [Termination-Cause].............................(295,0)
+     [Requested-Service-Unit]........................(437,0)
+     [Requested-Action]..............................(436,0)
+    *[Used-Service-Unit].............................(446,0)
+     [Multiple-Services-Indicator]...................(455,0)
+    *[Multiple-Services-Credit-Control]..............(456,0)
+    *[Service-Parameter-Info]........................(440,0)
+     [CC-Correlation-Id].............................(411,0)
+     [User-Equipment-Info]...........................(458,0)
+    *[Proxy-Info]....................................(284,0)
+    *[Route-Record]..................................(282,0)
+    *[AVP]...........................................(0,0)
+
+'Credit-Control-Answer' (272,answer)
+     {Session-Id}....................................(263,0)
+     {Result-Code}...................................(268,0)
+     {Origin-Host}...................................(264,0)
+     {Origin-Realm}..................................(296,0)
+     {Auth-Application-Id}...........................(258,0)
+     {CC-Request-Type}...............................(416,0)
+     {CC-Request-Number}.............................(415,0)
+     [User-Name].....................................(1,0)
+     [CC-Session-Failover]...........................(418,0)
+     [CC-Sub-Session-Id].............................(419,0)
+     [Acct-Multi-Session-Id].........................(50,0)
+     [Origin-State-Id]...............................(278,0)
+     [Event-Timestamp]...............................(55,0)
+     [Granted-Service-Unit]..........................(431,0)
+    *[Multiple-Services-Credit-Control]..............(456,0)
+     [Cost-Information]..............................(423,0)
+     [Final-Unit-Indication].........................(430,0)
+     [Check-Balance-Result]..........................(422,0)
+     [Credit-Control-Failure-Handling]...............(427,0)
+     [Direct-Debiting-Failure-Handling]..............(428,0)
+     [Validity-Time].................................(448,0)
+    *[Redirect-Host].................................(292,0)
+     [Redirect-Host-Usage]...........................(261,0)
+     [Redirect-Max-Cache-Time].......................(262,0)
+    *[Proxy-Info]....................................(284,0)
+    *[Route-Record]..................................(282,0)
+    *[Failed-AVP]....................................(279,0)
+    *[AVP]...........................................(0,0)
+
+'Abort-Session-Request' (274,request)
+     <Session-Id>....................................(263,0)
+     {Origin-Host}...................................(264,0)
+     {Origin-Realm}..................................(296,0)
+     {Destination-Realm}.............................(283,0)
+     {Destination-Host}..............................(293,0)
+     {Auth-Application-Id}...........................(258,0)
+     {Abort-Cause}...................................(500,10415)
+     [Origin-State-Id]...............................(278,0)
+    *[Proxy-Info]....................................(284,0)
+    *[Route-Record]..................................(282,0)
+    *[AVP]...........................................(0,0)
+
+'Abort-Session-Answer' (274,answer)
+     <Session-Id>....................................(263,0)
+     {Result-Code}...................................(268,0)
+     {Origin-Host}...................................(264,0)
+     {Origin-Realm}..................................(296,0)
+     [Origin-State-Id]...............................(278,0)
+     [Error-Message].................................(281,0)
+     [Error-Reporting-Host]..........................(294,0)
+    *[Failed-AVP]....................................(279,0)
+    *[Redirect-Host].................................(292,0)
+     [Redirect-Host-Usage]...........................(261,0)
+     [Redirect-Max-Cache-Time].......................(262,0)
+    *[Proxy-Info]....................................(284,0)
+    *[AVP]...........................................(0,0)
+
+'Session-Termination-Request' (275,request)
+     <Session-Id>....................................(263,0)
+     {Origin-Host}...................................(264,0)
+     {Origin-Realm}..................................(296,0)
+     {Destination-Realm}.............................(283,0)
+     {Auth-Application-Id}...........................(258,0)
+     {Termination-Cause}.............................(295,0)
+     [Destination-Host]..............................(293,0)
+    *[Class].........................................(25,0)
+     [Origin-State-Id]...............................(278,0)
+    *[Proxy-Info]....................................(284,0)
+    *[Route-Record]..................................(282,0)
+    *[AVP]...........................................(0,0)
+
+'Session-Termination-Answer' (275,answer)
+     <Session-Id>....................................(263,0)
+     [Result-Code]...................................(268,0)
+     {Origin-Host}...................................(264,0)
+     {Origin-Realm}..................................(296,0)
+    *[Class].........................................(25,0)
+     [Error-Message].................................(281,0)
+     [Error-Reporting-Host]..........................(294,0)
+    *[Failed-AVP]....................................(279,0)
+     [Sponsored-Connectivity-Data]...................(530,10415)
+     [Origin-State-Id]...............................(278,0)
+    *[Redirect-Host].................................(292,0)
+     [Redirect-Host-Usage]...........................(261,0)
+     [Redirect-Max-Cache-Time].......................(262,0)
+    *[Proxy-Info]....................................(284,0)
+    *[AVP]...........................................(0,0)
+
+'Device-Watchdog-Request' (280,request)
+     {Origin-Host}...................................(264,0)
+     {Origin-Realm}..................................(296,0)
+     [Origin-State-Id]...............................(278,0)
+
+'Device-Watchdog-Answer' (280,answer)
+     {Result-Code}...................................(268,0)
+     {Origin-Host}...................................(264,0)
+     {Origin-Realm}..................................(296,0)
+     [Error-Message].................................(281,0)
+    *[Failed-AVP]....................................(279,0)
+     [Origin-State-Id]...............................(278,0)
+
+'Disconnect-Peer-Request' (282,request)
+     {Origin-Host}...................................(264,0)
+     {Origin-Realm}..................................(296,0)
+     {Disconnect-Cause}..............................(273,0)
+
+'Disconnect-Peer-Answer' (282,answer)
+     {Result-Code}...................................(268,0)
+     {Origin-Host}...................................(264,0)
+     {Origin-Realm}..................................(296,0)
+     [Error-Message].................................(281,0)
+    *[Failed-AVP]....................................(279,0)
+
+
+
+
+[12/04/2015 15:32:48] Debug | example/diameter/batchConverter/main.cpp (77) | Hex string (remove colons if exists): 010007b48000010901000014000c73c30004cee4000001074000004274635f30315f46756c6c415650733b61664e6f6465486f73746e616d652e61664e6f6465486f73745265616c6d2e636f6d3b313b38353936303800000000012540000027736170634f776e486f737449642e6f70657261746f725265616c6d2e636f6d000000011b400000196f70657261746f725265616c6d2e636f6d000000000001084000002a61664e6f6465486f73746e616d652e61664e6f6465486f73745265616c6d2e636f6d0000000001284000001b61664e6f6465486f73745265616c6d2e636f6d00000001024000000c01000014000001164000000c00000001000000084000000c00955f24000001bb40000028000001c24000000c00000000000001bc400000133334363030303030303031000000001e4000001464656661756c7441706e4964000001f8c0000015000028af4d6f62696c652d545600000000000205c0000224000028af00000206c0000010000028af0000000100000207c00000c4000028af000001fdc0000010000028af00000001000001fbc0000043000028af7065726d697420696e2031372066726f6d20302e3134392e39352e3336203232333420746f2031302e39352e3133302e3530203232333400000001fbc0000044000028af7065726d6974206f75742031372066726f6d2031302e39352e3133302e3530203232333420746f20302e3134392e39352e33362032323334000001ffc0000010000028af0000000200000200c0000010000028af0000000000000207c00000c4000028af000001fdc0000010000028af00000002000001fbc0000043000028af7065726d697420696e2031372066726f6d20302e3134392e39352e3336203232333520746f2031302e39352e3133302e3530203232333500000001fbc0000044000028af7065726d6974206f75742031372066726f6d2031302e39352e3133302e3530203232333520746f20302e3134392e39352e33362032323335000001ffc0000010000028af0000000200000200c0000010000028af0000000100000208c0000010000028af0000000000000204c0000010000028af0000010000000203c0000010000028af00000100000001ffc0000010000028af00000002000001cac0000010000032db0000000200000209c0000010000028af000001000000020ac0000010000028af000001000000020cc0000010000028af4469765800000205c0000214000028af00000206c0000010000028af0000000100000207c00000c4000028af000001fdc0000010000028af00000001000001fbc0000043000028af7065726d697420696e2031372066726f6d20302e3134392e39352e3336203232333420746f2031302e39352e3133302e3530203232333400000001fbc0000044000028af7065726d6974206f75742031372066726f6d2031302e39352e3133302e3530203232333420746f20302e3134392e39352e33362032323334000001ffc0000010000028af0000000200000200c0000010000028af0000000000000207c00000c4000028af000001fdc0000010000028af00000002000001fbc0000043000028af7065726d697420696e2031372066726f6d20302e3134392e39352e3336203232333520746f2031302e39352e3133302e3530203232333500000001fbc0000044000028af7065726d6974206f75742031372066726f6d2031302e39352e3133302e3530203232333520746f20302e3134392e39352e33362032323335000001ffc0000010000028af0000000200000200c0000010000028af0000000100000208c0000010000028af0000000000000204c0000010000028af0001f40000000203c0000010000028af0001f400000001ffc0000010000028af00000002000001cac0000010000032db0000000600000209c0000010000028af0000fa000000020ac0000010000028af0000fa0000000205c0000148000028af00000206c0000010000028af0000000300000207c00000bc000028af000001fdc0000010000028af00000001000001fbc000003d000028af7065726d697420696e2069702066726f6d20302e3134392e39352e333620333020746f203132372e312e312e3731203330000000000001fbc000003e000028af7065726d6974206f75742069702066726f6d203132372e312e312e373220343020746f20302e3134392e39352e33362034300000000001ffc0000010000028af0000000200000200c0000010000028af0000000000000208c0000010000028af0000000200000204c0000010000028af00007d0000000203c0000010000028af00007d00000001ffc0000010000028af00000002000001cac0000010000032db0000000100000209c0000010000028af00007d000000020ac0000010000028af00007d00000001f9c0000015000028af41462d4d61647269640000000000020bc0000010000028af000000010000020dc0000014000028af736f732e666972650000021080000014000028af4e474e2047455453000001cac0000010000032db0000000100000201c0000010000028af0000000400000201c0000010000028af0000000800000201c0000010000028af000000090000020fc0000010000028af0000000100000274c0000038000028af0000010a4000000c000028af00000275c0000010000028af0000000100000276c0000010000028af00000013
+
+[12/04/2015 15:32:48] Debug | source/diameter/codec/Message.cpp (299) | DataBlock to decode:
+ (0x237a790):
+   0: 01 00 07 b4 80 00 01 09 01 00 00 14 00 0c 73 c3 00 04 ce e4 00 00 01 07   ..............s.........
+  24: 40 00 00 42 74 63 5f 30 31 5f 46 75 6c 6c 41 56 50 73 3b 61 66 4e 6f 64   @..Btc_01_FullAVPs;afNod
+  48: 65 48 6f 73 74 6e 61 6d 65 2e 61 66 4e 6f 64 65 48 6f 73 74 52 65 61 6c   eHostname.afNodeHostReal
+  72: 6d 2e 63 6f 6d 3b 31 3b 38 35 39 36 30 38 00 00 00 00 01 25 40 00 00 27   m.com;1;859608.....%@..'
+  96: 73 61 70 63 4f 77 6e 48 6f 73 74 49 64 2e 6f 70 65 72 61 74 6f 72 52 65   sapcOwnHostId.operatorRe
+ 120: 61 6c 6d 2e 63 6f 6d 00 00 00 01 1b 40 00 00 19 6f 70 65 72 61 74 6f 72   alm.com.....@...operator
+ 144: 52 65 61 6c 6d 2e 63 6f 6d 00 00 00 00 00 01 08 40 00 00 2a 61 66 4e 6f   Realm.com.......@..*afNo
+ 168: 64 65 48 6f 73 74 6e 61 6d 65 2e 61 66 4e 6f 64 65 48 6f 73 74 52 65 61   deHostname.afNodeHostRea
+ 192: 6c 6d 2e 63 6f 6d 00 00 00 00 01 28 40 00 00 1b 61 66 4e 6f 64 65 48 6f   lm.com.....(@...afNodeHo
+ 216: 73 74 52 65 61 6c 6d 2e 63 6f 6d 00 00 00 01 02 40 00 00 0c 01 00 00 14   stRealm.com.....@.......
+ 240: 00 00 01 16 40 00 00 0c 00 00 00 01 00 00 00 08 40 00 00 0c 00 95 5f 24   ....@...........@....._$
+ 264: 00 00 01 bb 40 00 00 28 00 00 01 c2 40 00 00 0c 00 00 00 00 00 00 01 bc   ....@..(....@...........
+ 288: 40 00 00 13 33 34 36 30 30 30 30 30 30 30 31 00 00 00 00 1e 40 00 00 14   @...34600000001.....@...
+ 312: 64 65 66 61 75 6c 74 41 70 6e 49 64 00 00 01 f8 c0 00 00 15 00 00 28 af   defaultApnId..........(.
+ 336: 4d 6f 62 69 6c 65 2d 54 56 00 00 00 00 00 02 05 c0 00 02 24 00 00 28 af   Mobile-TV..........$..(.
+ 360: 00 00 02 06 c0 00 00 10 00 00 28 af 00 00 00 01 00 00 02 07 c0 00 00 c4   ..........(.............
+ 384: 00 00 28 af 00 00 01 fd c0 00 00 10 00 00 28 af 00 00 00 01 00 00 01 fb   ..(...........(.........
+ 408: c0 00 00 43 00 00 28 af 70 65 72 6d 69 74 20 69 6e 20 31 37 20 66 72 6f   ...C..(.permit in 17 fro
+ 432: 6d 20 30 2e 31 34 39 2e 39 35 2e 33 36 20 32 32 33 34 20 74 6f 20 31 30   m 0.149.95.36 2234 to 10
+ 456: 2e 39 35 2e 31 33 30 2e 35 30 20 32 32 33 34 00 00 00 01 fb c0 00 00 44   .95.130.50 2234........D
+ 480: 00 00 28 af 70 65 72 6d 69 74 20 6f 75 74 20 31 37 20 66 72 6f 6d 20 31   ..(.permit out 17 from 1
+ 504: 30 2e 39 35 2e 31 33 30 2e 35 30 20 32 32 33 34 20 74 6f 20 30 2e 31 34   0.95.130.50 2234 to 0.14
+ 528: 39 2e 39 35 2e 33 36 20 32 32 33 34 00 00 01 ff c0 00 00 10 00 00 28 af   9.95.36 2234..........(.
+ 552: 00 00 00 02 00 00 02 00 c0 00 00 10 00 00 28 af 00 00 00 00 00 00 02 07   ..............(.........
+ 576: c0 00 00 c4 00 00 28 af 00 00 01 fd c0 00 00 10 00 00 28 af 00 00 00 02   ......(...........(.....
+ 600: 00 00 01 fb c0 00 00 43 00 00 28 af 70 65 72 6d 69 74 20 69 6e 20 31 37   .......C..(.permit in 17
+ 624: 20 66 72 6f 6d 20 30 2e 31 34 39 2e 39 35 2e 33 36 20 32 32 33 35 20 74    from 0.149.95.36 2235 t
+ 648: 6f 20 31 30 2e 39 35 2e 31 33 30 2e 35 30 20 32 32 33 35 00 00 00 01 fb   o 10.95.130.50 2235.....
+ 672: c0 00 00 44 00 00 28 af 70 65 72 6d 69 74 20 6f 75 74 20 31 37 20 66 72   ...D..(.permit out 17 fr
+ 696: 6f 6d 20 31 30 2e 39 35 2e 31 33 30 2e 35 30 20 32 32 33 35 20 74 6f 20   om 10.95.130.50 2235 to 
+ 720: 30 2e 31 34 39 2e 39 35 2e 33 36 20 32 32 33 35 00 00 01 ff c0 00 00 10   0.149.95.36 2235........
+ 744: 00 00 28 af 00 00 00 02 00 00 02 00 c0 00 00 10 00 00 28 af 00 00 00 01   ..(...............(.....
+ 768: 00 00 02 08 c0 00 00 10 00 00 28 af 00 00 00 00 00 00 02 04 c0 00 00 10   ..........(.............
+ 792: 00 00 28 af 00 00 01 00 00 00 02 03 c0 00 00 10 00 00 28 af 00 00 01 00   ..(...............(.....
+ 816: 00 00 01 ff c0 00 00 10 00 00 28 af 00 00 00 02 00 00 01 ca c0 00 00 10   ..........(.............
+ 840: 00 00 32 db 00 00 00 02 00 00 02 09 c0 00 00 10 00 00 28 af 00 00 01 00   ..2...............(.....
+ 864: 00 00 02 0a c0 00 00 10 00 00 28 af 00 00 01 00 00 00 02 0c c0 00 00 10   ..........(.............
+ 888: 00 00 28 af 44 69 76 58 00 00 02 05 c0 00 02 14 00 00 28 af 00 00 02 06   ..(.DivX..........(.....
+ 912: c0 00 00 10 00 00 28 af 00 00 00 01 00 00 02 07 c0 00 00 c4 00 00 28 af   ......(...............(.
+ 936: 00 00 01 fd c0 00 00 10 00 00 28 af 00 00 00 01 00 00 01 fb c0 00 00 43   ..........(............C
+ 960: 00 00 28 af 70 65 72 6d 69 74 20 69 6e 20 31 37 20 66 72 6f 6d 20 30 2e   ..(.permit in 17 from 0.
+ 984: 31 34 39 2e 39 35 2e 33 36 20 32 32 33 34 20 74 6f 20 31 30 2e 39 35 2e   149.95.36 2234 to 10.95.
+1008: 31 33 30 2e 35 30 20 32 32 33 34 00 00 00 01 fb c0 00 00 44 00 00 28 af   130.50 2234........D..(.
+1032: 70 65 72 6d 69 74 20 6f 75 74 20 31 37 20 66 72 6f 6d 20 31 30 2e 39 35   permit out 17 from 10.95
+1056: 2e 31 33 30 2e 35 30 20 32 32 33 34 20 74 6f 20 30 2e 31 34 39 2e 39 35   .130.50 2234 to 0.149.95
+1080: 2e 33 36 20 32 32 33 34 00 00 01 ff c0 00 00 10 00 00 28 af 00 00 00 02   .36 2234..........(.....
+1104: 00 00 02 00 c0 00 00 10 00 00 28 af 00 00 00 00 00 00 02 07 c0 00 00 c4   ..........(.............
+1128: 00 00 28 af 00 00 01 fd c0 00 00 10 00 00 28 af 00 00 00 02 00 00 01 fb   ..(...........(.........
+1152: c0 00 00 43 00 00 28 af 70 65 72 6d 69 74 20 69 6e 20 31 37 20 66 72 6f   ...C..(.permit in 17 fro
+1176: 6d 20 30 2e 31 34 39 2e 39 35 2e 33 36 20 32 32 33 35 20 74 6f 20 31 30   m 0.149.95.36 2235 to 10
+1200: 2e 39 35 2e 31 33 30 2e 35 30 20 32 32 33 35 00 00 00 01 fb c0 00 00 44   .95.130.50 2235........D
+1224: 00 00 28 af 70 65 72 6d 69 74 20 6f 75 74 20 31 37 20 66 72 6f 6d 20 31   ..(.permit out 17 from 1
+1248: 30 2e 39 35 2e 31 33 30 2e 35 30 20 32 32 33 35 20 74 6f 20 30 2e 31 34   0.95.130.50 2235 to 0.14
+1272: 39 2e 39 35 2e 33 36 20 32 32 33 35 00 00 01 ff c0 00 00 10 00 00 28 af   9.95.36 2235..........(.
+1296: 00 00 00 02 00 00 02 00 c0 00 00 10 00 00 28 af 00 00 00 01 00 00 02 08   ..............(.........
+1320: c0 00 00 10 00 00 28 af 00 00 00 00 00 00 02 04 c0 00 00 10 00 00 28 af   ......(...............(.
+1344: 00 01 f4 00 00 00 02 03 c0 00 00 10 00 00 28 af 00 01 f4 00 00 00 01 ff   ..............(.........
+1368: c0 00 00 10 00 00 28 af 00 00 00 02 00 00 01 ca c0 00 00 10 00 00 32 db   ......(...............2.
+1392: 00 00 00 06 00 00 02 09 c0 00 00 10 00 00 28 af 00 00 fa 00 00 00 02 0a   ..............(.........
+1416: c0 00 00 10 00 00 28 af 00 00 fa 00 00 00 02 05 c0 00 01 48 00 00 28 af   ......(............H..(.
+1440: 00 00 02 06 c0 00 00 10 00 00 28 af 00 00 00 03 00 00 02 07 c0 00 00 bc   ..........(.............
+1464: 00 00 28 af 00 00 01 fd c0 00 00 10 00 00 28 af 00 00 00 01 00 00 01 fb   ..(...........(.........
+1488: c0 00 00 3d 00 00 28 af 70 65 72 6d 69 74 20 69 6e 20 69 70 20 66 72 6f   ...=..(.permit in ip fro
+1512: 6d 20 30 2e 31 34 39 2e 39 35 2e 33 36 20 33 30 20 74 6f 20 31 32 37 2e   m 0.149.95.36 30 to 127.
+1536: 31 2e 31 2e 37 31 20 33 30 00 00 00 00 00 01 fb c0 00 00 3e 00 00 28 af   1.1.71 30..........>..(.
+1560: 70 65 72 6d 69 74 20 6f 75 74 20 69 70 20 66 72 6f 6d 20 31 32 37 2e 31   permit out ip from 127.1
+1584: 2e 31 2e 37 32 20 34 30 20 74 6f 20 30 2e 31 34 39 2e 39 35 2e 33 36 20   .1.72 40 to 0.149.95.36 
+1608: 34 30 00 00 00 00 01 ff c0 00 00 10 00 00 28 af 00 00 00 02 00 00 02 00   40............(.........
+1632: c0 00 00 10 00 00 28 af 00 00 00 00 00 00 02 08 c0 00 00 10 00 00 28 af   ......(...............(.
+1656: 00 00 00 02 00 00 02 04 c0 00 00 10 00 00 28 af 00 00 7d 00 00 00 02 03   ..............(...}.....
+1680: c0 00 00 10 00 00 28 af 00 00 7d 00 00 00 01 ff c0 00 00 10 00 00 28 af   ......(...}...........(.
+1704: 00 00 00 02 00 00 01 ca c0 00 00 10 00 00 32 db 00 00 00 01 00 00 02 09   ..............2.........
+1728: c0 00 00 10 00 00 28 af 00 00 7d 00 00 00 02 0a c0 00 00 10 00 00 28 af   ......(...}...........(.
+1752: 00 00 7d 00 00 00 01 f9 c0 00 00 15 00 00 28 af 41 46 2d 4d 61 64 72 69   ..}...........(.AF-Madri
+1776: 64 00 00 00 00 00 02 0b c0 00 00 10 00 00 28 af 00 00 00 01 00 00 02 0d   d.............(.........
+1800: c0 00 00 14 00 00 28 af 73 6f 73 2e 66 69 72 65 00 00 02 10 80 00 00 14   ......(.sos.fire........
+1824: 00 00 28 af 4e 47 4e 20 47 45 54 53 00 00 01 ca c0 00 00 10 00 00 32 db   ..(.NGN GETS..........2.
+1848: 00 00 00 01 00 00 02 01 c0 00 00 10 00 00 28 af 00 00 00 04 00 00 02 01   ..............(.........
+1872: c0 00 00 10 00 00 28 af 00 00 00 08 00 00 02 01 c0 00 00 10 00 00 28 af   ......(...............(.
+1896: 00 00 00 09 00 00 02 0f c0 00 00 10 00 00 28 af 00 00 00 01 00 00 02 74   ..............(........t
+1920: c0 00 00 38 00 00 28 af 00 00 01 0a 40 00 00 0c 00 00 28 af 00 00 02 75   ...8..(.....@.....(....u
+1944: c0 00 00 10 00 00 28 af 00 00 00 01 00 00 02 76 c0 00 00 10 00 00 28 af   ......(........v......(.
+1968: 00 00 00 13                                                               ....
+
+[12/04/2015 15:32:48] Debug | source/diameter/codec/Message.cpp (420) | Message decoded:
+<message version="1" name="AA-Request" application-id="0" hop-by-hop-id="816067" end-by-end-id="315108">
+   <avp name="Session-Id" data="tc_01_FullAVPs;afNodeHostname.afNodeHostRealm.com;1;859608"/>
+   <avp name="Destination-Host" data="sapcOwnHostId.operatorRealm.com"/>
+   <avp name="Destination-Realm" data="operatorRealm.com"/>
+   <avp name="Origin-Host" data="afNodeHostname.afNodeHostRealm.com"/>
+   <avp name="Origin-Realm" data="afNodeHostRealm.com"/>
+   <avp name="Auth-Application-Id" data="16777236"/>
+   <avp name="Origin-State-Id" data="1"/>
+   <avp name="Framed-IP-Address" hex-data="00955f24"/>
+   <avp name="Subscription-Id">
+      <avp name="Subscription-Id-Type" data="0" alias="END_USER_E164"/>
+      <avp name="Subscription-Id-Data" data="34600000001"/>
+   </avp>
+   <avp name="Called-Station-Id" data="defaultApnId"/>
+   <avp name="AF-Application-Identifier" hex-data="4d6f62696c652d5456"/>
+   <avp name="Media-Component-Description">
+      <avp name="Media-Component-Number" data="1"/>
+      <avp name="Media-Sub-Component">
+         <avp name="Flow-Number" data="1"/>
+         <avp name="Flow-Description" data="permit in 17 from 0.149.95.36 2234 to 10.95.130.50 2234"/>
+         <avp name="Flow-Description" data="permit out 17 from 10.95.130.50 2234 to 0.149.95.36 2234"/>
+         <avp name="Flow-Status" data="2" alias="ENABLED"/>
+         <avp name="Flow-Usage" data="0" alias="NO_INFORMATION"/>
+      </avp>
+      <avp name="Media-Sub-Component">
+         <avp name="Flow-Number" data="2"/>
+         <avp name="Flow-Description" data="permit in 17 from 0.149.95.36 2235 to 10.95.130.50 2235"/>
+         <avp name="Flow-Description" data="permit out 17 from 10.95.130.50 2235 to 0.149.95.36 2235"/>
+         <avp name="Flow-Status" data="2" alias="ENABLED"/>
+         <avp name="Flow-Usage" data="1" alias="RTCP"/>
+      </avp>
+      <avp name="Media-Type" data="0" alias="AUDIO"/>
+      <avp name="Max-Requested-Bandwidth-UL" data="256"/>
+      <avp name="Max-Requested-Bandwidth-DL" data="256"/>
+      <avp name="Flow-Status" data="2" alias="ENABLED"/>
+      <avp name="Reservation-Priority" data="2" alias="PRIORITY-TWO"/>
+      <avp name="RR-Bandwidth" data="256"/>
+      <avp name="RS-Bandwidth" data="256"/>
+      <avp name="Codec-Data" hex-data="44697658"/>
+   </avp>
+   <avp name="Media-Component-Description">
+      <avp name="Media-Component-Number" data="1"/>
+      <avp name="Media-Sub-Component">
+         <avp name="Flow-Number" data="1"/>
+         <avp name="Flow-Description" data="permit in 17 from 0.149.95.36 2234 to 10.95.130.50 2234"/>
+         <avp name="Flow-Description" data="permit out 17 from 10.95.130.50 2234 to 0.149.95.36 2234"/>
+         <avp name="Flow-Status" data="2" alias="ENABLED"/>
+         <avp name="Flow-Usage" data="0" alias="NO_INFORMATION"/>
+      </avp>
+      <avp name="Media-Sub-Component">
+         <avp name="Flow-Number" data="2"/>
+         <avp name="Flow-Description" data="permit in 17 from 0.149.95.36 2235 to 10.95.130.50 2235"/>
+         <avp name="Flow-Description" data="permit out 17 from 10.95.130.50 2235 to 0.149.95.36 2235"/>
+         <avp name="Flow-Status" data="2" alias="ENABLED"/>
+         <avp name="Flow-Usage" data="1" alias="RTCP"/>
+      </avp>
+      <avp name="Media-Type" data="0" alias="AUDIO"/>
+      <avp name="Max-Requested-Bandwidth-UL" data="128000"/>
+      <avp name="Max-Requested-Bandwidth-DL" data="128000"/>
+      <avp name="Flow-Status" data="2" alias="ENABLED"/>
+      <avp name="Reservation-Priority" data="6" alias="PRIORITY-SIX"/>
+      <avp name="RR-Bandwidth" data="64000"/>
+      <avp name="RS-Bandwidth" data="64000"/>
+   </avp>
+   <avp name="Media-Component-Description">
+      <avp name="Media-Component-Number" data="3"/>
+      <avp name="Media-Sub-Component">
+         <avp name="Flow-Number" data="1"/>
+         <avp name="Flow-Description" data="permit in ip from 0.149.95.36 30 to 127.1.1.71 30"/>
+         <avp name="Flow-Description" data="permit out ip from 127.1.1.72 40 to 0.149.95.36 40"/>
+         <avp name="Flow-Status" data="2" alias="ENABLED"/>
+         <avp name="Flow-Usage" data="0" alias="NO_INFORMATION"/>
+      </avp>
+      <avp name="Media-Type" data="2" alias="DATA"/>
+      <avp name="Max-Requested-Bandwidth-UL" data="32000"/>
+      <avp name="Max-Requested-Bandwidth-DL" data="32000"/>
+      <avp name="Flow-Status" data="2" alias="ENABLED"/>
+      <avp name="Reservation-Priority" data="1" alias="PRIORITY-ONE"/>
+      <avp name="RR-Bandwidth" data="32000"/>
+      <avp name="RS-Bandwidth" data="32000"/>
+   </avp>
+   <avp name="AF-Charging-Identifier" hex-data="41462d4d6164726964"/>
+   <avp name="SIP-Forking-Indication" data="1" alias="SEVERAL_DIALOGUES"/>
+   <avp name="Service-URN" hex-data="736f732e66697265"/>
+   <avp name="MPS-Identifier" hex-data="4e474e2047455453"/>
+   <avp name="Reservation-Priority" data="1" alias="PRIORITY-ONE"/>
+   <avp name="Specific-Action" data="4" alias="INDICATION_OF_RELEASE_OF_BEARER"/>
+   <avp name="Specific-Action" data="8" alias="INDICATION_OF_SUCCESSFUL_RESOURCES_ALLOCATION"/>
+   <avp name="Specific-Action" data="9" alias="INDICATION_OF_FAILED_RESOURCES_ALLOCATION"/>
+   <avp name="Service-Info-Status" data="1" alias="PRELIMINARY_SERVICE_INFORMATION"/>
+   <avp name="Supported-Features">
+      <avp name="Vendor-Id" data="10415"/>
+      <avp name="Feature-List-ID" data="1"/>
+      <avp name="Feature-List" data="19"/>
+   </avp>
+</message>
+
+
+[12/04/2015 15:32:48] Debug | example/diameter/batchConverter/main.cpp (77) | Hex string (remove colons if exists): 010001b080000110010000160004e6e6000bd986000001074000004674635f30315f46756c6c415650733b6767736e4e6f6465486f73746e616d652e6767736e4e6f6465486f73745265616c6d2e636f6d3b313b34353232323900000000012540000027736170634f776e486f737449642e6f70657261746f725265616c6d2e636f6d000000011b400000196f70657261746f725265616c6d2e636f6d000000000001084000002e6767736e4e6f6465486f73746e616d652e6767736e4e6f6465486f73745265616c6d2e636f6d0000000001284000001d6767736e4e6f6465486f73745265616c6d2e636f6d000000000001024000000c01000016000001164000000c000000010000019f4000000c00000000000001a04000000c00000001000000084000000c00955f24000003e8c0000010000028af00000000000001bb40000028000001c24000000c00000000000001bc400000133334363030303030303031000000001e4000001464656661756c7441706e496400000274c0000038000028af0000010a4000000c000028af00000275c0000010000028af0000000100000276c0000010000028af0000000b
+
+[12/04/2015 15:32:48] Debug | source/diameter/codec/Message.cpp (299) | DataBlock to decode:
+ (0x237a790):
+   0: 01 00 01 b0 80 00 01 10 01 00 00 16 00 04 e6 e6 00 0b d9 86 00 00 01 07   ........................
+  24: 40 00 00 46 74 63 5f 30 31 5f 46 75 6c 6c 41 56 50 73 3b 67 67 73 6e 4e   @..Ftc_01_FullAVPs;ggsnN
+  48: 6f 64 65 48 6f 73 74 6e 61 6d 65 2e 67 67 73 6e 4e 6f 64 65 48 6f 73 74   odeHostname.ggsnNodeHost
+  72: 52 65 61 6c 6d 2e 63 6f 6d 3b 31 3b 34 35 32 32 32 39 00 00 00 00 01 25   Realm.com;1;452229.....%
+  96: 40 00 00 27 73 61 70 63 4f 77 6e 48 6f 73 74 49 64 2e 6f 70 65 72 61 74   @..'sapcOwnHostId.operat
+ 120: 6f 72 52 65 61 6c 6d 2e 63 6f 6d 00 00 00 01 1b 40 00 00 19 6f 70 65 72   orRealm.com.....@...oper
+ 144: 61 74 6f 72 52 65 61 6c 6d 2e 63 6f 6d 00 00 00 00 00 01 08 40 00 00 2e   atorRealm.com.......@...
+ 168: 67 67 73 6e 4e 6f 64 65 48 6f 73 74 6e 61 6d 65 2e 67 67 73 6e 4e 6f 64   ggsnNodeHostname.ggsnNod
+ 192: 65 48 6f 73 74 52 65 61 6c 6d 2e 63 6f 6d 00 00 00 00 01 28 40 00 00 1d   eHostRealm.com.....(@...
+ 216: 67 67 73 6e 4e 6f 64 65 48 6f 73 74 52 65 61 6c 6d 2e 63 6f 6d 00 00 00   ggsnNodeHostRealm.com...
+ 240: 00 00 01 02 40 00 00 0c 01 00 00 16 00 00 01 16 40 00 00 0c 00 00 00 01   ....@...........@.......
+ 264: 00 00 01 9f 40 00 00 0c 00 00 00 00 00 00 01 a0 40 00 00 0c 00 00 00 01   ....@...........@.......
+ 288: 00 00 00 08 40 00 00 0c 00 95 5f 24 00 00 03 e8 c0 00 00 10 00 00 28 af   ....@....._$..........(.
+ 312: 00 00 00 00 00 00 01 bb 40 00 00 28 00 00 01 c2 40 00 00 0c 00 00 00 00   ........@..(....@.......
+ 336: 00 00 01 bc 40 00 00 13 33 34 36 30 30 30 30 30 30 30 31 00 00 00 00 1e   ....@...34600000001.....
+ 360: 40 00 00 14 64 65 66 61 75 6c 74 41 70 6e 49 64 00 00 02 74 c0 00 00 38   @...defaultApnId...t...8
+ 384: 00 00 28 af 00 00 01 0a 40 00 00 0c 00 00 28 af 00 00 02 75 c0 00 00 10   ..(.....@.....(....u....
+ 408: 00 00 28 af 00 00 00 01 00 00 02 76 c0 00 00 10 00 00 28 af 00 00 00 0b   ..(........v......(.....
+
+[12/04/2015 15:32:48] Debug | source/diameter/codec/Avp.cpp (522) | Unknown format for AVP identifier (1000,10415). Raw data without specific format will be managed
+
+[12/04/2015 15:32:48] Information | source/core/oam/Handler.cpp (99) | diameter::codec oam module | Alarm activation event: AvpDecode__UnknownAvp<'(1000,10415)'>WithMandatoryBit | Enum type on module: 4
+
+[12/04/2015 15:32:48] Debug | source/core/oam/Handler.cpp (130) | diameter::codec oam module | Counter event: AvpDecode__UnknownAvpWithMandatoryBit | Enum type on module: 4 | Amount increased: 1
+
+[12/04/2015 15:32:48] Warning | source/diameter/codec/Avp.cpp (643) | Detected unknown Avp '(1000,10415)' with mandatory bit activated
+
+[12/04/2015 15:32:48] Debug | source/diameter/codec/Message.cpp (420) | Message decoded:
+<message version="1" name="Credit-Control-Request" application-id="0" hop-by-hop-id="321254" end-by-end-id="776582">
+   <avp name="Session-Id" data="tc_01_FullAVPs;ggsnNodeHostname.ggsnNodeHostRealm.com;1;452229"/>
+   <avp name="Destination-Host" data="sapcOwnHostId.operatorRealm.com"/>
+   <avp name="Destination-Realm" data="operatorRealm.com"/>
+   <avp name="Origin-Host" data="ggsnNodeHostname.ggsnNodeHostRealm.com"/>
+   <avp name="Origin-Realm" data="ggsnNodeHostRealm.com"/>
+   <avp name="Auth-Application-Id" data="16777238"/>
+   <avp name="Origin-State-Id" data="1"/>
+   <avp name="CC-Request-Number" data="0"/>
+   <avp name="CC-Request-Type" data="1" alias="INITIAL_REQUEST"/>
+   <avp name="Framed-IP-Address" hex-data="00955f24"/>
+   <avp code="1000" vendor-code="10415" flags="192" hex-data="00000000"/>
+   <avp name="Subscription-Id">
+      <avp name="Subscription-Id-Type" data="0" alias="END_USER_E164"/>
+      <avp name="Subscription-Id-Data" data="34600000001"/>
+   </avp>
+   <avp name="Called-Station-Id" data="defaultApnId"/>
+   <avp name="Supported-Features">
+      <avp name="Vendor-Id" data="10415"/>
+      <avp name="Feature-List-ID" data="1"/>
+      <avp name="Feature-List" data="11"/>
+   </avp>
+</message>
+
+
+[12/04/2015 15:32:48] Debug | example/diameter/batchConverter/main.cpp (77) | Hex string (remove colons if exists): 0100012400000110010000160004e6e6000bd986000001024000000c01000016000001074000004674635f30315f46756c6c415650733b6767736e4e6f6465486f73746e616d652e6767736e4e6f6465486f73745265616c6d2e636f6d3b313b34353232323900000000010840000027736170634f776e486f737449642e6f70657261746f725265616c6d2e636f6d000000010c4000000c000007d1000001164000000c551192a700000128400000196f70657261746f725265616c6d2e636f6d0000000000019f4000000c00000000000001a04000000c000000010000027480000038000028af0000010a4000000c000028af0000027580000010000028af000000010000027680000010000028af0000000b000003ffc0000010000028af00000000
+
+[12/04/2015 15:32:48] Debug | source/diameter/codec/Message.cpp (299) | DataBlock to decode:
+ (0x237a790):
+   0: 01 00 01 24 00 00 01 10 01 00 00 16 00 04 e6 e6 00 0b d9 86 00 00 01 02   ...$....................
+  24: 40 00 00 0c 01 00 00 16 00 00 01 07 40 00 00 46 74 63 5f 30 31 5f 46 75   @...........@..Ftc_01_Fu
+  48: 6c 6c 41 56 50 73 3b 67 67 73 6e 4e 6f 64 65 48 6f 73 74 6e 61 6d 65 2e   llAVPs;ggsnNodeHostname.
+  72: 67 67 73 6e 4e 6f 64 65 48 6f 73 74 52 65 61 6c 6d 2e 63 6f 6d 3b 31 3b   ggsnNodeHostRealm.com;1;
+  96: 34 35 32 32 32 39 00 00 00 00 01 08 40 00 00 27 73 61 70 63 4f 77 6e 48   452229......@..'sapcOwnH
+ 120: 6f 73 74 49 64 2e 6f 70 65 72 61 74 6f 72 52 65 61 6c 6d 2e 63 6f 6d 00   ostId.operatorRealm.com.
+ 144: 00 00 01 0c 40 00 00 0c 00 00 07 d1 00 00 01 16 40 00 00 0c 55 11 92 a7   ....@...........@...U...
+ 168: 00 00 01 28 40 00 00 19 6f 70 65 72 61 74 6f 72 52 65 61 6c 6d 2e 63 6f   ...(@...operatorRealm.co
+ 192: 6d 00 00 00 00 00 01 9f 40 00 00 0c 00 00 00 00 00 00 01 a0 40 00 00 0c   m.......@...........@...
+ 216: 00 00 00 01 00 00 02 74 80 00 00 38 00 00 28 af 00 00 01 0a 40 00 00 0c   .......t...8..(.....@...
+ 240: 00 00 28 af 00 00 02 75 80 00 00 10 00 00 28 af 00 00 00 01 00 00 02 76   ..(....u......(........v
+ 264: 80 00 00 10 00 00 28 af 00 00 00 0b 00 00 03 ff c0 00 00 10 00 00 28 af   ......(...............(.
+ 288: 00 00 00 00                                                               ....
+
+[12/04/2015 15:32:48] Debug | source/diameter/codec/Avp.cpp (522) | Unknown format for AVP identifier (1023,10415). Raw data without specific format will be managed
+
+[12/04/2015 15:32:48] Information | source/core/oam/Handler.cpp (99) | diameter::codec oam module | Alarm activation event: AvpDecode__UnknownAvp<'(1023,10415)'>WithMandatoryBit | Enum type on module: 4
+
+[12/04/2015 15:32:48] Debug | source/core/oam/Handler.cpp (130) | diameter::codec oam module | Counter event: AvpDecode__UnknownAvpWithMandatoryBit | Enum type on module: 4 | Amount increased: 1
+
+[12/04/2015 15:32:48] Warning | source/diameter/codec/Avp.cpp (643) | Detected unknown Avp '(1023,10415)' with mandatory bit activated
+
+[12/04/2015 15:32:48] Debug | source/diameter/codec/Message.cpp (420) | Message decoded:
+<message version="1" name="Credit-Control-Answer" application-id="0" hop-by-hop-id="321254" end-by-end-id="776582">
+   <avp name="Auth-Application-Id" data="16777238"/>
+   <avp name="Session-Id" data="tc_01_FullAVPs;ggsnNodeHostname.ggsnNodeHostRealm.com;1;452229"/>
+   <avp name="Origin-Host" data="sapcOwnHostId.operatorRealm.com"/>
+   <avp name="Result-Code" data="2001" alias="DIAMETER_SUCCESS"/>
+   <avp name="Origin-State-Id" data="1427215015"/>
+   <avp name="Origin-Realm" data="operatorRealm.com"/>
+   <avp name="CC-Request-Number" data="0"/>
+   <avp name="CC-Request-Type" data="1" alias="INITIAL_REQUEST"/>
+   <avp name="Supported-Features">
+      <avp name="Vendor-Id" data="10415"/>
+      <avp name="Feature-List-ID" data="1"/>
+      <avp name="Feature-List" data="11"/>
+   </avp>
+   <avp code="1023" vendor-code="10415" flags="192" hex-data="00000000"/>
+</message>
+
+
+[12/04/2015 15:32:48] Debug | example/diameter/batchConverter/main.cpp (77) | Hex string (remove colons if exists): 010000f80000010901000014000c73c30004cee4000001024000000c01000014000001074000004274635f30315f46756c6c415650733b61664e6f6465486f73746e616d652e61664e6f6465486f73745265616c6d2e636f6d3b313b38353936303800000000010840000027736170634f776e486f737449642e6f70657261746f725265616c6d2e636f6d000000010c4000000c000007d1000001164000000c551192a700000128400000196f70657261746f725265616c6d2e636f6d0000000000027480000038000028af0000010a4000000c000028af0000027580000010000028af000000010000027680000010000028af00000013
+
+[12/04/2015 15:32:48] Debug | source/diameter/codec/Message.cpp (299) | DataBlock to decode:
+ (0x237a790):
+   0: 01 00 00 f8 00 00 01 09 01 00 00 14 00 0c 73 c3 00 04 ce e4 00 00 01 02   ..............s.........
+  24: 40 00 00 0c 01 00 00 14 00 00 01 07 40 00 00 42 74 63 5f 30 31 5f 46 75   @...........@..Btc_01_Fu
+  48: 6c 6c 41 56 50 73 3b 61 66 4e 6f 64 65 48 6f 73 74 6e 61 6d 65 2e 61 66   llAVPs;afNodeHostname.af
+  72: 4e 6f 64 65 48 6f 73 74 52 65 61 6c 6d 2e 63 6f 6d 3b 31 3b 38 35 39 36   NodeHostRealm.com;1;8596
+  96: 30 38 00 00 00 00 01 08 40 00 00 27 73 61 70 63 4f 77 6e 48 6f 73 74 49   08......@..'sapcOwnHostI
+ 120: 64 2e 6f 70 65 72 61 74 6f 72 52 65 61 6c 6d 2e 63 6f 6d 00 00 00 01 0c   d.operatorRealm.com.....
+ 144: 40 00 00 0c 00 00 07 d1 00 00 01 16 40 00 00 0c 55 11 92 a7 00 00 01 28   @...........@...U......(
+ 168: 40 00 00 19 6f 70 65 72 61 74 6f 72 52 65 61 6c 6d 2e 63 6f 6d 00 00 00   @...operatorRealm.com...
+ 192: 00 00 02 74 80 00 00 38 00 00 28 af 00 00 01 0a 40 00 00 0c 00 00 28 af   ...t...8..(.....@.....(.
+ 216: 00 00 02 75 80 00 00 10 00 00 28 af 00 00 00 01 00 00 02 76 80 00 00 10   ...u......(........v....
+ 240: 00 00 28 af 00 00 00 13                                                   ..(.....
+
+[12/04/2015 15:32:48] Debug | source/diameter/codec/Message.cpp (420) | Message decoded:
+<message version="1" name="AA-Answer" application-id="0" hop-by-hop-id="816067" end-by-end-id="315108">
+   <avp name="Auth-Application-Id" data="16777236"/>
+   <avp name="Session-Id" data="tc_01_FullAVPs;afNodeHostname.afNodeHostRealm.com;1;859608"/>
+   <avp name="Origin-Host" data="sapcOwnHostId.operatorRealm.com"/>
+   <avp name="Result-Code" data="2001" alias="DIAMETER_SUCCESS"/>
+   <avp name="Origin-State-Id" data="1427215015"/>
+   <avp name="Origin-Realm" data="operatorRealm.com"/>
+   <avp name="Supported-Features">
+      <avp name="Vendor-Id" data="10415"/>
+      <avp name="Feature-List-ID" data="1"/>
+      <avp name="Feature-List" data="19"/>
+   </avp>
+</message>
+
+
+[12/04/2015 15:32:48] Debug | source/diameter/codec/Message.cpp (937) | Loading diameter message from file './dictionary.xml'
+
+[12/04/2015 15:32:48] Debug | source/xml/Document.cpp (73) | anna::xml::Document::initialize (char*) | begin
+
+[12/04/2015 15:32:48] Debug | source/xml/DocumentFile.cpp (59) | anna::xml::DocumentFile::do_initialize | begin
+
+[12/04/2015 15:32:48] Debug | source/xml/DocumentFile.cpp (65) | xml::DocumentFile::do_initialize | Filename: ./dictionary.xml
+
+[12/04/2015 15:32:48] Debug | source/xml/DocumentFile.cpp (0) | anna::xml::DocumentFile::do_initialize | end
+
+[12/04/2015 15:32:48] Debug | source/xml/Document.cpp (0) | anna::xml::Document::initialize (char*) | end
+
+[12/04/2015 15:32:48] Debug | source/xml/Parser.cpp (88) | anna::xml::Parser::apply(Document,DTD) | begin
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element dictionary 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute name of element dictionary 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element vendor 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute name of element vendor 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute code of element vendor 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element vendor 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute name of element vendor 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute code of element vendor 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element vendor 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute name of element vendor 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute code of element vendor 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (grouped ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element grouped 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute enum of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute enum of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute enum of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute enum of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute enum of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (grouped ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element grouped 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (grouped ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element grouped 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute enum of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute enum of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (grouped ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element grouped 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (grouped ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element grouped 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (grouped ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element grouped 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute enum of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute enum of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute enum of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (grouped ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element grouped 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute enum of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute enum of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute enum of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (grouped ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element grouped 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (grouped ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element grouped 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute enum of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (grouped ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element grouped 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute enum of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (grouped ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element grouped 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (grouped ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element grouped 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (grouped ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element grouped 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (grouped ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element grouped 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (grouped ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element grouped 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute enum of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute enum of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute enum of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute enum of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute enum of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (grouped ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element grouped 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (grouped ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element grouped 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (grouped ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element grouped 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute enum of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute enum of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute enum of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute enum of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (grouped ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element grouped 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (grouped ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element grouped 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute enum of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute enum of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute enum of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (grouped ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element grouped 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (grouped ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element grouped 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute enum of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute enum of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (grouped ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element grouped 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute enum of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute enum of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (grouped ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element grouped 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute enum of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (grouped ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element grouped 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (grouped ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element grouped 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute enum of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (grouped ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element grouped 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute enum of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (grouped ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element grouped 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (grouped ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element grouped 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (grouped ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element grouped 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (grouped ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element grouped 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (grouped ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element grouped 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute enum of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute enum of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (grouped ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element grouped 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute enum of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute enum of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute enum of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (grouped ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element grouped 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (grouped ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element grouped 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (grouped ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element grouped 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (grouped ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element grouped 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute enum of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (grouped ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element grouped 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (grouped ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element grouped 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (grouped ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element grouped 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute enum of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute enum of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute enum of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (grouped ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element grouped 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (grouped ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element grouped 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute enum of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (grouped ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element grouped 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute enum of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute enum of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute enum of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (grouped ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element grouped 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute enum of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute enum of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute enum of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute enum of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute enum of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute enum of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute enum of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (grouped ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element grouped 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (grouped ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element grouped 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (grouped ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element grouped 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (grouped ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element grouped 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute enum of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (grouped ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element grouped 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute enum of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (grouped ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element grouped 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (grouped ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element grouped 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (grouped ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element grouped 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (grouped ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element grouped 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (grouped ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element grouped 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute enum of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute enum of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (grouped ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element grouped 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute enum of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute enum of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute enum of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (grouped ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element grouped 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (grouped ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element grouped 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (grouped ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element grouped 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (grouped ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element grouped 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute enum of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute enum of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (grouped ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element grouped 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (grouped ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element grouped 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (grouped ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element grouped 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (grouped ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element grouped 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (grouped ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element grouped 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (grouped ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element grouped 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute enum of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute enum of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (grouped ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element grouped 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute enum of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | Element avp content does not follow the DTD, expecting (avp)*, got (single ) 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute vendor-name of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute may-encrypt of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute v-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute m-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute p-bit of element avp 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute format-name of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute enum of element single 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute data of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute alias of element label 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element command 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute name of element command 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute code of element command 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element command 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element command 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute name of element command 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute code of element command 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element command 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element command 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute name of element command 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute code of element command 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element command 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element command 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute name of element command 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute code of element command 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element command 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element command 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute name of element command 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute code of element command 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element command 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element command 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute name of element command 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute code of element command 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element command 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element command 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute name of element command 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute code of element command 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element command 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element command 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute name of element command 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute code of element command 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element command 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element command 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute name of element command 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute code of element command 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element command 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element command 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute name of element command 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute code of element command 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element command 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element command 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute name of element command 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute code of element command 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element command 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element command 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute name of element command 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute code of element command 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element command 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element command 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute name of element command 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute code of element command 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element command 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element command 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute name of element command 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute code of element command 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element command 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element command 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute name of element command 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute code of element command 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element command 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element command 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute name of element command 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute code of element command 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element command 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element command 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute name of element command 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute code of element command 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element command 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element command 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute name of element command 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute code of element command 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element command 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute id of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute type of element avprule 
+
+[12/04/2015 15:32:48] Error | source/xml/Parser.cpp (188) | No declaration for attribute qual of element avprule 
+
+
+--------------------------------------------------------------
+- [12/04/2015 16:26:29]
+- Current trace level: Warning
+- Max file size : 2000 Kb
+--------------------------------------------------------------
+[12/04/2015 16:26:29] Warning | source/diameter/codec/Avp.cpp (643) | Detected unknown Avp '(1000,10415)' with mandatory bit activated
+
+[12/04/2015 16:26:29] Warning | source/diameter/codec/Avp.cpp (643) | Detected unknown Avp '(1023,10415)' with mandatory bit activated
+
+
+--------------------------------------------------------------
+- [12/04/2015 16:27:12]
+- Current trace level: Warning
+- Max file size : 2000 Kb
+--------------------------------------------------------------
+[12/04/2015 16:27:12] Warning | source/diameter/codec/Avp.cpp (643) | Detected unknown Avp '(1000,10415)' with mandatory bit activated
+
+[12/04/2015 16:27:12] Warning | source/diameter/codec/Avp.cpp (643) | Detected unknown Avp '(1023,10415)' with mandatory bit activated
+
+
+--------------------------------------------------------------
+- [12/04/2015 16:28:21]
+- Current trace level: Warning
+- Max file size : 2000 Kb
+--------------------------------------------------------------
+[12/04/2015 16:28:21] Error | source/diameter/codec/Avp.cpp (471) | Mandatory Bit (M) incoherence found
+
+[12/04/2015 16:28:21] Error | source/diameter/codec/Avp.cpp (471) | Mandatory Bit (M) incoherence found
+
+[12/04/2015 16:28:21] Error | source/diameter/codec/Avp.cpp (471) | Mandatory Bit (M) incoherence found
+
+[12/04/2015 16:28:21] Error | source/diameter/codec/Avp.cpp (471) | Mandatory Bit (M) incoherence found
+
+[12/04/2015 16:28:21] Error | source/diameter/codec/Avp.cpp (471) | Mandatory Bit (M) incoherence found
+
+[12/04/2015 16:28:21] Error | source/diameter/codec/Avp.cpp (471) | Mandatory Bit (M) incoherence found
+
+[12/04/2015 16:28:21] Warning | source/diameter/codec/Avp.cpp (643) | Detected unknown Avp '(1000,10415)' with mandatory bit activated
+
+[12/04/2015 16:28:21] Error | source/diameter/codec/Avp.cpp (471) | Mandatory Bit (M) incoherence found
+
+[12/04/2015 16:28:21] Error | source/diameter/codec/Avp.cpp (471) | Mandatory Bit (M) incoherence found
+
+[12/04/2015 16:28:21] Warning | source/diameter/codec/Avp.cpp (643) | Detected unknown Avp '(1023,10415)' with mandatory bit activated
+
+
+--------------------------------------------------------------
+- [12/04/2015 16:33:05]
+- Current trace level: Warning
+- Max file size : 2000 Kb
+--------------------------------------------------------------
+[12/04/2015 16:33:05] Error | source/diameter/codec/Avp.cpp (471) | Mandatory Bit (M) incoherence found
+
+[12/04/2015 16:33:05] Error | source/diameter/codec/Avp.cpp (471) | Mandatory Bit (M) incoherence found
+
+[12/04/2015 16:33:05] Error | source/diameter/codec/Avp.cpp (471) | Mandatory Bit (M) incoherence found
+
+[12/04/2015 16:33:05] Error | source/diameter/codec/Avp.cpp (471) | Mandatory Bit (M) incoherence found
+
+[12/04/2015 16:33:05] Error | source/diameter/codec/Avp.cpp (471) | Mandatory Bit (M) incoherence found
+
+[12/04/2015 16:33:05] Error | source/diameter/codec/Avp.cpp (471) | Mandatory Bit (M) incoherence found
+
+[12/04/2015 16:33:05] Warning | source/diameter/codec/Avp.cpp (643) | Detected unknown Avp '(1000,10415)' with mandatory bit activated
+
+[12/04/2015 16:33:05] Error | source/diameter/codec/Avp.cpp (471) | Mandatory Bit (M) incoherence found
+
+[12/04/2015 16:33:05] Error | source/diameter/codec/Avp.cpp (471) | Mandatory Bit (M) incoherence found
+
+[12/04/2015 16:33:05] Warning | source/diameter/codec/Avp.cpp (643) | Detected unknown Avp '(1023,10415)' with mandatory bit activated
+
+
+--------------------------------------------------------------
+- [12/04/2015 16:34:53]
+- Current trace level: Warning
+- Max file size : 2000 Kb
+--------------------------------------------------------------
+[12/04/2015 16:36:32] Error | source/diameter/codec/Avp.cpp (471) | Mandatory Bit (M) incoherence found
+
+[12/04/2015 16:36:32] Warning | source/diameter/codec/EngineImpl.cpp (279) | Validation error: The AVP 'AA-Request->Media-Component-Description->Reservation-Priority' flags (192) does not fulfill the defined flag rules: 'must(V), may(P), mustnot(M), mayEncypt(Y)'
+
+[12/04/2015 16:36:32] Error | source/diameter/codec/Avp.cpp (471) | Mandatory Bit (M) incoherence found
+
+[12/04/2015 16:36:32] Warning | source/diameter/codec/EngineImpl.cpp (279) | Validation error: The AVP 'AA-Request->Media-Component-Description->Reservation-Priority' flags (192) does not fulfill the defined flag rules: 'must(V), may(P), mustnot(M), mayEncypt(Y)'
+
+[12/04/2015 16:36:32] Error | source/diameter/codec/Avp.cpp (471) | Mandatory Bit (M) incoherence found
+
+[12/04/2015 16:36:32] Warning | source/diameter/codec/EngineImpl.cpp (279) | Validation error: The AVP 'AA-Request->Media-Component-Description->Reservation-Priority' flags (192) does not fulfill the defined flag rules: 'must(V), may(P), mustnot(M), mayEncypt(Y)'
+
+[12/04/2015 16:36:32] Error | source/diameter/codec/Avp.cpp (471) | Mandatory Bit (M) incoherence found
+
+[12/04/2015 16:36:32] Warning | source/diameter/codec/EngineImpl.cpp (279) | Validation error: The AVP 'AA-Request->Reservation-Priority' flags (192) does not fulfill the defined flag rules: 'must(V), may(P), mustnot(M), mayEncypt(Y)'
+
+[12/04/2015 16:36:32] Error | source/diameter/codec/Avp.cpp (471) | Mandatory Bit (M) incoherence found
+
+[12/04/2015 16:36:32] Warning | source/diameter/codec/EngineImpl.cpp (279) | Validation error: The AVP 'AA-Request->Supported-Features->Feature-List-ID' flags (192) does not fulfill the defined flag rules: 'must(V), may(P), mustnot(M), mayEncypt(N)'
+
+[12/04/2015 16:36:32] Error | source/diameter/codec/Avp.cpp (471) | Mandatory Bit (M) incoherence found
+
+[12/04/2015 16:36:32] Warning | source/diameter/codec/EngineImpl.cpp (279) | Validation error: The AVP 'AA-Request->Supported-Features->Feature-List' flags (192) does not fulfill the defined flag rules: 'must(V), may(P), mustnot(M), mayEncypt(N)'
+
+
+--------------------------------------------------------------
+- [12/04/2015 16:37:41]
+- Current trace level: Warning
+- Max file size : 2000 Kb
+--------------------------------------------------------------
+[12/04/2015 16:37:41] Error | source/diameter/codec/Avp.cpp (471) | Mandatory Bit (M) incoherence found
+
+[12/04/2015 16:37:41] Warning | source/diameter/codec/EngineImpl.cpp (279) | Validation error: The AVP 'AA-Request->Media-Component-Description->Reservation-Priority' flags (192) does not fulfill the defined flag rules: 'must(V), may(P), mustnot(M), mayEncypt(Y)'
+
+[12/04/2015 16:37:41] Error | source/diameter/codec/Avp.cpp (471) | Mandatory Bit (M) incoherence found
+
+[12/04/2015 16:37:41] Warning | source/diameter/codec/EngineImpl.cpp (279) | Validation error: The AVP 'AA-Request->Media-Component-Description->Reservation-Priority' flags (192) does not fulfill the defined flag rules: 'must(V), may(P), mustnot(M), mayEncypt(Y)'
+
+[12/04/2015 16:37:41] Error | source/diameter/codec/Avp.cpp (471) | Mandatory Bit (M) incoherence found
+
+[12/04/2015 16:37:41] Warning | source/diameter/codec/EngineImpl.cpp (279) | Validation error: The AVP 'AA-Request->Media-Component-Description->Reservation-Priority' flags (192) does not fulfill the defined flag rules: 'must(V), may(P), mustnot(M), mayEncypt(Y)'
+
+[12/04/2015 16:37:41] Error | source/diameter/codec/Avp.cpp (471) | Mandatory Bit (M) incoherence found
+
+[12/04/2015 16:37:41] Warning | source/diameter/codec/EngineImpl.cpp (279) | Validation error: The AVP 'AA-Request->Reservation-Priority' flags (192) does not fulfill the defined flag rules: 'must(V), may(P), mustnot(M), mayEncypt(Y)'
+
+[12/04/2015 16:37:41] Error | source/diameter/codec/Avp.cpp (471) | Mandatory Bit (M) incoherence found
+
+[12/04/2015 16:37:41] Warning | source/diameter/codec/EngineImpl.cpp (279) | Validation error: The AVP 'AA-Request->Supported-Features->Feature-List-ID' flags (192) does not fulfill the defined flag rules: 'must(V), may(P), mustnot(M), mayEncypt(N)'
+
+[12/04/2015 16:37:41] Error | source/diameter/codec/Avp.cpp (471) | Mandatory Bit (M) incoherence found
+
+[12/04/2015 16:37:41] Warning | source/diameter/codec/EngineImpl.cpp (279) | Validation error: The AVP 'AA-Request->Supported-Features->Feature-List' flags (192) does not fulfill the defined flag rules: 'must(V), may(P), mustnot(M), mayEncypt(N)'
+
+
+--------------------------------------------------------------
+- [12/04/2015 16:38:51]
+- Current trace level: Warning
+- Max file size : 2000 Kb
+--------------------------------------------------------------
+[12/04/2015 16:39:01] Error | source/diameter/codec/Avp.cpp (471) | Mandatory Bit (M) incoherence found
+
+[12/04/2015 16:39:01] Error | source/diameter/codec/Avp.cpp (471) | Mandatory Bit (M) incoherence found
+
+[12/04/2015 16:39:01] Error | source/diameter/codec/Avp.cpp (471) | Mandatory Bit (M) incoherence found
+
+[12/04/2015 16:39:01] Error | source/diameter/codec/Avp.cpp (471) | Mandatory Bit (M) incoherence found
+
+[12/04/2015 16:39:01] Error | source/diameter/codec/Avp.cpp (471) | Mandatory Bit (M) incoherence found
+
+[12/04/2015 16:39:01] Error | source/diameter/codec/Avp.cpp (471) | Mandatory Bit (M) incoherence found
+
+
+--------------------------------------------------------------
+- [12/04/2015 16:39:16]
+- Current trace level: Warning
+- Max file size : 2000 Kb
+--------------------------------------------------------------
+
+--------------------------------------------------------------
+- [12/04/2015 16:41:53]
+- Current trace level: Warning
+- Max file size : 2000 Kb
+--------------------------------------------------------------
+
+--------------------------------------------------------------
+- [12/04/2015 16:42:22]
+- Current trace level: Warning
+- Max file size : 2000 Kb
+--------------------------------------------------------------
+
+--------------------------------------------------------------
+- [12/04/2015 16:42:48]
+- Current trace level: Warning
+- Max file size : 2000 Kb
+--------------------------------------------------------------
+
+--------------------------------------------------------------
+- [12/04/2015 16:43:50]
+- Current trace level: Warning
+- Max file size : 2000 Kb
+--------------------------------------------------------------
+
+--------------------------------------------------------------
+- [12/04/2015 16:44:11]
+- Current trace level: Warning
+- Max file size : 2000 Kb
+--------------------------------------------------------------
+
+--------------------------------------------------------------
+- [12/04/2015 16:44:32]
+- Current trace level: Warning
+- Max file size : 2000 Kb
+--------------------------------------------------------------
+
+--------------------------------------------------------------
+- [12/04/2015 17:22:53]
+- Current trace level: Warning
+- Max file size : 2000 Kb
+--------------------------------------------------------------
+[12/04/2015 17:22:53] Warning | source/diameter/codec/Avp.cpp (643) | Detected unknown Avp '(1000,10415)' with mandatory bit activated
+
+[12/04/2015 17:22:53] Warning | source/diameter/codec/Avp.cpp (643) | Detected unknown Avp '(1023,10415)' with mandatory bit activated
+
+
+--------------------------------------------------------------
+- [12/04/2015 17:24:47]
+- Current trace level: Warning
+- Max file size : 2000 Kb
+--------------------------------------------------------------
+[12/04/2015 17:24:47] Warning | source/diameter/codec/Avp.cpp (643) | Detected unknown Avp '(1000,10415)' with mandatory bit activated
+
+[12/04/2015 17:24:47] Warning | source/diameter/codec/Avp.cpp (643) | Detected unknown Avp '(1023,10415)' with mandatory bit activated
+
+
+--------------------------------------------------------------
+- [12/04/2015 17:25:31]
+- Current trace level: Warning
+- Max file size : 2000 Kb
+--------------------------------------------------------------
+[12/04/2015 17:25:31] Error | source/diameter/codec/Avp.cpp (471) | Mandatory Bit (M) incoherence found
+
+[12/04/2015 17:25:31] Error | source/diameter/codec/Avp.cpp (471) | Mandatory Bit (M) incoherence found
+
+[12/04/2015 17:25:31] Error | source/diameter/codec/Avp.cpp (471) | Mandatory Bit (M) incoherence found
+
+[12/04/2015 17:25:31] Error | source/diameter/codec/Avp.cpp (471) | Mandatory Bit (M) incoherence found
+
+[12/04/2015 17:25:31] Error | source/diameter/codec/Avp.cpp (471) | Mandatory Bit (M) incoherence found
+
+[12/04/2015 17:25:31] Error | source/diameter/codec/Avp.cpp (471) | Mandatory Bit (M) incoherence found
+
+[12/04/2015 17:25:31] Warning | source/diameter/codec/Avp.cpp (643) | Detected unknown Avp '(1000,10415)' with mandatory bit activated
+
+[12/04/2015 17:25:31] Error | source/diameter/codec/Avp.cpp (471) | Mandatory Bit (M) incoherence found
+
+[12/04/2015 17:25:31] Error | source/diameter/codec/Avp.cpp (471) | Mandatory Bit (M) incoherence found
+
+[12/04/2015 17:25:31] Warning | source/diameter/codec/Avp.cpp (643) | Detected unknown Avp '(1023,10415)' with mandatory bit activated
+
+
+--------------------------------------------------------------
+- [12/04/2015 17:27:09]
+- Current trace level: Warning
+- Max file size : 2000 Kb
+--------------------------------------------------------------
+[12/04/2015 17:27:09] Warning | source/diameter/codec/Avp.cpp (643) | Detected unknown Avp '(1000,10415)' with mandatory bit activated
+
+[12/04/2015 17:27:09] Error | source/diameter/codec/Avp.cpp (471) | Mandatory Bit (M) incoherence found
+
+[12/04/2015 17:27:09] Error | source/diameter/codec/Avp.cpp (471) | Mandatory Bit (M) incoherence found
+
+
+--------------------------------------------------------------
+- [12/04/2015 17:28:13]
+- Current trace level: Warning
+- Max file size : 2000 Kb
+--------------------------------------------------------------
+[12/04/2015 17:28:13] Warning | source/diameter/codec/Avp.cpp (643) | Detected unknown Avp '(1000,10415)' with mandatory bit activated
+
+[12/04/2015 17:28:13] Error | source/diameter/codec/Avp.cpp (471) | Mandatory Bit (M) incoherence found
+
+[12/04/2015 17:28:13] Error | source/diameter/codec/Avp.cpp (471) | Mandatory Bit (M) incoherence found
+
+
+--------------------------------------------------------------
+- [12/04/2015 17:33:29]
+- Current trace level: Warning
+- Max file size : 2000 Kb
+--------------------------------------------------------------
+[12/04/2015 17:33:29] Error | source/diameter/codec/Avp.cpp (471) | Mandatory Bit (M) incoherence found
+
+[12/04/2015 17:33:29] Error | source/diameter/codec/Avp.cpp (471) | Mandatory Bit (M) incoherence found
+
+[12/04/2015 17:33:29] Error | source/diameter/codec/Avp.cpp (471) | Mandatory Bit (M) incoherence found
+
+[12/04/2015 17:33:29] Error | source/diameter/codec/Avp.cpp (471) | Mandatory Bit (M) incoherence found
+
+[12/04/2015 17:33:29] Error | source/diameter/codec/Avp.cpp (471) | Mandatory Bit (M) incoherence found
+
+[12/04/2015 17:33:29] Error | source/diameter/codec/Avp.cpp (471) | Mandatory Bit (M) incoherence found
+
+[12/04/2015 17:33:29] Warning | source/diameter/codec/Avp.cpp (643) | Detected unknown Avp '(1000,10415)' with mandatory bit activated
+
+[12/04/2015 17:33:29] Error | source/diameter/codec/Avp.cpp (471) | Mandatory Bit (M) incoherence found
+
+[12/04/2015 17:33:29] Error | source/diameter/codec/Avp.cpp (471) | Mandatory Bit (M) incoherence found
+
+[12/04/2015 17:33:29] Warning | source/diameter/codec/Avp.cpp (643) | Detected unknown Avp '(1023,10415)' with mandatory bit activated
+
+
+--------------------------------------------------------------
+- [12/04/2015 17:34:21]
+- Current trace level: Warning
+- Max file size : 2000 Kb
+--------------------------------------------------------------
+[12/04/2015 17:34:21] Warning | source/diameter/codec/Avp.cpp (643) | Detected unknown Avp '(1000,10415)' with mandatory bit activated
+
+[12/04/2015 17:34:21] Error | source/diameter/codec/Avp.cpp (471) | Mandatory Bit (M) incoherence found
+
+[12/04/2015 17:34:21] Error | source/diameter/codec/Avp.cpp (471) | Mandatory Bit (M) incoherence found
+
+
+--------------------------------------------------------------
+- [12/04/2015 17:34:59]
+- Current trace level: Warning
+- Max file size : 2000 Kb
+--------------------------------------------------------------
+[12/04/2015 17:34:59] Warning | source/diameter/codec/Avp.cpp (643) | Detected unknown Avp '(1000,10415)' with mandatory bit activated
+
+[12/04/2015 17:34:59] Error | source/diameter/codec/Avp.cpp (471) | Mandatory Bit (M) incoherence found
+
+[12/04/2015 17:34:59] Error | source/diameter/codec/Avp.cpp (471) | Mandatory Bit (M) incoherence found
+
+
+--------------------------------------------------------------
+- [12/04/2015 18:45:37]
+- Current trace level: Warning
+- Max file size : 2000 Kb
+--------------------------------------------------------------
+[12/04/2015 18:45:37] Warning | source/diameter/codec/Avp.cpp (643) | Detected unknown Avp '(1000,10415)' with mandatory bit activated
+
+[12/04/2015 18:45:37] Error | source/diameter/codec/Avp.cpp (471) | Mandatory Bit (M) incoherence found
+
+[12/04/2015 18:45:37] Error | source/diameter/codec/Avp.cpp (471) | Mandatory Bit (M) incoherence found
+
+
+--------------------------------------------------------------
+- [12/04/2015 18:52:43]
+- Current trace level: Warning
+- Max file size : 2000 Kb
+--------------------------------------------------------------
+[12/04/2015 18:52:43] Error | source/diameter/codec/Avp.cpp (471) | Mandatory Bit (M) incoherence found
+
+[12/04/2015 18:52:43] Error | source/diameter/codec/Avp.cpp (471) | Mandatory Bit (M) incoherence found
+
+[12/04/2015 18:52:43] Error | source/diameter/codec/Avp.cpp (471) | Mandatory Bit (M) incoherence found
+
+[12/04/2015 18:52:43] Error | source/diameter/codec/Avp.cpp (471) | Mandatory Bit (M) incoherence found
+
+[12/04/2015 18:52:43] Error | source/diameter/codec/Avp.cpp (471) | Mandatory Bit (M) incoherence found
+
+[12/04/2015 18:52:43] Error | source/diameter/codec/Avp.cpp (471) | Mandatory Bit (M) incoherence found
+
+[12/04/2015 18:52:43] Warning | source/diameter/codec/Avp.cpp (643) | Detected unknown Avp '(1000,10415)' with mandatory bit activated
+
+[12/04/2015 18:52:43] Error | source/diameter/codec/Avp.cpp (471) | Mandatory Bit (M) incoherence found
+
+[12/04/2015 18:52:43] Error | source/diameter/codec/Avp.cpp (471) | Mandatory Bit (M) incoherence found
+
+[12/04/2015 18:52:43] Warning | source/diameter/codec/Avp.cpp (643) | Detected unknown Avp '(1023,10415)' with mandatory bit activated
+
+
+--------------------------------------------------------------
+- [12/04/2015 18:57:34]
+- Current trace level: Warning
+- Max file size : 2000 Kb
+--------------------------------------------------------------
+[12/04/2015 18:57:34] Warning | source/diameter/codec/Avp.cpp (643) | Detected unknown Avp '(1000,10415)' with mandatory bit activated
+
+[12/04/2015 18:57:34] Warning | source/diameter/codec/Avp.cpp (643) | Detected unknown Avp '(1023,10415)' with mandatory bit activated
+
+
+--------------------------------------------------------------
+- [12/04/2015 19:13:47]
+- Current trace level: Warning
+- Max file size : 2000 Kb
+--------------------------------------------------------------
+[12/04/2015 19:13:47] Error | source/diameter/codec/Avp.cpp (471) | Mandatory Bit (M) incoherence found
+
+[12/04/2015 19:13:47] Error | source/diameter/codec/Avp.cpp (471) | Mandatory Bit (M) incoherence found
+
+[12/04/2015 19:13:47] Error | source/diameter/codec/Avp.cpp (471) | Mandatory Bit (M) incoherence found
+
+[12/04/2015 19:13:47] Error | source/diameter/codec/Avp.cpp (471) | Mandatory Bit (M) incoherence found
+
+[12/04/2015 19:13:47] Error | source/diameter/codec/Avp.cpp (471) | Mandatory Bit (M) incoherence found
+
+[12/04/2015 19:13:47] Error | source/diameter/codec/Avp.cpp (471) | Mandatory Bit (M) incoherence found
+
+[12/04/2015 19:13:47] Warning | source/diameter/codec/Avp.cpp (643) | Detected unknown Avp '(1000,10415)' with mandatory bit activated
+
+[12/04/2015 19:13:47] Error | source/diameter/codec/Avp.cpp (471) | Mandatory Bit (M) incoherence found
+
+[12/04/2015 19:13:47] Error | source/diameter/codec/Avp.cpp (471) | Mandatory Bit (M) incoherence found
+
+[12/04/2015 19:13:47] Warning | source/diameter/codec/Avp.cpp (643) | Detected unknown Avp '(1023,10415)' with mandatory bit activated
+
+
+--------------------------------------------------------------
+- [12/04/2015 19:25:00]
+- Current trace level: Warning
+- Max file size : 2000 Kb
+--------------------------------------------------------------
+[12/04/2015 19:25:00] Error | source/diameter/codec/Avp.cpp (471) | Mandatory Bit (M) incoherence found
+
+[12/04/2015 19:25:00] Error | source/diameter/codec/Avp.cpp (471) | Mandatory Bit (M) incoherence found
+
+[12/04/2015 19:25:00] Error | source/diameter/codec/Avp.cpp (471) | Mandatory Bit (M) incoherence found
+
+[12/04/2015 19:25:00] Error | source/diameter/codec/Avp.cpp (471) | Mandatory Bit (M) incoherence found
+
+[12/04/2015 19:25:00] Error | source/diameter/codec/Avp.cpp (471) | Mandatory Bit (M) incoherence found
+
+[12/04/2015 19:25:00] Error | source/diameter/codec/Avp.cpp (471) | Mandatory Bit (M) incoherence found
+
+[12/04/2015 19:25:00] Warning | source/diameter/codec/Avp.cpp (643) | Detected unknown Avp '(1000,10415)' with mandatory bit activated
+
+[12/04/2015 19:25:00] Error | source/diameter/codec/Avp.cpp (471) | Mandatory Bit (M) incoherence found
+
+[12/04/2015 19:25:00] Error | source/diameter/codec/Avp.cpp (471) | Mandatory Bit (M) incoherence found
+
+[12/04/2015 19:25:00] Warning | source/diameter/codec/Avp.cpp (643) | Detected unknown Avp '(1023,10415)' with mandatory bit activated
+
+
+--------------------------------------------------------------
+- [12/04/2015 19:25:45]
+- Current trace level: Warning
+- Max file size : 2000 Kb
+--------------------------------------------------------------
diff --git a/example/diameter/batchConverter/main.cpp b/example/diameter/batchConverter/main.cpp
new file mode 100644 (file)
index 0000000..ff3e625
--- /dev/null
@@ -0,0 +1,270 @@
+// ANNA - Anna is Not Nothingness Anymore
+//
+// (c) Copyright 2005-2014 Eduardo Ramos Testillano & Francisco Ruiz Rayo
+//
+// http://redmine.teslayout.com/projects/anna-suite
+//
+// Redistribution and use in source and binary forms, with or without
+// modification, are permitted provided that the following conditions
+// are met:
+//
+//     * Redistributions of source code must retain the above copyright
+// notice, this list of conditions and the following disclaimer.
+//     * Redistributions in binary form must reproduce the above
+// copyright notice, this list of conditions and the following disclaimer
+// in the documentation and/or other materials provided with the
+// distribution.
+//     *  Neither the name of the copyright holder nor the names of its
+// contributors may be used to endorse or promote products derived from
+// this software without specific prior written permission.
+//
+// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+//
+// Authors: eduardo.ramos.testillano@gmail.com
+//          cisco.tierra@gmail.com
+
+// Standard
+#include <iostream>
+#include <fstream>
+
+// STL
+#include <string>
+#include <map>
+
+#include <anna/core/DataBlock.hpp>
+#include <anna/core/util/Tokenizer.hpp>
+#include <anna/core/functions.hpp>
+#include <anna/core/tracing/Logger.hpp>
+#include <anna/core/tracing/TraceWriter.hpp>
+#include <anna/core/RuntimeException.hpp>
+#include <anna/io/Directory.hpp>
+#include <anna/xml/xml.hpp>
+#include <anna/diameter/stack/Engine.hpp>
+#include <anna/diameter/codec/Engine.hpp>
+#include <anna/diameter/codec/Message.hpp>
+//#include <anna/diameter/codec/functions.hpp> // ApplicationId anna::diameter::codec::functions::getApplicationId(const anna::DataBlock &) throw(anna::RuntimeException);
+
+
+using namespace anna;
+using namespace anna::diameter;
+
+anna::diameter::codec::Message *G_codecMsg;
+anna::diameter::codec::Engine *G_codecEngine;
+
+bool getDataBlockFromHexFile(const std::string &pathfile, anna::DataBlock &db) throw() {
+  // Get hex string
+  static char buffer[8192];
+  std::ifstream infile(pathfile.c_str(), std::ifstream::in);
+
+  if(infile.is_open()) {
+    infile >> buffer;
+    std::string hexString(buffer, strlen(buffer));
+    // Allow colon separator in hex string: we have to remove them before processing with 'fromHexString':
+    hexString.erase(std::remove(hexString.begin(), hexString.end(), ':'), hexString.end());
+    LOGDEBUG(
+      std::string msg = "Hex string (remove colons if exists): ";
+      msg += hexString;
+      anna::Logger::debug(msg, ANNA_FILE_LOCATION);
+    );
+    anna::functions::fromHexString(hexString, db);
+    // Close file
+    infile.close();
+    return true;
+  }
+
+  return false;
+}
+
+
+void _exit(const std::string &message, int resultCode = 1) {
+  if(resultCode)
+    std::cerr << message << std::endl << std::endl;
+  else
+    std::cout << message << std::endl << std::endl;
+
+  exit(resultCode);
+}
+
+// Decodes a diameter message coming from a datablock
+void decodeDataBlock(const anna::DataBlock &db/*, unsigned int & detectedApplicationId*/) throw() {
+  try {
+    //detectedApplicationId = anna::diameter::codec::functions::getApplicationId(db);
+    //G_codecEngine->setDictionary(detectedApplicationId); we enabled this feature in the codec engine: selectStackWithApplicationId(true);
+    G_codecMsg->decode(db);
+  } catch(RuntimeException &ex) {
+    _exit(ex.asString());
+  }
+}
+
+//-------------------------------------------------------------------
+int main(int argc, char **argv) {
+  std::string exec = argv[0];
+  std::string execBN = exec.substr(exec.find_last_of("/") + 1);
+  std::string filetrace = execBN + ".trace";
+  std::cout << std::endl;
+
+  //check command line arguments
+  if(argc < 3) {
+    std::string msg = "Usage: "; msg += exec;
+    msg += " <stacks> <working directory> [--hex-only] [--xml-only] [--no-validation] [--ignore-flags] [--debug]\n\n";
+    msg += "       stacks:                  <id1,dictionary1#id2,dictionary2#...#idN,dictionaryN>\n";
+    msg += "                                This is a list of #-separated stacks defined by a comma-separated pair <application-id,xml dictionary pathfile>\n";
+    msg += "                                If only one stack is provided, application-id could be omitted and then, all the messages will be decoded with the\n";
+    msg += "                                dictionary regardless the value of the application-id (the stack will be registered with id=0).\n";
+    msg += "       Working directory:       Contains 'xml files' (ANNA-Diameter message format) and/or 'hex files' (hexadecimal content, colons allowed).\n";
+    msg += "       --hex-only:              Only hex files are converted.\n";
+    msg += "       --xml-only:              Only xml files are converted.\n";
+    msg += "       --no-validation:         no validation is performed.\n";
+    msg += "       --ignore-flags:          wrong flags regarding dictionary are ignored in xml representation.\n";
+    msg += "       --debug:                 activates debug level traces (warning by default).\n";
+    msg += "\n";
+    msg += "       The batch process will translate '.xml' files into '.xml.as.hex', and '.hex' files into '.hex.as.xml'\n";
+    msg += "       Take care not to include the dictionary files (which have '.xml' extension) in the working directory, or there will be an exception.\n";
+    _exit(msg);
+  }
+
+  // Command-line parameters:
+  std::string stacks = argv[1];
+  std::string wkDir = argv[2];
+  std::string optionals;
+  int indx = 3;
+  while(indx < argc) { optionals += " "; optionals += argv[indx]; indx++; }
+
+  bool no_validation = (optionals.find("--no-validation") != std::string::npos);
+  bool ignore_flags = (optionals.find("--ignore-flags") != std::string::npos);
+  bool debug = (optionals.find("--debug") != std::string::npos);
+  bool hexOnly = (optionals.find("--hex-only") != std::string::npos);
+  bool xmlOnly = (optionals.find("--xml-only") != std::string::npos);
+  if (hexOnly && xmlOnly) _exit("Cannot provide both '--hex-only' and '--xml-only' !!");
+  bool processXml = hexOnly ? false:true;
+  bool processHex = xmlOnly ? false:true;
+  Logger::setLevel(debug ? Logger::Debug:Logger::Warning);
+  Logger::initialize(execBN.c_str(), new TraceWriter(filetrace.c_str(), 2048000));
+  G_codecEngine = new anna::diameter::codec::Engine();
+  G_codecMsg = G_codecEngine->createMessage();
+  anna::diameter::stack::Engine &stackEngine = anna::diameter::stack::Engine::instantiate();
+
+  // Register stacks:
+  bool multistack = false;
+  try {
+    anna::Tokenizer stacksTok;
+    stacksTok.apply(stacks, "#");
+    anna::Tokenizer::const_iterator stacks_it, stack_it;
+
+    for(stacks_it = stacksTok.begin(); stacks_it != stacksTok.end(); stacks_it++) {
+      std::string stack = anna::Tokenizer::data(stacks_it);
+      anna::Tokenizer stackTok;
+      stackTok.apply(stack, ",");
+
+      if(stackTok.size() == 1) {
+        if(stacksTok.size() != 1)
+          throw anna::RuntimeException("Application Id value is mandatory when more than one stack is going to be configured", ANNA_FILE_LOCATION);
+
+        anna::diameter::stack::Dictionary * d = stackEngine.createDictionary(0 /* no matter */, stack); // the stack is the dictionary
+        G_codecEngine->setDictionary(d);
+        break;
+      }
+
+      if(stackTok.size() != 2)
+        throw anna::RuntimeException("Each stack must be in the form '<application-id>#<xml dictionary pathfile>'", ANNA_FILE_LOCATION);
+
+      multistack = true;
+      stack_it = stackTok.begin();
+      unsigned int stackId = atoll(anna::Tokenizer::data(stack_it));
+      stack_it++;
+      std::string file = anna::Tokenizer::data(stack_it);
+      anna::diameter::stack::Dictionary * d = stackEngine.createDictionary(stackId, file);
+    }
+
+    // Auto stack selection based on Application-ID:
+    if (multistack) G_codecEngine->selectStackWithApplicationId(true);
+
+    std::cout << "Stacks provided:          " << std::endl;
+    std::cout << anna::functions::tab(stackEngine.asString(false /* light */));
+    std::cout << std::endl;
+    std::cout << "Working directory:        " << wkDir << std::endl;
+    std::cout << "Validation:               " << (!no_validation ? "yes" : "no") << std::endl;
+    std::cout << "Ignore Flags:             " << (ignore_flags ? "yes" : "no") << std::endl;
+    std::cout << std::endl;
+  } catch(anna::RuntimeException &ex) {
+    _exit(ex.asString());
+  }
+
+  // Validation kindness
+  G_codecEngine->setFixMode(anna::diameter::codec::EngineImpl::FixMode::Never); // we will encode "as is" (because --no-validation is assumed as user desire)
+  G_codecEngine->setValidationDepth(anna::diameter::codec::EngineImpl::ValidationDepth::Complete); // complete validation for better reports
+  if(no_validation) G_codecEngine->setValidationMode(anna::diameter::codec::EngineImpl::ValidationMode::Never);
+  if(ignore_flags) G_codecEngine->ignoreFlagsOnValidation(true);
+
+  // Auxiliary variables:
+  anna::DataBlock db_aux(true);
+  anna::io::Directory directoryHex, directoryXml; // we separate (although it wouldn't be neccessary using setPattern each time), because we don't
+                                                  // want to process the resulting xml files from hex conversion, only the xml files present at the
+                                                  // beginning in the directory
+  // Analyze FS:
+  directoryHex.setPattern(".hex$");
+  directoryHex.read(wkDir.c_str(), anna::io::Directory::Mode::FullPath);
+  directoryXml.setPattern(".xml$");
+  directoryXml.read(wkDir.c_str(), anna::io::Directory::Mode::FullPath);
+  
+  // Processing .hex files:
+  bool anyHexConverted = false;
+  if (processHex) {
+    for (anna::io::Directory::const_iterator it = directoryHex.begin(); it != directoryHex.end(); it++) {
+      const std::string& entry = anna::io::Directory::data (it);
+      LOGDEBUG(anna::Logger::debug(entry + " is being converted to xml", ANNA_FILE_LOCATION));
+
+      if(!getDataBlockFromHexFile(entry, db_aux))
+        _exit("Error reading hex file provided");
+
+      // Decode datablock:
+      decodeDataBlock(db_aux);
+
+      // Write conversion:
+      std::string outputFile = entry + ".as.xml";
+      std::ofstream out(outputFile.c_str(), std::ifstream::out);
+      out << G_codecMsg->asXMLString();
+      out.close();
+
+      anyHexConverted = true;
+    }
+  }
+
+  // Processing .xml files:
+  bool anyXmlConverted = false;
+  if (processXml) {
+    for (anna::io::Directory::const_iterator it = directoryXml.begin(); it != directoryXml.end(); it++) {
+      const std::string& entry = anna::io::Directory::data (it);
+      LOGDEBUG(anna::Logger::debug(entry + " is being converted to hex", ANNA_FILE_LOCATION));
+  
+      // Load file:
+      G_codecMsg->loadXML(entry);  
+      
+      // Write conversion:
+      std::string hexString = anna::functions::asHexString(G_codecMsg->code());
+      std::string outputFile = entry + ".as.hex";
+      std::ofstream out(outputFile.c_str(), std::ifstream::out);
+      out.write(hexString.c_str(), hexString.size());
+      out.close();
+  
+      anyXmlConverted = true;
+    }
+  }
+
+
+  std::string msg = "Open '"; msg += filetrace; msg += "' in order to see process traces.\n";
+  if (anyHexConverted) msg += "Open '*.hex.as.xml' files to see decoding results.\n";
+  if (anyXmlConverted) msg += "Open '*.xml.as.hex' files to see encoding results.\n";
+  _exit(msg, 0);
+}
+
index 776a5fb..4f27e06 100644 (file)
@@ -260,10 +260,10 @@ public:
   /**
   * By default, the user will select the appropiate stack id depending on the context (see #setDictionary), but
   * some applications could consider interesting automatic stack selection based on managed messages (incoming
-  * decoded ones, or built messages to be encoded). By default, no changes are done through the engine. Multithreaded
-  * processes should have a unique codec engine for each managed stack (this selection is disabled by default, then
-  * you don't have to worry about), but mono processes with multistack implementation over the same-unique engine,
-  * should activate this to have the commonly recommended way to choose the stack: using the Application-Id value.
+  * decoded ones, or built messages to be encoded). By default, on engine construction, no changes are done.
+  * Multithreaded processes should have a unique codec engine for each managed stack (then you don't have to
+  * worry about), but mono processes with multistack implementation over the same-unique engine, should activate
+  * this to have the commonly recommended way to choose the stack: using the Application-Id value.
   *
   * @warning do not activate in case of multithreaded applications.
   * @param enable Activates/deactivates the stack selection from the Application-Id value within the message header.
@@ -278,7 +278,7 @@ public:
 
     @return True if selection is done with the Application-Id. False if no selection is performed (user responsibility).
   */
-  bool selectStackWithApplicationId (void) throw() { return a_selectStackWithApplicationId; }
+  bool hasSelectStackWithApplicationId (void) throw() { return a_selectStackWithApplicationId; }
 
 
   /**
index aea9779..c4bdb17 100755 (executable)
    name:   Avp name within working stack (dictionary identifier)
    
    In order to get more coding capabilities, avp code, vendor-id and flags could be established instead of former avp name,
-    but neither of them are allowed if 'name' is provided (and vice versa):
+    but neither of them are allowed if 'name' is provided (and vice versa), excepting 'flags' when 'may' or 'shouldnot' is
+    present in dictionary avp (actually bit P is deprecated by standard group, then, 'may' or 'shouldnot' won't be taken
+    into account for this bit: it someone uses it, our xml representation will differ from reality. At least with this
+    sacrifice in return, we will have nicer xml layouts in most of the cases):
    
    code:          Avp code
    vendor-code:   Avp vendor code
index 3a2c9b0..17ba005 100644 (file)
@@ -1360,13 +1360,33 @@ void Avp::fromXML(const anna::xml::Node* avpNode) throw(anna::RuntimeException)
 
   // Check attributes exclusiveness
   if(name) {  // compact mode
-    if(code || flags || vendorCode) {
+    bool allowFlagsField = ( stackAvp->getVbit() == anna::diameter::stack::Avp::FlagRule::may || stackAvp->getVbit() == anna::diameter::stack::Avp::FlagRule::shouldnot
+                             || stackAvp->getMbit() == anna::diameter::stack::Avp::FlagRule::may || stackAvp->getMbit() == anna::diameter::stack::Avp::FlagRule::shouldnot
+                             /* umm, perhaps we could omit for bit P, whic is deprecated ... */
+                             /* || stackAvp->getPbit() == anna::diameter::stack::Avp::FlagRule::may || stackAvp->getPbit() == anna::diameter::stack::Avp::FlagRule::shouldnot*/ );
+    if(code || (flags && !allowFlagsField) || vendorCode) {
       std::string msg = "Error processing avp <name '"; msg += name->getValue();
-      msg += "'>: avp attributes <'code' + 'flags' + 'vendorCode'> are not allowed if <'name'> is provided";
+      if (flags) msg += "'>: avp attributes <'code' + 'flags' + 'vendorCode'> are not allowed if <'name'> is provided (also flags is not permitted: no may, no shouldnot)";
+      else msg += "'>: avp attributes <'code' + 'vendorCode'> are not allowed if <'name'> is provided";
       throw anna::RuntimeException(msg, ANNA_FILE_LOCATION);
     }
 
     setId(stackAvp->getId());
+
+    if (flags && allowFlagsField) {
+      // Flags check
+      int i_aux = flags->getIntegerValue();
+
+      if(i_aux < 0 || i_aux > 256) {
+        std::string msg = "Error processing avp <flags '"; msg += flags->getValue();
+        msg += "': out of range [0,256]";
+        throw anna::RuntimeException(msg, ANNA_FILE_LOCATION);
+      }
+
+      a_flags = i_aux;
+    }
+
+
   } else {
     if(!code || !flags || !vendorCode) {
       std::string s_code = code ? code->getValue() : "?";
@@ -1565,6 +1585,12 @@ anna::xml::Node* Avp::asXML(anna::xml::Node* parent) const throw() {
 
   if(compactMode) {
     result->createAttribute("name", stackAvp->getName());
+    // If may or shouldnot is present in AVP definition, we have to show flags to avoid uncertainty
+    if ( stackAvp->getVbit() == anna::diameter::stack::Avp::FlagRule::may || stackAvp->getVbit() == anna::diameter::stack::Avp::FlagRule::shouldnot
+         || stackAvp->getMbit() == anna::diameter::stack::Avp::FlagRule::may || stackAvp->getMbit() == anna::diameter::stack::Avp::FlagRule::shouldnot
+         /* umm, perhaps we could omit for bit P, whic is deprecated ... */
+         /* || stackAvp->getPbit() == anna::diameter::stack::Avp::FlagRule::may || stackAvp->getPbit() == anna::diameter::stack::Avp::FlagRule::shouldnot*/ )
+      result->createAttribute("flags", (int)a_flags);
   } else {
     result->createAttribute("code", a_id.first);
     result->createAttribute("vendor-code", a_id.second);
index 4938a03..b374b90 100644 (file)
@@ -234,7 +234,7 @@ void Message::setApplicationId(U32 aid) throw() {
   a_applicationId = aid;
 
   // Default behaviour:
-  if (!getEngine()->selectStackWithApplicationId()) return;
+  if (!getEngine()->hasSelectStackWithApplicationId()) return;
 
   // Adapts for Application-ID stack identifier:
   getEngine()->setDictionary(aid);
@@ -345,10 +345,9 @@ void Message::decode(const anna::DataBlock &db, Message *ptrAnswer) throw(anna::
 
   U24 code = DECODE3BYTES_INDX_VALUETYPE(buffer, 5, U24);
 
-  // This is called before setId, and in general before any operation which needs to know about the stack elements.
-  setApplicationId(DECODE4BYTES_INDX_VALUETYPE(buffer, 8, U32)); // centralize set, because it could be used for stack selection.
+  a_id = CommandId(code, requestBit() /* based on a_flags */);
 
-  setId(CommandId(code, requestBit() /* based on a_flags */));
+  setApplicationId(DECODE4BYTES_INDX_VALUETYPE(buffer, 8, U32)); // centralize set, because it could be used for stack selection.
 
   a_hopByHop = DECODE4BYTES_INDX_VALUETYPE(buffer, 12, U32);
 
@@ -771,6 +770,9 @@ void Message::fromXML(const anna::xml::Node* messageNode) throw(anna::RuntimeExc
   int i_aux;
   unsigned int u_aux;
 
+  // Clear the message
+  clear();
+
   if(version) {
     i_aux = version->getIntegerValue();
 
@@ -784,8 +786,8 @@ void Message::fromXML(const anna::xml::Node* messageNode) throw(anna::RuntimeExc
   }
 
   // Application-id
-  // This is called before setId, and in general before any operation which needs to know about the stack elements.
-  setApplicationId(appid->getIntegerValue()); // this could set the dictionary...
+  // This is called before any operation which needs to know about the stack elements (this could set the dictionary)
+  setApplicationId(appid->getIntegerValue());
 
   // Dictionary
   const stack::Dictionary * dictionary = getEngine()->getDictionary();
@@ -816,7 +818,7 @@ void Message::fromXML(const anna::xml::Node* messageNode) throw(anna::RuntimeExc
       throw anna::RuntimeException(msg, ANNA_FILE_LOCATION);
     }
 
-    setId(stackCommand->getId());
+    setId(stackCommand->getId(), false /* don't clear */);
     // 'P', 'E' and 'T' flags:
     bool activateP = pbit ? (pbit->getValue() == "yes") : false;
     bool activateE = ebit ? (ebit->getValue() == "yes") : false;
@@ -867,7 +869,7 @@ void Message::fromXML(const anna::xml::Node* messageNode) throw(anna::RuntimeExc
     a_flags = i_aux;
     int flagsBCK = a_flags;
     // Final assignments
-    setId(CommandId(u_code, requestBit() /* based on a_flags */));
+    a_id = CommandId(u_code, requestBit() /* based on a_flags */);
     // Flags could have been updated regarding dictionary, but during parsing we must respect xml file:
     a_flags = flagsBCK;
   }