Commit 3df84517 authored by Claes Sjofors's avatar Claes Sjofors

Remote RemNodeQCom added for remote messages on QCom

parent adcfaf48
include $(pwre_dir_symbols)
-include $(pwre_kroot)/tools/bld/src/$(os_name)/$(hw_name)/$(type_name)_generic.mk
ifeq ($($(type_name)_generic_mk),)
-include $(pwre_kroot)/tools/bld/src/$(os_name)/$(type_name)_generic.mk
endif
ifeq ($($(type_name)_generic_mk),)
include $(pwre_kroot)/tools/bld/src/$(type_name)_generic.mk
endif
ifndef link_rule_mk
link_rule_mk := 1
ifeq ($(PWRE_CONF_MQ),1)
link = $(ldxx) $(elinkflags) $(domap) -o $(export_exe) \
$(export_obj) $(objects) $(rt_msg_eobjs) \
$(pwre_conf_libdir) $(pwre_conf_libpwrremote) $(pwre_conf_libpwrrt) \
$(pwre_conf_libmq) $(pwre_conf_lib)
else
link = echo "Mq not installed"
endif
endif
/*
* Proview Open Source Process Control.
* Copyright (C) 2005-2016 SSAB EMEA AB.
*
* This file is part of Proview.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation, either version 2 of
* the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Proview. If not, see <http://www.gnu.org/licenses/>
*
* Linking Proview statically or dynamically with other modules is
* making a combined work based on Proview. Thus, the terms and
* conditions of the GNU General Public License cover the whole
* combination.
*
* In addition, as a special exception, the copyright holders of
* Proview give you permission to, from the build function in the
* Proview Configurator, combine Proview with modules generated by the
* Proview PLC Editor to a PLC program, regardless of the license
* terms of these modules. You may copy and distribute the resulting
* combined work under the terms of your choice, provided that every
* copy of the combined work is accompanied by a complete copy of
* the source code of Proview (the version used to produce the
* combined work), being distributed under the terms of the GNU
* General Public License plus this exception.
*/
/* rs_remote_qcom.c Remote transport process with qcom */
/*_Include files_________________________________________________________*/
#include <stdio.h>
#include <errno.h>
#include <string.h>
#include "pwr_class.h"
#include "pwr_systemclasses.h"
#include "rt_gdh.h"
#include "co_time.h"
#include "co_cdh.h"
#include "rt_errh.h"
#include "pwr_baseclasses.h"
#include "pwr_remoteclasses.h"
#include "rt_pwr_msg.h"
#include "rt_qcom_msg.h"
#include "rt_aproc.h"
#include "remote.h"
#include "remote_remtrans_utils.h"
#define TIME_INCR 0.02
#define debug 0
#define remote_cMsgClass 204
static remnode_item rn;
static pwr_sClass_RemnodeQCom *rn_qcom;
static qcom_sQid local_qid;
static qcom_sQid target_qid;
/*************************************************************************
**************************************************************************
*
* RemoteSleep
*
**************************************************************************
**************************************************************************/
void RemoteSleep(float time)
{
struct timespec rqtp, rmtp;
rqtp.tv_sec = 0;
rqtp.tv_nsec = (long int) (time * 1000000000);
nanosleep(&rqtp, &rmtp);
return;
}
/*************************************************************************
**************************************************************************
*
* Namn : qcom_receive
*
* Typ : unsigned int
*
* Typ Parameter IOGF Beskrivning
*
* Beskrivning : Invoked when a MQ message is received.
*
**************************************************************************
**************************************************************************/
unsigned int qcom_receive()
{
pwr_tStatus sts;
char search_remtrans;
remtrans_item *remtrans;
unsigned int timeout;
qcom_sGet get;
memset( &get, 0, sizeof(get));
get.maxSize = 32000;
timeout = (unsigned int)(TIME_INCR * 1000);
qcom_Get(&sts, &local_qid, &get, timeout);
if ( sts == QCOM__TMO || sts == QCOM__QEMPTY)
return sts;
if (debug) printf("Received message %d\n", get.size);
switch ( get.type.b) {
case remote_cMsgClass: {
search_remtrans = true;
remtrans = rn.remtrans;
while(remtrans && search_remtrans) {
if (remtrans->objp->Address[0] == get.type.s &&
remtrans->objp->Direction == REMTRANS_IN) {
search_remtrans = false;
sts = RemTrans_Receive(remtrans, (char *) get.data, get.size);
if (sts != STATUS_OK && sts != STATUS_BUFF)
errh_Error("Error from RemTrans_Receive, queue %d, status %d", rn_qcom->MyQueue, sts, 0);
break;
}
remtrans = (remtrans_item *) remtrans->next;
}
if (search_remtrans) {
rn_qcom->ErrCount++;
errh_Info("No remtrans for received message, queue %d, class ", rn_qcom->MyQueue, get.type.s, 0);
}
if ( get.data)
qcom_Free( &sts, get.data);
break;
}
default:
errh_Error("qcom_Get, unknown message type %d received", get.type.s);
}
return sts;
}
/*************************************************************************
**************************************************************************
*
* Namn : qcom_send
*
* Typ : unsigned int
*
* Typ Parameter IOGF Beskrivning
*
* Beskrivning : Sends a MQ message to Remote node
*
**************************************************************************
**************************************************************************/
unsigned int qcom_send(remnode_item *remnode,
pwr_sClass_RemTrans *remtrans,
char *buf,
int buf_size)
{
pwr_tStatus sts;
qcom_sPut put;
target_qid.qix = rn_qcom->TargetQueue;
memset( &put, 0, sizeof(put));
put.data = buf;
put.size = buf_size;
put.type.b = remote_cMsgClass;
put.type.s = remtrans->Address[0];
put.reply.qix = 0;
put.reply.nid = 0;
qcom_Put(&sts, &target_qid, &put);
if ( EVEN(sts)) {
remtrans->ErrCount++;
errh_Error("Send failed, queue %d, QCom status %d", rn_qcom->MyQueue, sts, 0);
if (debug) printf("Send failed sts:%d\n", (int) sts);
}
return( STATUS_OK );
}
/*************************************************************************
**************************************************************************
*
* Main
*
**************************************************************************
**************************************************************************/
int main(int argc, char *argv[])
{
remtrans_item *remtrans;
unsigned char id[32];
unsigned char pname[32];
pwr_tStatus sts;
int i;
float time_since_scan = 0.0;
char queue_name[80];
qcom_sQattr qattr;
qcom_sNode node;
pwr_tNid nid;
int found = 0;
/* Read arg number 2, should be id for this instance and id is our queue number */
if (argc >= 2)
strcpy((char *)id, argv[1]);
else
strcpy((char *)id, "0");
/* Build process name with id */
sprintf((char *) pname, "rs_remqcom_%s", id);
/* Init of errh */
errh_Init((char *) pname, errh_eAnix_remote);
errh_SetStatus(PWR__SRVSTARTUP);
/* Init of gdh */
if (debug) printf("Before gdh_init\n");
sts = gdh_Init((char *) pname);
if ( EVEN(sts)) {
errh_Fatal("gdh_Init, %m", sts);
errh_SetStatus(PWR__SRVTERM);
exit(sts);
}
/* Arg number 3 should be my remnodes objid in string representation,
read it, convert to real objid and store in remnode_item */
sts = 0;
if (argc >= 3) sts = cdh_StringToObjid(argv[2], &rn.objid);
if ( EVEN(sts)) {
errh_Fatal("cdh_StringToObjid, %m", sts);
errh_SetStatus(PWR__SRVTERM);
exit(sts);
}
/* Get pointer to RemnodeQCom object and store locally */
sts = gdh_ObjidToPointer(rn.objid, (pwr_tAddress *) &rn_qcom);
if ( EVEN(sts)) {
errh_Fatal("cdh_ObjidToPointer, %m", sts);
errh_SetStatus(PWR__SRVTERM);
exit(sts);
}
if ( !rn_qcom->MyQueue && !rn_qcom->TargetQueue) {
errh_Fatal("Process terminated, neither send or receive queue configured, %s", id);
errh_SetStatus(PWR__SRVTERM);
exit(sts);
}
/* Initialize some internal data and make standard remtrans init */
rn.next = NULL;
rn.local = NULL; // We dont use local structure since we only have one remnode
rn_qcom->ErrCount = 0;
if (debug) printf("Before remtrans_init\n");
sts = RemTrans_Init(&rn);
if ( EVEN(sts)) {
errh_Fatal("RemTrans_Init, %m", sts);
errh_SetStatus(PWR__SRVTERM);
exit(sts);
}
/* Store remtrans objects objid in remnode_qcom object */
remtrans = rn.remtrans;
i = 0;
while(remtrans) {
rn_qcom->RemTransObjects[i++] = remtrans->objid;
if ( i >= (int)(sizeof(rn_qcom->RemTransObjects)/sizeof(rn_qcom->RemTransObjects[0])))
break;
remtrans = (remtrans_item *) remtrans->next;
}
/* Create queue */
if ( rn_qcom->MyQueue) {
qattr.type = qcom_eQtype_private;
qattr.quota = 100;
local_qid.nid = 0;
local_qid.qix = rn_qcom->MyQueue;
sprintf( queue_name, "RemQue%d", rn_qcom->MyQueue);
qcom_CreateQ(&sts, &local_qid, &qattr, queue_name);
if ( sts == QCOM__QALLREXIST) {
qcom_DeleteQ(&sts, &local_qid);
qcom_CreateQ(&sts, &local_qid, &qattr, queue_name);
}
if ( EVEN(sts)) {
errh_Fatal("Process terminated, QCom create queue, %d", sts);
errh_SetStatus(PWR__SRVTERM);
exit(sts);
}
}
/* Get remote queue */
if ( rn_qcom->TargetQueue != 0) {
qcom_MyNode(&sts, &node);
if ( cdh_NoCaseStrcmp( node.name, rn_qcom->TargetNode) == 0) {
found = 1;
nid = node.nid;
}
else {
for ( nid = qcom_cNNid; qcom_NextNode(&sts, &node, nid); nid = node.nid) {
if ( cdh_NoCaseStrcmp( node.name, rn_qcom->TargetNode) == 0) {
found = 1;
break;
}
}
}
if ( !found) {
errh_Fatal("Process terminated, target node not found, %s", rn_qcom->TargetNode);
errh_SetStatus(PWR__SRVTERM);
exit(sts);
}
target_qid.nid = nid;
target_qid.qix = rn_qcom->TargetQueue;
}
/* Set running status */
errh_SetStatus(PWR__SRUN);
/* Set (re)start time in remnode object */
time_GetTime(&rn_qcom->RestartTime);
/* Loop forever */
while (!doomsday) {
if ( rn_qcom->Disable == 1) {
errh_Fatal("Disabled, exiting");
errh_SetStatus(PWR__SRVTERM);
exit(0);
}
aproc_TimeStamp(TIME_INCR, 5);
if ( rn_qcom->MyQueue)
sts = qcom_receive();
else
RemoteSleep(TIME_INCR);
time_since_scan += TIME_INCR;
if ( time_since_scan >= rn_qcom->ScanTime) {
if ( rn_qcom->TargetQueue)
sts = RemTrans_Cyclic(&rn, &qcom_send);
time_since_scan = 0.0;
}
}
}
......@@ -187,6 +187,30 @@ static void AddTransports()
sts = gdh_GetNextObject (objid, &objid);
}
/* Get and configure all QCom remnodes, one process for each remnode */
sts = gdh_GetClassList (pwr_cClass_RemnodeQCom, &objid);
while ( ODD(sts))
{
sts = gdh_ObjidToPointer(objid, &objref);
sprintf(tp[tpcount].path, "rs_remote_qcom");
tp[tpcount].id = ((pwr_sClass_RemnodeQCom *) objref)->MyQueue;
tp[tpcount].disable = &((pwr_sClass_RemnodeQCom *) objref)->Disable;
tp[tpcount].restart_limit = &((pwr_sClass_RemnodeQCom *) objref)->RestartLimit;
tp[tpcount].restarts = &((pwr_sClass_RemnodeQCom *) objref)->RestartCount;
((pwr_sClass_RemnodeQCom *) objref)->RestartCount = 0;
tp[tpcount].objid = objid;
tp[tpcount].objref = objref;
tp[tpcount].classid = pwr_cClass_RemnodeQCom;
tp[tpcount].cpid = -1;
tp[tpcount].first = true;
remcfgp->RemNodeObjects[tpcount] = objid;
tpcount++;
sts = gdh_GetNextObject (objid, &objid);
}
/* Get and configure all UDP remnodes, one process for each remnode */
sts = gdh_GetClassList (pwr_cClass_RemnodeUDP, &objid);
......
!
! Proview Open Source Process Control.
! Copyright (C) 2005-2016 SSAB EMEA AB.
!
! This file is part of Proview.
!
! This program is free software; you can redistribute it and/or
! modify it under the terms of the GNU General Public License as
! published by the Free Software Foundation, either version 2 of
! the License, or (at your option) any later version.
!
! This program is distributed in the hope that it will be useful
! but WITHOUT ANY WARRANTY; without even the implied warranty of
! MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
! GNU General Public License for more details.
!
! You should have received a copy of the GNU General Public License
! along with Proview. If not, see <http://www.gnu.org/licenses/>
!
! Linking Proview statically or dynamically with other modules is
! making a combined work based on Proview. Thus, the terms and
! conditions of the GNU General Public License cover the whole
! combination.
!
! In addition, as a special exception, the copyright holders of
! Proview give you permission to, from the build function in the
! Proview Configurator, combine Proview with modules generated by the
! Proview PLC Editor to a PLC program, regardless of the license
! terms of these modules. You may copy and distribute the resulting
! combined work under the terms of your choice, provided that every
! copy of the combined work is accompanied by a complete copy of
! the source code of Proview (the version used to produce the
! combined work), being distributed under the terms of the GNU
! General Public License plus this exception.
!
! remote_c_remnodeudp.wb_load -- Defines the class RemnodeUDP.
!
SObject Remote:Class
!/**
! @Version 1.0
! @Group Servers,NodeConfiguration
! @Summary Configures communication through a message queue using QCom.
! Configures communication through a message queue using QCom.
!
! Only nodes that is know by QCom can be used by this remnode. Nodes kown
! by QCom is nodes in the same project, or nodes configured with FriendNodeConfig
! objects in the directory volume.
!
! To direct a message from a sending RemTrans to a recieving RemTrans set
! same value (0 - 255) in Address[0] in both sending and receiving RemTrans.
!
! @b Object graph
! @image orm_remnodeqcom_og.png
!
! @b See also
! @classlink RemoteConfig remote_remoteconfig.html
! @classlink RemTrans remote_remtrans.html
!*/
Object RemnodeQCom $ClassDef 34
Body SysBody
Attr Editor = pwr_eEditor_AttrEd
Attr Method = pwr_eMethod_Standard
Attr PopEditor = 2
EndBody
Object RtBody $ObjBodyDef 1
Body SysBody
Attr StructName = "RemnodeQCom"
EndBody
!/**
! Optional description.
!*/
Object Description $Attribute 1
Body SysBody
Attr TypeRef = "pwrs:Type-$String80"
EndBody
EndObject
!/**
! Process priority for the transport process. For future use.
!*/
Object Prio $Attribute 2
Body SysBody
Attr TypeRef = "pwrs:Type-$Int32"
EndBody
EndObject
!/**
! Number for queue used to receive messages on the current node.
! Can be set to 0 if no receive transactions exist.
!*/
Object MyQueue $Attribute 3
Body SysBody
Attr TypeRef = "pwrs:Type-$Int32"
EndBody
EndObject
!/**
! Target node for outgoing messages.
!*/
Object TargetNode $Attribute 4
Body SysBody
Attr TypeRef = "pwrs:Type-$String40"
EndBody
EndObject
!/**
! QCom queue on target node. Sent messages are directed to this queue.
!*/
Object TargetQueue $Attribute 5
Body SysBody
Attr TypeRef = "pwrs:Type-$Int32"
EndBody
EndObject
!/**
! Scantime in seconds for outgoing RemTrans messages.
! Dynamic change is possible.
!*/
Object ScanTime $Attribute 6
Body SysBody
Attr TypeRef = "pwrs:Type-$Float32"
EndBody
EndObject
!/**
! When set, this attribute tells the remote handler not to start
! or restart the process that handles this remote node. If the transport process
! is running while the attribute is set it will terminate. This can be used to force
! a restart of the process.
!*/
Object Disable $Attribute 7
Body SysBody
Attr TypeRef = "pwrs:Type-$Boolean"
EndBody
EndObject
!/**
! This attribute shows how many times the remote handler has restarted the
! transport process that handles this remnode.
! Dynamic change is possible and can be used in order to earn more restarts.
!*/
Object RestartCount $Attribute 8
Body SysBody
Attr TypeRef = "pwrs:Type-$UInt32"
Attr Flags |= PWR_MASK_STATE
Attr Flags |= PWR_MASK_NOEDIT
Attr Flags |= PWR_MASK_INVISIBLE
EndBody
EndObject
!/**
! The restart limit tells the remote handler how many times the transport process
! that handle this remnode can be restarted.
! Dynamic change is possible and can be used in order to earn more restarts.
!*/
Object RestartLimit $Attribute 9
Body SysBody
Attr TypeRef = "pwrs:Type-$UInt32"
EndBody
EndObject
!/**
! The restart time is set by the transport process at startup and therefore
! shows the latest (re)starttime.
!*/
Object RestartTime $Attribute 10
Body SysBody
Attr TypeRef = "pwrs:Type-$Time"
Attr Flags |= PWR_MASK_STATE
Attr Flags |= PWR_MASK_NOEDIT
Attr Flags |= PWR_MASK_INVISIBLE
EndBody
EndObject
!/**
! Error counter.
!*/
Object ErrCount $Attribute 11
Body SysBody
Attr TypeRef = "pwrs:Type-$UInt32"
Attr Flags |= PWR_MASK_STATE
Attr Flags |= PWR_MASK_NOEDIT
Attr Flags |= PWR_MASK_INVISIBLE
EndBody
EndObject
!/**
! Type of remnode. Used in the RemoteConfig classgraph.
!*/
Object Id $Attribute 12
Body SysBody
Attr TypeRef = "pwrs:Type-$String8"
Attr Flags |= PWR_MASK_INVISIBLE
EndBody
EndObject
!/**
! Contains the objid for the RemTrans objects for this remnode.
! The objid's are inserted by the remote process.
!*/
Object RemTransObjects $Attribute 13
Body SysBody
Attr TypeRef = "pwrs:Type-$Objid"
Attr Flags |= PWR_MASK_STATE
Attr Flags |= PWR_MASK_INVISIBLE
Attr Flags |= PWR_MASK_ARRAY
Attr Elements = 25
EndBody
EndObject
EndObject
Object Template RemnodeQCom
Body RtBody
Attr Prio = 15
Attr MyQueue = 0
Attr TargetQueue = 0
Attr Disable = 0
Attr RestartCount = 0
Attr RestartLimit = 100
Attr ScanTime = 0.1
Attr Id = "QCom"
EndBody
EndObject
EndObject
EndSObject
......@@ -154,8 +154,11 @@ SObject Remote:Class
! [1] - Address Low byte (0 - 255)
!
! TCP/ip and UDP/ip
! [0] - Message address part 1 ( 0 - 65535)
! [1] - Message address part 2 ( 0 - 65535)
! [0] - Message address part 1 (0 - 65535)
! [1] - Message address part 2 (0 - 65535)
!
! QCom
! [0] - Message address (0 - 255)
!
! MODBUS
! [0] - Slave address
......
0! DefaultWidth 874
0! DefaultHeight 765
199
!/**
! TempSwitch
! Group Components/BaseComponent
!
! <image> bcomp_tempswitch_gs.gif
!
! <h1>Description
! Temperature switch. Graphic symbol for basecomponent BaseTempSwitch.
! Should be connected to an instance of BaseTempSwitch, or a
! subclass to this class.
!
! <h1>Default dynamics
! HostObject <link>GeDynHostObject, ,$pwr_lang/man_geref.dat
!
! Dynamics for the symbol
! - flashing red at alarm status.
! - popupmenu with the methods of the connected object.
!
! DigFlash <t>$hostobject.AlarmStatus <link>GeDynDigFlash, ,$pwr_lang/man_geref.dat
! PopupMenu <t>$hostobject <link>GeDynPopupMenu, ,$pwr_lang/man_geref.dat
!
! Default Cycle Slow
!
!*/
1
100 20
135 20
101 20
102 -39
103 -15
104 2.70658
136 2.70658
105 100
106 -5
107 -2
108 48.5
109 0.5
110 41.0001
111 0
116 0
117 0
118 98
119 82
120 0
121 Claes context
122 0
126 0.5
127 0.5
128 0
129 0.3
130 1.5
131 0.8
132 3
133 2
137 4510
138 3
139 3
140 2
141 $default
134
22
2200 0
2201 641
2202 pwr_c_remnodeqcom
2203 310
2205 0
2204
2206 0
2207
2208
2209 2.65
2210 1
2211 46.4
2212 39.3
2213 4
2214
pwrp_pop:
pwrp_exe:
ssab_exe:
pwr_exe:
2215 0
2246 0
2236 0
2247 0
2216 0
2221 0
2237 0
2238 0
2239 0
2240 0
2241 0
2242 0
2217 0
2218 0
2219 0
2220
2230 0
2231 1
2222
2223 1
2224 0.5
2232 0.5
2225 0.2
2226 0
2227
2228 0
2229 1
2233 1
2234 2
2235 1
2243 0
2248 0
2245 0
2249
48
4802 0
4803 1
4800 360
4801
0.992157 0.992157 0.992157
0.872157 0.872157 0.872157
1 1 1
1 1 1
0.854841 0.854841 0.854841
0.734841 0.734841 0.734841
1 1 1
0.974841 0.974841 0.974841
0.941176 0.941176 0.941176
0.821176 0.821176 0.821176
1 1 1
1 1 1
0.623529 0.623529 0.623529
0.503529 0.503529 0.503529
0.803529 0.803529 0.803529
0.743529 0.743529 0.743529
0 0 0
0 0 0
0.18 0.18 0.18
0.12 0.12 0.12
0.952941 0.952941 0.952941
0.832941 0.832941 0.832941
1 1 1
1 1 1
0 0 0
0 0 0
0.18 0.18 0.18
0.12 0.12 0.12
0 0 0
0 0 0
0.18 0.18 0.18
0.12 0.12 0.12
1 1 1
0.88 0.88 0.88
1 1 1
1 1 1
1 1 1
0.88 0.88 0.88
1 1 1
1 1 1
0.988235 0.0666667 0.0666667
0.868235 0 0
1 0.246667 0.246667
1 0.186667 0.186667
1 0.670588 0.670588
0.88 0.550588 0.550588
1 0.850588 0.850588
1 0.790588 0.790588
1 0.760784 0.760784
0.88 0.640784 0.640784
1 0.940784 0.940784
1 0.880784 0.880784
1 0.898039 0.898039
0.88 0.778039 0.778039
1 1 1
1 1 1
1 0.898039 0.898039
0.88 0.778039 0.778039
1 1 1
1 1 1
0 0 0
0 0 0
0.18 0.18 0.18
0.12 0.12 0.12
0.247059 0.247059 0.247059
0.127059 0.127059 0.127059
0.427059 0.427059 0.427059
0.367059 0.367059 0.367059
0.247059 0.247059 0.247059
0.127059 0.127059 0.127059
0.427059 0.427059 0.427059
0.367059 0.367059 0.367059
0.823529 0.823529 0.823529
0.703529 0.703529 0.703529
1 1 1
0.943529 0.943529 0.943529
0.886275 0.886275 0.886275
0.766275 0.766275 0.766275
1 1 1
1 1 1
0.952941 0.952941 0.952941
0.832941 0.832941 0.832941
1 1 1
1 1 1
0 0 0
0 0 0
0.18 0.18 0.18
0.12 0.12 0.12
0 0 0
0 0 0
0.18 0.18 0.18
0.12 0.12 0.12
1 1 1
0.88 0.88 0.88
1 1 1
1 1 1
1 1 1
0.88 0.88 0.88
1 1 1
1 1 1
0.196078 0.933333 0
0.0760784 0.813333 0
0.376078 1 0.18
0.316078 1 0.12
0.698039 1 0.564706
0.578039 0.88 0.444706
0.878039 1 0.744706
0.818039 1 0.684706
0.807843 1 0.760784
0.687843 0.88 0.640784
0.987843 1 0.940784
0.927843 1 0.880784
0.870588 1 0.835294
0.750588 0.88 0.715294
1 1 1
0.990588 1 0.955294
0.870588 1 0.835294
0.750588 0.88 0.715294
1 1 1
0.990588 1 0.955294
0.247059 0.247059 0.247059
0.127059 0.127059 0.127059
0.427059 0.427059 0.427059
0.367059 0.367059 0.367059
1 1 1
0.88 0.88 0.88
1 1 1
1 1 1
0 0 0
0 0 0
0.18 0.18 0.18
0.12 0.12 0.12
0 0 0
0 0 0
0.18 0.18 0.18
0.12 0.12 0.12
0.972549 0.937255 0.65098
0.852549 0.817255 0.53098
1 1 0.83098
1 1 0.77098
0.952941 0.952941 0.952941
0.832941 0.832941 0.832941
1 1 1
1 1 1
0 0 0
0 0 0
0.18 0.18 0.18
0.12 0.12 0.12
0 0 0
0 0 0
0.18 0.18 0.18
0.12 0.12 0.12
0.662745 0.662745 0.662745
0.542745 0.542745 0.542745
0.842745 0.842745 0.842745
0.782745 0.782745 0.782745
0.509804 0.509804 0.509804
0.389804 0.389804 0.389804
0.689804 0.689804 0.689804
0.629804 0.629804 0.629804
1 0.976471 0.0901961
0.88 0.856471 0
1 1 0.270196
1 1 0.210196
1 1 0.729412
0.88 0.88 0.609412
1 1 0.909412
1 1 0.849412
0.972549 0.937255 0.65098
0.852549 0.817255 0.53098
1 1 0.83098
1 1 0.77098
1 1 0.8
0.88 0.88 0.68
1 1 0.98
1 1 0.92
1 1 0.8
0.88 0.88 0.68
1 1 0.98
1 1 0.92
0.72549 0.866667 1
0.60549 0.746667 0.88
0.90549 1 1
0.84549 0.986667 1
0 0 0
0 0 0
0.18 0.18 0.18
0.12 0.12 0.12
0.690196 0.690196 0.690196
0.570196 0.570196 0.570196
0.870196 0.870196 0.870196
0.810196 0.810196 0.810196
1 1 1
0.88 0.88 0.88
1 1 1
1 1 1
1 1 1
0.88 0.88 0.88
1 1 1
1 1 1
0.72549 0.866667 1
0.60549 0.746667 0.88
0.90549 1 1
0.84549 0.986667 1
0.247059 0.247059 0.247059
0.127059 0.127059 0.127059
0.427059 0.427059 0.427059
0.367059 0.367059 0.367059
1 1 1
0.88 0.88 0.88
1 1 1
1 1 1
0.886275 0.886275 0.886275
0.766275 0.766275 0.766275
1 1 1
1 1 1
0.407843 0.407843 0.407843
0.287843 0.287843 0.287843
0.587843 0.587843 0.587843
0.527843 0.527843 0.527843
0.418189 0.799023 1
0.298189 0.679023 0.88
0.598189 0.979023 1
0.538189 0.919023 1
0.668742 0.879622 0.990494
0.548742 0.759622 0.870494
0.848742 1 1
0.788742 0.999622 1
0.670588 0.882353 0.992157
0.550588 0.762353 0.872157
0.850588 1 1
0.790588 1 1
0.87451 0.956863 1
0.75451 0.836863 0.88
1 1 1
0.99451 1 1
0.874998 0.956909 1
0.754998 0.836909 0.88
1 1 1
0.994998 1 1
0.952941 0.952941 0.952941
0.832941 0.832941 0.832941
1 1 1
1 1 1
0 0 0
0 0 0
0.18 0.18 0.18
0.12 0.12 0.12
0.952941 0.952941 0.952941
0.832941 0.832941 0.832941
1 1 1
1 1 1
0 0 0
0 0 0
0.18 0.18 0.18
0.12 0.12 0.12
0 0 0
0 0 0
0.18 0.18 0.18
0.12 0.12 0.12
0.247059 0.247059 0.247059
0.127059 0.127059 0.127059
0.427059 0.427059 0.427059
0.367059 0.367059 0.367059
0.431373 0.431373 0.431373
0.311373 0.311373 0.311373
0.611373 0.611373 0.611373
0.551373 0.551373 0.551373
0.752941 1 1
0.632941 0.88 0.88
0.932941 1 1
0.872941 1 1
0 0 0
0 0 0
0.18 0.18 0.18
0.12 0.12 0.12
1 1 1
0.88 0.88 0.88
1 1 1
1 1 1
1 0.576471 0
0.88 0.456471 0
1 0.756471 0.18
1 0.696471 0.12
1 0.713191 0.32282
0.88 0.593191 0.20282
1 0.893191 0.50282
1 0.833191 0.44282
0.982864 0.813947 0.582559
0.862864 0.693947 0.462559
1 0.993947 0.762559
1 0.933947 0.702559
1 0.92549 0.815686
0.88 0.80549 0.695686
1 1 0.995686
1 1 0.935686
1 0.922194 0.815442
0.88 0.802194 0.695442
1 1 0.995442
1 1 0.935442
1 1 1
0.88 0.88 0.88
1 1 1
1 1 1
0.552941 0.552941 0.552941
0.432941 0.432941 0.432941
0.732941 0.732941 0.732941
0.672941 0.672941 0.672941
0 0 0
0 0 0
0.18 0.18 0.18
0.12 0.12 0.12
0.952941 0.952941 0.952941
0.832941 0.832941 0.832941
1 1 1
1 1 1
0.482353 0.482353 0.482353
0.362353 0.362353 0.362353
0.662353 0.662353 0.662353
0.602353 0.602353 0.602353
1 1 1
0.88 0.88 0.88
1 1 1
1 1 1
1 1 1
0.88 0.88 0.88
1 1 1
1 1 1
1 1 1
0.88 0.88 0.88
1 1 1
1 1 1
1 1 1
0.88 0.88 0.88
1 1 1
1 1 1
1 1 1
0.88 0.88 0.88
1 1 1
1 1 1
0.853742 0.302632 0.982101
0.733742 0.182632 0.862101
1 0.482632 1
0.973742 0.422632 1
0.899916 0.583337 0.985214
0.779916 0.463337 0.865214
1 0.763337 1
1 0.703337 1
0.924636 0.740002 1
0.804636 0.620002 0.88
1 0.920002 1
1 0.860002 1
0.968627 0.854902 1
0.848627 0.734902 0.88
1 1 1
1 0.974902 1
0.966888 0.854505 1
0.846888 0.734505 0.88
1 1 1
1 0.974505 1
99
2244
99
123
2
3
300 pwr_valuelong
301
2
19
1904
1900 26.6
1901 0
1902 0.7
1903 0
1908 0
1909 41
1910 41
1911 1
1915 0
1913 5
1916 2
1914 0
1918 0
1919 0
1920 0
1917 0
1921 0
1922 4
1923 0
1924 0
1925 10000
1926 0
1907 0
1906
1905
5
500 0
501 1
504 1
505 1
502
7
700 0
701 0
99
503
7
700 26.6
701 0.7
99
99
1912
28
2800 1
2801 0
2802 0
2803 0
2804 1
2805 0
2806 0
99
99
29
2907
13
1300 1
1301 304
1306 0
1302 1
1305 1
1303
7
700 1
701 1.35
99
1304 0
1307 0
1308 0
99
2908
28
2800 1
2801 0
2802 -0.715333
2803 0
2804 1
2805 -0.771778
2806 0
99
2901 2
99
99
302 0
304 0
303
305 0
306
307
308 1024
330 0
321 0
331 0
309 0
313 0
322 0
323 0
324 0
325 0
326 0
327 0
310 0
311 0
312
314
315 1
316 1
317 0
318 0
319 0
320 0
328 0
332 0
99
3
300 pwr_pulldownmenu2
301
2
19
1904 O7
1900 3
1901 0
1902 1
1903 0
1908 0
1909 31
1910 31
1911 0
1915 0
1913 5
1916 2
1914 0
1918 0
1919 0
1920 0
1917 1
1921 0
1922 4
1923 0
1924 0
1925 10000
1926 0
1907 0
1906
1905
5
500 0
501 1
504 1
505 1
502
7
700 0
701 0
99
503
7
700 3
701 1
99
99
1912
28
2800 1
2801 0
2802 0
2803 0
2804 1
2805 0
2806 0
99
99
26
2604 O8
2600 3
2601 0
2602 1
2603 0.9
2605
25
2500 0
2501 1
2503 1
2504 0
2502
2
7
700 0
701 0.9
99
7
700 0
701 1
99
7
700 3
701 1
99
7
700 3
701 0.9
99
7
700 0
701 0.9
99
99
99
2608 0
2609 31
2629 10000
2610 31
2611 0
2616 0
2614 5
2617 2
2615 0
2618 1
2607 0
2606
2612
28
2800 1
2801 0
2802 0
2803 0
2804 1
2805 0
2806 0
99
2613 0
2619 0
2620 1
2626 0
2627 0
2621 0
2622 0
2623 0
2624 4
2625 1
2628 0
99
20
2004 O4
2000 3
2001 0
2002 1
2003 1
2009 0
2010 0
2005
6
600 0
601 1
602
7
700 3
701 1
99
603
7
700 0
701 1
99
99
2008
28
2800 1
2801 0
2802 0
2803 0
2804 1
2805 2.32453e-16
2806 0
99
99
29
2907
13
1300 1
1301 303
1306 0
1302 2
1305 1
1303
7
700 -0.954174
701 0.0636116
99
1304 0
1307 4
1308 0
99
2908
28
2800 1
2801 0
2802 1.25417
2803 0
2804 1
2805 0.736388
2806 0
99
2901 2
99
99
302 0
304 0
303
305 0
306
307
308 0
330 0
321 524288
331 0
309 0
313 0
322 0
323 0
324 0
325 0
326 0
327 0
310 0
311 0
312
314
315 1
316 1
317 0
318 0
319 0
320 0
328 1
332 0
329
1
100 1
105 0
101 1
106 0
102 33619964
103 0
99
99
3
300 pwr_menubar2
301
2
19
1904 O0
1900 27.5
1901 0
1902 1
1903 0
1908 0
1909 31
1910 31
1911 0
1915 0
1913 15
1916 2
1914 0
1918 0
1919 0
1920 0
1917 1
1921 0
1922 2
1923 0
1924 0
1925 10000
1926 0
1907 0
1906
1905
5
500 0
501 1
504 1
505 1
502
7
700 0
701 0
99
503
7
700 27.5
701 1
99
99
1912
28
2800 1
2801 0
2802 0
2803 0
2804 1
2805 0
2806 0
99
99
26
2604 O3
2600 27.5
2601 0
2602 1
2603 0.9
2605
25
2500 0
2501 1
2503 1
2504 0
2502
2
7
700 0
701 1
99
7
700 0
701 0.9
99
7
700 27.5
701 0.9
99
7
700 27.5
701 1
99
7
700 0
701 1
99
99
99
2608 0
2609 31
2629 10000
2610 31
2611 0
2616 0
2614 5
2617 2
2615 0
2618 1
2607 0
2606
2612
28
2800 1
2801 0
2802 0
2803 0
2804 1
2805 0
2806 0
99
2613 0
2619 0
2620 1
2626 0
2627 0
2621 0
2622 0
2623 0
2624 4
2625 1
2628 0
99
20
2004 O2
2000 27.5
2001 0
2002 1
2003 1
2009 0
2010 0
2005
6
600 0
601 1
602
7
700 27.5
701 1
99
603
7
700 0
701 1
99
99
2008
28
2800 1
2801 0
2802 0
2803 0
2804 1
2805 0
2806 0
99
99
99
302 0
304 0
303
305 0
306
307
308 0
330 0
321 0
331 0
309 0
313 0
322 0
323 0
324 0
325 0
326 0
327 0
310 0
311 0
312
314
315 1
316 1
317 0
318 0
319 0
320 0
328 0
332 0
329
1
100 1
105 0
101 1
106 0
102 65532
103 0
99
99
3
300 pwr_mb2opengraph
301
2
19
1904 O17
1900 1.1
1901 0
1902 1.2
1903 0
1908 0
1909 30
1910 30
1911 1
1915 1
1913 8
1916 2
1914 0
1918 0
1919 0
1920 0
1917 0
1921 0
1922 4
1923 0
1924 0
1925 10000
1926 0
1907 0
1906
1905
5
500 0
501 1
504 1
505 1
502
7
700 0
701 0
99
503
7
700 1.1
701 1.2
99
99
1912
28
2800 1
2801 0
2802 0
2803 0
2804 1
2805 0
2806 0
99
99
24
2404 O6
2400 0.932301
2401 0.432301
2402 0.988828
2403 0.488828
2408 39
2409 113
2410 113
2423 10000
2411 1
2415 1
2413 5
2416 2
2414 0
2417 1
2421 1
2418 0
2419 4
2420 1
2422 0
2424 0
2407 0
2406
2405
8
802 39
803 1
800 0
801 360
806 1
804
7
700 0.4
701 0.4
99
805
7
700 0.9
701 0.9
99
99
2412
28
2800 1
2801 0
2802 0.0323011
2803 0
2804 1
2805 0.0888281
2806 0
99
99
26
2604 O7
2600 0.482301
2601 0.182301
2602 0.488828
2603 0.238828
2605
25
2500 38
2501 1
2503 1
2504 0
2502
2
7
700 0.1
701 0.1
99
7
700 0.4
701 0.1
99
7
700 0.25
701 0.35
99
7
700 0.1
701 0.1
99
99
99
2608 38
2609 74
2629 10000
2610 74
2611 1
2616 1
2614 5
2617 2
2615 0
2618 1
2607 0
2606
2612
28
2800 1
2801 0
2802 0.0823011
2803 0
2804 1
2805 0.138828
2806 0
99
2613 0
2619 0
2620 0
2626 0
2627 0
2621 1
2622 0
2623 0
2624 4
2625 1
2628 0
99
20
2004 O8
2000 0.432301
2001 0.182301
2002 0.738828
2003 0.738828
2009 39
2010 0
2005
6
600 39
601 1
602
7
700 0.15
701 0.65
99
603
7
700 0.4
701 0.65
99
99
2008
28
2800 1
2801 0
2802 0.0323011
2803 0
2804 1
2805 0.0888281
2806 0
99
99
20
2004 O10
2000 0.332301
2001 0.332301
2002 0.738828
2003 0.488828
2009 39
2010 0
2005
6
600 39
601 1
602
7
700 0.3
701 0.65
99
603
7
700 0.3
701 0.4
99
99
2008
28
2800 1
2801 0
2802 0.0323011
2803 0
2804 1
2805 0.0888281
2806 0
99
99
26
2604 O14
2600 0.920673
2601 0.720673
2602 0.8272
2603 0.6272
2605
25
2500 39
2501 1
2503 1
2504 0
2502
2
7
700 0.9
701 0.65
99
7
700 0.7
701 0.75
99
7
700 0.7
701 0.55
99
7
700 0.85
701 0.65
99
99
99
2608 39
2609 39
2629 10000
2610 39
2611 1
2616 1
2614 5
2617 2
2615 0
2618 1
2607 0
2606
2612
28
2800 1
2801 0
2802 0.0206727
2803 0
2804 1
2805 0.0771997
2806 0
99
2613 0
2619 0
2620 0
2626 0
2627 0
2621 1
2622 0
2623 0
2624 4
2625 1
2628 0
99
99
302 0
304 0
303
305 0
306
307
308 128
330 0
321 8256
331 0
309 0
313 0
322 0
323 0
324 0
325 0
326 0
327 0
310 0
311 0
312
314
315 1
316 1
317 0
318 0
319 0
320 0
328 0
332 0
329
1
100 1
105 0
101 1
106 0
102 65532
103 0
99
99
3
300 pwr_mb2openobjectgraph
301
2
19
1904 O17
1900 1.1
1901 0
1902 1.2
1903 0
1908 0
1909 30
1910 30
1911 1
1915 1
1913 8
1916 2
1914 0
1918 0
1919 0
1920 0
1917 0
1921 0
1922 4
1923 0
1924 0
1925 10000
1926 0
1907 0
1906
1905
5
500 0
501 1
504 1
505 1
502
7
700 0
701 0
99
503
7
700 1.1
701 1.2
99
99
1912
28
2800 1
2801 0
2802 0
2803 0
2804 1
2805 0
2806 0
99
99
19
1904 O18
1900 0.9
1901 0.2
1902 1
1903 0.2
1908 37
1909 67
1910 67
1911 1
1915 0
1913 5
1916 2
1914 0
1918 0
1919 1
1920 0
1917 1
1921 0
1922 4
1923 1
1924 0
1925 10000
1926 0
1907 0
1906
1905
5
500 37
501 1
504 1
505 0
502
7
700 0.2
701 0.2
99
503
7
700 0.9
701 1
99
99
1912
28
2800 1
2801 0
2802 2.98023e-09
2803 0
2804 1
2805 2.98023e-09
2806 0
99
99
20
2004 O19
2000 0.9
2001 0.2
2002 0.3
2003 0.3
2009 37
2010 0
2005
6
600 37
601 1
602
7
700 0.9
701 0.3
99
603
7
700 0.2
701 0.3
99
99
2008
28
2800 1
2801 0
2802 0
2803 0
2804 1
2805 0
2806 0
99
99
24
2404 O20
2400 0.85
2401 0.45
2402 0.95
2403 0.55
2408 37
2409 113
2410 113
2423 10000
2411 1
2415 0
2413 5
2416 2
2414 0
2417 1
2421 1
2418 0
2419 4
2420 1
2422 0
2424 0
2407 0
2406
2405
8
802 37
803 1
800 0
801 360
806 1
804
7
700 0.45
701 0.6
99
805
7
700 0.85
701 1
99
99
2412
28
2800 1
2801 0
2802 -1.73472e-18
2803 0
2804 1
2805 -0.05
2806 0
99
99
26
2604 O21
2600 0.85
2601 0.7
2602 0.85
2603 0.65
2605
25
2500 39
2501 1
2503 1
2504 0
2502
2
7
700 0.85
701 0.8
99
7
700 0.7
701 0.7
99
7
700 0.7
701 0.9
99
7
700 0.85
701 0.8
99
99
99
2608 39
2609 39
2629 10000
2610 39
2611 1
2616 0
2614 5
2617 2
2615 0
2618 1
2607 0
2606
2612
28
2800 1
2801 0
2802 -1.73472e-18
2803 0
2804 1
2805 -0.05
2806 0
99
2613 0
2619 0
2620 0
2626 0
2627 0
2621 1
2622 0
2623 0
2624 4
2625 1
2628 0
99
20
2004 O22
2000 0.45
2001 0.25
2002 0.75
2003 0.75
2009 38
2010 0
2005
6
600 38
601 1
602
7
700 0.45
701 0.8
99
603
7
700 0.25
701 0.8
99
99
2008
28
2800 1
2801 0
2802 -1.73472e-18
2803 0
2804 1
2805 -0.05
2806 0
99
99
20
2004 O23
2000 0.4
2001 0.4
2002 0.75
2003 0.6
2009 38
2010 0
2005
6
600 38
601 1
602
7
700 0.4
701 0.65
99
603
7
700 0.4
701 0.8
99
99
2008
28
2800 1
2801 0
2802 -1.73472e-18
2803 0
2804 1
2805 -0.05
2806 0
99
99
26
2604 O27
2600 0.55
2601 0.25
2602 0.6
2603 0.4
2605
25
2500 38
2501 1
2503 1
2504 0
2502
2
7
700 0.4
701 0.65
99
7
700 0.25
701 0.45
99
7
700 0.55
701 0.45
99
7
700 0.4
701 0.65
99
99
99
2608 38
2609 75
2629 10000
2610 75
2611 1
2616 0
2614 5
2617 2
2615 0
2618 1
2607 0
2606
2612
28
2800 1
2801 0
2802 1.80411e-16
2803 0
2804 1
2805 -0.05
2806 0
99
2613 0
2619 0
2620 0
2626 0
2627 0
2621 1
2622 0
2623 0
2624 4
2625 1
2628 0
99
99
302 0
304 0
303
305 0
306
307
308 128
330 0
321 8256
331 0
309 0
313 0
322 0
323 0
324 0
325 0
326 0
327 0
310 0
311 0
312
314
315 1
316 1
317 0
318 0
319 0
320 0
328 0
332 0
329
1
100 1
105 0
101 1
106 0
102 65532
103 0
99
99
3
300 pwr_mb2trend
301
2
19
1904 O17
1900 1.1
1901 0
1902 1.2
1903 0
1908 0
1909 30
1910 30
1911 1
1915 1
1913 8
1916 2
1914 0
1918 0
1919 0
1920 0
1917 0
1921 0
1922 4
1923 0
1924 0
1925 10000
1926 0
1907 0
1906
1905
5
500 0
501 1
504 1
505 1
502
7
700 0
701 0
99
503
7
700 1.1
701 1.2
99
99
1912
28
2800 1
2801 0
2802 0
2803 0
2804 1
2805 0
2806 0
99
99
20
2004 O18
2000 0.867294
2001 0.167294
2002 0.906729
2003 0.906729
2009 39
2010 0
2005
6
600 39
601 1
602
7
700 0.9
701 0.9
99
603
7
700 0.2
701 0.9
99
99
2008
28
2800 1
2801 0
2802 -0.032706
2803 0
2804 1
2805 0.0067294
2806 0
99
99
26
2604 O21
2600 0.867294
2601 0.167294
2602 0.906729
2603 0.406729
2605
25
2500 38
2501 1
2503 1
2504 0
2502
2
7
700 0.1
701 0.9
99
7
700 0.8
701 0.9
99
7
700 0.8
701 0.581399
99
7
700 0.7
701 0.458142
99
7
700 0.6
701 0.581399
99
7
700 0.4
701 0.4
99
7
700 0.3
701 0.6
99
7
700 0.2
701 0.5
99
7
700 0.1
701 0.6
99
99
99
2608 38
2609 133
2629 10000
2610 133
2611 1
2616 0
2614 5
2617 2
2615 0
2618 1
2607 0
2606
2612
28
2800 1
2801 0
2802 0.067294
2803 0
2804 1
2805 0.0067294
2806 0
99
2613 0
2619 0
2620 0
2626 0
2627 0
2621 1
2622 0
2623 0
2624 4
2625 1
2628 0
99
20
2004 O22
2000 0.87213
2001 0.87213
2002 0.895387
2003 0.209311
2009 38
2010 0
2005
6
600 38
601 1
602
7
700 0.87213
701 0.209311
99
603
7
700 0.87213
701 0.895387
99
99
2008
28
2800 1
2801 0
2802 0
2803 0
2804 1
2805 0
2806 0
99
99
99
302 0
304 0
303
305 0
306
307
308 128
330 0
321 8256
331 0
309 0
313 0
322 0
323 0
324 0
325 0
326 0
327 0
310 0
311 0
312
314
315 1
316 1
317 0
318 0
319 0
320 0
328 0
332 0
329
1
100 1
105 0
101 1
106 0
102 65532
103 0
99
99
3
300 pwr_mb2history
301
2
19
1904 O17
1900 1.1
1901 0
1902 1.2
1903 0
1908 0
1909 30
1910 30
1911 1
1915 1
1913 8
1916 2
1914 0
1918 0
1919 0
1920 0
1917 0
1921 0
1922 4
1923 0
1924 0
1925 10000
1926 0
1907 0
1906
1905
5
500 0
501 1
504 1
505 1
502
7
700 0
701 0
99
503
7
700 1.1
701 1.2
99
99
1912
28
2800 1
2801 0
2802 0
2803 0
2804 1
2805 0
2806 0
99
99
26
2604 O21
2600 0.894392
2601 0.183176
2602 0.894392
2603 0.371961
2605
25
2500 38
2501 1
2503 1
2504 0
2502
2
7
700 0.1
701 0.9
99
7
700 0.8
701 0.9
99
7
700 0.8
701 0.581399
99
7
700 0.688784
701 0.396456
99
7
700 0.594392
701 0.486066
99
7
700 0.411216
701 0.377569
99
7
700 0.305608
701 0.52149
99
7
700 0.194392
701 0.399059
99
7
700 0.0887843
701 0.414942
99
99
99
2608 38
2609 84
2629 10000
2610 84
2611 1
2616 0
2614 5
2617 2
2615 0
2618 1
2607 0
2606
2612
28
2800 1
2801 0
2802 0.0943922
2803 0
2804 1
2805 -0.00560783
2806 0
99
2613 0
2619 0
2620 0
2626 0
2627 0
2621 1
2622 0
2623 0
2624 4
2625 1
2628 0
99
20
2004 O18
2000 0.9
2001 0.2
2002 0.9
2003 0.9
2009 38
2010 0
2005
6
600 38
601 1
602
7
700 0.9
701 0.9
99
603
7
700 0.2
701 0.9
99
99
2008
28
2800 1
2801 0
2802 -1.73472e-17
2803 0
2804 1
2805 1.35308e-16
2806 0
99
99
20
2004 O22
2000 0.9
2001 0.9
2002 0.886076
2003 0.2
2009 38
2010 0
2005
6
600 38
601 1
602
7
700 0.87213
701 0.209311
99
603
7
700 0.87213
701 0.895387
99
99
2008
28
2800 1
2801 0
2802 0.02787
2803 0
2804 1
2805 -0.009311
2806 0
99
99
99
302 0
304 0
303
305 0
306
307
308 128
330 0
321 8256
331 0
309 0
313 0
322 0
323 0
324 0
325 0
326 0
327 0
310 0
311 0
312
314
315 1
316 1
317 0
318 0
319 0
320 0
328 0
332 0
329
1
100 1
105 0
101 1
106 0
102 65532
103 0
99
99
3
300 pwr_mb2fast
301
2
19
1904 O17
1900 1.1
1901 0
1902 1.2
1903 0
1908 0
1909 30
1910 30
1911 1
1915 1
1913 8
1916 2
1914 0
1918 0
1919 0
1920 0
1917 0
1921 0
1922 4
1923 0
1924 0
1925 10000
1926 0
1907 0
1906
1905
5
500 0
501 1
504 1
505 1
502
7
700 0
701 0
99
503
7
700 1.1
701 1.2
99
99
1912
28
2800 1
2801 0
2802 0
2803 0
2804 1
2805 0
2806 0
99
99
26
2604 O23
2600 0.9
2601 0.2
2602 0.9
2603 0.5
2605
25
2500 38
2501 1
2503 1
2504 0
2502
2
7
700 0.9
701 0.9
99
7
700 0.2
701 0.9
99
7
700 0.2
701 0.5
99
7
700 0.3
701 0.5
99
7
700 0.5
701 0.7
99
7
700 0.6
701 0.5
99
7
700 0.7
701 0.6
99
7
700 0.8
701 0.5
99
7
700 0.9
701 0.5
99
99
99
2608 38
2609 224
2629 10000
2610 224
2611 1
2616 0
2614 5
2617 2
2615 0
2618 1
2607 0
2606
2612
28
2800 1
2801 0
2802 1.9082e-16
2803 0
2804 1
2805 -2.35922e-16
2806 0
99
2613 0
2619 0
2620 0
2626 0
2627 0
2621 1
2622 0
2623 0
2624 4
2625 1
2628 0
99
20
2004 O18
2000 0.9
2001 0.2
2002 0.9
2003 0.9
2009 39
2010 0
2005
6
600 39
601 1
602
7
700 0.9
701 0.9
99
603
7
700 0.2
701 0.9
99
99
2008
28
2800 1
2801 0
2802 1.73472e-17
2803 0
2804 1
2805 4e-07
2806 0
99
99
20
2004 O22
2000 0.2
2001 0.2
2002 0.886076
2003 0.2
2009 38
2010 0
2005
6
600 38
601 1
602
7
700 0.87213
701 0.209311
99
603
7
700 0.87213
701 0.895387
99
99
2008
28
2800 1
2801 0
2802 -0.67213
2803 0
2804 1
2805 -0.009311
2806 0
99
99
99
302 0
304 0
303
305 0
306
307
308 128
330 0
321 8256
331 0
309 0
313 0
322 0
323 0
324 0
325 0
326 0
327 0
310 0
311 0
312
314
315 1
316 1
317 0
318 0
319 0
320 0
328 0
332 0
329
1
100 1
105 0
101 1
106 0
102 65532
103 0
99
99
3
300 pwr_mb2openobject
301
2
19
1904 O17
1900 1.1
1901 0
1902 1.2
1903 0
1908 0
1909 30
1910 30
1911 1
1915 1
1913 8
1916 2
1914 0
1918 0
1919 0
1920 0
1917 0
1921 0
1922 4
1923 0
1924 0
1925 10000
1926 0
1907 0
1906
1905
5
500 0
501 1
504 1
505 1
502
7
700 0
701 0
99
503
7
700 1.1
701 1.2
99
99
1912
28
2800 1
2801 0
2802 0
2803 0
2804 1
2805 0
2806 0
99
99
19
1904 O64
1900 0.901926
1901 0.210294
1902 0.981371
1903 0.247679
1908 38
1909 3
1910 3
1911 1
1915 0
1913 5
1916 2
1914 0
1918 0
1919 0
1920 0
1917 1
1921 0
1922 4
1923 1
1924 0
1925 10000
1926 0
1907 0
1906
1905
5
500 38
501 1
504 1
505 0
502
7
700 0.210294
701 0.247679
99
503
7
700 0.901926
701 0.981371
99
99
1912
28
2800 1
2801 0
2802 0
2803 0
2804 1
2805 0
2806 0
99
99
20
2004 O65
2000 0.9066
2001 0.224313
2002 0.387875
2003 0.387875
2009 38
2010 0
2005
6
600 38
601 1
602
7
700 0.9066
701 0.387875
99
603
7
700 0.224313
701 0.387875
99
99
2008
28
2800 1
2801 0
2802 0
2803 0
2804 1
2805 0
2806 0
99
99
99
302 0
304 0
303
305 0
306
307
308 128
330 0
321 8256
331 0
309 0
313 0
322 0
323 0
324 0
325 0
326 0
327 0
310 0
311 0
312
314
315 1
316 1
317 0
318 0
319 0
320 0
328 0
332 0
329
1
100 1
105 0
101 1
106 0
102 65532
103 0
99
99
3
300 pwr_mb2openplc
301
2
19
1904 O17
1900 1.1
1901 0
1902 1.2
1903 0
1908 0
1909 30
1910 30
1911 1
1915 1
1913 8
1916 2
1914 0
1918 0
1919 0
1920 0
1917 0
1921 0
1922 4
1923 0
1924 0
1925 10000
1926 0
1907 0
1906
1905
5
500 0
501 1
504 1
505 1
502
7
700 0
701 0
99
503
7
700 1.1
701 1.2
99
99
1912
28
2800 1
2801 0
2802 0
2803 0
2804 1
2805 0
2806 0
99
99
20
2004 O43
2000 0.366353
2001 0.166353
2002 0.405608
2003 0.405608
2009 37
2010 0
2005
6
600 37
601 1
602
7
700 0.3
701 0.4
99
603
7
700 0.1
701 0.4
99
99
2008
28
2800 1
2801 0
2802 0.066353
2803 0
2804 1
2805 0.00560783
2806 0
99
99
20
2004 O44
2000 0.366353
2001 0.166353
2002 0.605608
2003 0.605608
2009 37
2010 0
2005
6
600 37
601 1
602
7
700 0.3
701 0.6
99
603
7
700 0.1
701 0.6
99
99
2008
28
2800 1
2801 0
2802 0.066353
2803 0
2804 1
2805 0.00560783
2806 0
99
99
20
2004 O45
2000 0.966353
2001 0.766353
2002 0.405608
2003 0.405608
2009 37
2010 0
2005
6
600 37
601 1
602
7
700 1
701 0.4
99
603
7
700 0.8
701 0.4
99
99
2008
28
2800 1
2801 0
2802 -0.033647
2803 0
2804 1
2805 0.00560783
2806 0
99
99
19
1904 O47
1900 0.766353
1901 0.366353
1902 0.905608
1903 0.305608
1908 38
1909 2
1910 2
1911 1
1915 0
1913 5
1916 2
1914 0
1918 0
1919 0
1920 0
1917 1
1921 0
1922 4
1923 1
1924 0
1925 10000
1926 0
1907 0
1906
1905
5
500 38
501 1
504 1
505 0
502
7
700 0.4
701 0.3
99
503
7
700 0.8
701 0.9
99
99
1912
28
2800 1
2801 0
2802 -0.033647
2803 0
2804 1
2805 0.00560783
2806 0
99
99
99
302 0
304 0
303
305 0
306
307
308 128
330 0
321 8256
331 0
309 0
313 0
322 0
323 0
324 0
325 0
326 0
327 0
310 0
311 0
312
314
315 1
316 1
317 0
318 0
319 0
320 0
328 0
332 0
329
1
100 1
105 0
101 1
106 0
102 65532
103 0
99
99
3
300 pwr_mb2rtnavigator
301
2
19
1904 O17
1900 1.1
1901 0
1902 1.2
1903 0
1908 0
1909 30
1910 30
1911 1
1915 1
1913 8
1916 2
1914 0
1918 0
1919 0
1920 0
1917 0
1921 0
1922 4
1923 0
1924 0
1925 10000
1926 0
1907 0
1906
1905
5
500 0
501 1
504 1
505 1
502
7
700 0
701 0
99
503
7
700 1.1
701 1.2
99
99
1912
28
2800 1
2801 0
2802 0
2803 0
2804 1
2805 0
2806 0
99
99
26
2604 O34
2600 0.868509
2601 0.243509
2602 0.954207
2603 0.304207
2605
25
2500 39
2501 1
2503 1
2504 0
2502
2
7
700 0.25
701 0.325
99
7
700 0.275
701 0.3
99
7
700 0.55
701 0.45
99
7
700 0.85
701 0.3
99
7
700 0.875
701 0.325
99
7
700 0.675
701 0.625
99
7
700 0.875
701 0.925
99
7
700 0.85
701 0.95
99
7
700 0.55
701 0.8
99
7
700 0.275
701 0.95
99
7
700 0.25
701 0.925
99
7
700 0.425
701 0.625
99
7
700 0.25
701 0.325
99
99
99
2608 39
2609 74
2629 10000
2610 74
2611 1
2616 0
2614 5
2617 2
2615 0
2618 1
2607 0
2606
2612
28
2800 1
2801 0
2802 -0.00649055
2803 0
2804 1
2805 0.00420746
2806 0
99
2613 0
2619 0
2620 0
2626 0
2627 0
2621 1
2622 0
2623 0
2624 4
2625 1
2628 0
99
26
2604 O30
2600 1.025
2601 0.1
2602 1.1
2603 0.1
2605
25
2500 39
2501 1
2503 1
2504 0
2502
2
7
700 0.1
701 0.575
99
7
700 0.425
701 0.5
99
7
700 0.5
701 0.1
99
7
700 0.575
701 0.1
99
7
700 0.675
701 0.5
99
7
700 1.025
701 0.575
99
7
700 1.025
701 0.65
99
7
700 0.675
701 0.75
99
7
700 0.6
701 1.1
99
7
700 0.525
701 1.1
99
7
700 0.425
701 0.75
99
7
700 0.1
701 0.65
99
7
700 0.1
701 0.569472
99
99
99
2608 39
2609 74
2629 10000
2610 74
2611 1
2616 0
2614 5
2617 2
2615 0
2618 1
2607 0
2606
2612
28
2800 1
2801 0
2802 0
2803 0
2804 1
2805 0
2806 0
99
2613 0
2619 0
2620 0
2626 0
2627 0
2621 1
2622 0
2623 0
2624 4
2625 1
2628 0
99
99
302 0
304 0
303
305 0
306
307
308 128
330 0
321 8256
331 0
309 0
313 0
322 0
323 0
324 0
325 0
326 0
327 0
310 0
311 0
312
314
315 1
316 1
317 0
318 0
319 0
320 0
328 0
332 0
329
1
100 1
105 0
101 1
106 0
102 65532
103 0
99
99
3
300 pwr_mb2crossreferences
301
2
19
1904 O17
1900 1.1
1901 0
1902 1.2
1903 0
1908 0
1909 30
1910 30
1911 1
1915 1
1913 8
1916 2
1914 0
1918 0
1919 0
1920 0
1917 0
1921 0
1922 4
1923 0
1924 0
1925 10000
1926 0
1907 0
1906
1905
5
500 0
501 1
504 1
505 1
502
7
700 0
701 0
99
503
7
700 1.1
701 1.2
99
99
1912
28
2800 1
2801 0
2802 0
2803 0
2804 1
2805 0
2806 0
99
99
24
2404 O70
2400 0.75
2401 0.15
2402 0.75
2403 0.15
2408 38
2409 3
2410 3
2423 10000
2411 1
2415 0
2413 5
2416 2
2414 0
2417 1
2421 1
2418 0
2419 4
2420 1
2422 0
2424 0
2407 0
2406
2405
8
802 38
803 1
800 0
801 360
806 1
804
7
700 0.2
701 0.2
99
805
7
700 0.8
701 0.8
99
99
2412
28
2800 1
2801 0
2802 -0.05
2803 0
2804 1
2805 -0.05
2806 0
99
99
26
2604 O72
2600 0.968692
2601 0.582712
2602 1.03598
2603 0.621961
2605
25
2500 38
2501 1
2503 1
2504 0
2502
2
7
700 0.55
701 0.7
99
7
700 0.821961
701 1.01729
99
7
700 0.93598
701 0.921961
99
7
700 0.667288
701 0.603268
99
7
700 0.55
701 0.7
99
99
99
2608 38
2609 38
2629 10000
2610 38
2611 1
2616 0
2614 5
2617 2
2615 0
2618 1
2607 0
2606
2612
28
2800 1
2801 0
2802 0.0327124
2803 0
2804 1
2805 0.0186928
2806 0
99
2613 0
2619 0
2620 0
2626 0
2627 0
2621 1
2622 0
2623 0
2624 4
2625 1
2628 0
99
20
2004 O73
2000 0.850521
2001 0.584149
2002 1.03745
2003 0.729018
2009 39
2010 0
2005
6
600 39
601 1
602
7
700 0.850521
701 1.03745
99
603
7
700 0.584149
701 0.729018
99
99
2008
28
2800 1
2801 0
2802 0
2803 0
2804 1
2805 0
2806 0
99
99
20
2004 O74
2000 0.943985
2001 0.682286
2002 0.948658
2003 0.649574
2009 35
2010 0
2005
6
600 35
601 1
602
7
700 0.943985
701 0.948658
99
603
7
700 0.682286
701 0.649574
99
99
2008
28
2800 1
2801 0
2802 0
2803 0
2804 1
2805 0
2806 0
99
99
30
3004 O75
3000 0.63148
3001 0.23148
3002 0.696505
3003 0.146505
3008 0
3010 4
3011 2
3007 0
3006
3005
9
900 1
901 304
904 0
902 X
903
7
700 -3.1
701 0.35
99
99
3009
28
2800 1
2801 0
2802 3.33148
2803 0
2804 1
2805 0.246505
2806 0
99
99
99
302 0
304 0
303
305 0
306
307
308 128
330 0
321 8256
331 0
309 0
313 0
322 0
323 0
324 0
325 0
326 0
327 0
310 0
311 0
312
314
315 1
316 1
317 0
318 0
319 0
320 0
328 0
332 0
329
1
100 1
105 0
101 1
106 0
102 65532
103 0
99
99
3
300 O207
301
2
27
2703 10000
2704 10000
2731 10000
2722 10000
2705 10000
2723 10000
2706 10000
2732 10000
2708 0
2709 0
2710 0
2711 0
2712 0
2713 0
2714 0
2715 0
2720 0
2725 0
2726 0
2702 0
2701
2700
10
1000 pwr_mb2opengraph
1002 pwr_mb2opengraph
1005
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1006 1.1
1007 0
1008 1.2
1009 0
1013 1.1
1014 0
1015 1.2
1016 0
1003
0
0
0
0
0
0
0
0
0
0
1004
1001
7
700 0
701 0
99
1010
1011
1018
1019
1020
1021
1022
1023
1024
1025
1012 0
1017 9999
1027 9999
1026 35454972
1028 0
1029
99
2707
28
2800 1
2801 0
2802 0
2803 0
2804 1
2805 0
2806 0
99
2716 0
2718
2717
2719 0
2724 0
2727 0
2728 303
2729 9999
2730 1
99
27
2703 10000
2704 10000
2731 10000
2722 10000
2705 10000
2723 10000
2706 10000
2732 10000
2708 0
2709 0
2710 0
2711 0
2712 0
2713 0
2714 0
2715 0
2720 0
2725 0
2726 0
2702 0
2701
2700
10
1000 pwr_mb2openobjectgraph
1002 pwr_mb2openobjectgraph
1005
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1006 2.4
1007 1.3
1008 1.2
1009 0
1013 2.4
1014 1.3
1015 1.2
1016 0
1003
0
0
0
0
0
0
0
0
0
0
1004
1001
7
700 1.3
701 0
99
1010
1011
1018
1019
1020
1021
1022
1023
1024
1025
1012 0
1017 9999
1027 9999
1026 35454972
1028 0
1029
99
2707
28
2800 1
2801 0
2802 1.3
2803 0
2804 1
2805 0
2806 0
99
2716 0
2718
2717
2719 0
2724 0
2727 0
2728 303
2729 9999
2730 1
99
27
2703 10000
2704 10000
2731 10000
2722 10000
2705 10000
2723 10000
2706 10000
2732 10000
2708 0
2709 0
2710 0
2711 0
2712 0
2713 0
2714 0
2715 0
2720 0
2725 0
2726 0
2702 0
2701
2700
10
1000 pwr_mb2trend
1002 pwr_mb2trend
1005
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1006 3.7
1007 2.6
1008 1.2
1009 0
1013 3.7
1014 2.6
1015 1.2
1016 0
1003
0
0
0
0
0
0
0
0
0
0
1004
1001
7
700 2.6
701 0
99
1010
1011
1018
1019
1020
1021
1022
1023
1024
1025
1012 0
1017 9999
1027 9999
1026 35454972
1028 0
1029
99
2707
28
2800 1
2801 0
2802 2.6
2803 0
2804 1
2805 0
2806 0
99
2716 0
2718
2717
2719 0
2724 0
2727 0
2728 303
2729 9999
2730 1
99
27
2703 10000
2704 10000
2731 10000
2722 10000
2705 10000
2723 10000
2706 10000
2732 10000
2708 0
2709 0
2710 0
2711 0
2712 0
2713 0
2714 0
2715 0
2720 0
2725 0
2726 0
2702 0
2701
2700
10
1000 pwr_mb2history
1002 pwr_mb2history
1005
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1006 5
1007 3.9
1008 1.2
1009 0
1013 5
1014 3.9
1015 1.2
1016 0
1003
0
0
0
0
0
0
0
0
0
0
1004
1001
7
700 3.9
701 0
99
1010
1011
1018
1019
1020
1021
1022
1023
1024
1025
1012 0
1017 9999
1027 9999
1026 35454972
1028 0
1029
99
2707
28
2800 1
2801 0
2802 3.9
2803 0
2804 1
2805 0
2806 0
99
2716 0
2718
2717
2719 0
2724 0
2727 0
2728 303
2729 9999
2730 1
99
27
2703 10000
2704 10000
2731 10000
2722 10000
2705 10000
2723 10000
2706 10000
2732 10000
2708 0
2709 0
2710 0
2711 0
2712 0
2713 0
2714 0
2715 0
2720 0
2725 0
2726 0
2702 0
2701
2700
10
1000 pwr_mb2fast
1002 pwr_mb2fast
1005
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1006 6.3
1007 5.2
1008 1.2
1009 0
1013 6.3
1014 5.2
1015 1.2
1016 0
1003
0
0
0
0
0
0
0
0
0
0
1004
1001
7
700 5.2
701 0
99
1010
1011
1018
1019
1020
1021
1022
1023
1024
1025
1012 0
1017 9999
1027 9999
1026 35454972
1028 0
1029
99
2707
28
2800 1
2801 0
2802 5.2
2803 0
2804 1
2805 0
2806 0
99
2716 0
2718
2717
2719 0
2724 0
2727 0
2728 303
2729 9999
2730 1
99
27
2703 10000
2704 10000
2731 10000
2722 10000
2705 10000
2723 10000
2706 10000
2732 10000
2708 0
2709 0
2710 0
2711 0
2712 0
2713 0
2714 0
2715 0
2720 0
2725 0
2726 0
2702 0
2701
2700
10
1000 pwr_mb2openobject
1002 pwr_mb2openobject
1005
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1006 8
1007 6.9
1008 1.2
1009 0
1013 8
1014 6.9
1015 1.2
1016 0
1003
0
0
0
0
0
0
0
0
0
0
1004
1001
7
700 6.9
701 0
99
1010
1011
1018
1019
1020
1021
1022
1023
1024
1025
1012 0
1017 9999
1027 9999
1026 35454972
1028 0
1029
99
2707
28
2800 1
2801 0
2802 6.9
2803 0
2804 1
2805 0
2806 0
99
2716 0
2718
2717
2719 0
2724 0
2727 0
2728 303
2729 9999
2730 1
99
27
2703 10000
2704 10000
2731 10000
2722 10000
2705 10000
2723 10000
2706 10000
2732 10000
2708 0
2709 0
2710 0
2711 0
2712 0
2713 0
2714 0
2715 0
2720 0
2725 0
2726 0
2702 0
2701
2700
10
1000 pwr_mb2openplc
1002 pwr_mb2openplc
1005
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1006 9.3
1007 8.2
1008 1.2
1009 0
1013 9.3
1014 8.2
1015 1.2
1016 0
1003
0
0
0
0
0
0
0
0
0
0
1004
1001
7
700 8.2
701 0
99
1010
1011
1018
1019
1020
1021
1022
1023
1024
1025
1012 0
1017 9999
1027 9999
1026 35454972
1028 0
1029
99
2707
28
2800 1
2801 0
2802 8.2
2803 0
2804 1
2805 0
2806 0
99
2716 0
2718
2717
2719 0
2724 0
2727 0
2728 303
2729 9999
2730 1
99
27
2703 10000
2704 10000
2731 10000
2722 10000
2705 10000
2723 10000
2706 10000
2732 10000
2708 0
2709 0
2710 0
2711 0
2712 0
2713 0
2714 0
2715 0
2720 0
2725 0
2726 0
2702 0
2701
2700
10
1000 pwr_mb2rtnavigator
1002 pwr_mb2rtnavigator
1005
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1006 10.6
1007 9.5
1008 1.2
1009 0
1013 10.6
1014 9.5
1015 1.2
1016 0
1003
0
0
0
0
0
0
0
0
0
0
1004
1001
7
700 9.5
701 0
99
1010
1011
1018
1019
1020
1021
1022
1023
1024
1025
1012 0
1017 9999
1027 9999
1026 35454972
1028 0
1029
99
2707
28
2800 1
2801 0
2802 9.5
2803 0
2804 1
2805 0
2806 0
99
2716 0
2718
2717
2719 0
2724 0
2727 0
2728 303
2729 9999
2730 1
99
27
2703 10000
2704 10000
2731 10000
2722 10000
2705 10000
2723 10000
2706 10000
2732 10000
2708 0
2709 0
2710 0
2711 0
2712 0
2713 0
2714 0
2715 0
2720 0
2725 0
2726 0
2702 0
2701
2700
10
1000 pwr_mb2crossreferences
1002 pwr_mb2crossreferences
1005
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1006 11.9
1007 10.8
1008 1.2
1009 0
1013 11.9
1014 10.8
1015 1.2
1016 0
1003
0
0
0
0
0
0
0
0
0
0
1004
1001
7
700 10.8
701 0
99
1010
1011
1018
1019
1020
1021
1022
1023
1024
1025
1012 0
1017 9999
1027 9999
1026 35454972
1028 0
1029
99
2707
28
2800 1
2801 0
2802 10.8
2803 0
2804 1
2805 0
2806 0
99
2716 0
2718
2717
2719 0
2724 0
2727 0
2728 303
2729 9999
2730 1
99
99
302 0
304 0
303
305 0
306
307
308 0
330 0
321 0
331 0
309 0
313 0
322 0
323 0
324 0
325 0
326 0
327 0
310 0
311 0
312
314
315 1
316 1
317 0
318 0
319 0
320 0
328 13617
332 0
99
3
300 pwr_valuelarge
301
2
19
1904 O0
1900 4.2
1901 0.05
1902 1.35
1903 0.05
1908 0
1909 41
1910 41
1911 1
1915 0
1913 10
1916 2
1914 0
1918 0
1919 0
1920 0
1917 0
1921 0
1922 2
1923 0
1924 0
1925 10000
1926 0
1907 0
1906
1905
5
500 0
501 1
504 1
505 1
502
7
700 0.25
701 0.45
99
503
7
700 4.4
701 1.75
99
99
1912
28
2800 1
2801 0
2802 -0.2
2803 0
2804 1
2805 -0.4
2806 0
99
99
29
2907
13
1300 1
1301 304
1306 0
1302 6
1305 1
1303
7
700 1
701 1.35
99
1304 0
1307 0
1308 0
99
2908
28
2800 1
2801 0
2802 -0.6
2803 0
2804 1
2805 -0.35
2806 0
99
2901 2
99
99
302 0
304 0
303
305 0
306
307
308 1024
330 0
321 0
331 0
309 0
313 0
322 0
323 0
324 0
325 0
326 0
327 0
310 0
311 0
312
314
315 1
316 1
317 0
318 0
319 0
320 0
328 0
332 0
329
1
100 1
105 0
101 1
106 0
102 65532
103 0
99
99
99
124
2
99
125
2
19
1904 O277
1900 46.0224
1901 3
1902 41
1903 39
1908 0
1909 318
1910 318
1911 0
1915 0
1913 5
1916 2
1914 0
1918 0
1919 0
1920 0
1917 0
1921 0
1922 4
1923 0
1924 0
1925 10000
1926 0
1907 0
1906
1905
5
500 0
501 1
504 1
505 1
502
7
700 3
701 26.5
99
503
7
700 35
701 31.5
99
99
1912
28
2800 1.34445
2801 0
2802 -1.03335
2803 0
2804 0.4
2805 28.4
2806 0
99
99
19
1904 O206
1900 45.9997
1901 2.86796
1902 3.32778
1903 2.20625
1908 0
1909 310
1910 310
1911 0
1915 0
1913 5
1916 2
1914 0
1918 0
1919 0
1920 0
1917 0
1921 2
1922 2
1923 0
1924 1
1925 314
1926 0
1907 0
1906
1905
5
500 0
501 1
504 1
505 1
502
7
700 2.81876
701 2.17984
99
503
7
700 23.0386
701 3.04426
99
99
1912
28
2800 2.13314
2801 0
2802 -3.14485
2803 0
2804 1.29743
2805 -0.621935
2806 0
99
99
27
2703 10000
2704 550
2731 10000
2722 554
2705 550
2723 554
2706 10000
2732 10000
2708 0
2709 0
2710 0
2711 0
2712 0
2713 0
2714 0
2715 0
2720 0
2725 0
2726 0
2702 0
2701
2700
10
1000 pwr_menubar2
1002 O18
1005
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1006 46.0443
1007 2.85086
1008 2.2
1009 0.831579
1013 46.0443
1014 2.85086
1015 2.2
1016 0.831579
1003
0
0
0
0
0
0
0
0
0
0
1004
1001
7
700 3.74746
701 2.04722
99
1010
1011
1018
1019
1020
1021
1022
1023
1024
1025
1012 0
1017 9999
1027 9999
1026 65532
1028 0
1029
99
2707
28
2800 1.57067
2801 0
2802 2.85086
2803 0
2804 1.36842
2805 0.831579
2806 0
99
2716 0
2718
2717
2719 0
2724 0
2727 0
2728 303
2729 9999
2730 0
2721
1
100 1
105 0
101 1
106 0
102 65532
103 0
99
99
27
2703 10000
2704 550
2731 10000
2722 554
2705 550
2723 554
2706 10000
2732 10000
2708 0
2709 0
2710 0
2711 0
2712 0
2713 0
2714 0
2715 0
2720 0
2725 0
2726 0
2702 0
2701
2700
10
1000 pwr_pulldownmenu2
1002 O19
1005
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1006 6.62337
1007 3.3462
1008 2.2
1009 0.831579
1013 6.62337
1014 3.3462
1015 2.2
1016 0.831579
1003
0
5
0
0
0
0
0
0
0
0
1004
"File"
1001
7
700 5
701 1.5
99
1010
1011
1018
1019
1020
1021
1022
1023
1024
1025
1012 0
1017 9999
1027 9999
1026 65532
1028 0
1029
99
2707
28
2800 1.09239
2801 0
2802 3.3462
2803 0
2804 1.36842
2805 0.831579
2806 0
99
2716 0
2718
2717
2719 0
2724 0
2727 0
2728 303
2729 9999
2730 0
2721
1
100 0
105 0
101 1
106 0
102 65535
103 0
68
6800 3
6801 Print
6833
1
100 1
105 0
101 65
106 0
102 65535
103 0
55
5500 print graph/class/inst=$object
99
99
6802 Close
6834
1
100 1
105 0
101 262145
106 0
102 65535
103 0
67
99
99
99
99
99
27
2703 10000
2704 550
2731 10000
2722 554
2705 550
2723 554
2706 10000
2732 10000
2708 0
2709 0
2710 0
2711 0
2712 0
2713 0
2714 0
2715 0
2720 0
2725 0
2726 0
2702 0
2701
2700
10
1000 pwr_pulldownmenu2
1002 O20
1005
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1006 14.9631
1007 11.6859
1008 2.2
1009 0.831579
1013 14.9631
1014 11.6859
1015 2.2
1016 0.831579
1003
0
5
0
0
0
0
0
0
0
0
1004
"Help"
1001
7
700 18
701 1.5
99
1010
1011
1018
1019
1020
1021
1022
1023
1024
1025
1012 0
1017 9999
1027 9999
1026 65532
1028 0
1029
99
2707
28
2800 1.09239
2801 0
2802 11.6859
2803 0
2804 1.36842
2805 0.831579
2806 0
99
2716 0
2718
2717
2719 0
2724 0
2727 0
2728 303
2729 9999
2730 0
2721
1
100 1
105 0
101 8388608
106 0
102 65535
103 0
72
7200 $object
7201 1
99
99
99
27
2703 10000
2704 550
2731 10000
2722 554
2705 550
2723 554
2706 10000
2732 10000
2708 0
2709 0
2710 0
2711 0
2712 0
2713 0
2714 0
2715 0
2720 0
2725 0
2726 0
2702 0
2701
2700
10
1000 pwr_pulldownmenu2
1002 O131
1005
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1006 10.3005
1007 7.02332
1008 2.2
1009 0.831579
1013 10.3005
1014 7.02332
1015 2.2
1016 0.831579
1003
0
8
0
0
0
0
0
0
0
0
1004
"Methods"
1001
7
700 5
701 1.5
99
1010
1011
1018
1019
1020
1021
1022
1023
1024
1025
1012 0
1017 9999
1027 9999
1026 65532
1028 0
1029
99
2707
28
2800 1.09239
2801 0
2802 7.02332
2803 0
2804 1.36842
2805 0.831579
2806 0
99
2716 0
2718
2717
2719 0
2724 0
2727 0
2728 303
2729 9999
2730 0
2721
1
100 1
105 0
101 8388608
106 0
102 65535
103 0
72
7200 $object
7201 0
99
99
99
47
4700
27
2703 562
2704 558
2731 10000
2722 10000
2705 558
2723 10000
2706 562
2732 10000
2708 0
2709 0
2710 0
2711 0
2712 0
2713 0
2714 0
2715 0
2720 0
2725 0
2726 0
2702 0
2701
2700
10
1000 O207
1002 O207
1005
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1006 21.0603
1007 3.6
1008 4.17464
1009 2.45
1013 21.0603
1014 3.6
1015 4.17464
1016 2.45
1003
0
0
0
0
0
0
0
0
0
0
1004
1001
7
700 0.3
701 3.05
99
1010
1011
1018
1019
1020
1021
1022
1023
1024
1025
1012 0
1017 9999
1027 9999
1026 35454972
1028 0
1029
99
2707
28
2800 1.46726
2801 0
2802 3.6
2803 0
2804 1.4372
2805 2.45
2806 0
99
2716 0
2718
2717
2719 0
2724 0
2727 0
2728 303
2729 9999
2730 0
2721
1
100 1
105 0
101 4194304
106 0
102 35454975
103 0
71
7100 $object
7101 0
99
99
99
99
30
3004 O262
3000 5.25
3001 3.75
3002 6.88101
3003 6.03101
3008 326
3010 4
3011 2
3007 0
3006
3005
9
900 4
901 303
904 326
902 Prio
903
7
700 2.85
701 8.55
99
99
3009
28
2800 1
2801 0
2802 0.9
2803 0
2804 1
2805 -1.81899
2806 0
99
99
19
1904 O275
1900 3
1901 0.5
1902 41.0001
1903 0
1908 0
1909 318
1910 318
1911 0
1915 0
1913 5
1916 2
1914 0
1918 0
1919 0
1920 0
1917 0
1921 0
1922 4
1923 0
1924 0
1925 10000
1926 0
1907 0
1906
1905
5
500 0
501 1
504 1
505 1
502
7
700 0.5
701 0
99
503
7
700 3
701 31.5
99
99
1912
28
2800 1
2801 0
2802 0
2803 0
2804 1.30159
2805 0
2806 0
99
99
19
1904 O276
1900 48.5
1901 46
1902 41.0001
1903 0
1908 0
1909 318
1910 318
1911 0
1915 0
1913 5
1916 2
1914 0
1918 0
1919 0
1920 0
1917 0
1921 0
1922 4
1923 0
1924 0
1925 10000
1926 0
1907 0
1906
1905
5
500 0
501 1
504 1
505 1
502
7
700 35
701 0
99
503
7
700 37.5
701 31.5
99
99
1912
28
2800 1
2801 0
2802 11
2803 0
2804 1.30159
2805 0
2806 0
99
99
27
2703 310
2704 310
2731 10000
2722 326
2705 310
2723 326
2706 310
2732 10000
2708 0
2709 0
2710 0
2711 0
2712 0
2713 0
2714 0
2715 0
2720 0
2725 0
2726 0
2702 0
2701
2700
10
1000 pwr_valuelong
1002 O346
1005
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1006 40.9556
1007 11
1008 5.90974
1009 4.98006
1013 40.9556
1014 11
1015 5.90974
1016 4.98006
1003
0
0
0
0
0
0
0
0
0
0
1004
1001
7
700 3.6
701 3.1
99
1010
1011
1018
1019
1020
1021
1022
1023
1024
1025
1012 0
1017 9999
1027 9999
1026 65532
1028 0
1029
99
2707
28
2800 1.12615
2801 0
2802 11
2803 0
2804 1.32812
2805 4.98006
2806 0
99
2716 0
2718
2717
2719 0
2724 0
2727 0
2728 303
2729 4
2730 0
2721
1
100 1024
105 0
101 0
106 0
102 65532
103 0
12
1200 $object.Description##String80
1201 %s
1202 1
1203 1
1204 0
99
99
99
30
3004 O347
3000 8.15
3001 3.75
3002 5.8199
3003 4.9699
3008 326
3010 4
3011 2
3007 0
3006
3005
9
900 4
901 303
904 326
902 Description
903
7
700 2.85
701 8.55
99
99
3009
28
2800 1
2801 0
2802 0.9
2803 0
2804 1
2805 -2.8801
2806 0
99
99
27
2703 310
2704 310
2731 10000
2722 326
2705 310
2723 326
2706 310
2732 10000
2708 0
2709 0
2710 0
2711 0
2712 0
2713 0
2714 0
2715 0
2720 0
2725 0
2726 0
2702 0
2701
2700
10
1000 pwr_valuelarge
1002 O348
1005
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1006 15.5867
1007 10.9
1008 7.17116
1009 6.09724
1013 15.5867
1014 10.9
1015 7.17116
1016 6.09724
1003
0
0
0
0
0
0
0
0
0
0
1004
1001
7
700 12.95
701 8.7
99
1010
1011
1018
1019
1020
1021
1022
1023
1024
1025
1012 0
1017 9999
1027 9999
1026 35454972
1028 0
1029
99
2707
28
2800 1.12933
2801 0
2802 10.8435
2803 0
2804 0.826087
2805 6.05594
2806 0
99
2716 0
2718
2717
2719 0
2724 0
2727 0
2728 303
2729 4
2730 0
2721
1
100 1024
105 0
101 0
106 0
102 65532
103 0
12
1200 $object.Prio##Int32
1201 %d
1202 1
1203 1
1204 0
99
99
99
19
1904 O439
1900 45.9887
1901 3
1902 13.5
1903 13
1908 30
1909 318
1910 318
1911 0
1915 0
1913 5
1916 2
1914 0
1918 0
1919 0
1920 0
1917 0
1921 0
1922 4
1923 0
1924 0
1925 10000
1926 0
1907 0
1906
1905
5
500 30
501 1
504 1
505 1
502
7
700 3
701 10.5
99
503
7
700 42
701 11
99
99
1912
28
2800 1.10228
2801 0
2802 -0.306827
2803 0
2804 1
2805 2.5
2806 0
99
99
35
3500
27
2703 454
2704 450
2731 10000
2722 458
2705 450
2723 458
2706 454
2732 10000
2708 0
2709 0
2710 0
2711 0
2712 0
2713 0
2714 0
2715 0
2720 0
2725 0
2726 0
2702 0
2701
2700
10
1000 Grp578_
1002 Grp578_
1005
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1006 4.60388
1007 3.75
1008 15.95
1009 15.2
1013 4.60388
1014 3.75
1015 15.95
1016 15.2
1003
0
0
0
0
0
0
0
0
0
0
1004
1001
7
700 0
701 0
99
1010
1011
1018
1019
1020
1021
1022
1023
1024
1025
1012 0
1017 9999
1027 9999
1026 65532
1028 0
1029
99
2707
28
2800 1
2801 0
2802 2.75
2803 0
2804 1
2805 7.85
2806 0
99
2716 0
2718
2717
2719 0
2724 0
2727 0
2728 303
2729 9999
2730 0
2721
1
100 0
105 0
101 66
106 0
102 65535
103 0
50
5000 &$object.RemTransObjects[0]
99
55
5500 open graph/classgraph/instance=&$object.RemTransObjects[0]
99
99
99
3501
36
3600
3
300 Grp578_
301
2
19
1904 O206
1900 1.85388
1901 0.999998
1902 8.1
1903 7.35
1908 0
1909 32
1910 32
1911 1
1915 1
1913 12
1916 2
1914 0
1918 0
1919 0
1920 0
1917 0
1921 0
1922 4
1923 0
1924 0
1925 10000
1926 0
1907 0
1906
1905
5
500 0
501 1
504 1
505 0
502
7
700 0.95
701 10.6
99
503
7
700 4.5
701 11.35
99
99
1912
28
2800 0.24053
2801 0
2802 0.771494
2803 0
2804 1
2805 -3.25
2806 0
99
99
99
302 0
304 0
303
305 0
306
307
308 0
330 0
321 0
331 0
309 0
313 0
322 0
323 0
324 0
325 0
326 0
327 0
310 0
311 0
312
314
315 1
316 1
317 0
318 0
319 0
320 0
328 984
332 0
99
99
99
35
3500
27
2703 454
2704 450
2731 10000
2722 458
2705 450
2723 458
2706 454
2732 10000
2708 0
2709 0
2710 0
2711 0
2712 0
2713 0
2714 0
2715 0
2720 0
2725 0
2726 0
2702 0
2701
2700
10
1000 Grp579_
1002 Grp579_
1005
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1006 4.60388
1007 3.75
1008 16.85
1009 16.1
1013 4.60388
1014 3.75
1015 16.85
1016 16.1
1003
0
0
0
0
0
0
0
0
0
0
1004
1001
7
700 0
701 0
99
1010
1011
1018
1019
1020
1021
1022
1023
1024
1025
1012 0
1017 9999
1027 9999
1026 65532
1028 0
1029
99
2707
28
2800 1
2801 0
2802 2.75
2803 0
2804 1
2805 8.75
2806 0
99
2716 0
2718
2717
2719 0
2724 0
2727 0
2728 303
2729 9999
2730 0
2721
1
100 0
105 0
101 66
106 0
102 65535
103 0
50
5000 &$object.RemTransObjects[1]
99
55
5500 open graph/classgraph/instance=&$object.RemTransObjects[1]
99
99
99
3501
36
3600
3
300 Grp579_
301
2
19
1904 O207
1900 1.85388
1901 0.999998
1902 8.1
1903 7.35
1908 0
1909 32
1910 32
1911 1
1915 1
1913 12
1916 2
1914 0
1918 0
1919 0
1920 0
1917 0
1921 0
1922 4
1923 0
1924 0
1925 10000
1926 0
1907 0
1906
1905
5
500 0
501 1
504 1
505 0
502
7
700 0.95
701 10.6
99
503
7
700 4.5
701 11.35
99
99
1912
28
2800 0.24053
2801 0
2802 0.771494
2803 0
2804 1
2805 -3.25
2806 0
99
99
99
302 0
304 0
303
305 0
306
307
308 0
330 0
321 0
331 0
309 0
313 0
322 0
323 0
324 0
325 0
326 0
327 0
310 0
311 0
312
314
315 1
316 1
317 0
318 0
319 0
320 0
328 984
332 0
99
99
99
42
4203 0.8
4206 622
4207 626
4204 0
4205 1
4208 1
4209 25
4210 7
4211 1
4212 1
4213 2
4214 303
4217 618
4218 2
4219 304
4220 618
4221 1
4215 1
4216 0.9
4222 0
4264 9999
4223 0
4240 10
4241 RemTrans
4265 2
4242 1.5
4243 Dir
4266 2
4244 3
4245 Count
4267 2
4246 8.2
4247 TransTime
4268 2
4248 3
4249 Sts
4269 2
4250 2.5
4251 Valid
4270 2
4252 20
4253 Description
4271 2
4254 0
4255
4272 2
4256 0
4257
4273 2
4258 0
4259
4274 2
4260 0
4261
4275 2
4262 0
4263
4276 2
4200
19
1904 O580
1900 45.5306
1901 5.1443
1902 38.4304
1903 14.1218
1908 614
1909 610
1910 610
1911 1
1915 0
1913 5
1916 2
1914 0
1918 0
1919 0
1920 0
1917 0
1921 0
1922 4
1923 0
1924 0
1925 10000
1926 0
1907 0
1906
1905
5
500 614
501 1
504 1
505 1
502
7
700 11.05
701 7.35
99
503
7
700 19.05
701 13.35
99
99
1912
28
2800 5.04829
2801 0
2802 -50.6393
2803 0
2804 4.05144
2805 -15.6563
2806 0
99
99
4202
1
100 16777216
105 0
101 0
106 0
102 65532
103 1
30
3000 $object.RemTransObjects##Objid#25
3001 %o
3002
3003 $header.Direction##UInt32
3004 %d
3005
3006 $header.TransCount##UInt32
3007 %d
3008
3009 $header.TransTime##Time
3010 %t
3011
3012 $header.LastSts##UInt32
3013 %d
3014
3015 $header.DataValid##Boolean
3016 %d
3017
3018 $header.Description##String80
3019 %s
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
99
99
99
35
3500
27
2703 454
2704 450
2731 10000
2722 458
2705 450
2723 458
2706 454
2732 10000
2708 0
2709 0
2710 0
2711 0
2712 0
2713 0
2714 0
2715 0
2720 0
2725 0
2726 0
2702 0
2701
2700
10
1000 Grp581_
1002 Grp581_
1005
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1006 4.60388
1007 3.75
1008 17.75
1009 17
1013 4.60388
1014 3.75
1015 17.75
1016 17
1003
0
0
0
0
0
0
0
0
0
0
1004
1001
7
700 0
701 0
99
1010
1011
1018
1019
1020
1021
1022
1023
1024
1025
1012 0
1017 9999
1027 9999
1026 65532
1028 0
1029
99
2707
28
2800 1
2801 0
2802 2.75
2803 0
2804 1
2805 9.65
2806 0
99
2716 0
2718
2717
2719 0
2724 0
2727 0
2728 303
2729 9999
2730 0
2721
1
100 0
105 0
101 66
106 0
102 65535
103 0
50
5000 &$object.RemTransObjects[2]
99
55
5500 open graph/classgraph/instance=&$object.RemTransObjects[2]
99
99
99
3501
36
3600
3
300 Grp581_
301
2
19
1904 O209
1900 1.85388
1901 0.999998
1902 8.1
1903 7.35
1908 0
1909 32
1910 32
1911 1
1915 1
1913 12
1916 2
1914 0
1918 0
1919 0
1920 0
1917 0
1921 0
1922 4
1923 0
1924 0
1925 10000
1926 0
1907 0
1906
1905
5
500 0
501 1
504 1
505 0
502
7
700 0.95
701 10.6
99
503
7
700 4.5
701 11.35
99
99
1912
28
2800 0.24053
2801 0
2802 0.771494
2803 0
2804 1
2805 -3.25
2806 0
99
99
99
302 0
304 0
303
305 0
306
307
308 0
330 0
321 0
331 0
309 0
313 0
322 0
323 0
324 0
325 0
326 0
327 0
310 0
311 0
312
314
315 1
316 1
317 0
318 0
319 0
320 0
328 984
332 0
99
99
99
35
3500
27
2703 454
2704 450
2731 10000
2722 458
2705 450
2723 458
2706 454
2732 10000
2708 0
2709 0
2710 0
2711 0
2712 0
2713 0
2714 0
2715 0
2720 0
2725 0
2726 0
2702 0
2701
2700
10
1000 Grp582_
1002 Grp582_
1005
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1006 4.60388
1007 3.75
1008 18.65
1009 17.9
1013 4.60388
1014 3.75
1015 18.65
1016 17.9
1003
0
0
0
0
0
0
0
0
0
0
1004
1001
7
700 0
701 0
99
1010
1011
1018
1019
1020
1021
1022
1023
1024
1025
1012 0
1017 9999
1027 9999
1026 65532
1028 0
1029
99
2707
28
2800 1
2801 0
2802 2.75
2803 0
2804 1
2805 10.55
2806 0
99
2716 0
2718
2717
2719 0
2724 0
2727 0
2728 303
2729 9999
2730 0
2721
1
100 0
105 0
101 66
106 0
102 65535
103 0
50
5000 &$object.RemTransObjects[3]
99
55
5500 open graph/classgraph/instance=&$object.RemTransObjects[3]
99
99
99
3501
36
3600
3
300 Grp582_
301
2
19
1904 O210
1900 1.85388
1901 0.999998
1902 8.1
1903 7.35
1908 0
1909 32
1910 32
1911 1
1915 1
1913 12
1916 2
1914 0
1918 0
1919 0
1920 0
1917 0
1921 0
1922 4
1923 0
1924 0
1925 10000
1926 0
1907 0
1906
1905
5
500 0
501 1
504 1
505 0
502
7
700 0.95
701 10.6
99
503
7
700 4.5
701 11.35
99
99
1912
28
2800 0.24053
2801 0
2802 0.771494
2803 0
2804 1
2805 -3.25
2806 0
99
99
99
302 0
304 0
303
305 0
306
307
308 0
330 0
321 0
331 0
309 0
313 0
322 0
323 0
324 0
325 0
326 0
327 0
310 0
311 0
312
314
315 1
316 1
317 0
318 0
319 0
320 0
328 984
332 0
99
99
99
35
3500
27
2703 454
2704 450
2731 10000
2722 458
2705 450
2723 458
2706 454
2732 10000
2708 0
2709 0
2710 0
2711 0
2712 0
2713 0
2714 0
2715 0
2720 0
2725 0
2726 0
2702 0
2701
2700
10
1000 Grp583_
1002 Grp583_
1005
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1006 4.60388
1007 3.75
1008 19.55
1009 18.8
1013 4.60388
1014 3.75
1015 19.55
1016 18.8
1003
0
0
0
0
0
0
0
0
0
0
1004
1001
7
700 0
701 0
99
1010
1011
1018
1019
1020
1021
1022
1023
1024
1025
1012 0
1017 9999
1027 9999
1026 65532
1028 0
1029
99
2707
28
2800 1
2801 0
2802 2.75
2803 0
2804 1
2805 11.45
2806 0
99
2716 0
2718
2717
2719 0
2724 0
2727 0
2728 303
2729 9999
2730 0
2721
1
100 0
105 0
101 66
106 0
102 65535
103 0
50
5000 &$object.RemTransObjects[4]
99
55
5500 open graph/classgraph/instance=&$object.RemTransObjects[4]
99
99
99
3501
36
3600
3
300 Grp583_
301
2
19
1904 O211
1900 1.85388
1901 0.999998
1902 8.1
1903 7.35
1908 0
1909 32
1910 32
1911 1
1915 1
1913 12
1916 2
1914 0
1918 0
1919 0
1920 0
1917 0
1921 0
1922 4
1923 0
1924 0
1925 10000
1926 0
1907 0
1906
1905
5
500 0
501 1
504 1
505 0
502
7
700 0.95
701 10.6
99
503
7
700 4.5
701 11.35
99
99
1912
28
2800 0.24053
2801 0
2802 0.771494
2803 0
2804 1
2805 -3.25
2806 0
99
99
99
302 0
304 0
303
305 0
306
307
308 0
330 0
321 0
331 0
309 0
313 0
322 0
323 0
324 0
325 0
326 0
327 0
310 0
311 0
312
314
315 1
316 1
317 0
318 0
319 0
320 0
328 984
332 0
99
99
99
35
3500
27
2703 454
2704 450
2731 10000
2722 458
2705 450
2723 458
2706 454
2732 10000
2708 0
2709 0
2710 0
2711 0
2712 0
2713 0
2714 0
2715 0
2720 0
2725 0
2726 0
2702 0
2701
2700
10
1000 Grp584_
1002 Grp584_
1005
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1006 4.60388
1007 3.75
1008 20.45
1009 19.7
1013 4.60388
1014 3.75
1015 20.45
1016 19.7
1003
0
0
0
0
0
0
0
0
0
0
1004
1001
7
700 0
701 0
99
1010
1011
1018
1019
1020
1021
1022
1023
1024
1025
1012 0
1017 9999
1027 9999
1026 65532
1028 0
1029
99
2707
28
2800 1
2801 0
2802 2.75
2803 0
2804 1
2805 12.35
2806 0
99
2716 0
2718
2717
2719 0
2724 0
2727 0
2728 303
2729 9999
2730 0
2721
1
100 0
105 0
101 66
106 0
102 65535
103 0
50
5000 &$object.RemTransObjects[5]
99
55
5500 open graph/classgraph/instance=&$object.RemTransObjects[5]
99
99
99
3501
36
3600
3
300 Grp584_
301
2
19
1904 O212
1900 1.85388
1901 0.999998
1902 8.1
1903 7.35
1908 0
1909 32
1910 32
1911 1
1915 1
1913 12
1916 2
1914 0
1918 0
1919 0
1920 0
1917 0
1921 0
1922 4
1923 0
1924 0
1925 10000
1926 0
1907 0
1906
1905
5
500 0
501 1
504 1
505 0
502
7
700 0.95
701 10.6
99
503
7
700 4.5
701 11.35
99
99
1912
28
2800 0.24053
2801 0
2802 0.771494
2803 0
2804 1
2805 -3.25
2806 0
99
99
99
302 0
304 0
303
305 0
306
307
308 0
330 0
321 0
331 0
309 0
313 0
322 0
323 0
324 0
325 0
326 0
327 0
310 0
311 0
312
314
315 1
316 1
317 0
318 0
319 0
320 0
328 984
332 0
99
99
99
35
3500
27
2703 454
2704 450
2731 10000
2722 458
2705 450
2723 458
2706 454
2732 10000
2708 0
2709 0
2710 0
2711 0
2712 0
2713 0
2714 0
2715 0
2720 0
2725 0
2726 0
2702 0
2701
2700
10
1000 Grp585_
1002 Grp585_
1005
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1006 4.60388
1007 3.75
1008 21.35
1009 20.6
1013 4.60388
1014 3.75
1015 21.35
1016 20.6
1003
0
0
0
0
0
0
0
0
0
0
1004
1001
7
700 0
701 0
99
1010
1011
1018
1019
1020
1021
1022
1023
1024
1025
1012 0
1017 9999
1027 9999
1026 65532
1028 0
1029
99
2707
28
2800 1
2801 0
2802 2.75
2803 0
2804 1
2805 13.25
2806 0
99
2716 0
2718
2717
2719 0
2724 0
2727 0
2728 303
2729 9999
2730 0
2721
1
100 0
105 0
101 66
106 0
102 65535
103 0
50
5000 &$object.RemTransObjects[6]
99
55
5500 open graph/classgraph/instance=&$object.RemTransObjects[6]
99
99
99
3501
36
3600
3
300 Grp585_
301
2
19
1904 O213
1900 1.85388
1901 0.999998
1902 8.1
1903 7.35
1908 0
1909 32
1910 32
1911 1
1915 1
1913 12
1916 2
1914 0
1918 0
1919 0
1920 0
1917 0
1921 0
1922 4
1923 0
1924 0
1925 10000
1926 0
1907 0
1906
1905
5
500 0
501 1
504 1
505 0
502
7
700 0.95
701 10.6
99
503
7
700 4.5
701 11.35
99
99
1912
28
2800 0.24053
2801 0
2802 0.771494
2803 0
2804 1
2805 -3.25
2806 0
99
99
99
302 0
304 0
303
305 0
306
307
308 0
330 0
321 0
331 0
309 0
313 0
322 0
323 0
324 0
325 0
326 0
327 0
310 0
311 0
312
314
315 1
316 1
317 0
318 0
319 0
320 0
328 984
332 0
99
99
99
35
3500
27
2703 454
2704 450
2731 10000
2722 458
2705 450
2723 458
2706 454
2732 10000
2708 0
2709 0
2710 0
2711 0
2712 0
2713 0
2714 0
2715 0
2720 0
2725 0
2726 0
2702 0
2701
2700
10
1000 Grp586_
1002 Grp586_
1005
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1006 4.60388
1007 3.75
1008 22.25
1009 21.5
1013 4.60388
1014 3.75
1015 22.25
1016 21.5
1003
0
0
0
0
0
0
0
0
0
0
1004
1001
7
700 0
701 0
99
1010
1011
1018
1019
1020
1021
1022
1023
1024
1025
1012 0
1017 9999
1027 9999
1026 65532
1028 0
1029
99
2707
28
2800 1
2801 0
2802 2.75
2803 0
2804 1
2805 14.15
2806 0
99
2716 0
2718
2717
2719 0
2724 0
2727 0
2728 303
2729 9999
2730 0
2721
1
100 0
105 0
101 66
106 0
102 65535
103 0
50
5000 &$object.RemTransObjects[7]
99
55
5500 open graph/classgraph/instance=&$object.RemTransObjects[7]
99
99
99
3501
36
3600
3
300 Grp586_
301
2
19
1904 O214
1900 1.85388
1901 0.999998
1902 8.1
1903 7.35
1908 0
1909 32
1910 32
1911 1
1915 1
1913 12
1916 2
1914 0
1918 0
1919 0
1920 0
1917 0
1921 0
1922 4
1923 0
1924 0
1925 10000
1926 0
1907 0
1906
1905
5
500 0
501 1
504 1
505 0
502
7
700 0.95
701 10.6
99
503
7
700 4.5
701 11.35
99
99
1912
28
2800 0.24053
2801 0
2802 0.771494
2803 0
2804 1
2805 -3.25
2806 0
99
99
99
302 0
304 0
303
305 0
306
307
308 0
330 0
321 0
331 0
309 0
313 0
322 0
323 0
324 0
325 0
326 0
327 0
310 0
311 0
312
314
315 1
316 1
317 0
318 0
319 0
320 0
328 984
332 0
99
99
99
35
3500
27
2703 454
2704 450
2731 10000
2722 458
2705 450
2723 458
2706 454
2732 10000
2708 0
2709 0
2710 0
2711 0
2712 0
2713 0
2714 0
2715 0
2720 0
2725 0
2726 0
2702 0
2701
2700
10
1000 Grp587_
1002 Grp587_
1005
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1006 4.60388
1007 3.75
1008 23.15
1009 22.4
1013 4.60388
1014 3.75
1015 23.15
1016 22.4
1003
0
0
0
0
0
0
0
0
0
0
1004
1001
7
700 0
701 0
99
1010
1011
1018
1019
1020
1021
1022
1023
1024
1025
1012 0
1017 9999
1027 9999
1026 65532
1028 0
1029
99
2707
28
2800 1
2801 0
2802 2.75
2803 0
2804 1
2805 15.05
2806 0
99
2716 0
2718
2717
2719 0
2724 0
2727 0
2728 303
2729 9999
2730 0
2721
1
100 0
105 0
101 66
106 0
102 65535
103 0
50
5000 &$object.RemTransObjects[8]
99
55
5500 open graph/classgraph/instance=&$object.RemTransObjects[8]
99
99
99
3501
36
3600
3
300 Grp587_
301
2
19
1904 O215
1900 1.85388
1901 0.999998
1902 8.1
1903 7.35
1908 0
1909 32
1910 32
1911 1
1915 1
1913 12
1916 2
1914 0
1918 0
1919 0
1920 0
1917 0
1921 0
1922 4
1923 0
1924 0
1925 10000
1926 0
1907 0
1906
1905
5
500 0
501 1
504 1
505 0
502
7
700 0.95
701 10.6
99
503
7
700 4.5
701 11.35
99
99
1912
28
2800 0.24053
2801 0
2802 0.771494
2803 0
2804 1
2805 -3.25
2806 0
99
99
99
302 0
304 0
303
305 0
306
307
308 0
330 0
321 0
331 0
309 0
313 0
322 0
323 0
324 0
325 0
326 0
327 0
310 0
311 0
312
314
315 1
316 1
317 0
318 0
319 0
320 0
328 984
332 0
99
99
99
35
3500
27
2703 454
2704 450
2731 10000
2722 458
2705 450
2723 458
2706 454
2732 10000
2708 0
2709 0
2710 0
2711 0
2712 0
2713 0
2714 0
2715 0
2720 0
2725 0
2726 0
2702 0
2701
2700
10
1000 Grp588_
1002 Grp588_
1005
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1006 4.60388
1007 3.75
1008 24.05
1009 23.3
1013 4.60388
1014 3.75
1015 24.05
1016 23.3
1003
0
0
0
0
0
0
0
0
0
0
1004
1001
7
700 0
701 0
99
1010
1011
1018
1019
1020
1021
1022
1023
1024
1025
1012 0
1017 9999
1027 9999
1026 65532
1028 0
1029
99
2707
28
2800 1
2801 0
2802 2.75
2803 0
2804 1
2805 15.95
2806 0
99
2716 0
2718
2717
2719 0
2724 0
2727 0
2728 303
2729 9999
2730 0
2721
1
100 0
105 0
101 66
106 0
102 65535
103 0
50
5000 &$object.RemTransObjects[9]
99
55
5500 open graph/classgraph/instance=&$object.RemTransObjects[9]
99
99
99
3501
36
3600
3
300 Grp588_
301
2
19
1904 O216
1900 1.85388
1901 0.999998
1902 8.1
1903 7.35
1908 0
1909 32
1910 32
1911 1
1915 1
1913 12
1916 2
1914 0
1918 0
1919 0
1920 0
1917 0
1921 0
1922 4
1923 0
1924 0
1925 10000
1926 0
1907 0
1906
1905
5
500 0
501 1
504 1
505 0
502
7
700 0.95
701 10.6
99
503
7
700 4.5
701 11.35
99
99
1912
28
2800 0.24053
2801 0
2802 0.771494
2803 0
2804 1
2805 -3.25
2806 0
99
99
99
302 0
304 0
303
305 0
306
307
308 0
330 0
321 0
331 0
309 0
313 0
322 0
323 0
324 0
325 0
326 0
327 0
310 0
311 0
312
314
315 1
316 1
317 0
318 0
319 0
320 0
328 984
332 0
99
99
99
35
3500
27
2703 454
2704 450
2731 10000
2722 458
2705 450
2723 458
2706 454
2732 10000
2708 0
2709 0
2710 0
2711 0
2712 0
2713 0
2714 0
2715 0
2720 0
2725 0
2726 0
2702 0
2701
2700
10
1000 Grp589_
1002 Grp589_
1005
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1006 4.60388
1007 3.75
1008 24.95
1009 24.2
1013 4.60388
1014 3.75
1015 24.95
1016 24.2
1003
0
0
0
0
0
0
0
0
0
0
1004
1001
7
700 0
701 0
99
1010
1011
1018
1019
1020
1021
1022
1023
1024
1025
1012 0
1017 9999
1027 9999
1026 65532
1028 0
1029
99
2707
28
2800 1
2801 0
2802 2.75
2803 0
2804 1
2805 16.85
2806 0
99
2716 0
2718
2717
2719 0
2724 0
2727 0
2728 303
2729 9999
2730 0
2721
1
100 0
105 0
101 66
106 0
102 65535
103 0
50
5000 &$object.RemTransObjects[10]
99
55
5500 open graph/classgraph/instance=&$object.RemTransObjects[10]
99
99
99
3501
36
3600
3
300 Grp589_
301
2
19
1904 O217
1900 1.85388
1901 0.999998
1902 8.1
1903 7.35
1908 0
1909 32
1910 32
1911 1
1915 1
1913 12
1916 2
1914 0
1918 0
1919 0
1920 0
1917 0
1921 0
1922 4
1923 0
1924 0
1925 10000
1926 0
1907 0
1906
1905
5
500 0
501 1
504 1
505 0
502
7
700 0.95
701 10.6
99
503
7
700 4.5
701 11.35
99
99
1912
28
2800 0.24053
2801 0
2802 0.771494
2803 0
2804 1
2805 -3.25
2806 0
99
99
99
302 0
304 0
303
305 0
306
307
308 0
330 0
321 0
331 0
309 0
313 0
322 0
323 0
324 0
325 0
326 0
327 0
310 0
311 0
312
314
315 1
316 1
317 0
318 0
319 0
320 0
328 984
332 0
99
99
99
35
3500
27
2703 454
2704 450
2731 10000
2722 458
2705 450
2723 458
2706 454
2732 10000
2708 0
2709 0
2710 0
2711 0
2712 0
2713 0
2714 0
2715 0
2720 0
2725 0
2726 0
2702 0
2701
2700
10
1000 Grp590_
1002 Grp590_
1005
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1006 4.60388
1007 3.75
1008 25.85
1009 25.1
1013 4.60388
1014 3.75
1015 25.85
1016 25.1
1003
0
0
0
0
0
0
0
0
0
0
1004
1001
7
700 0
701 0
99
1010
1011
1018
1019
1020
1021
1022
1023
1024
1025
1012 0
1017 9999
1027 9999
1026 65532
1028 0
1029
99
2707
28
2800 1
2801 0
2802 2.75
2803 0
2804 1
2805 17.75
2806 0
99
2716 0
2718
2717
2719 0
2724 0
2727 0
2728 303
2729 9999
2730 0
2721
1
100 0
105 0
101 66
106 0
102 65535
103 0
50
5000 &$object.RemTransObjects[11]
99
55
5500 open graph/classgraph/instance=&$object.RemTransObjects[11]
99
99
99
3501
36
3600
3
300 Grp590_
301
2
19
1904 O218
1900 1.85388
1901 0.999998
1902 8.1
1903 7.35
1908 0
1909 32
1910 32
1911 1
1915 1
1913 12
1916 2
1914 0
1918 0
1919 0
1920 0
1917 0
1921 0
1922 4
1923 0
1924 0
1925 10000
1926 0
1907 0
1906
1905
5
500 0
501 1
504 1
505 0
502
7
700 0.95
701 10.6
99
503
7
700 4.5
701 11.35
99
99
1912
28
2800 0.24053
2801 0
2802 0.771494
2803 0
2804 1
2805 -3.25
2806 0
99
99
99
302 0
304 0
303
305 0
306
307
308 0
330 0
321 0
331 0
309 0
313 0
322 0
323 0
324 0
325 0
326 0
327 0
310 0
311 0
312
314
315 1
316 1
317 0
318 0
319 0
320 0
328 984
332 0
99
99
99
35
3500
27
2703 454
2704 450
2731 10000
2722 458
2705 450
2723 458
2706 454
2732 10000
2708 0
2709 0
2710 0
2711 0
2712 0
2713 0
2714 0
2715 0
2720 0
2725 0
2726 0
2702 0
2701
2700
10
1000 Grp591_
1002 Grp591_
1005
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1006 4.60388
1007 3.75
1008 26.75
1009 26
1013 4.60388
1014 3.75
1015 26.75
1016 26
1003
0
0
0
0
0
0
0
0
0
0
1004
1001
7
700 0
701 0
99
1010
1011
1018
1019
1020
1021
1022
1023
1024
1025
1012 0
1017 9999
1027 9999
1026 65532
1028 0
1029
99
2707
28
2800 1
2801 0
2802 2.75
2803 0
2804 1
2805 18.65
2806 0
99
2716 0
2718
2717
2719 0
2724 0
2727 0
2728 303
2729 9999
2730 0
2721
1
100 0
105 0
101 66
106 0
102 65535
103 0
50
5000 &$object.RemTransObjects[12]
99
55
5500 open graph/classgraph/instance=&$object.RemTransObjects[12]
99
99
99
3501
36
3600
3
300 Grp591_
301
2
19
1904 O219
1900 1.85388
1901 0.999998
1902 8.1
1903 7.35
1908 0
1909 32
1910 32
1911 1
1915 1
1913 12
1916 2
1914 0
1918 0
1919 0
1920 0
1917 0
1921 0
1922 4
1923 0
1924 0
1925 10000
1926 0
1907 0
1906
1905
5
500 0
501 1
504 1
505 0
502
7
700 0.95
701 10.6
99
503
7
700 4.5
701 11.35
99
99
1912
28
2800 0.24053
2801 0
2802 0.771494
2803 0
2804 1
2805 -3.25
2806 0
99
99
99
302 0
304 0
303
305 0
306
307
308 0
330 0
321 0
331 0
309 0
313 0
322 0
323 0
324 0
325 0
326 0
327 0
310 0
311 0
312
314
315 1
316 1
317 0
318 0
319 0
320 0
328 984
332 0
99
99
99
35
3500
27
2703 454
2704 450
2731 10000
2722 458
2705 450
2723 458
2706 454
2732 10000
2708 0
2709 0
2710 0
2711 0
2712 0
2713 0
2714 0
2715 0
2720 0
2725 0
2726 0
2702 0
2701
2700
10
1000 Grp592_
1002 Grp592_
1005
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1006 4.60388
1007 3.75
1008 27.65
1009 26.9
1013 4.60388
1014 3.75
1015 27.65
1016 26.9
1003
0
0
0
0
0
0
0
0
0
0
1004
1001
7
700 0
701 0
99
1010
1011
1018
1019
1020
1021
1022
1023
1024
1025
1012 0
1017 9999
1027 9999
1026 65532
1028 0
1029
99
2707
28
2800 1
2801 0
2802 2.75
2803 0
2804 1
2805 19.55
2806 0
99
2716 0
2718
2717
2719 0
2724 0
2727 0
2728 303
2729 9999
2730 0
2721
1
100 0
105 0
101 66
106 0
102 65535
103 0
50
5000 &$object.RemTransObjects[13]
99
55
5500 open graph/classgraph/instance=&$object.RemTransObjects[13]
99
99
99
3501
36
3600
3
300 Grp592_
301
2
19
1904 O220
1900 1.85388
1901 0.999998
1902 8.1
1903 7.35
1908 0
1909 32
1910 32
1911 1
1915 1
1913 12
1916 2
1914 0
1918 0
1919 0
1920 0
1917 0
1921 0
1922 4
1923 0
1924 0
1925 10000
1926 0
1907 0
1906
1905
5
500 0
501 1
504 1
505 0
502
7
700 0.95
701 10.6
99
503
7
700 4.5
701 11.35
99
99
1912
28
2800 0.24053
2801 0
2802 0.771494
2803 0
2804 1
2805 -3.25
2806 0
99
99
99
302 0
304 0
303
305 0
306
307
308 0
330 0
321 0
331 0
309 0
313 0
322 0
323 0
324 0
325 0
326 0
327 0
310 0
311 0
312
314
315 1
316 1
317 0
318 0
319 0
320 0
328 984
332 0
99
99
99
35
3500
27
2703 454
2704 450
2731 10000
2722 458
2705 450
2723 458
2706 454
2732 10000
2708 0
2709 0
2710 0
2711 0
2712 0
2713 0
2714 0
2715 0
2720 0
2725 0
2726 0
2702 0
2701
2700
10
1000 Grp593_
1002 Grp593_
1005
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1006 4.60388
1007 3.75
1008 28.55
1009 27.8
1013 4.60388
1014 3.75
1015 28.55
1016 27.8
1003
0
0
0
0
0
0
0
0
0
0
1004
1001
7
700 0
701 0
99
1010
1011
1018
1019
1020
1021
1022
1023
1024
1025
1012 0
1017 9999
1027 9999
1026 65532
1028 0
1029
99
2707
28
2800 1
2801 0
2802 2.75
2803 0
2804 1
2805 20.45
2806 0
99
2716 0
2718
2717
2719 0
2724 0
2727 0
2728 303
2729 9999
2730 0
2721
1
100 0
105 0
101 66
106 0
102 65535
103 0
50
5000 &$object.RemTransObjects[14]
99
55
5500 open graph/classgraph/instance=&$object.RemTransObjects[14]
99
99
99
3501
36
3600
3
300 Grp593_
301
2
19
1904 O221
1900 1.85388
1901 0.999998
1902 8.1
1903 7.35
1908 0
1909 32
1910 32
1911 1
1915 1
1913 12
1916 2
1914 0
1918 0
1919 0
1920 0
1917 0
1921 0
1922 4
1923 0
1924 0
1925 10000
1926 0
1907 0
1906
1905
5
500 0
501 1
504 1
505 0
502
7
700 0.95
701 10.6
99
503
7
700 4.5
701 11.35
99
99
1912
28
2800 0.24053
2801 0
2802 0.771494
2803 0
2804 1
2805 -3.25
2806 0
99
99
99
302 0
304 0
303
305 0
306
307
308 0
330 0
321 0
331 0
309 0
313 0
322 0
323 0
324 0
325 0
326 0
327 0
310 0
311 0
312
314
315 1
316 1
317 0
318 0
319 0
320 0
328 984
332 0
99
99
99
35
3500
27
2703 454
2704 450
2731 10000
2722 458
2705 450
2723 458
2706 454
2732 10000
2708 0
2709 0
2710 0
2711 0
2712 0
2713 0
2714 0
2715 0
2720 0
2725 0
2726 0
2702 0
2701
2700
10
1000 Grp594_
1002 Grp594_
1005
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1006 4.60388
1007 3.75
1008 29.45
1009 28.7
1013 4.60388
1014 3.75
1015 29.45
1016 28.7
1003
0
0
0
0
0
0
0
0
0
0
1004
1001
7
700 0
701 0
99
1010
1011
1018
1019
1020
1021
1022
1023
1024
1025
1012 0
1017 9999
1027 9999
1026 65532
1028 0
1029
99
2707
28
2800 1
2801 0
2802 2.75
2803 0
2804 1
2805 21.35
2806 0
99
2716 0
2718
2717
2719 0
2724 0
2727 0
2728 303
2729 9999
2730 0
2721
1
100 0
105 0
101 66
106 0
102 65535
103 0
50
5000 &$object.RemTransObjects[15]
99
55
5500 open graph/classgraph/instance=&$object.RemTransObjects[15]
99
99
99
3501
36
3600
3
300 Grp594_
301
2
19
1904 O222
1900 1.85388
1901 0.999998
1902 8.1
1903 7.35
1908 0
1909 32
1910 32
1911 1
1915 1
1913 12
1916 2
1914 0
1918 0
1919 0
1920 0
1917 0
1921 0
1922 4
1923 0
1924 0
1925 10000
1926 0
1907 0
1906
1905
5
500 0
501 1
504 1
505 0
502
7
700 0.95
701 10.6
99
503
7
700 4.5
701 11.35
99
99
1912
28
2800 0.24053
2801 0
2802 0.771494
2803 0
2804 1
2805 -3.25
2806 0
99
99
99
302 0
304 0
303
305 0
306
307
308 0
330 0
321 0
331 0
309 0
313 0
322 0
323 0
324 0
325 0
326 0
327 0
310 0
311 0
312
314
315 1
316 1
317 0
318 0
319 0
320 0
328 984
332 0
99
99
99
35
3500
27
2703 454
2704 450
2731 10000
2722 458
2705 450
2723 458
2706 454
2732 10000
2708 0
2709 0
2710 0
2711 0
2712 0
2713 0
2714 0
2715 0
2720 0
2725 0
2726 0
2702 0
2701
2700
10
1000 Grp595_
1002 Grp595_
1005
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1006 4.60388
1007 3.75
1008 30.35
1009 29.6
1013 4.60388
1014 3.75
1015 30.35
1016 29.6
1003
0
0
0
0
0
0
0
0
0
0
1004
1001
7
700 0
701 0
99
1010
1011
1018
1019
1020
1021
1022
1023
1024
1025
1012 0
1017 9999
1027 9999
1026 65532
1028 0
1029
99
2707
28
2800 1
2801 0
2802 2.75
2803 0
2804 1
2805 22.25
2806 0
99
2716 0
2718
2717
2719 0
2724 0
2727 0
2728 303
2729 9999
2730 0
2721
1
100 0
105 0
101 66
106 0
102 65535
103 0
50
5000 &$object.RemTransObjects[16]
99
55
5500 open graph/classgraph/instance=&$object.RemTransObjects[16]
99
99
99
3501
36
3600
3
300 Grp595_
301
2
19
1904 O223
1900 1.85388
1901 0.999998
1902 8.1
1903 7.35
1908 0
1909 32
1910 32
1911 1
1915 1
1913 12
1916 2
1914 0
1918 0
1919 0
1920 0
1917 0
1921 0
1922 4
1923 0
1924 0
1925 10000
1926 0
1907 0
1906
1905
5
500 0
501 1
504 1
505 0
502
7
700 0.95
701 10.6
99
503
7
700 4.5
701 11.35
99
99
1912
28
2800 0.24053
2801 0
2802 0.771494
2803 0
2804 1
2805 -3.25
2806 0
99
99
99
302 0
304 0
303
305 0
306
307
308 0
330 0
321 0
331 0
309 0
313 0
322 0
323 0
324 0
325 0
326 0
327 0
310 0
311 0
312
314
315 1
316 1
317 0
318 0
319 0
320 0
328 984
332 0
99
99
99
35
3500
27
2703 454
2704 450
2731 10000
2722 458
2705 450
2723 458
2706 454
2732 10000
2708 0
2709 0
2710 0
2711 0
2712 0
2713 0
2714 0
2715 0
2720 0
2725 0
2726 0
2702 0
2701
2700
10
1000 Grp596_
1002 Grp596_
1005
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1006 4.60388
1007 3.75
1008 31.25
1009 30.5
1013 4.60388
1014 3.75
1015 31.25
1016 30.5
1003
0
0
0
0
0
0
0
0
0
0
1004
1001
7
700 0
701 0
99
1010
1011
1018
1019
1020
1021
1022
1023
1024
1025
1012 0
1017 9999
1027 9999
1026 65532
1028 0
1029
99
2707
28
2800 1
2801 0
2802 2.75
2803 0
2804 1
2805 23.15
2806 0
99
2716 0
2718
2717
2719 0
2724 0
2727 0
2728 303
2729 9999
2730 0
2721
1
100 0
105 0
101 66
106 0
102 65535
103 0
50
5000 &$object.RemTransObjects[17]
99
55
5500 open graph/classgraph/instance=&$object.RemTransObjects[17]
99
99
99
3501
36
3600
3
300 Grp596_
301
2
19
1904 O224
1900 1.85388
1901 0.999998
1902 8.1
1903 7.35
1908 0
1909 32
1910 32
1911 1
1915 1
1913 12
1916 2
1914 0
1918 0
1919 0
1920 0
1917 0
1921 0
1922 4
1923 0
1924 0
1925 10000
1926 0
1907 0
1906
1905
5
500 0
501 1
504 1
505 0
502
7
700 0.95
701 10.6
99
503
7
700 4.5
701 11.35
99
99
1912
28
2800 0.24053
2801 0
2802 0.771494
2803 0
2804 1
2805 -3.25
2806 0
99
99
99
302 0
304 0
303
305 0
306
307
308 0
330 0
321 0
331 0
309 0
313 0
322 0
323 0
324 0
325 0
326 0
327 0
310 0
311 0
312
314
315 1
316 1
317 0
318 0
319 0
320 0
328 984
332 0
99
99
99
35
3500
27
2703 454
2704 450
2731 10000
2722 458
2705 450
2723 458
2706 454
2732 10000
2708 0
2709 0
2710 0
2711 0
2712 0
2713 0
2714 0
2715 0
2720 0
2725 0
2726 0
2702 0
2701
2700
10
1000 Grp597_
1002 Grp597_
1005
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1006 4.60388
1007 3.75
1008 32.15
1009 31.4
1013 4.60388
1014 3.75
1015 32.15
1016 31.4
1003
0
0
0
0
0
0
0
0
0
0
1004
1001
7
700 0
701 0
99
1010
1011
1018
1019
1020
1021
1022
1023
1024
1025
1012 0
1017 9999
1027 9999
1026 65532
1028 0
1029
99
2707
28
2800 1
2801 0
2802 2.75
2803 0
2804 1
2805 24.05
2806 0
99
2716 0
2718
2717
2719 0
2724 0
2727 0
2728 303
2729 9999
2730 0
2721
1
100 0
105 0
101 66
106 0
102 65535
103 0
50
5000 &$object.RemTransObjects[18]
99
55
5500 open graph/classgraph/instance=&$object.RemTransObjects[18]
99
99
99
3501
36
3600
3
300 Grp597_
301
2
19
1904 O225
1900 1.85388
1901 0.999998
1902 8.1
1903 7.35
1908 0
1909 32
1910 32
1911 1
1915 1
1913 12
1916 2
1914 0
1918 0
1919 0
1920 0
1917 0
1921 0
1922 4
1923 0
1924 0
1925 10000
1926 0
1907 0
1906
1905
5
500 0
501 1
504 1
505 0
502
7
700 0.95
701 10.6
99
503
7
700 4.5
701 11.35
99
99
1912
28
2800 0.24053
2801 0
2802 0.771494
2803 0
2804 1
2805 -3.25
2806 0
99
99
99
302 0
304 0
303
305 0
306
307
308 0
330 0
321 0
331 0
309 0
313 0
322 0
323 0
324 0
325 0
326 0
327 0
310 0
311 0
312
314
315 1
316 1
317 0
318 0
319 0
320 0
328 984
332 0
99
99
99
35
3500
27
2703 454
2704 450
2731 10000
2722 458
2705 450
2723 458
2706 454
2732 10000
2708 0
2709 0
2710 0
2711 0
2712 0
2713 0
2714 0
2715 0
2720 0
2725 0
2726 0
2702 0
2701
2700
10
1000 Grp598_
1002 Grp598_
1005
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1006 4.60388
1007 3.75
1008 33.05
1009 32.3
1013 4.60388
1014 3.75
1015 33.05
1016 32.3
1003
0
0
0
0
0
0
0
0
0
0
1004
1001
7
700 0
701 0
99
1010
1011
1018
1019
1020
1021
1022
1023
1024
1025
1012 0
1017 9999
1027 9999
1026 65532
1028 0
1029
99
2707
28
2800 1
2801 0
2802 2.75
2803 0
2804 1
2805 24.95
2806 0
99
2716 0
2718
2717
2719 0
2724 0
2727 0
2728 303
2729 9999
2730 0
2721
1
100 0
105 0
101 66
106 0
102 65535
103 0
50
5000 &$object.RemTransObjects[19]
99
55
5500 open graph/classgraph/instance=&$object.RemTransObjects[19]
99
99
99
3501
36
3600
3
300 Grp598_
301
2
19
1904 O226
1900 1.85388
1901 0.999998
1902 8.1
1903 7.35
1908 0
1909 32
1910 32
1911 1
1915 1
1913 12
1916 2
1914 0
1918 0
1919 0
1920 0
1917 0
1921 0
1922 4
1923 0
1924 0
1925 10000
1926 0
1907 0
1906
1905
5
500 0
501 1
504 1
505 0
502
7
700 0.95
701 10.6
99
503
7
700 4.5
701 11.35
99
99
1912
28
2800 0.24053
2801 0
2802 0.771494
2803 0
2804 1
2805 -3.25
2806 0
99
99
99
302 0
304 0
303
305 0
306
307
308 0
330 0
321 0
331 0
309 0
313 0
322 0
323 0
324 0
325 0
326 0
327 0
310 0
311 0
312
314
315 1
316 1
317 0
318 0
319 0
320 0
328 984
332 0
99
99
99
35
3500
27
2703 454
2704 450
2731 10000
2722 458
2705 450
2723 458
2706 454
2732 10000
2708 0
2709 0
2710 0
2711 0
2712 0
2713 0
2714 0
2715 0
2720 0
2725 0
2726 0
2702 0
2701
2700
10
1000 Grp602_
1002 Grp602_
1005
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1006 4.60388
1007 3.75
1008 33.95
1009 33.2
1013 4.60388
1014 3.75
1015 33.95
1016 33.2
1003
0
0
0
0
0
0
0
0
0
0
1004
1001
7
700 0
701 0
99
1010
1011
1018
1019
1020
1021
1022
1023
1024
1025
1012 0
1017 9999
1027 9999
1026 65532
1028 0
1029
99
2707
28
2800 1
2801 0
2802 2.75
2803 0
2804 1
2805 25.85
2806 0
99
2716 0
2718
2717
2719 0
2724 0
2727 0
2728 303
2729 9999
2730 0
2721
1
100 0
105 0
101 66
106 0
102 65532
103 0
50
5000 &$object.RemTransObjects[20]
99
55
5500 open graph/classgraph/instance=&$object.RemTransObjects[20]
99
99
99
3501
36
3600
3
300 Grp602_
301
2
19
1904 O228
1900 1.85388
1901 0.999998
1902 8.1
1903 7.35
1908 0
1909 32
1910 32
1911 1
1915 1
1913 12
1916 2
1914 0
1918 0
1919 0
1920 0
1917 0
1921 0
1922 4
1923 0
1924 0
1925 10000
1926 0
1907 0
1906
1905
5
500 0
501 1
504 1
505 0
502
7
700 0.95
701 10.6
99
503
7
700 4.5
701 11.35
99
99
1912
28
2800 0.24053
2801 0
2802 0.771494
2803 0
2804 1
2805 -3.25
2806 0
99
99
99
302 0
304 0
303
305 0
306
307
308 0
330 0
321 0
331 0
309 0
313 0
322 0
323 0
324 0
325 0
326 0
327 0
310 0
311 0
312
314
315 1
316 1
317 0
318 0
319 0
320 0
328 984
332 0
99
99
99
35
3500
27
2703 454
2704 450
2731 10000
2722 458
2705 450
2723 458
2706 454
2732 10000
2708 0
2709 0
2710 0
2711 0
2712 0
2713 0
2714 0
2715 0
2720 0
2725 0
2726 0
2702 0
2701
2700
10
1000 Grp603_
1002 Grp603_
1005
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1006 4.60388
1007 3.75
1008 34.85
1009 34.1
1013 4.60388
1014 3.75
1015 34.85
1016 34.1
1003
0
0
0
0
0
0
0
0
0
0
1004
1001
7
700 0
701 0
99
1010
1011
1018
1019
1020
1021
1022
1023
1024
1025
1012 0
1017 9999
1027 9999
1026 65532
1028 0
1029
99
2707
28
2800 1
2801 0
2802 2.75
2803 0
2804 1
2805 26.75
2806 0
99
2716 0
2718
2717
2719 0
2724 0
2727 0
2728 303
2729 9999
2730 0
2721
1
100 0
105 0
101 66
106 0
102 65535
103 0
50
5000 &$object.RemTransObjects[21]
99
55
5500 open graph/classgraph/instance=&$object.RemTransObjects[21]
99
99
99
3501
36
3600
3
300 Grp603_
301
2
19
1904 O229
1900 1.85388
1901 0.999998
1902 8.1
1903 7.35
1908 0
1909 32
1910 32
1911 1
1915 1
1913 12
1916 2
1914 0
1918 0
1919 0
1920 0
1917 0
1921 0
1922 4
1923 0
1924 0
1925 10000
1926 0
1907 0
1906
1905
5
500 0
501 1
504 1
505 0
502
7
700 0.95
701 10.6
99
503
7
700 4.5
701 11.35
99
99
1912
28
2800 0.24053
2801 0
2802 0.771494
2803 0
2804 1
2805 -3.25
2806 0
99
99
99
302 0
304 0
303
305 0
306
307
308 0
330 0
321 0
331 0
309 0
313 0
322 0
323 0
324 0
325 0
326 0
327 0
310 0
311 0
312
314
315 1
316 1
317 0
318 0
319 0
320 0
328 984
332 0
99
99
99
35
3500
27
2703 454
2704 450
2731 10000
2722 458
2705 450
2723 458
2706 454
2732 10000
2708 0
2709 0
2710 0
2711 0
2712 0
2713 0
2714 0
2715 0
2720 0
2725 0
2726 0
2702 0
2701
2700
10
1000 Grp604_
1002 Grp604_
1005
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1006 4.60388
1007 3.75
1008 35.75
1009 35
1013 4.60388
1014 3.75
1015 35.75
1016 35
1003
0
0
0
0
0
0
0
0
0
0
1004
1001
7
700 0
701 0
99
1010
1011
1018
1019
1020
1021
1022
1023
1024
1025
1012 0
1017 9999
1027 9999
1026 65532
1028 0
1029
99
2707
28
2800 1
2801 0
2802 2.75
2803 0
2804 1
2805 27.65
2806 0
99
2716 0
2718
2717
2719 0
2724 0
2727 0
2728 303
2729 9999
2730 0
2721
1
100 0
105 0
101 66
106 0
102 65535
103 0
50
5000 &$object.RemTransObjects[22]
99
55
5500 open graph/classgraph/instance=&$object.RemTransObjects[22]
99
99
99
3501
36
3600
3
300 Grp604_
301
2
19
1904 O230
1900 1.85388
1901 0.999998
1902 8.1
1903 7.35
1908 0
1909 32
1910 32
1911 1
1915 1
1913 12
1916 2
1914 0
1918 0
1919 0
1920 0
1917 0
1921 0
1922 4
1923 0
1924 0
1925 10000
1926 0
1907 0
1906
1905
5
500 0
501 1
504 1
505 0
502
7
700 0.95
701 10.6
99
503
7
700 4.5
701 11.35
99
99
1912
28
2800 0.24053
2801 0
2802 0.771494
2803 0
2804 1
2805 -3.25
2806 0
99
99
99
302 0
304 0
303
305 0
306
307
308 0
330 0
321 0
331 0
309 0
313 0
322 0
323 0
324 0
325 0
326 0
327 0
310 0
311 0
312
314
315 1
316 1
317 0
318 0
319 0
320 0
328 984
332 0
99
99
99
35
3500
27
2703 454
2704 450
2731 10000
2722 458
2705 450
2723 458
2706 454
2732 10000
2708 0
2709 0
2710 0
2711 0
2712 0
2713 0
2714 0
2715 0
2720 0
2725 0
2726 0
2702 0
2701
2700
10
1000 Grp605_
1002 Grp605_
1005
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1006 4.60388
1007 3.75
1008 36.65
1009 35.9
1013 4.60388
1014 3.75
1015 36.65
1016 35.9
1003
0
0
0
0
0
0
0
0
0
0
1004
1001
7
700 0
701 0
99
1010
1011
1018
1019
1020
1021
1022
1023
1024
1025
1012 0
1017 9999
1027 9999
1026 65532
1028 0
1029
99
2707
28
2800 1
2801 0
2802 2.75
2803 0
2804 1
2805 28.55
2806 0
99
2716 0
2718
2717
2719 0
2724 0
2727 0
2728 303
2729 9999
2730 0
2721
1
100 0
105 0
101 66
106 0
102 65535
103 0
50
5000 &$object.RemTransObjects[23]
99
55
5500 open graph/classgraph/instance=&$object.RemTransObjects[23]
99
99
99
3501
36
3600
3
300 Grp605_
301
2
19
1904 O231
1900 1.85388
1901 0.999998
1902 8.1
1903 7.35
1908 0
1909 32
1910 32
1911 1
1915 1
1913 12
1916 2
1914 0
1918 0
1919 0
1920 0
1917 0
1921 0
1922 4
1923 0
1924 0
1925 10000
1926 0
1907 0
1906
1905
5
500 0
501 1
504 1
505 0
502
7
700 0.95
701 10.6
99
503
7
700 4.5
701 11.35
99
99
1912
28
2800 0.24053
2801 0
2802 0.771494
2803 0
2804 1
2805 -3.25
2806 0
99
99
99
302 0
304 0
303
305 0
306
307
308 0
330 0
321 0
331 0
309 0
313 0
322 0
323 0
324 0
325 0
326 0
327 0
310 0
311 0
312
314
315 1
316 1
317 0
318 0
319 0
320 0
328 984
332 0
99
99
99
35
3500
27
2703 454
2704 450
2731 10000
2722 458
2705 450
2723 458
2706 454
2732 10000
2708 0
2709 0
2710 0
2711 0
2712 0
2713 0
2714 0
2715 0
2720 0
2725 0
2726 0
2702 0
2701
2700
10
1000 Grp606_
1002 Grp606_
1005
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1006 4.60388
1007 3.75
1008 37.55
1009 36.8
1013 4.60388
1014 3.75
1015 37.55
1016 36.8
1003
0
0
0
0
0
0
0
0
0
0
1004
1001
7
700 0
701 0
99
1010
1011
1018
1019
1020
1021
1022
1023
1024
1025
1012 0
1017 9999
1027 9999
1026 65532
1028 0
1029
99
2707
28
2800 1
2801 0
2802 2.75
2803 0
2804 1
2805 29.45
2806 0
99
2716 0
2718
2717
2719 0
2724 0
2727 0
2728 303
2729 9999
2730 0
2721
1
100 0
105 0
101 66
106 0
102 65535
103 0
50
5000 &$object.RemTransObjects[24]
99
55
5500 open graph/classgraph/instance=&$object.RemTransObjects[24]
99
99
99
3501
36
3600
3
300 Grp606_
301
2
19
1904 O232
1900 1.85388
1901 0.999998
1902 8.1
1903 7.35
1908 0
1909 32
1910 32
1911 1
1915 1
1913 12
1916 2
1914 0
1918 0
1919 0
1920 0
1917 0
1921 0
1922 4
1923 0
1924 0
1925 10000
1926 0
1907 0
1906
1905
5
500 0
501 1
504 1
505 0
502
7
700 0.95
701 10.6
99
503
7
700 4.5
701 11.35
99
99
1912
28
2800 0.24053
2801 0
2802 0.771494
2803 0
2804 1
2805 -3.25
2806 0
99
99
99
302 0
304 0
303
305 0
306
307
308 0
330 0
321 0
331 0
309 0
313 0
322 0
323 0
324 0
325 0
326 0
327 0
310 0
311 0
312
314
315 1
316 1
317 0
318 0
319 0
320 0
328 984
332 0
99
99
99
30
3004 O623
3000 7.4
3001 3.75
3002 8.06212
3003 7.21212
3008 326
3010 4
3011 2
3007 0
3006
3005
9
900 4
901 303
904 326
902 MyQueue
903
7
700 2.85
701 8.55
99
99
3009
28
2800 1
2801 0
2802 0.9
2803 0
2804 1
2805 -0.637877
2806 0
99
99
30
3004 O625
3000 8.75
3001 3.75
3002 9.24324
3003 8.39324
3008 326
3010 4
3011 2
3007 0
3006
3005
9
900 4
901 303
904 326
902 RemoteNode
903
7
700 2.85
701 8.55
99
99
3009
28
2800 1
2801 0
2802 0.9
2803 0
2804 1
2805 0.543235
2806 0
99
99
27
2703 310
2704 310
2731 10000
2722 326
2705 310
2723 326
2706 310
2732 10000
2708 0
2709 0
2710 0
2711 0
2712 0
2713 0
2714 0
2715 0
2720 0
2725 0
2726 0
2702 0
2701
2700
10
1000 pwr_valuelarge
1002 O626
1005
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1006 19.1494
1007 10.6
1008 9.43116
1009 8.35724
1013 19.1494
1014 10.6
1015 9.43116
1016 8.35724
1003
0
0
0
0
0
0
0
0
0
0
1004
1001
7
700 12.95
701 8.7
99
1010
1011
1018
1019
1020
1021
1022
1023
1024
1025
1012 0
1017 9999
1027 9999
1026 35454972
1028 0
1029
99
2707
28
2800 2.0601
2801 0
2802 10.497
2803 0
2804 0.826087
2805 8.31594
2806 0
99
2716 0
2718
2717
2719 0
2724 0
2727 0
2728 303
2729 4
2730 0
2721
1
100 1024
105 0
101 0
106 0
102 65532
103 0
12
1200 $object.TargetNode##String32
1201 %s
1202 1
1203 1
1204 0
99
99
99
30
3004 O627
3000 9.25
3001 3.75
3002 10.4244
3003 9.57435
3008 326
3010 4
3011 2
3007 0
3006
3005
9
900 4
901 303
904 326
902 RemoteQueue
903
7
700 2.85
701 8.55
99
99
3009
28
2800 1
2801 0
2802 0.9
2803 0
2804 1
2805 1.72435
2806 0
99
99
30
3004 O635
3000 24.6
3001 21.85
3002 9.24324
3003 8.39324
3008 326
3010 4
3011 2
3007 0
3006
3005
9
900 4
901 303
904 326
902 Disable
903
7
700 2.85
701 8.55
99
99
3009
28
2800 1
2801 0
2802 19
2803 0
2804 1
2805 0.543235
2806 0
99
99
27
2703 310
2704 310
2731 10000
2722 326
2705 310
2723 326
2706 310
2732 10000
2708 0
2709 0
2710 0
2711 0
2712 0
2713 0
2714 0
2715 0
2720 0
2725 0
2726 0
2702 0
2701
2700
10
1000 pwr_valuelarge
1002 O636
1005
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1006 33.0844
1007 27.35
1008 9.51116
1009 8.43725
1013 33.0844
1014 27.35
1015 9.51116
1016 8.43725
1003
0
0
0
0
0
0
0
0
0
0
1004
1001
7
700 12.95
701 8.7
99
1010
1011
1018
1019
1020
1021
1022
1023
1024
1025
1012 0
1017 9999
1027 9999
1026 35454972
1028 0
1029
99
2707
28
2800 1.38177
2801 0
2802 27.2809
2803 0
2804 0.826087
2805 8.39594
2806 0
99
2716 0
2718
2717
2719 0
2724 0
2727 0
2728 303
2729 4
2730 0
2721
1
100 1024
105 0
101 0
106 0
102 65532
103 0
12
1200 $object.Disable##Boolean
1201 %d
1202 1
1203 1
1204 0
99
99
99
30
3004 O637
3000 25.4
3001 21.85
3002 10.4244
3003 9.57435
3008 326
3010 4
3011 2
3007 0
3006
3005
9
900 4
901 303
904 326
902 ErrCount
903
7
700 2.85
701 8.55
99
99
3009
28
2800 1
2801 0
2802 19
2803 0
2804 1
2805 1.72435
2806 0
99
99
27
2703 310
2704 310
2731 10000
2722 326
2705 310
2723 326
2706 310
2732 10000
2708 0
2709 0
2710 0
2711 0
2712 0
2713 0
2714 0
2715 0
2720 0
2725 0
2726 0
2702 0
2701
2700
10
1000 pwr_valuelarge
1002 O638
1005
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1006 33.0844
1007 27.35
1008 10.6812
1009 9.60725
1013 33.0844
1014 27.35
1015 10.6812
1016 9.60725
1003
0
0
0
0
0
0
0
0
0
0
1004
1001
7
700 12.95
701 8.7
99
1010
1011
1018
1019
1020
1021
1022
1023
1024
1025
1012 0
1017 9999
1027 9999
1026 35454972
1028 0
1029
99
2707
28
2800 1.38177
2801 0
2802 27.2809
2803 0
2804 0.826087
2805 9.56594
2806 0
99
2716 0
2718
2717
2719 0
2724 0
2727 0
2728 303
2729 4
2730 0
2721
1
100 1024
105 0
101 0
106 0
102 65532
103 0
12
1200 $object.ErrCount##UInt32
1201 %d
1202 1
1203 1
1204 0
99
99
99
27
2703 310
2704 310
2731 10000
2722 326
2705 310
2723 326
2706 310
2732 10000
2708 0
2709 0
2710 0
2711 0
2712 0
2713 0
2714 0
2715 0
2720 0
2725 0
2726 0
2702 0
2701
2700
10
1000 pwr_valuelarge
1002 O639
1005
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1006 16.3343
1007 10.6
1008 8.18116
1009 7.10724
1013 16.3343
1014 10.6
1015 8.18116
1016 7.10724
1003
0
0
0
0
0
0
0
0
0
0
1004
1001
7
700 12.95
701 8.7
99
1010
1011
1018
1019
1020
1021
1022
1023
1024
1025
1012 0
1017 9999
1027 9999
1026 35454972
1028 0
1029
99
2707
28
2800 1.38177
2801 0
2802 10.5309
2803 0
2804 0.826087
2805 7.06594
2806 0
99
2716 0
2718
2717
2719 0
2724 0
2727 0
2728 303
2729 4
2730 0
2721
1
100 1024
105 0
101 0
106 0
102 65532
103 0
12
1200 $object.MyQueue##UInt32
1201 %d
1202 1
1203 1
1204 0
99
99
99
27
2703 310
2704 310
2731 10000
2722 326
2705 310
2723 326
2706 310
2732 10000
2708 0
2709 0
2710 0
2711 0
2712 0
2713 0
2714 0
2715 0
2720 0
2725 0
2726 0
2702 0
2701
2700
10
1000 pwr_valuelarge
1002 O640
1005
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1006 16.3343
1007 10.6
1008 10.6812
1009 9.60724
1013 16.3343
1014 10.6
1015 10.6812
1016 9.60724
1003
0
0
0
0
0
0
0
0
0
0
1004
1001
7
700 12.95
701 8.7
99
1010
1011
1018
1019
1020
1021
1022
1023
1024
1025
1012 0
1017 9999
1027 9999
1026 35454972
1028 0
1029
99
2707
28
2800 1.38177
2801 0
2802 10.5309
2803 0
2804 0.826087
2805 9.56594
2806 0
99
2716 0
2718
2717
2719 0
2724 0
2727 0
2728 303
2729 4
2730 0
2721
1
100 1024
105 0
101 0
106 0
102 65532
103 0
12
1200 $object.TargetQueue##UInt32
1201 %d
1202 1
1203 1
1204 0
99
99
99
99
99
......@@ -1726,7 +1726,7 @@ int XNav::show_remnode()
strcpy( th.title[th.table_cnt++], "Description");
new ItemTableHeader( brow, this, "Title", &th, NULL, flow_eDest_IntoLast);
for ( int i = 0; i < 8; i++) {
for ( int i = 0; i < 9; i++) {
switch ( i) {
case 0: cid = pwr_cClass_RemnodeUDP; break;
case 1: cid = pwr_cClass_RemnodeTCP; break;
......@@ -1736,6 +1736,7 @@ int XNav::show_remnode()
case 5: cid = pwr_cClass_RemnodeModbus; break;
case 6: cid = pwr_cClass_RemnodeMQ; break;
case 7: cid = pwr_cClass_RemnodeWMQ; break;
case 8: cid = pwr_cClass_RemnodeQCom; break;
}
sts = gdh_GetClassList( cid, &objid);
......@@ -1788,6 +1789,11 @@ int XNav::show_remnode()
strncpy( description, ((pwr_sClass_RemnodeWMQ *)object_ptr)->Description,
sizeof(description));
break;
case 8:
strncpy( id, ((pwr_sClass_RemnodeQCom *)object_ptr)->Id, sizeof(id));
strncpy( description, ((pwr_sClass_RemnodeQCom *)object_ptr)->Description,
sizeof(description));
break;
}
t.elem_cnt = 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment